From 38c5e384afcb6fde289aec84d21edb6ca847efab Mon Sep 17 00:00:00 2001 From: Ron Evans Date: Mon, 21 Jan 2019 09:39:47 +0100 Subject: [PATCH] machine/itsybitsy-m0: specify which pins to use for UART0 Signed-off-by: Ron Evans --- src/machine/board_itsybitsy-m0.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/machine/board_itsybitsy-m0.go b/src/machine/board_itsybitsy-m0.go index 33f76a99..cffa143f 100644 --- a/src/machine/board_itsybitsy-m0.go +++ b/src/machine/board_itsybitsy-m0.go @@ -24,8 +24,8 @@ const ( LED = D13 ) -// UART pins +// UART0 pins const ( - UART_TX_PIN = 0 - UART_RX_PIN = 0 + UART_TX_PIN = D1 + UART_RX_PIN = D0 )