Debug

From IPLOG
Revision as of 08:30, 30 April 2020 by Z033 (talk | contribs) (Created page with "== Back to Libraries == == Debug library == === Console === ==== DEBUG_CONSOLE ==== Prints concatenation of all given strings to console in IDE...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Back to Libraries

Debug library

Console

DEBUG_CONSOLE

Prints concatenation of all given strings to console in IDE

in STR1 string string to print
in STR2 string string to print
in STR3 string string to print
in STR4 string string to print

File

DEBUG_FILE

Prints concatenation of all given strings to file

Be aware of use this block in release programs, filesize is not limited and can waste whole memory!

in FILE string path to debug file
in STR1 string string to print
in STR2 string string to print
in STR3 string string to print
in STR4 string string to print

Errors

ERR_TO_STRING

Converts error code to readable string with error number and explanation

in IN word error code
out string error readable interpretation