mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
component/bt: Allow configuration of default SCO_DATA_PATH in bluetooth controller
This commit is contained in:
@ -6,6 +6,29 @@ config BT_ENABLED
|
|||||||
help
|
help
|
||||||
Select this option to enable Bluetooth and show the submenu with Bluetooth configuration choices.
|
Select this option to enable Bluetooth and show the submenu with Bluetooth configuration choices.
|
||||||
|
|
||||||
|
choice BTDM_CONTROLLER_BR_EDR_SCO_DATA_PATH
|
||||||
|
prompt "BR/EDR Sync(SCO/eSCO) default data path"
|
||||||
|
depends on BT_ENABLED
|
||||||
|
default BTDM_CONTROLLER_BR_EDR_SCO_DATA_PATH_PCM
|
||||||
|
help
|
||||||
|
SCO data path, i.e. HCI or PCM.
|
||||||
|
SCO data can be sent/received through HCI synchronous packets, or the data
|
||||||
|
can be routed to on-chip PCM module on ESP32. PCM input/output signals can
|
||||||
|
be "matrixed" to GPIOs. The default data path can also be set using API
|
||||||
|
"esp_bredr_sco_datapath_set"
|
||||||
|
|
||||||
|
config BTDM_CONTROLLER_BR_EDR_SCO_DATA_PATH_HCI
|
||||||
|
bool "HCI"
|
||||||
|
config BTDM_CONTROLLER_BR_EDR_SCO_DATA_PATH_PCM
|
||||||
|
bool "PCM"
|
||||||
|
endchoice
|
||||||
|
|
||||||
|
config BTDM_CONTROLLER_BR_EDR_SCO_DATA_PATH_EFF
|
||||||
|
int
|
||||||
|
default 0 if BTDM_CONTROLLER_BR_EDR_SCO_DATA_PATH_HCI
|
||||||
|
default 1 if BTDM_CONTROLLER_BR_EDR_SCO_DATA_PATH_PCM
|
||||||
|
default 0
|
||||||
|
|
||||||
choice BTDM_CONTROLLER_PINNED_TO_CORE_CHOICE
|
choice BTDM_CONTROLLER_PINNED_TO_CORE_CHOICE
|
||||||
prompt "The cpu core which bluetooth controller run"
|
prompt "The cpu core which bluetooth controller run"
|
||||||
depends on BT_ENABLED && !FREERTOS_UNICORE
|
depends on BT_ENABLED && !FREERTOS_UNICORE
|
||||||
@ -109,7 +132,6 @@ config BTDM_LPCLK_SEL_EXT_32K_XTAL
|
|||||||
bool "External 32kHz crystal"
|
bool "External 32kHz crystal"
|
||||||
depends on ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL
|
depends on ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
menuconfig BLUEDROID_ENABLED
|
menuconfig BLUEDROID_ENABLED
|
||||||
@ -201,15 +223,15 @@ endchoice
|
|||||||
choice HFP_AUDIO_DATA_PATH
|
choice HFP_AUDIO_DATA_PATH
|
||||||
prompt "audio(SCO) data path"
|
prompt "audio(SCO) data path"
|
||||||
depends on HFP_ENABLE
|
depends on HFP_ENABLE
|
||||||
|
help
|
||||||
|
SCO data path, i.e. HCI or PCM. This option is set using API
|
||||||
|
"esp_bredr_sco_datapath_set" in Bluetooth host. Default SCO data
|
||||||
|
path can also be set in Bluetooth Controller.
|
||||||
|
|
||||||
config HFP_AUDIO_DATA_PATH_PCM
|
config HFP_AUDIO_DATA_PATH_PCM
|
||||||
bool "PCM"
|
bool "PCM"
|
||||||
help
|
|
||||||
This enables the Serial Port Profile
|
|
||||||
config HFP_AUDIO_DATA_PATH_HCI
|
config HFP_AUDIO_DATA_PATH_HCI
|
||||||
bool "HCI"
|
bool "HCI"
|
||||||
help
|
|
||||||
This enables the Serial Port Profile
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
config GATTS_ENABLE
|
config GATTS_ENABLE
|
||||||
@ -1022,8 +1044,8 @@ config BLE_HOST_QUEUE_CONGESTION_CHECK
|
|||||||
depends on BLUEDROID_ENABLED
|
depends on BLUEDROID_ENABLED
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
When scanning and scan duplicate is not enabled, if there are a lot of adv packets around or application layer
|
When scanning and scan duplicate is not enabled, if there are a lot of adv packets around or application layer
|
||||||
handling adv packets is slow, it will cause the controller memory to run out. if enabled, adv packets will be
|
handling adv packets is slow, it will cause the controller memory to run out. if enabled, adv packets will be
|
||||||
lost when host queue is congested.
|
lost when host queue is congested.
|
||||||
|
|
||||||
config BLE_SCAN_DUPLICATE
|
config BLE_SCAN_DUPLICATE
|
||||||
|
@ -40,6 +40,7 @@ typedef struct {
|
|||||||
uint16_t mesh_adv_size; /*!< Mesh adv size for scan duplicate */
|
uint16_t mesh_adv_size; /*!< Mesh adv size for scan duplicate */
|
||||||
uint16_t send_adv_reserved_size; /*!< Controller minimum memory value */
|
uint16_t send_adv_reserved_size; /*!< Controller minimum memory value */
|
||||||
uint32_t controller_debug_flag; /*!< Controller debug log flag */
|
uint32_t controller_debug_flag; /*!< Controller debug log flag */
|
||||||
|
uint8_t bt_sco_datapath; /*!< SCO data path, i.e. HCI or PCM module */
|
||||||
} esp_bt_controller_config_t;
|
} esp_bt_controller_config_t;
|
||||||
|
|
||||||
#ifdef CONFIG_BT_ENABLED
|
#ifdef CONFIG_BT_ENABLED
|
||||||
@ -97,6 +98,7 @@ the adv packet will be discarded until the memory is restored. */
|
|||||||
.mesh_adv_size = MESH_DUPLICATE_SCAN_CACHE_SIZE, \
|
.mesh_adv_size = MESH_DUPLICATE_SCAN_CACHE_SIZE, \
|
||||||
.send_adv_reserved_size = SCAN_SEND_ADV_RESERVED_SIZE, \
|
.send_adv_reserved_size = SCAN_SEND_ADV_RESERVED_SIZE, \
|
||||||
.controller_debug_flag = CONTROLLER_ADV_LOST_DEBUG_BIT, \
|
.controller_debug_flag = CONTROLLER_ADV_LOST_DEBUG_BIT, \
|
||||||
|
.bt_sco_datapath = CONFIG_BTDM_CONTROLLER_BR_EDR_SCO_DATA_PATH_EFF, \
|
||||||
};
|
};
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
Submodule components/bt/lib updated: caa305942b...8f15bbf191
@ -1591,6 +1591,7 @@ PROVIDE ( ets_update_cpu_frequency_rom = 0x40008550 ); /* Updates g_ticks_per_u
|
|||||||
PROVIDE ( hci_tl_env = 0x3ffb8154 );
|
PROVIDE ( hci_tl_env = 0x3ffb8154 );
|
||||||
PROVIDE ( ld_acl_env = 0x3ffb8258 );
|
PROVIDE ( ld_acl_env = 0x3ffb8258 );
|
||||||
PROVIDE ( ea_env = 0x3ffb80ec );
|
PROVIDE ( ea_env = 0x3ffb80ec );
|
||||||
|
PROVIDE ( lc_sco_env = 0x3ffb81fc );
|
||||||
PROVIDE ( lc_sco_data_path_config = 0x3ffb81f8 );
|
PROVIDE ( lc_sco_data_path_config = 0x3ffb81f8 );
|
||||||
PROVIDE ( ld_active_ch_map = 0x3ffb8334 );
|
PROVIDE ( ld_active_ch_map = 0x3ffb8334 );
|
||||||
PROVIDE ( ld_bcst_acl_env = 0x3ffb8274 );
|
PROVIDE ( ld_bcst_acl_env = 0x3ffb8274 );
|
||||||
|
Reference in New Issue
Block a user