summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2019-12-30 11:34:51 -0800
committerGitHub <noreply@github.com>2019-12-30 11:34:51 -0800
commit0223589e6cbd6f7e7e6f98981bbc9b3cf510da8e (patch)
tree765e39285fd8c8d7f863c043e3b1c8aafbc34805
parente1d026f81518eaebbe64b9e4b1ade5123f6fb9e7 (diff)
Fix default UART too
-rw-r--r--ports/atmel-samd/boards/hallowing_m4_express/mpconfigboard.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/atmel-samd/boards/hallowing_m4_express/mpconfigboard.h b/ports/atmel-samd/boards/hallowing_m4_express/mpconfigboard.h
index a0c726e72..38f78da4d 100644
--- a/ports/atmel-samd/boards/hallowing_m4_express/mpconfigboard.h
+++ b/ports/atmel-samd/boards/hallowing_m4_express/mpconfigboard.h
@@ -23,8 +23,8 @@
#define DEFAULT_SPI_BUS_MOSI (&pin_PB23)
#define DEFAULT_SPI_BUS_MISO (&pin_PB22)
-#define DEFAULT_UART_BUS_RX (&pin_PB12)
-#define DEFAULT_UART_BUS_TX (&pin_PB13)
+#define DEFAULT_UART_BUS_RX (&pin_PB13)
+#define DEFAULT_UART_BUS_TX (&pin_PB12)
// USB is always used internally so skip the pin objects for it.
#define IGNORE_PIN_PA24 1