forked from len0rd/rockbox
Fix a small typo
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16353 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
bc4621499a
commit
1a39029c68
1 changed files with 1 additions and 1 deletions
|
|
@ -174,7 +174,7 @@ void serial_setup (void)
|
||||||
void serial_setup(void)
|
void serial_setup(void)
|
||||||
{
|
{
|
||||||
#ifdef UART_INT /*enable UART Interrupts */
|
#ifdef UART_INT /*enable UART Interrupts */
|
||||||
UCR1_1 |= (EUARTUCR1_TRDYEN | EUaRTUCR1_RRDYEN | EUARTUCR1_TXMPTYEN);
|
UCR1_1 |= (EUARTUCR1_TRDYEN | EUARTUCR1_RRDYEN | EUARTUCR1_TXMPTYEN);
|
||||||
UCR4_1 |= (EUARTUCR4_TCEN);
|
UCR4_1 |= (EUARTUCR4_TCEN);
|
||||||
#else /*disable UART Interrupts*/
|
#else /*disable UART Interrupts*/
|
||||||
UCR1_1 &= ~(EUARTUCR1_TRDYEN | EUARTUCR1_RRDYEN | EUARTUCR1_TXMPTYEN);
|
UCR1_1 &= ~(EUARTUCR1_TRDYEN | EUARTUCR1_RRDYEN | EUARTUCR1_TXMPTYEN);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue