Skip to content

Commit

Permalink
Bluetooth: Fix default event size when periodic adv sync is enabled
Browse files Browse the repository at this point in the history
Periodic Advertising reports can be up to 255.

Signed-off-by: Rubin Gerritsen <[email protected]>
  • Loading branch information
rugeGerritsen authored and carlescufi committed Jan 13, 2022
1 parent 8f4a1fd commit 727ea49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subsys/bluetooth/common/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ config BT_BUF_ACL_RX_COUNT

config BT_BUF_EVT_RX_SIZE
int "Maximum supported HCI Event buffer length"
default 255 if (BT_EXT_ADV && !(BT_BUF_EVT_DISCARDABLE_COUNT > 0)) || BT_PER_ADV
default 255 if (BT_EXT_ADV && !(BT_BUF_EVT_DISCARDABLE_COUNT > 0)) || BT_PER_ADV_SYNC
# LE Read Supported Commands command complete event.
default 68
range 68 255
Expand Down

0 comments on commit 727ea49

Please sign in to comment.