mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/add_max_procs_config' into 'master'
Nimble: Configurable option to modify max gatt procedures allowed for GATT client See merge request espressif/esp-idf!19197
This commit is contained in:
commit
7ed3157351
@ -312,6 +312,13 @@ menu "Memory Settings"
|
|||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
config BT_NIMBLE_GATT_MAX_PROCS
|
||||||
|
int "Maximum number of GATT client procedures"
|
||||||
|
depends on BT_NIMBLE_ENABLED
|
||||||
|
default 4
|
||||||
|
help
|
||||||
|
Maximum number of GATT client procedures that can be executed.
|
||||||
|
|
||||||
config BT_NIMBLE_HS_FLOW_CTRL
|
config BT_NIMBLE_HS_FLOW_CTRL
|
||||||
bool "Enable Host Flow control"
|
bool "Enable Host Flow control"
|
||||||
depends on BT_NIMBLE_ENABLED
|
depends on BT_NIMBLE_ENABLED
|
||||||
|
@ -540,7 +540,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef MYNEWT_VAL_BLE_GATT_MAX_PROCS
|
#ifndef MYNEWT_VAL_BLE_GATT_MAX_PROCS
|
||||||
#define MYNEWT_VAL_BLE_GATT_MAX_PROCS (4)
|
#define MYNEWT_VAL_BLE_GATT_MAX_PROCS (CONFIG_BT_NIMBLE_GATT_MAX_PROCS)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef MYNEWT_VAL_BLE_GATT_NOTIFY
|
#ifndef MYNEWT_VAL_BLE_GATT_NOTIFY
|
||||||
|
Loading…
x
Reference in New Issue
Block a user