[AVR] Fix build error (no USART peripheral assigned

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15925 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Theodore Ateba 2022-12-26 22:12:55 +00:00
parent fa854a079b
commit 2ec3d1629d
1 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@
/*
* SERIAL driver system settings.
*/
#define AVR_SERIAL_USE_USART1 TRUE /* USARTC0. */
#define AVR_SERIAL_USE_USART1 FALSE /* USARTC0. */
#define AVR_SERIAL_USE_USART2 FALSE /* USARTC1. */
#define AVR_SERIAL_USE_USART3 FALSE /* USARTD0. */
#define AVR_SERIAL_USE_USART4 FALSE /* USARTD1. */
@ -117,7 +117,7 @@
/*
* UART driver system settings.
*/
#define AVR_UART_USE_USART1 FALSE /* USARTC0. */
#define AVR_UART_USE_USART1 TRUE /* USARTC0. */
#define AVR_UART_USE_USART2 FALSE /* USARTC1. */
#define AVR_UART_USE_USART3 FALSE /* USARTD0. */
#define AVR_UART_USE_USART4 FALSE /* USARTD1. */