Skip to content

Commit

Permalink
Bluetooth: Kconfig: Lower minimum required ACL buffer count
Browse files Browse the repository at this point in the history
The controller already has a minimum of 1, and the host should mirror
that (in particular to avoid Kconfig warnings). A single buffer is
unsafe in some scenarios (such as with LE SC enabled) however there
are valid scenarios where a single buffer makes sense, so leave it up
to the developer to choose this.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
  • Loading branch information
jhedberg committed Jul 24, 2018
1 parent 8e8dc1c commit 99a91c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subsys/bluetooth/host/Kconfig
Expand Up @@ -158,7 +158,7 @@ config BT_ACL_RX_COUNT
int "Number of incoming ACL data buffers"
default 6
default BT_CTLR_RX_BUFFERS if BT_CTLR
range 2 64
range 1 64
help
Number of buffers available for incoming ACL data.

Expand Down

0 comments on commit 99a91c9

Please sign in to comment.