Skip to content

Commit

Permalink
stm32/boards/STM32F429DISC: Set correct UART2 pins and add UART3/6.
Browse files Browse the repository at this point in the history
  • Loading branch information
mako2580 authored and dpgeorge committed Jul 26, 2021
1 parent aa0cf87 commit 0f0006f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ports/stm32/boards/STM32F429DISC/mpconfigboard.h
Expand Up @@ -19,8 +19,12 @@
// UART config
#define MICROPY_HW_UART1_TX (pin_A9)
#define MICROPY_HW_UART1_RX (pin_A10)
#define MICROPY_HW_UART2_TX (pin_D8)
#define MICROPY_HW_UART2_RX (pin_D9)
#define MICROPY_HW_UART2_TX (pin_D5)
#define MICROPY_HW_UART2_RX (pin_D6)
#define MICROPY_HW_UART3_TX (pin_C10)
#define MICROPY_HW_UART3_RX (pin_C11)
#define MICROPY_HW_UART6_TX (pin_C6)
#define MICROPY_HW_UART6_RX (pin_C7)

// I2C buses
#define MICROPY_HW_I2C3_SCL (pin_A8)
Expand Down

0 comments on commit 0f0006f

Please sign in to comment.