2010-08-15 Joel Sherrill <joel.sherrilL@OARcorp.com>

* src/uart-output-char.c: Add BSP_poll_char.
This commit is contained in:
Joel Sherrill
2010-08-15 23:33:36 +00:00
parent 149248b459
commit 05a82e4e4e
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2010-08-15 Joel Sherrill <joel.sherrilL@OARcorp.com>
* src/uart-output-char.c: Add BSP_poll_char.
2010-07-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
* umon/tfsDriver.c: Update for LibIO API changes.

View File

@@ -41,4 +41,5 @@ static void output(char c)
uart_output(c);
}
BSP_output_char_function_type BSP_output_char = output;
BSP_output_char_function_type BSP_output_char = output;
BSP_polling_getchar_function_type BSP_poll_char = NULL;