* This function is used to display a string on console, normally, it's * invoked by rt_kprintf * * @param str the displayed string * * Modified: * caoxl 2009-10-14 * the name is change to rt_hw_console_output in the v0.3.0 * */
| 321 | * |
| 322 | */ |
| 323 | void rt_hw_console_output(const char* str) |
| 324 | { |
| 325 | while (*str) |
| 326 | { |
| 327 | rt_console_putc (*str++); |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | /*@}*/ |
nothing calls this directly
no test coverage detected