Debug
Contents
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 |