2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>

* at91rm9200/dbgu/dbgu.c: Use standardized bsp_cleanup() which can
	optionally print a message, poll for user to press key, and call
	bsp_reset(). Using this eliminates the various bsp_cleanup()
	implementations which had their own implementation and variety of
	string constants. This driver had to support the standard poll
	key input method.
This commit is contained in:
Joel Sherrill
2008-09-22 21:54:25 +00:00
parent 72798eef80
commit 9b623eee16
2 changed files with 15 additions and 1 deletions

View File

@@ -1,3 +1,12 @@
2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* at91rm9200/dbgu/dbgu.c: Use standardized bsp_cleanup() which can
optionally print a message, poll for user to press key, and call
bsp_reset(). Using this eliminates the various bsp_cleanup()
implementations which had their own implementation and variety of
string constants. This driver had to support the standard poll
key input method.
2008-09-05 Ralf Corsépius <ralf.corsepius@rtems.org>
* at91rm9200/timer/timer.c, lpc22xx/timer/timer.c,

View File

@@ -179,7 +179,7 @@ static void dbgu_init(int minor)
dbgu->cr = (DBGU_CR_TXEN | DBGU_CR_RXEN);
}
/* I'm not sure this is needed for the shared console driver. */
/* This is used for getchark support */
static void dbgu_write_polled(int minor, char c)
{
dbgu_write(minor, &c, 1);
@@ -218,4 +218,9 @@ static void _BSP_put_char( char c ) {
BSP_output_char_function_type BSP_output_char = _BSP_put_char;
int _BSP_poll_char()
{
return dbgu_poll_read(0);
}
BSP_polling_getchar_function_type BSP_poll_char = _BSP_poll_char;