Lydia - Printhead
debug_utils.cpp
Go to the documentation of this file.
1 #include "debug_utils.h"
2 #include <ArduinoLog.h>
3 
4 #ifdef HAS_DEBUG_MEMORY
5 #include <MemoryFree.h>
6 void printMemory()
7 {
8  Log.verboseln("Free memory: %d", freeMemory());
9 }
10 #else
11 void printMemory() {}
12 #endif
printMemory
void printMemory()
Definition: debug_utils.cpp:6
debug_utils.h