MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / print

Function print

FluxEngine.cydsn/main.c:127–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125}
126
127static void print(const char* msg, ...)
128{
129 char buffer[64];
130
131 va_list ap;
132 va_start(ap, msg);
133 vsnprintf(buffer, sizeof(buffer), msg, ap);
134 va_end(ap);
135
136 UART_PutString(buffer);
137 UART_PutCRLF();
138}
139
140static void set_drive_flags(struct set_drive_frame* flags)
141{

Callers 15

build.pyFile · 0.85
decodeSectorRecordMethod · 0.85
send_replyFunction · 0.85
seek_toFunction · 0.85
cmd_bulk_read_testFunction · 0.85
cmd_readFunction · 0.85
cmd_writeFunction · 0.85
cmd_eraseFunction · 0.85
handle_commandFunction · 0.85
detect_drivesFunction · 0.85
mainFunction · 0.85
sendrecvMethod · 0.85

Calls

no outgoing calls

Tested by 1

mainTestDevicesFunction · 0.68