Nimble: Configurable option to modify max gatt procedures allowed for GATT

client
This commit is contained in:
Rahul Tank
2022-07-22 17:26:39 +05:30
committed by BOT
parent 1ed5e5130e
commit 2be66a6151
2 changed files with 8 additions and 1 deletions

View File

@@ -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

View File

@@ -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