Using the debugger in SEGGER Embedded Studio and two nRF52-SDK circuit boards, I am stepping through code from the nRF5_SDK_17.0.2 examples.
Very often I end up
in file app_error_weak.c,
in function __WEAK void app_error_fault_handler(uint32_t id, uint32_t pc, uint32_t info)
at macro NRF_BREAKPOINT_COND; // On assert, the system can only recover with a reset.
Why is that?
Jan Kinander