mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-22 13:19:19 +08:00
25 lines
406 B
C
25 lines
406 B
C
|
#ifndef __SYSTEM_SWM320_H__
|
||
|
#define __SYSTEM_SWM320_H__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
extern uint32_t SystemCoreClock; // System Clock Frequency (Core Clock)
|
||
|
extern uint32_t CyclesPerUs; // Cycles per micro second
|
||
|
|
||
|
|
||
|
extern void SystemInit(void);
|
||
|
|
||
|
extern void SystemCoreClockUpdate(void);
|
||
|
|
||
|
extern void PLLInit(void);
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif //__SYSTEM_SWM320_H__
|