Where is the nordic overriden implementation for void __weak sys_arch_reboot(int type)

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();
}
For arm core with no handling of type of reboot. Does nordic override this weak definition .?
Where can i find it.?
I am using nCS v2.6.0
Parents Reply Children
Related