1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

* msba2_uart0: disable TX interrupt

This commit is contained in:
Kaspar Schleiser 2010-11-02 11:39:11 +01:00
parent 3b46b2d2af
commit b1bf8fb834

View File

@ -199,7 +199,8 @@ bl_uart_init(void)
/* irq */
install_irq(UART0_INT, UART0_IRQHandler, 6);
U0IER |= BIT0 | BIT1; // enable RX+TX irq
// U0IER |= BIT0 | BIT1; // enable RX+TX irq
U0IER |= BIT0; // enable only RX irq
return 1;
}