MCPcopy Create free account
hub / github.com/BruceDevices/firmware / padprintf

Function padprintf

src/core/display.cpp:325–334  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

323}
324
325void padprintf(int16_t padx, const char *format, ...) {
326 char buffer[64];
327 va_list args;
328 va_start(args, format);
329 vsnprintf(buffer, sizeof(buffer), format, args);
330 va_end(args);
331
332 tft.setCursor(padx * BORDER_PAD_X, tft.getCursorY());
333 tft.printf("%s", buffer);
334}
335void padprintf(const char *format, ...) {
336 char buffer[64];
337 va_list args;

Callers 10

display_bannerMethod · 0.85
dump_gps_dataMethod · 0.85
scanWiFiBLEMethod · 0.85
display_bannerMethod · 0.85
dump_gps_dataMethod · 0.85
add_coordMethod · 0.85
parse_pcap_handshakeFunction · 0.85
wifi_crack_handshakeFunction · 0.85
wifi_recover_menuFunction · 0.85
fileInfoFunction · 0.85

Calls 3

setCursorMethod · 0.45
getCursorYMethod · 0.45
printfMethod · 0.45

Tested by

no test coverage detected