1 /* 2 * Copyright (c) 2006-2020, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2020-08-06 whik first version 9 */ 10 #ifndef __CONFIG_H__ 11 #define __CONFIG_H__ 12 13 #include "mss_gpio.h" 14 #include "mss_uart.h" 15 16 #include <rthw.h> 17 #include <rtthread.h> 18 19 void sw0_isr(void *args); 20 void sw1_isr(void *args); 21 void boardInit(void); 22 void sayHello(void); 23 24 #endif 25