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:
patacongo 2011-06-15 16:09:23 +00:00
parent 6238656d33
commit c1a208af8b
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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