Auto updated submodule references [07-02-2025]
[betaflight.git] / src / platform / STM32 / startup / system_stm32h7xx.h
blob62ad22fd5a746c2db5a15c41843117aa8a2744de
1 /**
2 ******************************************************************************
3 * @file system_stm32h7xx.h
4 * @author MCD Application Team
5 * @brief CMSIS Cortex-Mx Device System Source File for STM32H7xx devices.
6 ******************************************************************************
7 * @attention
9 * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
11 * Redistribution and use in source and binary forms, with or without modification,
12 * are permitted provided that the following conditions are met:
13 * 1. Redistributions of source code must retain the above copyright notice,
14 * this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright notice,
16 * this list of conditions and the following disclaimer in the documentation
17 * and/or other materials provided with the distribution.
18 * 3. Neither the name of STMicroelectronics nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 ******************************************************************************
36 /** @addtogroup CMSIS
37 * @{
40 /** @addtogroup stm32h7xx_system
41 * @{
44 /**
45 * @brief Define to prevent recursive inclusion
47 #ifndef SYSTEM_STM32H7XX_H
48 #define SYSTEM_STM32H7XX_H
50 #ifdef __cplusplus
51 extern "C" {
52 #endif
54 /** @addtogroup STM32H7xx_System_Includes
55 * @{
58 /**
59 * @}
62 /** @addtogroup STM32H7xx_System_Exported_types
63 * @{
65 /* This variable is updated in three ways:
66 1) by calling CMSIS function SystemCoreClockUpdate()
67 2) by calling HAL API function HAL_RCC_GetSysClockFreq()
68 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency
69 Note: If you use this function to configure the system clock; then there
70 is no need to call the 2 first functions listed above, since SystemCoreClock
71 variable is updated automatically.
73 extern uint32_t SystemCoreClock; /*!< System Domain1 Clock Frequency */
74 extern uint32_t SystemD2Clock; /*!< System Domain2 Clock Frequency */
75 extern const uint8_t D1CorePrescTable[16] ; /*!< D1CorePrescTable prescalers table values */
77 /**
78 * @}
81 /** @addtogroup STM32H7xx_System_Exported_Constants
82 * @{
85 /**
86 * @}
89 /** @addtogroup STM32H7xx_System_Exported_Macros
90 * @{
93 /**
94 * @}
97 /** @addtogroup STM32H7xx_System_Exported_Functions
98 * @{
101 extern void SystemInit(void);
102 extern void SystemCoreClockUpdate(void);
104 * @}
107 #ifdef __cplusplus
109 #endif
111 #endif /* SYSTEM_STM32H7XX_H */
114 * @}
118 * @}
120 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/