Fix AVR parity setup
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3703 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
6238656d33
commit
c1a208af8b
@ -199,7 +199,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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user