Search found 1 match
- Mon Feb 20, 2023 5:26 pm
- Forum: ESP-IDF
- Topic: mutexes in noinit-externa RAM
- Replies: 2
- Views: 1237
mutexes in noinit-externa RAM
Dear all I am trying to use the esp_ring component to store logs beyond SW-restarts or crashes (no power-resets). defined are; EXT_RAM_NOINIT_ATTR static StaticRingbuffer_t staticRingbuffer = {0}; EXT_RAM_NOINIT_ATTR static uint8_t buffer[RING_BUFFER_POOL_SIZE]; // 1 MB The issue is when staticRingb...