diff options
| author | Damien George | 2021-02-21 15:24:38 +1100 |
|---|---|---|
| committer | Damien George | 2021-02-21 15:49:33 +1100 |
| commit | 03a64f20771cd0582af61de31811294456fa695e (patch) | |
| tree | d38d603dcb52eb488371319cbe91d608c397f2f6 | |
| parent | 9d674cf7ab8570637dfab23811800e3b98babad9 (diff) | |
stm32/boards/NUCLEO_WB55: Enable LPUART1 on PA2/PA3.
Signed-off-by: Damien George <damien@micropython.org>
| -rw-r--r-- | ports/stm32/boards/NUCLEO_WB55/mpconfigboard.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ports/stm32/boards/NUCLEO_WB55/mpconfigboard.h b/ports/stm32/boards/NUCLEO_WB55/mpconfigboard.h index 206134941..179369d94 100644 --- a/ports/stm32/boards/NUCLEO_WB55/mpconfigboard.h +++ b/ports/stm32/boards/NUCLEO_WB55/mpconfigboard.h @@ -22,6 +22,8 @@ // UART buses #define MICROPY_HW_UART1_TX (pin_B6) #define MICROPY_HW_UART1_RX (pin_B7) +#define MICROPY_HW_LPUART1_TX (pin_A2) +#define MICROPY_HW_LPUART1_RX (pin_A3) // USART 1 is connected to the virtual com port on the ST-LINK #define MICROPY_HW_UART_REPL PYB_UART_1 #define MICROPY_HW_UART_REPL_BAUD 115200 |
