From 4c36473ff543f07db8b4814752a33f2a7d602bf7 Mon Sep 17 00:00:00 2001 From: Mariano Alvira Date: Sat, 9 Jul 2011 17:01:31 -0400 Subject: [PATCH] don't set the rx level --- src/default_lowlevel.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/default_lowlevel.c b/src/default_lowlevel.c index ca87ec7c4..13657ae20 100644 --- a/src/default_lowlevel.c +++ b/src/default_lowlevel.c @@ -74,7 +74,6 @@ void uart1_init(volatile uint16_t inc, volatile uint16_t mod, volatile uint8_t s /* interrupt when there are this number or more bytes free in the TX buffer*/ UART1->TXCON = 16; - UART1->RXCON = 16; u1_head = 0; u1_tail = 0; @@ -105,7 +104,6 @@ void uart2_init(volatile uint16_t inc, volatile uint16_t mod, volatile uint8_t s /* interrupt when there are this number or more bytes free in the TX buffer*/ UART2->TXCON = 16; - UART2->RXCON = 16; u2_head = 0; u2_tail = 0;