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

Minimum connection parameters

Hi,

I would like to test the maximum efficency build, with settings like this :

#define MIN_CONN_INTERVAL               MSEC_TO_UNITS(7.5, UNIT_1_25_MS)
#define MAX_CONN_INTERVAL               MSEC_TO_UNITS(7.5, UNIT_1_25_MS)
#define SLAVE_LATENCY                   1000                            
#define CONN_SUP_TIMEOUT                MSEC_TO_UNITS(32000, UNIT_10_MS)

They are taken from BLE_GAP_CP_LIMITS in ble_gap.h And there is problem. When I try and run the application, I got following error

error #7 at ..\..\..\main.c, in function gap_params_init, line 133

line from gap_params_init:

err_code = sd_ble_gap_ppcp_set(&gap_conn_params);
APP_ERROR_CHECK(err_code);

Is there any way to get the maximum slave latency setting to work ? ATM using S130, but I can switch to S110.

Related