Changeset be50969 in rtems
- Timestamp:
- 04/12/19 12:37:05 (3 years ago)
- Branches:
- 5, master
- Children:
- b36c5209
- Parents:
- ef9d20f6
- git-author:
- Sebastian Huber <sebastian.huber@…> (04/12/19 12:37:05)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (04/12/19 12:38:06)
- Location:
- bsps/powerpc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
bsps/powerpc/include/bsp/consoleIo.h
ref9d20f6 rbe50969 30 30 extern int select_console(ioType t); 31 31 /* extern int printk(const char *, ...) __attribute__((format(printf, 1, 2))); */ 32 extern void debug_putc(const unsignedchar c);32 extern void debug_putc(const char c); 33 33 extern void debug_putc_onlcr(const char c); 34 34 extern int debug_getc(void); -
bsps/powerpc/motorola_powerpc/console/polled_io.c
ref9d20f6 rbe50969 50 50 51 51 #ifndef __BOOT__ 52 BSP_output_char_function_type BSP_output_char = debug_putc _onlcr;52 BSP_output_char_function_type BSP_output_char = debug_putc; 53 53 BSP_polling_getchar_function_type BSP_poll_char = NULL; 54 54 #endif … … 421 421 extern console_io* curIo; 422 422 423 void debug_putc(const u_char c)423 void debug_putc(const char c) 424 424 { 425 425 curIo->console_io_putc(c); … … 527 527 528 528 while ( ( c = *s++ ) != '\0' ) { 529 rtems_putc(c);529 debug_putc_onlcr(c); 530 530 } 531 531 }
Note: See TracChangeset
for help on using the changeset viewer.