1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 06:12:43 +01:00

* msba2_uart0: disable TX interrupt

This commit is contained in:
Kaspar Schleiser 2010-11-02 11:39:11 +01:00
parent a208ef488e
commit 5787828f80

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;
}