Hi,
I got simpleblePeripheral from SDK 3.20, add PLUS_BROADCASTER define, changed the default adv interval
#define DEFAULT_ADVERTISING_INTERVAL 1600
in init func I add this:
GAP_SetParamValue(TGAP_CONN_ADV_INT_MIN, advInt);
GAP_SetParamValue(TGAP_CONN_ADV_INT_MAX, advInt);
I expect that device will advertise every second in both connected and non connected state. But actually the advertisment interval is 1s while not connected, and 100ms while connected.
How to change the interval for non-connectable advertisements when device is connected?