/**************************************************************************//** * @file system_M2L31.c * @version V0.10 * @brief System Setting Source File * * @note * SPDX-License-Identifier: Apache-2.0 * @copyright (C) 2023 Nuvoton Technology Corp. All rights reserved. ****************************************************************************/ //#include #include #include #include "NuMicro.h" extern void *__Vectors; /* see startup file */ /*---------------------------------------------------------------------------- Clock Variable definitions *----------------------------------------------------------------------------*/ uint32_t SystemCoreClock = __HSI; /*!< System Clock Frequency (Core Clock) */ uint32_t CyclesPerUs = (__HSI / 1000000); /*!< Cycles per micro second */ uint32_t PllClock = __HSI; /*!< PLL Output Clock Frequency */ const uint32_t gau32ClkSrcTbl[8] = {__HXT, __LXT, 0UL, __LIRC, 0UL, __MIRC, __HIRC48, __HIRC}; /** * @brief Update the Variable SystemCoreClock * * @param None * * @return None * * @details This function is used to update the variable SystemCoreClock * and must be called whenever the core clock is changed. */ void SystemCoreClockUpdate(void) { uint32_t u32Freq, u32ClkSrc; uint32_t u32HclkDiv; u32ClkSrc = CLK->CLKSEL0 & CLK_CLKSEL0_HCLK0SEL_Msk; /* Update PLL Clock */ PllClock = CLK_GetPLLClockFreq(); if (u32ClkSrc != CLK_CLKSEL0_HCLKSEL_PLL) { /* Use the clock sources directly */ u32Freq = gau32ClkSrcTbl[u32ClkSrc]; } else { /* Use PLL clock */ u32Freq = PllClock; } u32HclkDiv = (CLK->CLKDIV0 & CLK_CLKDIV0_HCLK0DIV_Msk) + 1; /* Update System Core Clock */ SystemCoreClock = u32Freq / u32HclkDiv; CyclesPerUs = (SystemCoreClock + 500000) / 1000000; if (CyclesPerUs ==0) CyclesPerUs = 1; // avoid the SYSTICK cannot count to value } /** * @brief System Initialization * * @param None * * @return None * * @details The necessary initialization of system. Global variables are forbidden here. */ void SystemInit(void) { } #if USE_ASSERT /** * @brief Assert Error Message * * @param[in] file the source file name * @param[in] line line number * * @return None * * @details The function prints the source file name and line number where * the ASSERT_PARAM() error occurs, and then stops in an infinite loop. */ void AssertError(uint8_t *file, uint32_t line) { printf("[%s] line %u : wrong parameters.\r\n", file, line); /* Infinite loop */ while (1) ; } #endif /** * @brief Set UART0 Default MPF * * @param None * * @return None * * @details The initialization of uart0 default multi function pin. */ #if 1 #if defined( __ICCARM__ ) __WEAK #else __attribute__((weak)) #endif void Uart0DefaultMPF(void) { /* Set GPB multi-function pins for UART0 RXD and TXD */ SYS->GPB_MFP3 = (SYS->GPB_MFP3 & ~SYS_GPB_MFP3_PB12MFP_Msk) | SYS_GPB_MFP3_PB12MFP_UART0_RXD; SYS->GPB_MFP3 = (SYS->GPB_MFP3 & ~SYS_GPB_MFP3_PB13MFP_Msk) | SYS_GPB_MFP3_PB13MFP_UART0_TXD; } #endif