board.h 345 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2020, Shenzhen Academy of Aerospace Technology
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-10-16 Dystopia the first version
  9. */
  10. #ifndef __BOARD_H__
  11. #define __BOARD_H__
  12. #include <bm3803.h>
  13. #define CPU_FREQ 90000000
  14. void rt_hw_board_init(void);
  15. #endif