1 /*
2  * Copyright (c) 2006-2021, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2010-04-09     fify      the first version
9  *
10  * For       : Renesas M16C
11  * Toolchain : IAR's EW for M16C v3.401
12 */
13 
14 #ifndef  __BSP_H__
15 #define  __BSP_H__
16 
17 #include <rtthread.h>
18 
19 #define CPU_CLK_FREQ 14000000                    /* CPU frequency, in Hz*/
20 
21 void system_init(void);
22 
23 void led_on(void);
24 void led_off(void);
25 
26 #endif
27