Elijah Orr / mbed-renbed

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
Kojto
Date:
Tue Mar 15 14:34:00 2016 +0000
Revision:
116:c0f6e94411f5
Parent:
107:4f6c30876dfa
Release 116 of the mbed library

Changes:
- new targets - NUCLEO_L073RZ
- fixes to IOTSS BEID platform
- LPC824, LPC1549 and LPC11U68 - fix PWMOut SCT bugs
- STM32F7 - Cube driver
- STM32F4 - add RTC LSI macro, defined as 0
- STM32F3 - fix multiple ADC clock initialization
- retarget - binary mode fix for GCC

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 107:4f6c30876dfa 1 /**
Kojto 107:4f6c30876dfa 2 ******************************************************************************
Kojto 107:4f6c30876dfa 3 * @file stm32f7xx_hal.h
Kojto 107:4f6c30876dfa 4 * @author MCD Application Team
Kojto 116:c0f6e94411f5 5 * @version V1.0.4
Kojto 116:c0f6e94411f5 6 * @date 09-December-2015
Kojto 107:4f6c30876dfa 7 * @brief This file contains all the functions prototypes for the HAL
Kojto 107:4f6c30876dfa 8 * module driver.
Kojto 107:4f6c30876dfa 9 ******************************************************************************
Kojto 107:4f6c30876dfa 10 * @attention
Kojto 107:4f6c30876dfa 11 *
Kojto 107:4f6c30876dfa 12 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 107:4f6c30876dfa 13 *
Kojto 107:4f6c30876dfa 14 * Redistribution and use in source and binary forms, with or without modification,
Kojto 107:4f6c30876dfa 15 * are permitted provided that the following conditions are met:
Kojto 107:4f6c30876dfa 16 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 107:4f6c30876dfa 17 * this list of conditions and the following disclaimer.
Kojto 107:4f6c30876dfa 18 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 107:4f6c30876dfa 19 * this list of conditions and the following disclaimer in the documentation
Kojto 107:4f6c30876dfa 20 * and/or other materials provided with the distribution.
Kojto 107:4f6c30876dfa 21 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 107:4f6c30876dfa 22 * may be used to endorse or promote products derived from this software
Kojto 107:4f6c30876dfa 23 * without specific prior written permission.
Kojto 107:4f6c30876dfa 24 *
Kojto 107:4f6c30876dfa 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 107:4f6c30876dfa 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 107:4f6c30876dfa 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 107:4f6c30876dfa 28 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 107:4f6c30876dfa 29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 107:4f6c30876dfa 30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 107:4f6c30876dfa 31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 107:4f6c30876dfa 32 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 107:4f6c30876dfa 33 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 107:4f6c30876dfa 34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 107:4f6c30876dfa 35 *
Kojto 107:4f6c30876dfa 36 ******************************************************************************
Kojto 107:4f6c30876dfa 37 */
Kojto 107:4f6c30876dfa 38
Kojto 107:4f6c30876dfa 39 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 107:4f6c30876dfa 40 #ifndef __STM32F7xx_HAL_H
Kojto 107:4f6c30876dfa 41 #define __STM32F7xx_HAL_H
Kojto 107:4f6c30876dfa 42
Kojto 107:4f6c30876dfa 43 #ifdef __cplusplus
Kojto 107:4f6c30876dfa 44 extern "C" {
Kojto 107:4f6c30876dfa 45 #endif
Kojto 107:4f6c30876dfa 46
Kojto 107:4f6c30876dfa 47 /* Includes ------------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 48 #include "stm32f7xx_hal_conf.h"
Kojto 107:4f6c30876dfa 49
Kojto 107:4f6c30876dfa 50 /** @addtogroup STM32F7xx_HAL_Driver
Kojto 107:4f6c30876dfa 51 * @{
Kojto 107:4f6c30876dfa 52 */
Kojto 107:4f6c30876dfa 53
Kojto 107:4f6c30876dfa 54 /** @addtogroup HAL
Kojto 107:4f6c30876dfa 55 * @{
Kojto 107:4f6c30876dfa 56 */
Kojto 107:4f6c30876dfa 57
Kojto 107:4f6c30876dfa 58 /* Exported types ------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 59 /* Exported constants --------------------------------------------------------*/
Kojto 107:4f6c30876dfa 60 /* Exported macro ------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 61 /** @defgroup HAL_Exported_Macros HAL Exported Macros
Kojto 107:4f6c30876dfa 62 * @{
Kojto 107:4f6c30876dfa 63 */
Kojto 107:4f6c30876dfa 64
Kojto 107:4f6c30876dfa 65 /** @brief Freeze/Unfreeze Peripherals in Debug mode
Kojto 107:4f6c30876dfa 66 */
Kojto 107:4f6c30876dfa 67 #define __HAL_DBGMCU_FREEZE_TIM2() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_TIM2_STOP))
Kojto 107:4f6c30876dfa 68 #define __HAL_DBGMCU_FREEZE_TIM3() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_TIM3_STOP))
Kojto 107:4f6c30876dfa 69 #define __HAL_DBGMCU_FREEZE_TIM4() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_TIM4_STOP))
Kojto 107:4f6c30876dfa 70 #define __HAL_DBGMCU_FREEZE_TIM5() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_TIM5_STOP))
Kojto 107:4f6c30876dfa 71 #define __HAL_DBGMCU_FREEZE_TIM6() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_TIM6_STOP))
Kojto 107:4f6c30876dfa 72 #define __HAL_DBGMCU_FREEZE_TIM7() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_TIM7_STOP))
Kojto 107:4f6c30876dfa 73 #define __HAL_DBGMCU_FREEZE_TIM12() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_TIM12_STOP))
Kojto 107:4f6c30876dfa 74 #define __HAL_DBGMCU_FREEZE_TIM13() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_TIM13_STOP))
Kojto 107:4f6c30876dfa 75 #define __HAL_DBGMCU_FREEZE_TIM14() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_TIM14_STOP))
Kojto 107:4f6c30876dfa 76 #define __HAL_DBGMCU_FREEZE_LPTIM1() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_LPTIM1_STOP))
Kojto 107:4f6c30876dfa 77 #define __HAL_DBGMCU_FREEZE_RTC() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_RTC_STOP))
Kojto 107:4f6c30876dfa 78 #define __HAL_DBGMCU_FREEZE_WWDG() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_WWDG_STOP))
Kojto 107:4f6c30876dfa 79 #define __HAL_DBGMCU_FREEZE_IWDG() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_IWDG_STOP))
Kojto 107:4f6c30876dfa 80 #define __HAL_DBGMCU_FREEZE_I2C1_TIMEOUT() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT))
Kojto 107:4f6c30876dfa 81 #define __HAL_DBGMCU_FREEZE_I2C2_TIMEOUT() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT))
Kojto 107:4f6c30876dfa 82 #define __HAL_DBGMCU_FREEZE_I2C3_TIMEOUT() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_I2C3_SMBUS_TIMEOUT))
Kojto 107:4f6c30876dfa 83 #define __HAL_DBGMCU_FREEZE_I2C4_TIMEOUT() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_I2C4_SMBUS_TIMEOUT))
Kojto 107:4f6c30876dfa 84 #define __HAL_DBGMCU_FREEZE_CAN1() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_CAN1_STOP))
Kojto 107:4f6c30876dfa 85 #define __HAL_DBGMCU_FREEZE_CAN2() (DBGMCU->APB1FZ |= (DBGMCU_APB1_FZ_DBG_CAN2_STOP))
Kojto 107:4f6c30876dfa 86 #define __HAL_DBGMCU_FREEZE_TIM1() (DBGMCU->APB2FZ |= (DBGMCU_APB2_FZ_DBG_TIM1_STOP))
Kojto 107:4f6c30876dfa 87 #define __HAL_DBGMCU_FREEZE_TIM8() (DBGMCU->APB2FZ |= (DBGMCU_APB2_FZ_DBG_TIM8_STOP))
Kojto 107:4f6c30876dfa 88 #define __HAL_DBGMCU_FREEZE_TIM9() (DBGMCU->APB2FZ |= (DBGMCU_APB2_FZ_DBG_TIM9_STOP))
Kojto 107:4f6c30876dfa 89 #define __HAL_DBGMCU_FREEZE_TIM10() (DBGMCU->APB2FZ |= (DBGMCU_APB2_FZ_DBG_TIM10_STOP))
Kojto 107:4f6c30876dfa 90 #define __HAL_DBGMCU_FREEZE_TIM11() (DBGMCU->APB2FZ |= (DBGMCU_APB2_FZ_DBG_TIM11_STOP))
Kojto 107:4f6c30876dfa 91
Kojto 107:4f6c30876dfa 92 #define __HAL_DBGMCU_UNFREEZE_TIM2() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_TIM2_STOP))
Kojto 107:4f6c30876dfa 93 #define __HAL_DBGMCU_UNFREEZE_TIM3() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_TIM3_STOP))
Kojto 107:4f6c30876dfa 94 #define __HAL_DBGMCU_UNFREEZE_TIM4() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_TIM4_STOP))
Kojto 107:4f6c30876dfa 95 #define __HAL_DBGMCU_UNFREEZE_TIM5() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_TIM5_STOP))
Kojto 107:4f6c30876dfa 96 #define __HAL_DBGMCU_UNFREEZE_TIM6() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_TIM6_STOP))
Kojto 107:4f6c30876dfa 97 #define __HAL_DBGMCU_UNFREEZE_TIM7() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_TIM7_STOP))
Kojto 107:4f6c30876dfa 98 #define __HAL_DBGMCU_UNFREEZE_TIM12() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_TIM12_STOP))
Kojto 107:4f6c30876dfa 99 #define __HAL_DBGMCU_UNFREEZE_TIM13() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_TIM13_STOP))
Kojto 107:4f6c30876dfa 100 #define __HAL_DBGMCU_UNFREEZE_TIM14() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_TIM14_STOP))
Kojto 107:4f6c30876dfa 101 #define __HAL_DBGMCU_UNFREEZE_LPTIM1() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_LPTIM1_STOP))
Kojto 107:4f6c30876dfa 102 #define __HAL_DBGMCU_UNFREEZE_RTC() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_RTC_STOP))
Kojto 107:4f6c30876dfa 103 #define __HAL_DBGMCU_UNFREEZE_WWDG() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_WWDG_STOP))
Kojto 107:4f6c30876dfa 104 #define __HAL_DBGMCU_UNFREEZE_IWDG() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_IWDG_STOP))
Kojto 107:4f6c30876dfa 105 #define __HAL_DBGMCU_UNFREEZE_I2C1_TIMEOUT() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT))
Kojto 107:4f6c30876dfa 106 #define __HAL_DBGMCU_UNFREEZE_I2C2_TIMEOUT() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT))
Kojto 107:4f6c30876dfa 107 #define __HAL_DBGMCU_UNFREEZE_I2C3_TIMEOUT() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_I2C3_SMBUS_TIMEOUT))
Kojto 107:4f6c30876dfa 108 #define __HAL_DBGMCU_UNFREEZE_I2C4_TIMEOUT() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_I2C4_SMBUS_TIMEOUT))
Kojto 107:4f6c30876dfa 109 #define __HAL_DBGMCU_UNFREEZE_CAN1() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_CAN1_STOP))
Kojto 107:4f6c30876dfa 110 #define __HAL_DBGMCU_UNFREEZE_CAN2() (DBGMCU->APB1FZ &= ~(DBGMCU_APB1_FZ_DBG_CAN2_STOP))
Kojto 107:4f6c30876dfa 111 #define __HAL_DBGMCU_UNFREEZE_TIM1() (DBGMCU->APB2FZ &= ~(DBGMCU_APB2_FZ_DBG_TIM1_STOP))
Kojto 107:4f6c30876dfa 112 #define __HAL_DBGMCU_UNFREEZE_TIM8() (DBGMCU->APB2FZ &= ~(DBGMCU_APB2_FZ_DBG_TIM8_STOP))
Kojto 107:4f6c30876dfa 113 #define __HAL_DBGMCU_UNFREEZE_TIM9() (DBGMCU->APB2FZ &= ~(DBGMCU_APB2_FZ_DBG_TIM9_STOP))
Kojto 107:4f6c30876dfa 114 #define __HAL_DBGMCU_UNFREEZE_TIM10() (DBGMCU->APB2FZ &= ~(DBGMCU_APB2_FZ_DBG_TIM10_STOP))
Kojto 107:4f6c30876dfa 115 #define __HAL_DBGMCU_UNFREEZE_TIM11() (DBGMCU->APB2FZ &= ~(DBGMCU_APB2_FZ_DBG_TIM11_STOP))
Kojto 107:4f6c30876dfa 116
Kojto 107:4f6c30876dfa 117
Kojto 107:4f6c30876dfa 118 /** @brief FMC (NOR/RAM) mapped at 0x60000000 and SDRAM mapped at 0xC0000000
Kojto 107:4f6c30876dfa 119 */
Kojto 107:4f6c30876dfa 120 #define __HAL_SYSCFG_REMAPMEMORY_FMC() (SYSCFG->MEMRMP &= ~(SYSCFG_MEMRMP_SWP_FMC))
Kojto 107:4f6c30876dfa 121
Kojto 107:4f6c30876dfa 122
Kojto 107:4f6c30876dfa 123 /** @brief FMC/SDRAM mapped at 0x60000000 (NOR/RAM) mapped at 0xC0000000
Kojto 107:4f6c30876dfa 124 */
Kojto 107:4f6c30876dfa 125 #define __HAL_SYSCFG_REMAPMEMORY_FMC_SDRAM() do {SYSCFG->MEMRMP &= ~(SYSCFG_MEMRMP_SWP_FMC);\
Kojto 107:4f6c30876dfa 126 SYSCFG->MEMRMP |= (SYSCFG_MEMRMP_SWP_FMC_0);\
Kojto 107:4f6c30876dfa 127 }while(0);
Kojto 107:4f6c30876dfa 128 /**
Kojto 107:4f6c30876dfa 129 * @}
Kojto 107:4f6c30876dfa 130 */
Kojto 107:4f6c30876dfa 131
Kojto 107:4f6c30876dfa 132 /* Exported functions --------------------------------------------------------*/
Kojto 107:4f6c30876dfa 133 /** @addtogroup HAL_Exported_Functions
Kojto 107:4f6c30876dfa 134 * @{
Kojto 107:4f6c30876dfa 135 */
Kojto 107:4f6c30876dfa 136 /** @addtogroup HAL_Exported_Functions_Group1
Kojto 107:4f6c30876dfa 137 * @{
Kojto 107:4f6c30876dfa 138 */
Kojto 107:4f6c30876dfa 139 /* Initialization and de-initialization functions ******************************/
Kojto 107:4f6c30876dfa 140 HAL_StatusTypeDef HAL_Init(void);
Kojto 107:4f6c30876dfa 141 HAL_StatusTypeDef HAL_DeInit(void);
Kojto 107:4f6c30876dfa 142 void HAL_MspInit(void);
Kojto 107:4f6c30876dfa 143 void HAL_MspDeInit(void);
Kojto 107:4f6c30876dfa 144 HAL_StatusTypeDef HAL_InitTick (uint32_t TickPriority);
Kojto 107:4f6c30876dfa 145 /**
Kojto 107:4f6c30876dfa 146 * @}
Kojto 107:4f6c30876dfa 147 */
Kojto 107:4f6c30876dfa 148
Kojto 107:4f6c30876dfa 149 /** @addtogroup HAL_Exported_Functions_Group2
Kojto 107:4f6c30876dfa 150 * @{
Kojto 107:4f6c30876dfa 151 */
Kojto 107:4f6c30876dfa 152 /* Peripheral Control functions ************************************************/
Kojto 107:4f6c30876dfa 153 void HAL_IncTick(void);
Kojto 107:4f6c30876dfa 154 void HAL_Delay(__IO uint32_t Delay);
Kojto 107:4f6c30876dfa 155 uint32_t HAL_GetTick(void);
Kojto 107:4f6c30876dfa 156 void HAL_SuspendTick(void);
Kojto 107:4f6c30876dfa 157 void HAL_ResumeTick(void);
Kojto 107:4f6c30876dfa 158 uint32_t HAL_GetHalVersion(void);
Kojto 107:4f6c30876dfa 159 uint32_t HAL_GetREVID(void);
Kojto 107:4f6c30876dfa 160 uint32_t HAL_GetDEVID(void);
Kojto 107:4f6c30876dfa 161 void HAL_DBGMCU_EnableDBGSleepMode(void);
Kojto 107:4f6c30876dfa 162 void HAL_DBGMCU_DisableDBGSleepMode(void);
Kojto 107:4f6c30876dfa 163 void HAL_DBGMCU_EnableDBGStopMode(void);
Kojto 107:4f6c30876dfa 164 void HAL_DBGMCU_DisableDBGStopMode(void);
Kojto 107:4f6c30876dfa 165 void HAL_DBGMCU_EnableDBGStandbyMode(void);
Kojto 107:4f6c30876dfa 166 void HAL_DBGMCU_DisableDBGStandbyMode(void);
Kojto 107:4f6c30876dfa 167 void HAL_EnableCompensationCell(void);
Kojto 107:4f6c30876dfa 168 void HAL_DisableCompensationCell(void);
Kojto 107:4f6c30876dfa 169 void HAL_EnableFMCMemorySwapping(void);
Kojto 107:4f6c30876dfa 170 void HAL_DisableFMCMemorySwapping(void);
Kojto 107:4f6c30876dfa 171 /**
Kojto 107:4f6c30876dfa 172 * @}
Kojto 107:4f6c30876dfa 173 */
Kojto 107:4f6c30876dfa 174
Kojto 107:4f6c30876dfa 175 /**
Kojto 107:4f6c30876dfa 176 * @}
Kojto 107:4f6c30876dfa 177 */
Kojto 107:4f6c30876dfa 178 /* Private types -------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 179 /* Private variables ---------------------------------------------------------*/
Kojto 107:4f6c30876dfa 180 /** @defgroup HAL_Private_Variables HAL Private Variables
Kojto 107:4f6c30876dfa 181 * @{
Kojto 107:4f6c30876dfa 182 */
Kojto 107:4f6c30876dfa 183 /**
Kojto 107:4f6c30876dfa 184 * @}
Kojto 107:4f6c30876dfa 185 */
Kojto 107:4f6c30876dfa 186 /* Private constants ---------------------------------------------------------*/
Kojto 107:4f6c30876dfa 187 /** @defgroup HAL_Private_Constants HAL Private Constants
Kojto 107:4f6c30876dfa 188 * @{
Kojto 107:4f6c30876dfa 189 */
Kojto 107:4f6c30876dfa 190 /**
Kojto 107:4f6c30876dfa 191 * @}
Kojto 107:4f6c30876dfa 192 */
Kojto 107:4f6c30876dfa 193 /* Private macros ------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 194 /* Private functions ---------------------------------------------------------*/
Kojto 107:4f6c30876dfa 195 /**
Kojto 107:4f6c30876dfa 196 * @}
Kojto 107:4f6c30876dfa 197 */
Kojto 107:4f6c30876dfa 198
Kojto 107:4f6c30876dfa 199 /**
Kojto 107:4f6c30876dfa 200 * @}
Kojto 107:4f6c30876dfa 201 */
Kojto 107:4f6c30876dfa 202
Kojto 107:4f6c30876dfa 203 #ifdef __cplusplus
Kojto 107:4f6c30876dfa 204 }
Kojto 107:4f6c30876dfa 205 #endif
Kojto 107:4f6c30876dfa 206
Kojto 107:4f6c30876dfa 207 #endif /* __STM32F7xx_HAL_H */
Kojto 107:4f6c30876dfa 208
Kojto 107:4f6c30876dfa 209 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/