When I start program, my program fall down to
__WEAK void app_error_fault_handler(uint32_t id, uint32_t pc, uint32_t info)
{
NRF_LOG_ERROR("Fatal\r\n");
NRF_LOG_FINAL_FLUSH();
// On assert, the system can only recover with a reset.
#ifndef DEBUG
NRF_LOG_INFO("Hit weak handler\r\n");
NVIC_SystemReset();
#else
app_error_save_and_stop(id, pc, info);
#endif // DEBUG
}
with next parameters: id- 0x00004001 pc-0x00000000 info- 0x20007918
What reason of falling my code?