system_SWM320.h 406 B

123456789101112131415161718192021222324
  1. #ifndef __SYSTEM_SWM320_H__
  2. #define __SYSTEM_SWM320_H__
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. extern uint32_t SystemCoreClock; // System Clock Frequency (Core Clock)
  7. extern uint32_t CyclesPerUs; // Cycles per micro second
  8. extern void SystemInit(void);
  9. extern void SystemCoreClockUpdate(void);
  10. extern void PLLInit(void);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif //__SYSTEM_SWM320_H__