Tool/software: Code Composer Studio
[ condition ]
sdk & project : simple link sdk multirole project
role : peripheral
ble version : 4.2
os : ti-rtos
[ qeustion ]
// Set advertising interval the same for all scenarios
uint16_t advInt = DEFAULT_ADVERTISING_INTERVAL;
GAP_SetParamValue(TGAP_LIM_DISC_ADV_INT_MIN, advInt);
GAP_SetParamValue(TGAP_LIM_DISC_ADV_INT_MAX, advInt);
GAP_SetParamValue(TGAP_GEN_DISC_ADV_INT_MIN, advInt);
GAP_SetParamValue(TGAP_GEN_DISC_ADV_INT_MAX, advInt);
GAP_SetParamValue(TGAP_CONN_ADV_INT_MIN, advInt);
GAP_SetParamValue(TGAP_CONN_ADV_INT_MAX, advInt);
In regards to these parameters, refer to the BLE Core Specification for more information.
I have looked at Volume 2, Part E, Chapter 7.8.5.
but I don't know Why min and max value exist.