Debugging Memory
Today debugging RAM usage isn’t great and needs much love. The Leaf only has 512KB of RAM to play with and most of that is used by WiFi and Bluetooth stacks. Some writeup https://www.scottyob.com/post/2025-02-27-esp32-memory/
Enabling Periodic Heap Dump
Dumping memory state over Serial is noisy. To turn on the 1 second dump, you can uncomment out the line in platformio.ini
; -D MEMORY_PROFILING # Enables memory profiling troubleshooting features
This will yield:
=== Memory Stats ===Total Heap: 275 KBFree Heap: 53 KBUsed Heap: 222 KBLargest Free Block: 30 KBMinimum Free Heap Ever: 31 KBMain Task Stack High Water Mark: 12 KBFree PSRAM: 0 bytesLargest Free PSRAM Block: 0 bytes====================