board.h 437 B

123456789101112131415161718
  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. #ifndef __BOARD_H__
  11. #define __BOARD_H__
  12. #define APB_DEFAULT_FREQ 20000000 /* Hz */
  13. #define CK802_IRAM_SIZE 94
  14. #define CK802_IRAM_END (0x20000000 + CK802_IRAM_SIZE * 1024)
  15. #endif /* __BOARD_H__ */