MCPcopy Create free account
hub / github.com/HASwitchPlate/openHASP / print

Method print

lib/ArduinoLog/ArduinoLog.cpp:110–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110void Logging::print(Print * logOutput, const __FlashStringHelper * format, va_list args)
111{
112 #ifndef DISABLE_LOGGING
113 PGM_P p = reinterpret_cast<PGM_P>(format);
114 char c = pgm_read_byte(p++);
115 for(; c != 0; c = pgm_read_byte(p++)) {
116 if(c == '%') {
117 c = pgm_read_byte(p++);
118 printFormat(logOutput, c, (va_list *)&args);
119 } else {
120 logOutput->print(c);
121 }
122 }
123 #endif
124}
125
126void Logging::print(Print * logOutput, const char * format, va_list args)
127{

Callers 15

printFormatMethod · 0.45
printhexFunction · 0.45
reportRegisterFunction · 0.45
GxReportRegistersFunction · 0.45
GxTestReadGRAMFunction · 0.45
setWindowAddressMethod · 0.45
printhexFunction · 0.45
reportRegisterFunction · 0.45
GxReportRegistersFunction · 0.45
GxTestReadGRAMFunction · 0.45
printhexFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected