Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .codespell-ignore-lines
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
MUSIC("betwee"), MUSIC("doom"), MUSIC("the_da"), MUSIC("shawn"),
MUSIC("messag"), MUSIC("count2"), MUSIC("ddtbl3"), MUSIC("ampie"),
MUSIC("tense"), MUSIC("shawn3"), MUSIC("openin"), MUSIC("evil"),
/* ANS service */
12 changes: 12 additions & 0 deletions wireless/bluetooth/nimble/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,18 @@ config NIMBLE_MSYS_2_BLOCK_SIZE
int "NimBLE MSYS_2 block size"
default 0

config NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT
int "NimBLE transport ACL buffer count (controller to host)"
default 10
---help---
Number of ACL buffers in the transport pool.

config NIMBLE_TRANSPORT_ACL_FROM_HS_COUNT
int "NimBLE transport ACL buffer count (host to controller)"
default 10
---help---
Number of ACL buffers in the transport pool.

endmenu # "NimBLE memory configuration"

config NIMBLE_PORTING_EXAMPLE
Expand Down
4 changes: 2 additions & 2 deletions wireless/bluetooth/nimble/include/syscfg/syscfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@

/* Transport configuration */

#define MYNEWT_VAL_BLE_TRANSPORT_ACL_FROM_HS_COUNT (10)
#define MYNEWT_VAL_BLE_TRANSPORT_ACL_FROM_LL_COUNT (10)
#define MYNEWT_VAL_BLE_TRANSPORT_ACL_FROM_HS_COUNT (CONFIG_NIMBLE_TRANSPORT_ACL_FROM_HS_COUNT)
#define MYNEWT_VAL_BLE_TRANSPORT_ACL_FROM_LL_COUNT (CONFIG_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT)
#define MYNEWT_VAL_BLE_TRANSPORT_ACL_SIZE (251)
#define MYNEWT_VAL_BLE_TRANSPORT_EVT_COUNT (4)
#define MYNEWT_VAL_BLE_TRANSPORT_EVT_DISCARDABLE_COUNT (16)
Expand Down
Loading