samples: bluetooth: Fix PAwR response slot calculation
Fix the calculation of the response slot that is assigned to the temporarily connected responding device. Signed-off-by: Hakan Jansson <hakan.jansson@infineon.com>
This commit is contained in:
parent
c487259241
commit
53b91138fb
1 changed files with 1 additions and 1 deletions
|
|
@ -336,7 +336,7 @@ int main(void)
|
|||
}
|
||||
|
||||
sync_config.subevent = num_synced % NUM_SUBEVENTS;
|
||||
sync_config.response_slot = num_synced / NUM_RSP_SLOTS;
|
||||
sync_config.response_slot = num_synced / NUM_SUBEVENTS;
|
||||
num_synced++;
|
||||
|
||||
write_params.func = write_func;
|
||||
|
|
|
|||
Loading…
Reference in a new issue