You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
437 B
18 lines
437 B
/*
|
|
* 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__ */
|
|
|