2011-12-17 12:14:22 +08:00
|
|
|
/*
|
2022-04-05 19:34:30 +08:00
|
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
2011-12-17 12:14:22 +08:00
|
|
|
*
|
2022-04-05 19:34:30 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2011-12-17 12:14:22 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2006-08-23 Bernard first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* this function will reset CPU
|
|
|
|
*
|
|
|
|
*/
|
2022-12-12 02:12:03 +08:00
|
|
|
rt_weak void rt_hw_cpu_reset()
|
2011-12-17 12:14:22 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* this function will shutdown CPU
|
|
|
|
*
|
|
|
|
*/
|
2022-12-12 02:12:03 +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
|
|
|
}
|
|
|
|
|