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
The above line calls unwrap(), which causes a panic if enqueue was called while the queue was full. The queue just overwrites the oldest item and returns that item as the Err. This should mean a packet is dropped, it shouldn't mean the whole program panics in an unrecoverable way.
The text was updated successfully, but these errors were encountered:
https://github.com/esp-rs/esp-wifi/blob/c446177984b82b5e1658d6b24318e7214460ded8/esp-wifi/src/ble/btdm.rs#L94
The above line calls
unwrap()
, which causes a panic ifenqueue
was called while the queue was full. The queue just overwrites the oldest item and returns that item as the Err. This should mean a packet is dropped, it shouldn't mean the whole program panics in an unrecoverable way.The text was updated successfully, but these errors were encountered: