summaryrefslogtreecommitdiffstatshomepage
path: root/tests/esp32/esp32_idf_heap_info.py.exp
Commit message (Collapse)AuthorAge
* tests: Move port-specific test directories into tests/ports/ directory.Damien George2024-01-22
| | | | | | To keep them all together, mirroring the top-level directory structure. Signed-off-by: Damien George <damien@micropython.org>
* esp32/modesp32: Add idf_heap_info(capabilities) to esp32 module.Thorsten von Eicken2020-04-23
This commit adds an idf_heap_info(capabilities) method to the esp32 module which returns info about the ESP-IDF heaps. It's useful to get a bit of a picture of what's going on when code fails because ESP-IDF can't allocate memory anymore. Includes documentation and a test.