Hi,
I am unable to locate the list of error codes , in my code I get "sd_ble_gap_scan_start returned 0x10" as I use sd_ble_gap_scan_start() function with input parameters.
Thanks
Abhi
Hi,
I am unable to locate the list of error codes , in my code I get "sd_ble_gap_scan_start returned 0x10" as I use sd_ble_gap_scan_start() function with input parameters.
Thanks
Abhi
That would be NRF_ERROR_INVALID_ADDR (Invalid pointer supplied). You should check in ble_gap.h since it's a SoftDevice GAP API, you can find sd_ble_gap_scan_start and return values are explained in comments. NRF_ERROR_INVALID_ADDR can be found in nrf_error.h.
Hi,
What softdevice are you using? S132?
regards
Jared
yes its S132
Thanks, I could see that now.
I agree with the other comment here. You should double check what parameter you pass to the function.