samples: bluetooth: peripheral: Fix RX buffer size
GATT long messages require buffers to store multiple packets. The actual configuration for the bluetooth peripheral sample defines only two buffers to store these messages. As the default ATT payload size is 18 bytes, the maximum payload size for a long ATT message is 36 bytes. As the variable `vnd_long_value[]` has a defined size of 74 bytes, it cannot be fully modified due to the 36 bytes limitation. Set CONFIG_BT_ATT_PREPARE_COUNT=5 so all the maximum payload size goes to 90 bytes and all the 74 bytes can be written to `vnd_long_value[]`. Signed-off-by: Joao Cordeiro <jvcc@cesar.org.br>
This commit is contained in:
parent
1202407b0c
commit
74f01067e7
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ CONFIG_BT_SMP=y
|
|||
CONFIG_BT_SIGNING=y
|
||||
CONFIG_BT_PERIPHERAL=y
|
||||
CONFIG_BT_GATT_DIS=y
|
||||
CONFIG_BT_ATT_PREPARE_COUNT=2
|
||||
CONFIG_BT_ATT_PREPARE_COUNT=5
|
||||
CONFIG_BT_PRIVACY=y
|
||||
CONFIG_BT_DEVICE_NAME="Zephyr Peripheral Sample Long Name"
|
||||
CONFIG_BT_DEVICE_APPEARANCE=833
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue