This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit 41c1b153e34d623719402a18bbea60abac3784ee
Author: Tiago Medicci Serrano <tiago.medi...@espressif.com>
AuthorDate: Tue Oct 10 08:23:38 2023 -0300

    esp32/bluetooth: Select option to pin the HCI TX thread to CPU core
    
    When ESP32's BLE is enabled, select the option to pin the HCI TX
    thread to a specific core. This is necessary to avoid problems
    with the BLE task that runs pinned to the PRO CPU (core 0) while
    running with SMP enabled.
---
 arch/xtensa/src/esp32/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/xtensa/src/esp32/Kconfig b/arch/xtensa/src/esp32/Kconfig
index 4a86dc4b4c..24c6605ee5 100644
--- a/arch/xtensa/src/esp32/Kconfig
+++ b/arch/xtensa/src/esp32/Kconfig
@@ -720,6 +720,7 @@ config ESP32_BLE
        bool "BLE"
        default n
        select ESP32_WIRELESS
+       select BLUETOOTH_TXCMD_PINNED_TO_CORE if SMP
        ---help---
                Enable BLE support
 

Reply via email to