mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
Merge branch 'bugfix/fixed_c6_crash_c2_crash_issue_v5.3' into 'release/v5.3'
Bugfix/fixed c6 crash c2 crash issue (v5.3) See merge request espressif/esp-idf!33599
This commit is contained in:
@ -872,7 +872,11 @@ if(CONFIG_BT_ENABLED)
|
|||||||
"${CMAKE_CURRENT_LIST_DIR}/controller/lib_esp32c3_family/esp32s3")
|
"${CMAKE_CURRENT_LIST_DIR}/controller/lib_esp32c3_family/esp32s3")
|
||||||
target_link_libraries(${COMPONENT_LIB} PUBLIC btdm_app)
|
target_link_libraries(${COMPONENT_LIB} PUBLIC btdm_app)
|
||||||
elseif(CONFIG_BT_CONTROLLER_ENABLED)
|
elseif(CONFIG_BT_CONTROLLER_ENABLED)
|
||||||
add_prebuilt_library(libble_app "controller/lib_${target}/${target}-bt-lib/libble_app.a")
|
if(CONFIG_IDF_TARGET_ESP32C6)
|
||||||
|
add_prebuilt_library(libble_app "controller/lib_${target}/${target}-bt-lib/esp32c6/libble_app.a")
|
||||||
|
else()
|
||||||
|
add_prebuilt_library(libble_app "controller/lib_${target}/${target}-bt-lib/libble_app.a")
|
||||||
|
endif()
|
||||||
target_link_libraries(${COMPONENT_LIB} PRIVATE libble_app)
|
target_link_libraries(${COMPONENT_LIB} PRIVATE libble_app)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
Submodule components/bt/controller/lib_esp32c2/esp32c2-bt-lib updated: e652624750...e5c7ef0bf7
Submodule components/bt/controller/lib_esp32c6/esp32c6-bt-lib updated: f95513f22b...3f15aa1d60
Submodule components/bt/controller/lib_esp32h2/esp32h2-bt-lib updated: 58a293a2b4...50f567fff5
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user