#include <stdint.h>
Go to the source code of this file.
Macros | |
#define | _SYSTEM_MIMXRT1052_H_ |
#define | CPU_CLK1_HZ 0UL /* Value of the CLK1 (select the CLK1_N/CLK1_P as source) frequency in Hz */ |
#define | CPU_XTAL_CLK_HZ 24000000UL /* Value of the external crystal or oscillator clock frequency in Hz */ |
#define | DEFAULT_SYSTEM_CLOCK 528000000UL /* Default System clock value */ |
#define | DISABLE_WDOG 1 |
Functions | |
void | SystemCoreClockUpdate (void) |
Updates the SystemCoreClock variable. More... | |
void | SystemInit (void) |
Setup the microcontroller system. More... | |
void | SystemInitHook (void) |
SystemInit function hook. More... | |
Variables | |
uint32_t | SystemCoreClock |
System clock frequency (core clock) More... | |
#define _SYSTEM_MIMXRT1052_H_ |
Symbol preventing repeated inclusion
Definition at line 61 of file system_MIMXRT1052.h.
#define CPU_CLK1_HZ 0UL /* Value of the CLK1 (select the CLK1_N/CLK1_P as source) frequency in Hz */ |
Definition at line 78 of file system_MIMXRT1052.h.
#define CPU_XTAL_CLK_HZ 24000000UL /* Value of the external crystal or oscillator clock frequency in Hz */ |
Definition at line 76 of file system_MIMXRT1052.h.
#define DEFAULT_SYSTEM_CLOCK 528000000UL /* Default System clock value */ |
Definition at line 81 of file system_MIMXRT1052.h.
#define DISABLE_WDOG 1 |
Definition at line 71 of file system_MIMXRT1052.h.
void SystemInitHook | ( | void | ) |
SystemInit function hook.
This weak function allows to call specific initialization code during the SystemInit() execution.This can be used when an application specific code needs to be called as close to the reset entry as possible (for example the Multicore Manager MCMGR_EarlyInit() function call). NOTE: No global r/w variables can be used in this hook function because the initialization of these variables happens after this function.