Skip to content

Commit 9aa0ae9

Browse files
idlestatedanieldegrasse
authored andcommitted
samples: Bluetooth: PAWR: Fix Response Slot Delay Value is too Small
Previously, reponse slot value is 5* 1.25ms = 6.25ms , on nxp rw61x platform, host got the periodic adv report v2 and after about 6ms, send reponse data cmd, it is too late , so always rpt the 0x46 too late err code to host , in order to send the response , so make rsp delay update to 10ms. Signed-off-by: Alex Zhou <alex.zhou@nxp.com>
1 parent 3695174 commit 9aa0ae9

File tree

2 files changed

+2
-2
lines changed
  • samples/bluetooth

2 files changed

+2
-2
lines changed

samples/bluetooth/periodic_adv_conn/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static const struct bt_le_per_adv_param per_adv_params = {
2020
.options = 0,
2121
.num_subevents = NUM_SUBEVENTS,
2222
.subevent_interval = SUBEVENT_INTERVAL,
23-
.response_slot_delay = 0x5,
23+
.response_slot_delay = 0x8,
2424
.response_slot_spacing = 0x50,
2525
.num_response_slots = NUM_RSP_SLOTS,
2626
};

samples/bluetooth/periodic_adv_rsp/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ static const struct bt_le_per_adv_param per_adv_params = {
3636
.options = 0,
3737
.num_subevents = NUM_SUBEVENTS,
3838
.subevent_interval = 0x30,
39-
.response_slot_delay = 0x5,
39+
.response_slot_delay = 0x8,
4040
.response_slot_spacing = 0x50,
4141
.num_response_slots = NUM_RSP_SLOTS,
4242
};

0 commit comments

Comments
 (0)