Search found 2 matches
- Tue Feb 27, 2024 7:38 pm
- Forum: ESP-IDF
- Topic: NimBLE msys runs out of free blocks on ESP32C6
- Replies: 1
- Views: 594
NimBLE msys runs out of free blocks on ESP32C6
Hello, I can't seem to figure out how to send packets over BLE with ble_gatts_notify_custom at full speed. When I try and use int ble_hs_mbuf_to_flat(const struct os_mbuf *om, void *flat, uint16_t max_len, uint16_t *out_copy_len); this function fails if the msys is full. But when it fails it seems l...
- Mon Nov 27, 2023 3:58 pm
- Forum: ESP-IDF
- Topic: How to stop FreeRTOS from getting in my way?
- Replies: 3
- Views: 2214
How to stop FreeRTOS from getting in my way?
Hello, I'm using ESP32-C6-DevkitC-1 and ESP-IDF and C++. Every time I write some piece of code and it takes some time to compute the FreeRTOS just complains in the Serial console output. The only solution to this problem I found if I put somewhere a 10 ms delay it will stop complaining. So I went ah...