--- c/src/lib/libbsp/m68k/genmcf548x/console/console.c | 23 ---------------------- 1 file changed, 23 deletions(-)
diff --git a/c/src/lib/libbsp/m68k/genmcf548x/console/console.c b/c/src/lib/libbsp/m68k/genmcf548x/console/console.c index c5aa359..e85b934 100644 --- a/c/src/lib/libbsp/m68k/genmcf548x/console/console.c +++ b/c/src/lib/libbsp/m68k/genmcf548x/console/console.c @@ -832,26 +832,3 @@ rtems_device_driver console_control( { return( rtems_termios_ioctl (arg) ); } - - -int DEBUG_OUTCHAR(int c) -{ - if(c == '\n') - DEBUG_OUTCHAR('\r'); - _BSP_null_char(c); - return c; -} -void DEBUG_OUTSTR(const char *msg) -{ - while (*msg) - DEBUG_OUTCHAR(*msg++); -} -void DEBUG_OUTNUM(int i) -{ - int n; - static const char map[] = "0123456789ABCDEF"; - DEBUG_OUTCHAR(' '); - for (n = 28 ; n >= 0 ; n -= 4) - DEBUG_OUTCHAR(map[(i >> n) & 0xF]); -} - -- 1.9.3 _______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel