summaryrefslogtreecommitdiff
path: root/nuttx/arch/avr/src/atmega/atmega_lowconsole.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/avr/src/atmega/atmega_lowconsole.c')
-rw-r--r--nuttx/arch/avr/src/atmega/atmega_lowconsole.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/avr/src/atmega/atmega_lowconsole.c b/nuttx/arch/avr/src/atmega/atmega_lowconsole.c
index bd49a0491..c1fda6244 100644
--- a/nuttx/arch/avr/src/atmega/atmega_lowconsole.c
+++ b/nuttx/arch/avr/src/atmega/atmega_lowconsole.c
@@ -280,7 +280,7 @@ void usart0_configure(void)
#if CONFIG_USART0_PARITY == 1
ucsr0c |= ((1 << UPM01) | (1 << UPM00)); /* Odd parity */
-#else
+#elif CONFIG_USART0_PARITY == 2
ucsr0c |= (1 << UPM00); /* Even parity */
#endif
@@ -357,7 +357,7 @@ void usart1_configure(void)
#if CONFIG_USART1_PARITY == 1
ucsr1c |= ((1 << UPM11) | (1 << UPM10)); /* Odd parity */
-#else
+#elif CONFIG_USART1_PARITY == 2
ucsr1c |= (1 << UPM11); /* Even parity */
#endif