diff options
author | Ryan <fauxpark@gmail.com> | 2021-01-27 17:42:49 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 17:42:49 +1100 |
commit | 30b46fad5764b54ab4d47e9c4024f8030e1bf1a7 (patch) | |
tree | 9a9aa60158edf5adea802e33ee2db2ba4164145a /platforms | |
parent | be897cbc2f9d542dfcc98c8e06aeb04179cc484c (diff) |
UART driver refactor (#11637)
Diffstat (limited to 'platforms')
-rw-r--r-- | platforms/chibios/QMK_PROTON_C/configs/mcuconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platforms/chibios/QMK_PROTON_C/configs/mcuconf.h b/platforms/chibios/QMK_PROTON_C/configs/mcuconf.h index ac2d9a1eed..4d7b586c08 100644 --- a/platforms/chibios/QMK_PROTON_C/configs/mcuconf.h +++ b/platforms/chibios/QMK_PROTON_C/configs/mcuconf.h @@ -212,8 +212,8 @@ /* * SERIAL driver system settings. */ -#define STM32_SERIAL_USE_USART1 FALSE -#define STM32_SERIAL_USE_USART2 TRUE +#define STM32_SERIAL_USE_USART1 TRUE +#define STM32_SERIAL_USE_USART2 FALSE #define STM32_SERIAL_USE_USART3 FALSE #define STM32_SERIAL_USE_UART4 FALSE #define STM32_SERIAL_USE_UART5 FALSE |