bsp_clock.h 584 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. * 2020-12-20 Lyons first version
  9. */
  10. #ifndef __BSP_CLOCK_H__
  11. #define __BSP_CLOCK_H__
  12. extern uint32_t *g_iomuxc_vbase;
  13. extern uint32_t *g_iomuxc_snvs_vbase;
  14. extern uint32_t *g_src_vbase;
  15. extern uint32_t *g_wdog1_vbase;
  16. extern uint32_t *g_snvs_vbase;
  17. void SystemAddressMapping(void);
  18. void SystemClockInit(void);
  19. void rt_hw_us_delay(uint32_t us);
  20. void rt_hw_ms_delay(uint32_t ms);
  21. #endif //#ifndef __BSP_CLOCK_H__