I am using nRF52833 DK and I am running Light switch server in one DK and Client in another DK
Advertising interval was way too high(around 9Second)
so decided to change it.
Defined a interval of 50ms and under mesh_adv.c file, have defined this MACRO and changed duration and interval parameters.
#define CUSTOM_ADV_INTERVAL MSEC_TO_UNITS(50, UNIT_0_625_MS) . . . . . m_adv_params.duration = 0; m_adv_params.interval = CUSTOM_ADV_INTERVAL;
Now the Advertising interval have been reduced, but it keeps on fluctuating
.
I am using nRF connect App to check the ADV interval timer, for some time it scans at 20ms and for some time scans at 100ms
I expect that to be around 50ms(+ or - 50ms) constantly.
Is this behavior expected ?
Is this fluctuating is normal ?
Any feedback would be helpful
Thanks in Advance.
Sarjoon.