hi, When I add the program inside the hrs saadc is found fatal error, DEBUG found the program stopped here
SOFTDEVICE_HANDLER_INIT(&clock_lf_cfg, NULL);
error_code = 0x00001001
hi, When I add the program inside the hrs saadc is found fatal error, DEBUG found the program stopped here
SOFTDEVICE_HANDLER_INIT(&clock_lf_cfg, NULL);
error_code = 0x00001001
This error code means NRF_ERROR_SDM_INCORRECT_INTERRUPT_CONFIGURATION, and is documented here. You should check your priority settings.
Yes, I'm talking about IRQ priority. Are you getting the error code from call to SOFTDEVICE_HANDLER_INIT? Or do you get it from something else, like NRF_FAULT_ID_APP_MEMACC in the error handler?
Yes, I'm talking about IRQ priority. Are you getting the error code from call to SOFTDEVICE_HANDLER_INIT? Or do you get it from something else, like NRF_FAULT_ID_APP_MEMACC in the error handler?
As i mentioned above I can’t tell which code is causing this error.
If i click DEBUG-go, it just stops where I put stopping point which is inside of app_error_handler_bare()
when I check which command had been run before this call, there’s just main() right underneath.
If you put breakpoints in your main-function, you should be able to see how far the application gets before the error occurs.