2010-08-20 Joel Sherrill <joel.sherrill@oarcorp.com>

PR 1686/bsps
	* console/console.c: Add BSP_poll_char.
This commit is contained in:
Joel Sherrill
2010-08-20 16:03:51 +00:00
parent 6c22fa12cb
commit 4a79a51683
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2010-08-20 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1686/bsps
* console/console.c: Add BSP_poll_char.
2010-08-15 Joel Sherrill <joel.sherrilL@OARcorp.com>
* console/polled_io.c: Add BSP_poll_char.

View File

@@ -268,6 +268,6 @@ debug_putc_onlcr(const char c)
for (i=0;i<0x0fff;i++);
}
BSP_output_char_function_type BSP_output_char = debug_putc_onlcr;
/* const char arg to be compatible with BSP_output_char decl. */
BSP_output_char_function_type BSP_output_char = debug_putc_onlcr;
BSP_polling_getchar_function_type BSP_poll_char = NULL;