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
Describe the bug
Error ESP_ERR_ESPNOW_NO_MEM While sending too frequently.
To Reproduce
Run any of the examples hello-c or hello-cxx with batch increased to 50.
(Change the Source and Sync mac addresses accordingly.)
Expected behavior
ESP_ERR_ESPNOW_NO_MEM will never be encountered, no matter how frequently transmit is called.
Additional Information
dhyara::link::transmit does not send immediately, instead in enqueues the frame which are to be dequeued by dhyara::link::_esp_send_cb.
The assumption is that if one send operation is performed only after the previous send operation completes (the send callback is called) then the error ESP_ERR_ESPNOW_NO_MEM won't be thrown.
Describe the bug
Error ESP_ERR_ESPNOW_NO_MEM While sending too frequently.
To Reproduce
Run any of the examples
hello-c
orhello-cxx
withbatch
increased to 50.(Change the Source and Sync mac addresses accordingly.)
Expected behavior
ESP_ERR_ESPNOW_NO_MEM will never be encountered, no matter how frequently transmit is called.
Additional Information
dhyara::link::transmit
does not send immediately, instead in enqueues the frame which are to be dequeued bydhyara::link::_esp_send_cb
.The assumption is that if one send operation is performed only after the previous send operation completes (the send callback is called) then the error
ESP_ERR_ESPNOW_NO_MEM
won't be thrown.See:
dhyara::link
The text was updated successfully, but these errors were encountered: