This file provides two functions and one global variable to be called from user application:
SystemInit(): Setups the system clock (System clock source, AHB/APB prescalers). This function is called at startup just after reset and before branch to main program. This call is made inside the "startup_mg32l003_xx.s" file.
SystemCoreClock variable: Contains the core clock (HCLK), it can be used by the user application to setup the SysTick timer or configure other parameters.
SystemCoreClockUpdate(): Updates the variable SystemCoreClock and must be called whenever the core clock is changed during program execution.
After each device reset the HSI (4 MHz) is used as system clock source. Then SystemInit() function is called, in "startup_mg32l003_xx.s" file, to configure the system clock before to branch to main program.
The default value of HSE crystal is set to 8 MHz (or other values, depending on the crystal used), refer to "HSE_VALUE". When HSE is used as system clock source directly and you are using different crystal you have to adapt the HSE value to your own configuration.
Generated by megawin Technology (Shenzhen) Corp., Ltd. All rights reserved.