99bdf978d7
* [rtdef] rename RT_WEAK attribute as rt_weak * [rtdef] rename RT_USED attribute as rt_used * [rtdef] rename RT_SECTION attribute as rt_section * [rtdef] rename ALIGN attribute as rt_align * [legacy] add RT_USED ALIGN RT_SECTION RT_WEAK as legacy support
28 lines
493 B
C
28 lines
493 B
C
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2018-02-08 RT-Thread the first version
|
|
*/
|
|
|
|
#include <rthw.h>
|
|
#include <rtthread.h>
|
|
|
|
rt_weak void machine_reset(void)
|
|
{
|
|
rt_kprintf("reboot system...\n");
|
|
rt_hw_interrupt_disable();
|
|
while (1);
|
|
}
|
|
|
|
rt_weak void machine_shutdown(void)
|
|
{
|
|
rt_kprintf("shutdown...\n");
|
|
rt_hw_interrupt_disable();
|
|
while (1);
|
|
}
|
|
|