MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / rt_hw_console_output

Function rt_hw_console_output

bsp/x86/drivers/console.c:323–329  ·  view source on GitHub ↗

* 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 * */

Source from the content-addressed store, hash-verified

321 *
322 */
323void rt_hw_console_output(const char* str)
324{
325 while (*str)
326 {
327 rt_console_putc (*str++);
328 }
329}
330
331/*@}*/

Callers

nothing calls this directly

Calls 1

rt_console_putcFunction · 0.85

Tested by

no test coverage detected