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
32 lines
442 B
C
Executable File
32 lines
442 B
C
Executable File
/*
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2006-08-23 Bernard first version
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
|
|
/**
|
|
* this function will reset CPU
|
|
*
|
|
*/
|
|
rt_weak void rt_hw_cpu_reset()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* this function will shutdown CPU
|
|
*
|
|
*/
|
|
rt_weak void rt_hw_cpu_shutdown()
|
|
{
|
|
rt_kprintf("shutdown...\n");
|
|
|
|
while (1);
|
|
}
|
|
|