MCPcopy Create free account
hub / github.com/FastLED/FastLED / print

Method print

src/fl/test/fltest.cpp.hpp:503–509  ·  view source on GitHub ↗

Helper function to print using either custom print func or fl::printf

Source from the content-addressed store, hash-verified

501
502// Helper function to print using either custom print func or fl::printf
503void SerialReporter::print(const char* msg) FL_NOEXCEPT {
504 if (mPrintFunc) {
505 mPrintFunc(msg);
506 } else {
507 fl::printf("%s", msg);
508 }
509}
510
511void SerialReporter::testRunStart() FL_NOEXCEPT {
512 print("\n");

Callers 15

test1absFunction · 0.45
testmul8Function · 0.45
testscale8Function · 0.45
testqadd8Function · 0.45
testnscale8x3Function · 0.45
mainFunction · 0.45
mainFunction · 0.45
console_log_handlerFunction · 0.45
page_error_handlerFunction · 0.45

Calls 1

printfFunction · 0.85

Tested by

no test coverage detected