2022-05-04 12:36 PM
2022-05-27 08:18 AM
Hello,
You can removed the timer used to stop the advertising see Advertising_mgr_timer_Id or you can changed the timeout value, see the following define in app_ble.c file:
#define FAST_ADV_TIMEOUT (30*1000*1000/CFG_TS_TICK_VAL) /**< 30s */
#define INITIAL_ADV_TIMEOUT (60*1000*1000/CFG_TS_TICK_VAL) /**< 60s */
Best Regards
2022-05-04 12:38 PM
I'm developing an implantable device. So, resetting the microcontroller is not easy.
So, I want to use the power off / on to reset the microcontroller but if it goes to power saving mode, it will be delayed.
2022-05-27 08:18 AM
Hello,
You can removed the timer used to stop the advertising see Advertising_mgr_timer_Id or you can changed the timeout value, see the following define in app_ble.c file:
#define FAST_ADV_TIMEOUT (30*1000*1000/CFG_TS_TICK_VAL) /**< 30s */
#define INITIAL_ADV_TIMEOUT (60*1000*1000/CFG_TS_TICK_VAL) /**< 60s */
Best Regards