This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

About CONN_PARAMS_UPDATE_DELAY....

#define FIRST_CONN_PARAMS_UPDATE_DELAY APP_TIMER_TICKS(20000) //20s

/**< Time from initiating event (connect or start of notification) to first time sd_ble_gap_conn_param_update is called (15 seconds). */

#define NEXT_CONN_PARAMS_UPDATE_DELAY APP_TIMER_TICKS(5000) //5s

/**< Time between each call to sd_ble_gap_conn_param_update after the first call (5 seconds). */

#define MAX_CONN_PARAMS_UPDATE_COUNT 3 /**< Number of attempts before giving up the connection parameter negotiation. */

What exactly does the above variables do???

Related