1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /**
- ******************************************************************************
- * @file system_py32f0xx.h
- * @brief CMSIS Cortex-M0+ Device Peripheral Access Layer Header File for
- * PY32F0xx Device Series
- * @version v1.0.0
- *
- ******************************************************************************
- * @attention
- *
- * <h2><center>© Copyright (c) 2023 Puya Semiconductor Co.
- * All rights reserved.</center></h2>
- *
- * This software component is licensed by Puya under BSD 3-Clause license,
- * the "License"; You may not use this file except in compliance with the
- * License. You may obtain a copy of the License at:
- * opensource.org/licenses/BSD-3-Clause
- *
- ******************************************************************************
- * @attention
- *
- * <h2><center>© Copyright (c) 2016 STMicroelectronics.
- * All rights reserved.</center></h2>
- *
- * This software component is licensed by ST under BSD 3-Clause license,
- * the "License"; You may not use this file except in compliance with the
- * License. You may obtain a copy of the License at:
- * opensource.org/licenses/BSD-3-Clause
- *
- ******************************************************************************
- */
- /* This file refers the CMSIS standard, some adjustments are made according to Puya chips */
- #ifndef SYSTEM_PY32F0XX_H
- #define SYSTEM_PY32F0XX_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Includes ------------------------------------------------------------------*/
- #include <stdint.h>
- /* Exported variables --------------------------------------------------------*/
- extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
- /* Exported constants --------------------------------------------------------*/
- extern const uint32_t AHBPrescTable[16]; /*!< AHB prescalers table values */
- extern const uint32_t APBPrescTable[8]; /*!< APB prescalers table values */
- extern const uint32_t HSIFreqTable[8]; /*!< HSI frequency table values */
- /**
- * Initialize the system
- * @param none
- * @return none
- * @brief Setup the microcontroller system.
- * Initialize the System and update the SystemCoreClock variable.
- */
- extern void SystemInit(void);
- /**
- * Update SystemCoreClock variable
- * @param none
- * @return none
- * @brief Updates the SystemCoreClock with current core Clock
- * retrieved from cpu registers.
- */
- extern void SystemCoreClockUpdate(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* SYSTEM_PY32F0XX_H */
|