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  * 2017-08-10     Urey         first implementation
9  */
10 
11 #ifndef __BOARD_H__
12 #define __BOARD_H__
13 
14 #define APB_DEFAULT_FREQ        20000000   /* Hz */
15 #define CK802_IRAM_SIZE         94
16 #define CK802_IRAM_END          (0x20000000 + CK802_IRAM_SIZE * 1024)
17 
18 #endif /* __BOARD_H__ */
19