Skip to content

Commit 11d53b6

Browse files
nimble/eatt: New syscfg options for EATT
Introduce BLE_EATT_AUTO_CONNECT syscfg option to allow manual EATT connection setup Introduce a configurable limit for maximum number of L2CAP channels per connection
1 parent 7cb544a commit 11d53b6

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

nimble/host/syscfg.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,10 +327,21 @@ syscfg.defs:
327327
- BLE_GATT_NOTIFY_MULTIPLE
328328
- BLE_L2CAP_ENHANCED_COC
329329
- 'BLE_L2CAP_COC_MAX_NUM >= BLE_EATT_CHAN_NUM'
330+
- 'BLE_EATT_CHAN_PER_CONN >= 1 if 1'
330331
BLE_EATT_MTU:
331332
description: >
332333
MTU used for EATT channels.
333334
value: 128
335+
BLE_EATT_AUTO_CONNECT:
336+
description: >
337+
Enable auto connect for EATT
338+
value: (BLE_EATT_CHAN_NUM > 0)
339+
restrictions:
340+
- '(BLE_EATT_CHAN_NUM >= 1) if 1'
341+
BLE_EATT_CHAN_PER_CONN:
342+
description: >
343+
Maximum number of supported EATT channels per connection
344+
value: 0
334345

335346
# Supported server ATT commands. (0/1)
336347
BLE_ATT_SVR_FIND_INFO:

0 commit comments

Comments
 (0)