This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2652RB: Updating advertising interval when connected, disable required?

Part Number: CC2652RB

It appears that if advertising is active, it would need to be disabled before the advertising interval is updated using GapAdv_disable(). However, if the connected device is modifying this value is this still true, using this prototype?

// device is connected to iOS app here
GapAdv_disable(advParams1); // required?
uint32_t newInterval = 1600;
GapAdv_setParam(advParams1,GAP_ADV_PARAM_PRIMARY_INTERVAL_MIN,newInterval);
GapAdv_setParam(advParams1,GAP_ADV_PARAM_PRIMARY_INTERVAL_MAX,newInterval);
GapAdv_enable(advParams1); // required?