I am currently developing with nrf52832 sdk14.2. I found in the test that after opening the hid service, the connection parameters will become the following parameters after about 5 seconds:
Conn_sup_timeout: 100
Max_conn_interval: 12
Min_conn_interval: 12
Slave_latency: 4
But this parameter is not my application change, and I did not set this parameter in the gap, the parameters are as follows:
#define MIN_CONN_INTERVAL MSEC_TO_UNITS(40, UNIT_1_25_MS)
#define MAX_CONN_INTERVAL MSEC_TO_UNITS(250, UNIT_1_25_MS)
#define SLAVE_LATENCY 4
#define CONN_SUP_TIMEOUT MSEC_TO_UNITS(6000, UNIT_10_MS)
Is this and hid mandatory change? If this is the parameter that can be set by yourself?