2019-03-14 15:45:20 +08:00
|
|
|
/*
|
2021-03-27 17:51:56 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2019-03-14 15:45:20 +08:00
|
|
|
*
|
2019-03-14 17:54:21 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2019-03-14 15:45:20 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2018-02-08 RT-Thread the first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rthw.h>
|
|
|
|
#include <rtthread.h>
|
|
|
|
|
2022-12-12 02:12:03 +08:00
|
|
|
rt_weak void machine_reset(void)
|
2019-03-14 15:45:20 +08:00
|
|
|
{
|
|
|
|
rt_kprintf("reboot system...\n");
|
|
|
|
rt_hw_interrupt_disable();
|
|
|
|
while (1);
|
|
|
|
}
|
|
|
|
|
2022-12-12 02:12:03 +08:00
|
|
|
rt_weak void machine_shutdown(void)
|
2019-03-14 15:45:20 +08:00
|
|
|
{
|
|
|
|
rt_kprintf("shutdown...\n");
|
|
|
|
rt_hw_interrupt_disable();
|
|
|
|
while (1);
|
|
|
|
}
|
|
|
|
|