| 43 | } |
| 44 | |
| 45 | static size_t getSpiFree() { |
| 46 | #ifdef ESP_PLATFORM |
| 47 | return heap_caps_get_free_size(MALLOC_CAP_SPIRAM); |
| 48 | #else |
| 49 | return 4096 * 1024; |
| 50 | #endif |
| 51 | } |
| 52 | |
| 53 | static size_t getSpiTotal() { |
| 54 | #ifdef ESP_PLATFORM |
no outgoing calls
no test coverage detected