浏览代码

snowball: Clear UART RX FIFO

Without usb-serial cable plugged at this stage, some
garbage is seen in UART RX FIFO, which blocks autoboot
progress. The fix makes sure to empty the RX FIFO,
before we wait for user input to interrupt autoboot.

Signed-off-by: Ramesh Chandrasekaran <ramesh.chandrasekaran@stericsson.com>
Ramesh Chandrasekaran 12 年之前
父节点
当前提交
1acc5559d9
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      board/st-ericsson/snowball/snowball.c

+ 4 - 0
board/st-ericsson/snowball/snowball.c

@@ -253,6 +253,10 @@ int board_late_init(void)
 	if ((raise_ab8500_gpio16() < 0))
 		printf("error: cant' raise GPIO16\n");
 
+	/* empty UART RX FIFO */
+	while (tstc())
+		(void) getc();
+
 	return 0;
 }