1 /* 2 * Copyright (c) 2006-2018, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2006-08-23 Bernard first version 9 */ 10 11 #include <rtthread.h> 12 13 14 /** 15 * @addtogroup AT91SAM7X 16 */ 17 /*@{*/ 18 19 /** 20 * this function will reset CPU 21 * 22 */ rt_hw_cpu_reset()23void rt_hw_cpu_reset() 24 { 25 } 26 27 /** 28 * this function will shutdown CPU 29 * 30 */ rt_hw_cpu_shutdown()31void rt_hw_cpu_shutdown() 32 { 33 rt_kprintf("shutdown...\n"); 34 35 while (1); 36 } 37 38 /*@}*/ 39