Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UART driver refactor #11637

Merged
merged 8 commits into from
Jan 27, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Turn on USART1 for Proton-C board, rather than USART2
This matches up with A9/A10 as TX/RX on the pinout
  • Loading branch information
fauxpark committed Jan 20, 2021
commit edd0adf6f23ab9b959a061df89cb97f4c374163f
4 changes: 2 additions & 2 deletions platforms/chibios/QMK_PROTON_C/configs/mcuconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down