MCPcopy Create free account
hub / github.com/kiibohd/controller / Output_putstr

Function Output_putstr

Bootloader/debug.c:190–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188
189
190int Output_putstr( char* str )
191{
192 uint32_t count = 0;
193
194 // Count characters until NULL character, then send the amount counted
195 while ( str[count] != '\0' )
196 count++;
197
198 return uart_serial_write( str, count );
199}
200
201
202uint16_t lenStr( char* in )

Callers 3

printHex_opFunction · 0.70
printstrsFunction · 0.50
_printFunction · 0.50

Calls 1

uart_serial_writeFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…