When I would like to change advertising interval, should I execute sd_ble_gap_adv_stop & sd_ble_gap_adv_start again? Is there any way to update its interval without stopping advertising?
Thanks in advance.
When I would like to change advertising interval, should I execute sd_ble_gap_adv_stop & sd_ble_gap_adv_start again? Is there any way to update its interval without stopping advertising?
Thanks in advance.
Yes, If you want to change the adverting interval, you should first call sd_ble_gap_adv_stop(..)
, and then call sd_ble_gap_adv_start(..)
with the updated advertising interval.
Yes, If you want to change the adverting interval, you should first call sd_ble_gap_adv_stop(..)
, and then call sd_ble_gap_adv_start(..)
with the updated advertising interval.