123456789101112131415161718 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2017-08-10 Urey first implementation
- */
- #ifndef __BOARD_H__
- #define __BOARD_H__
- #define APB_DEFAULT_FREQ 20000000 /* Hz */
- #define CK802_IRAM_SIZE 94
- #define CK802_IRAM_END (0x20000000 + CK802_IRAM_SIZE * 1024)
- #endif /* __BOARD_H__ */
|