You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My free RAM after Bluetooth initialization is complete and advertising is under way, using esp_get_free_heap_size() indicates there are 102672 bytes free...
At a bit of a loss as to what's happening. Any ideas on diagnostics would be appreciated.
The text was updated successfully, but these errors were encountered:
I suspect you are doing too much in your callbacks. You can either increase the nimble host task stack size or move your code out of the callbacks and just set a flag or trigger a task (preferred option).
I suspect you are doing too much in your callbacks. You can either increase the nimble host task stack size or move your code out of the callbacks and just set a flag or trigger a task (preferred option).
I added the following platform.io build flags and it seemed to fix my issue, but I will report back if it happens again:
I'm randomly getting this shortly after writing a characteristic value:
My free RAM after Bluetooth initialization is complete and advertising is under way, using
esp_get_free_heap_size()
indicates there are 102672 bytes free...At a bit of a loss as to what's happening. Any ideas on diagnostics would be appreciated.
The text was updated successfully, but these errors were encountered: