Merge branch 'bugfix/fixed_c6_crash_c2_crash_issue_v5.0' into 'release/v5.0'

Bugfix/fixed c6 crash c2 crash issue (v5.0)

See merge request espressif/esp-idf!33596
This commit is contained in:
Island 2024-09-19 14:34:15 +08:00
commit 39878b39ce
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit e652624750341aca124e9f850e261b0c1ac63529 Subproject commit e5c7ef0bf701d02c2203e26081fdd348d45935e5

View File

@ -154,7 +154,7 @@ hci_driver_uart_deinit(void)
ESP_ERROR_CHECK(uart_driver_delete(s_hci_driver_uart_env.hci_uart_params->hci_uart_port)); ESP_ERROR_CHECK(uart_driver_delete(s_hci_driver_uart_env.hci_uart_params->hci_uart_port));
if (!s_hci_driver_uart_env.tx_sem) { if (s_hci_driver_uart_env.tx_sem) {
vSemaphoreDelete(s_hci_driver_uart_env.tx_sem); vSemaphoreDelete(s_hci_driver_uart_env.tx_sem);
} }