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

Function rt_console_putc

bsp/x86/drivers/console.c:126–130  ·  view source on GitHub ↗

* This function will write a character to serial an cga * * @param c the char to write */

Source from the content-addressed store, hash-verified

124 * @param c the char to write
125 */
126void rt_console_putc(int c)
127{
128 rt_cga_putc(c);
129 rt_serial_putc(c);
130}
131
132/* RT-Thread Device Interface */
133#define CONSOLE_RX_BUFFER_SIZE 64

Callers 3

rt_cga_putcFunction · 0.85
rt_console_writeFunction · 0.85
rt_hw_console_outputFunction · 0.85

Calls 2

rt_cga_putcFunction · 0.85
rt_serial_putcFunction · 0.70

Tested by

no test coverage detected