diff --git a/firmware/drivers/serial.c b/firmware/drivers/serial.c index 5ea807abb4..8fe051dd9e 100644 --- a/firmware/drivers/serial.c +++ b/firmware/drivers/serial.c @@ -42,7 +42,10 @@ static void screen_dump(void); #endif void serial_setup (void) -{ +{ + /* Set PB10 function to serial Rx */ + PBCR1 = (PBCR1 & 0xffcf) | 0x0020; + SMR1 = 0x00; SCR1 = 0; BRR1 = (FREQ/(32*9600))-1;