Hi,Team,
I am developing pawr using nrf54l15-dk. I wanted to set the parameters of pawr with 128 sub-events and 8 response intervals, but the setting Failed and the error "Failed to set periodic adv params (err -22)" was returned. The following are the parameters for setting bt_le_per_adv_param. Please review them.
struct bt_le_per_adv_param per_adv_params = {
.interval_min = 1408,
.interval_max = 1408,
.options = 0,
.num_subevents = NUM_SUBEVENTS,//128
.subevent_interval = 11,
.response_slot_delay = 8,
.response_slot_spacing = 3,
.num_response_slots = NUM_RSP_SLOTS,//8
};
The above parameters are based on the reference document "2-Nordic-Bluetooth 5.4 and Bluetooth ESL-Training.pdf".

How can I achieve setting the desired parameters?
Thanks.
