Skip to content

Commit c62555d

Browse files
committed
Merge branch 'bugfix/fixed_c6_crash_c2_crash_issue' into 'master'
Bugfix/fixed c6 crash c2 crash issue Closes BLERP-1024, BLERP-1009, BLERP-1010, IDFCI-2365, and IDFCI-2338 See merge request espressif/esp-idf!33575
2 parents bff2f9b + 4d2c44f commit c62555d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

components/bt/porting/transport/driver/uart/hci_driver_uart.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ hci_driver_uart_deinit(void)
154154

155155
ESP_ERROR_CHECK(uart_driver_delete(s_hci_driver_uart_env.hci_uart_params->hci_uart_port));
156156

157-
if (!s_hci_driver_uart_env.tx_sem) {
157+
if (s_hci_driver_uart_env.tx_sem) {
158158
vSemaphoreDelete(s_hci_driver_uart_env.tx_sem);
159159
}
160160

0 commit comments

Comments
 (0)