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?