mirror of
https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
synced 2025-02-10 22:58:11 +00:00
95 lines
1.7 KiB
C
95 lines
1.7 KiB
C
|
/**
|
||
|
******************************************************************************
|
||
|
Released into the public domain.
|
||
|
This work is free: you can redistribute it and/or modify it under the terms of
|
||
|
Creative Commons Zero license v1.0
|
||
|
|
||
|
This work is licensed under the Creative Commons Zero 1.0 United States License.
|
||
|
To view a copy of this license, visit http://creativecommons.org/publicdomain/zero/1.0/
|
||
|
or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco,
|
||
|
California, 94105, USA.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||
|
or FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
******************************************************************************
|
||
|
*/
|
||
|
|
||
|
|
||
|
/** @addtogroup CMSIS
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
/** @addtogroup stm32f10x_system
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @brief Define to prevent recursive inclusion
|
||
|
*/
|
||
|
#ifndef __SYSTEM_STM32F10X_H
|
||
|
#define __SYSTEM_STM32F10X_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/** @addtogroup STM32F10x_System_Includes
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
|
||
|
/** @addtogroup STM32F10x_System_Exported_types
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
|
||
|
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
/** @addtogroup STM32F10x_System_Exported_Constants
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
/** @addtogroup STM32F10x_System_Exported_Macros
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
/** @addtogroup STM32F10x_System_Exported_Functions
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
extern void SystemInit(void);
|
||
|
extern void SystemCoreClockUpdate(void);
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /*__SYSTEM_STM32F10X_H */
|
||
|
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|