2009-09-28 Joel Sherrill <joel.sherrill@OARcorp.com>

* console/console.c: Add pointer to method used by getchark().
This commit is contained in:
Joel Sherrill
2009-09-28 12:05:59 +00:00
parent 15fef9307a
commit 9a393997d1
2 changed files with 7 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2009-09-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* console/console.c: Add pointer to method used by getchark().
2009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.

View File

@@ -790,3 +790,6 @@ void DEBUG_OUTNUM(int i)
for (n = 28 ; n >= 0 ; n -= 4)
DEBUG_OUTCHAR(map[(i >> n) & 0xF]);
}
BSP_polling_getchar_function_type BSP_poll_char = NULL;