system_stm32f2xx.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /**
  2. ******************************************************************************
  3. * @file system_stm32f2xx.h
  4. * @author MCD Application Team
  5. * @version V1.1.5
  6. * @date 31-December-2021
  7. * @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * Copyright (c) 2012 STMicroelectronics.
  12. * All rights reserved.
  13. *
  14. * This software is licensed under terms that can be found in the LICENSE file
  15. * in the root directory of this software component.
  16. * If no LICENSE file comes with this software, it is provided AS-IS.
  17. *
  18. ******************************************************************************
  19. */
  20. /** @addtogroup CMSIS
  21. * @{
  22. */
  23. /** @addtogroup stm32f2xx_system
  24. * @{
  25. */
  26. /**
  27. * @brief Define to prevent recursive inclusion
  28. */
  29. #ifndef __SYSTEM_STM32F2XX_H
  30. #define __SYSTEM_STM32F2XX_H
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. /** @addtogroup STM32F2xx_System_Includes
  35. * @{
  36. */
  37. /**
  38. * @}
  39. */
  40. /** @addtogroup STM32F2xx_System_Exported_types
  41. * @{
  42. */
  43. extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
  44. /**
  45. * @}
  46. */
  47. /** @addtogroup STM32F2xx_System_Exported_Constants
  48. * @{
  49. */
  50. /**
  51. * @}
  52. */
  53. /** @addtogroup STM32F2xx_System_Exported_Macros
  54. * @{
  55. */
  56. /**
  57. * @}
  58. */
  59. /** @addtogroup STM32F2xx_System_Exported_Functions
  60. * @{
  61. */
  62. extern void SystemInit(void);
  63. extern void SystemCoreClockUpdate(void);
  64. /**
  65. * @}
  66. */
  67. #ifdef __cplusplus
  68. }
  69. #endif
  70. #endif /*__SYSTEM_STM32F2XX_H */
  71. /**
  72. * @}
  73. */
  74. /**
  75. * @}
  76. */