dominsch

Results 2 comments of dominsch

Can you provide a use case where you would need to call end() before begin()? If used correctly it doesn't reset the device if that is your concern.

This is the `end()` function: ```c void HCIVirtualTransportClass::end() { vStreamBufferDelete(rec_buffer); vStreamBufferDelete(send_buffer); esp_bt_controller_disable(); esp_bt_controller_deinit(); vTaskDelete(bleHandle); } ``` If you call it before begin it is trying to delete things that haven't...