123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /**************************************************************************//**
- * @file system_M031Series.h
- * @version V3.00
- * $Revision: 5 $
- * $Date: 18/05/29 5:31p $
- * @brief M031 Series System Setting Header File
- *
- * @note
- * SPDX-License-Identifier: Apache-2.0
- * Copyright (C) 2017 Nuvoton Technology Corp. All rights reserved.
- ******************************************************************************/
- #ifndef __SYSTEM_M031_H__
- #define __SYSTEM_M031_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*---------------------------------------------------------------------------------------------------------*/
- /* Macro Definition */
- /*---------------------------------------------------------------------------------------------------------*/
- #ifndef DEBUG_PORT
- #define DEBUG_PORT UART0 /*!< Select Debug Port which is used for retarget.c to output debug message to UART */
- #endif
- /**
- *
- * @details This is used to enable PLL to speed up booting at startup. Remove it will cause system using
- * default clock source (External crystal or internal 22.1184MHz IRC).
- * Enable this option will cause system booting in 72MHz(By XTAL) or 71.8848MHz(By IRC22M) according to
- * user configuration setting in CONFIG0
- *
- */
- /*----------------------------------------------------------------------------
- Define SYSCLK
- *----------------------------------------------------------------------------*/
- #ifndef __HXT
- #define __HXT (32000000UL) /*!< External Crystal Clock Frequency */
- #endif /*!defined(__HXT) */
- #ifndef __LXT
- #define __LXT (32768UL) /*!< External Crystal Clock Frequency 32.768KHz */
- #endif /*!defined(__LXT) */
- #define __LIRC (38400UL) /*!< Internal 38.4KHz RC Oscillator Frequency */
- #define __HIRC (48000000UL) /*!< Internal 48M RC Oscillator Frequency */
- #define __HSI (96000000UL) /*!< PLL default output is 96MHz from HIRC */
- extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
- extern uint32_t CyclesPerUs; /*!< Cycles per micro second */
- extern uint32_t PllClock; /*!< PLL Output Clock Frequency */
- #if USE_ASSERT
- /**
- * @brief Assert Function
- *
- * @param[in] expr Expression to be evaluated
- *
- * @return None
- *
- * @details If the expression is false, an error message will be printed out
- * from debug port (UART0 or UART1).
- */
- #define ASSERT_PARAM(expr) { if (!(expr)) { AssertError((uint8_t*)__FILE__, __LINE__); } }
- void AssertError(uint8_t* file, uint32_t line);
- #else
- #define ASSERT_PARAM(expr)
- #endif
- #define assert_param(expr) ASSERT_PARAM(expr)
- /**
- * @brief System Initialization
- *
- * @param None
- *
- * @return None
- *
- * @details The necessary initialization of system.
- */
- extern void SystemInit(void);
- /**
- * @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.
- */
- extern void SystemCoreClockUpdate(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
- /* Copyright (C) 2014 Nuvoton Technology Corp. All rights reserved. */
|