MCPcopy Create free account
hub / github.com/RobTillaart/Arduino / debug

Method debug

libraries/XMLWriter/XMLWriter.cpp:59–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57
58
59void XMLWriter::debug()
60{
61 print(F("<!-- "));
62 print('\n');
63 print(F(" VERSION: "));
64 println(XMLWRITER_VERSION);
65 print(F("MAXLEVEL: "));
66 println(XMLWRITER_MAXLEVEL);
67 print(F(" TAGSIZE: "));
68 println(XMLWRITER_MAXTAGSIZE);
69 print(F(" CONFIG: "));
70 println(_config, HEX);
71 print(F(" INDENT: "));
72 println(_indent);
73 print(F(" BUFSIZE: "));
74 println(_bufferSize);
75 print(F(" -->\n"));
76}
77
78
79void XMLWriter::comment(const char* text, const bool multiLine)

Callers 1

unittestFunction · 0.80

Calls

no outgoing calls

Tested by 1

unittestFunction · 0.64