2011-12-17 12:14:22 +08:00
|
|
|
/*
|
|
|
|
* File : cpu.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
|
|
|
* COPYRIGHT (C) 2006, RT-Thread Develop Team
|
|
|
|
*
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
* found in the file LICENSE in this distribution or at
|
|
|
|
* http://www.rt-thread.org/license/LICENSE
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2006-08-23 Bernard first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* this function will reset CPU
|
|
|
|
*
|
|
|
|
*/
|
2020-11-20 08:49:51 +08:00
|
|
|
RT_WEAK void rt_hw_cpu_reset()
|
2011-12-17 12:14:22 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* this function will shutdown CPU
|
|
|
|
*
|
|
|
|
*/
|
2020-11-20 08:49:51 +08:00
|
|
|
RT_WEAK void rt_hw_cpu_shutdown()
|
2011-12-17 12:14:22 +08:00
|
|
|
{
|
2021-03-27 17:51:56 +08:00
|
|
|
rt_kprintf("shutdown...\n");
|
2011-12-17 12:14:22 +08:00
|
|
|
|
2021-03-27 17:51:56 +08:00
|
|
|
while (1);
|
2011-12-17 12:14:22 +08:00
|
|
|
}
|
|
|
|
|