Hi,
I am evaluating warm and cold reboots, I am seeing no difference between them. I tried tracing sys_reboot definition, ended up with
/** * * @brief Reset the system * * This routine resets the processor. * */ void __weak sys_arch_reboot(int type) { ARG_UNUSED(type); NVIC_SystemReset(); }
Where can i find it.?