HI all,
I am setting these parameter as follow in my ble_app_template sample.
#define MIN_CONN_INTERVAL MSEC_TO_UNITS(7.5, UNIT_1_25_MS) /**< Minimum acceptable connection interval (0.5 seconds). */
#define MAX_CONN_INTERVAL MSEC_TO_UNITS(40, UNIT_1_25_MS) /**< Maximum acceptable connection interval (1 second). */
#define SLAVE_LATENCY 0 /**< Slave latency. */
#define CONN_SUP_TIMEOUT MSEC_TO_UNITS(300, UNIT_10_MS) /**< Connection supervisory timeout (4 seconds). */
#define FIRST_CONN_PARAMS_UPDATE_DELAY APP_TIMER_TICKS(1000, APP_TIMER_PRESCALER) /**< 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, APP_TIMER_PRESCALER) /**< 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. */
while setting these values which is MIN_CONN_INTERVAL = 7.5 and MAX_CONN_INTERVAL=40. i am not receiving any connection update request. but when i am setting my MIN_CONN_INTERVAL = 25 and MAX_CONN_INTERVAL=40.
I am able to receive my connection parameter update request.
can anyone please explain me why i am not getting update request or i am setting my parameter wrong.
I have also seen ble_app_lbs example from here provided by nordic they are able to set MIN_CONN_INTERVAL = 7.5 and MAX_CONN_INTERVAL=40 succsufully.
Thanks in Advance.