Hallo Community,
I am doing the example ble_app_uart using Eclipse, a SDK 13.00 and a board 10040, When i compile the main file I´ve problems with scan params:
#if (NRF_SD_BLE_API_VERSION <= 2)
.selective = 0,
.p_whitelist = NULL,
#endif
#if (NRF_SD_BLE_API_VERSION >= 3)
.use_whitelist = 0,
#endif
Eclipse recognize the NRF_SD_BLE_API_VERSION <=2 but the next lines, eclipse does not regocnize them.I look it up in the data field of ble_gap_scan_params_t Struct Reference .selective and .p_whitelist are avaible.
Eclipse just only recognize .use_whitelist = 0. Where can i check which API version does eclipse is using?