forked from Imagelibrary/rtems
2009-06-02 Joel Sherrill <joel.sherrill@OARcorp.com>
* at91rm9200/dbgu/dbgu.c: Needed carriage return on newline.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2009-06-02 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
|
* at91rm9200/dbgu/dbgu.c: Needed carriage return on newline.
|
||||||
|
|
||||||
2009-05-27 Fernando Nicodemos <fgnicodemos@terra.com.br>
|
2009-05-27 Fernando Nicodemos <fgnicodemos@terra.com.br>
|
||||||
|
|
||||||
* at91rm9200/clock/clock.c: Add support for nanoseconds since last
|
* at91rm9200/clock/clock.c: Add support for nanoseconds since last
|
||||||
|
|||||||
@@ -214,6 +214,8 @@ int dbgu_poll_read(int minor)
|
|||||||
*/
|
*/
|
||||||
static void _BSP_put_char( char c ) {
|
static void _BSP_put_char( char c ) {
|
||||||
dbgu_write_polled(0, c);
|
dbgu_write_polled(0, c);
|
||||||
|
if ( c == '\n' )
|
||||||
|
dbgu_write_polled(0, '\r');
|
||||||
}
|
}
|
||||||
|
|
||||||
BSP_output_char_function_type BSP_output_char = _BSP_put_char;
|
BSP_output_char_function_type BSP_output_char = _BSP_put_char;
|
||||||
|
|||||||
Reference in New Issue
Block a user