SAME54P20A Test Project
system_same54.h
Go to the documentation of this file.
1 
30 #ifndef _SYSTEM_SAME54_H_INCLUDED_
31 #define _SYSTEM_SAME54_H_INCLUDED_
32 
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36 
37 #include <stdint.h>
38 
39 extern uint32_t SystemCoreClock;
41 void SystemInit(void);
42 void SystemCoreClockUpdate(void);
43 
44 #ifdef __cplusplus
45 }
46 #endif
47 
48 #endif /* SYSTEM_SAME54_H_INCLUDED */
SystemInit
void SystemInit(void)
Setup the microcontroller system. Initialize the System and update the SystemCoreClock variable.
Definition: system_same54.c:46
SystemCoreClock
uint32_t SystemCoreClock
Definition: system_same54.c:38
SystemCoreClockUpdate
void SystemCoreClockUpdate(void)
Updates the SystemCoreClock with current core Clock retrieved from cpu registers.
Definition: system_same54.c:59