bsp.h 487 B

1234567891011121314151617181920212223242526
  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. * 2010-04-09 fify the first version
  9. *
  10. * For : Renesas M16C
  11. * Toolchain : IAR's EW for M16C v3.401
  12. */
  13. #ifndef __BSP_H__
  14. #define __BSP_H__
  15. #include <rtthread.h>
  16. #define CPU_CLK_FREQ 14000000 /* CPU frequency, in Hz*/
  17. void system_init(void);
  18. void led_on(void);
  19. void led_off(void);
  20. #endif