machine/itsybitsy-m0: specify which pins to use for UART0

Signed-off-by: Ron Evans <ron@hybridgroup.com>
This commit is contained in:
Ron Evans
2019-01-21 09:39:47 +01:00
committed by Ayke van Laethem
parent 65ea74bd84
commit 38c5e384af
+3 -3
View File
@@ -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
)