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 * 2008-12-11 XuXinming first version 9 */ 10 11 #include <rtthread.h> 12 #include "LPC24xx.h" 13 14 /** 15 * @addtogroup LPC2478 16 */ 17 /*@{*/ 18 19 /** 20 * this function will reset CPU 21 * 22 */ 23 void rt_hw_cpu_reset() 24 { 25 } 26 27 /** 28 * this function will shutdown CPU 29 * 30 */ 31 void rt_hw_cpu_shutdown() 32 { 33 rt_kprintf("shutdown...\n"); 34 35 while (1); 36 } 37 38 /*@}*/ 39