mbed library sources

Dependents:   frdm_kl05z_gpio_test

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Fri May 30 15:30:09 2014 +0100
Revision:
218:44081b78fdc2
Parent:
205:c41fc65bcfb4
Synchronized with git revision d854859072d318241476ccc5f335965444d4c1d8

Full URL: https://github.com/mbedmicro/mbed/commit/d854859072d318241476ccc5f335965444d4c1d8/

[NUCLEO_F072RB] Update CubeF0 HAL driver

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 205:c41fc65bcfb4 1 /**
mbed_official 205:c41fc65bcfb4 2 ******************************************************************************
mbed_official 205:c41fc65bcfb4 3 * @file stm32f0xx_hal_iwdg.h
mbed_official 205:c41fc65bcfb4 4 * @author MCD Application Team
mbed_official 205:c41fc65bcfb4 5 * @version V1.0.0
mbed_official 218:44081b78fdc2 6 * @date 28-May-2014
mbed_official 205:c41fc65bcfb4 7 * @brief Header file of IWDG HAL module.
mbed_official 205:c41fc65bcfb4 8 ******************************************************************************
mbed_official 205:c41fc65bcfb4 9 * @attention
mbed_official 205:c41fc65bcfb4 10 *
mbed_official 205:c41fc65bcfb4 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
mbed_official 205:c41fc65bcfb4 12 *
mbed_official 205:c41fc65bcfb4 13 * Redistribution and use in source and binary forms, with or without modification,
mbed_official 205:c41fc65bcfb4 14 * are permitted provided that the following conditions are met:
mbed_official 205:c41fc65bcfb4 15 * 1. Redistributions of source code must retain the above copyright notice,
mbed_official 205:c41fc65bcfb4 16 * this list of conditions and the following disclaimer.
mbed_official 205:c41fc65bcfb4 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 205:c41fc65bcfb4 18 * this list of conditions and the following disclaimer in the documentation
mbed_official 205:c41fc65bcfb4 19 * and/or other materials provided with the distribution.
mbed_official 205:c41fc65bcfb4 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 205:c41fc65bcfb4 21 * may be used to endorse or promote products derived from this software
mbed_official 205:c41fc65bcfb4 22 * without specific prior written permission.
mbed_official 205:c41fc65bcfb4 23 *
mbed_official 205:c41fc65bcfb4 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 205:c41fc65bcfb4 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 205:c41fc65bcfb4 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 205:c41fc65bcfb4 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 205:c41fc65bcfb4 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 205:c41fc65bcfb4 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 205:c41fc65bcfb4 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 205:c41fc65bcfb4 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 205:c41fc65bcfb4 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 205:c41fc65bcfb4 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 205:c41fc65bcfb4 34 *
mbed_official 205:c41fc65bcfb4 35 ******************************************************************************
mbed_official 205:c41fc65bcfb4 36 */
mbed_official 205:c41fc65bcfb4 37
mbed_official 205:c41fc65bcfb4 38 /* Define to prevent recursive inclusion -------------------------------------*/
mbed_official 205:c41fc65bcfb4 39 #ifndef __STM32F0xx_HAL_IWDG_H
mbed_official 205:c41fc65bcfb4 40 #define __STM32F0xx_HAL_IWDG_H
mbed_official 205:c41fc65bcfb4 41
mbed_official 205:c41fc65bcfb4 42 #ifdef __cplusplus
mbed_official 205:c41fc65bcfb4 43 extern "C" {
mbed_official 205:c41fc65bcfb4 44 #endif
mbed_official 205:c41fc65bcfb4 45
mbed_official 205:c41fc65bcfb4 46 /* Includes ------------------------------------------------------------------*/
mbed_official 205:c41fc65bcfb4 47 #include "stm32f0xx_hal_def.h"
mbed_official 205:c41fc65bcfb4 48
mbed_official 205:c41fc65bcfb4 49 /** @addtogroup STM32F0xx_HAL_Driver
mbed_official 205:c41fc65bcfb4 50 * @{
mbed_official 205:c41fc65bcfb4 51 */
mbed_official 205:c41fc65bcfb4 52
mbed_official 205:c41fc65bcfb4 53 /** @addtogroup IWDG
mbed_official 205:c41fc65bcfb4 54 * @{
mbed_official 205:c41fc65bcfb4 55 */
mbed_official 205:c41fc65bcfb4 56
mbed_official 205:c41fc65bcfb4 57 /* Exported types ------------------------------------------------------------*/
mbed_official 205:c41fc65bcfb4 58
mbed_official 205:c41fc65bcfb4 59 /**
mbed_official 205:c41fc65bcfb4 60 * @brief IWDG HAL State Structure definition
mbed_official 205:c41fc65bcfb4 61 */
mbed_official 205:c41fc65bcfb4 62 typedef enum
mbed_official 205:c41fc65bcfb4 63 {
mbed_official 205:c41fc65bcfb4 64 HAL_IWDG_STATE_RESET = 0x00, /*!< IWDG not yet initialized or disabled */
mbed_official 205:c41fc65bcfb4 65 HAL_IWDG_STATE_READY = 0x01, /*!< IWDG initialized and ready for use */
mbed_official 205:c41fc65bcfb4 66 HAL_IWDG_STATE_BUSY = 0x02, /*!< IWDG internal process is ongoing */
mbed_official 205:c41fc65bcfb4 67 HAL_IWDG_STATE_TIMEOUT = 0x03, /*!< IWDG timeout state */
mbed_official 205:c41fc65bcfb4 68 HAL_IWDG_STATE_ERROR = 0x04 /*!< IWDG error state */
mbed_official 205:c41fc65bcfb4 69
mbed_official 205:c41fc65bcfb4 70 }HAL_IWDG_StateTypeDef;
mbed_official 205:c41fc65bcfb4 71
mbed_official 205:c41fc65bcfb4 72 /**
mbed_official 205:c41fc65bcfb4 73 * @brief IWDG Init structure definition
mbed_official 205:c41fc65bcfb4 74 */
mbed_official 205:c41fc65bcfb4 75 typedef struct
mbed_official 205:c41fc65bcfb4 76 {
mbed_official 205:c41fc65bcfb4 77 uint32_t Prescaler; /*!< Select the prescaler of the IWDG.
mbed_official 205:c41fc65bcfb4 78 This parameter can be a value of @ref IWDG_Prescaler */
mbed_official 205:c41fc65bcfb4 79
mbed_official 205:c41fc65bcfb4 80 uint32_t Reload; /*!< Specifies the IWDG down-counter reload value.
mbed_official 205:c41fc65bcfb4 81 This parameter must be a number between Min_Data = 0 and Max_Data = 0x0FFF */
mbed_official 205:c41fc65bcfb4 82
mbed_official 205:c41fc65bcfb4 83 uint32_t Window; /*!< Specifies the window value to be compared to the down-counter.
mbed_official 205:c41fc65bcfb4 84 This parameter must be a number between Min_Data = 0 and Max_Data = 0x0FFF */
mbed_official 205:c41fc65bcfb4 85
mbed_official 205:c41fc65bcfb4 86 } IWDG_InitTypeDef;
mbed_official 205:c41fc65bcfb4 87
mbed_official 205:c41fc65bcfb4 88 /**
mbed_official 205:c41fc65bcfb4 89 * @brief IWDG Handle Structure definition
mbed_official 205:c41fc65bcfb4 90 */
mbed_official 205:c41fc65bcfb4 91 typedef struct
mbed_official 205:c41fc65bcfb4 92 {
mbed_official 205:c41fc65bcfb4 93 IWDG_TypeDef *Instance; /*!< Register base address */
mbed_official 205:c41fc65bcfb4 94
mbed_official 205:c41fc65bcfb4 95 IWDG_InitTypeDef Init; /*!< IWDG required parameters */
mbed_official 205:c41fc65bcfb4 96
mbed_official 205:c41fc65bcfb4 97 HAL_LockTypeDef Lock; /*!< IWDG Locking object */
mbed_official 205:c41fc65bcfb4 98
mbed_official 205:c41fc65bcfb4 99 __IO HAL_IWDG_StateTypeDef State; /*!< IWDG communication state */
mbed_official 205:c41fc65bcfb4 100
mbed_official 205:c41fc65bcfb4 101 }IWDG_HandleTypeDef;
mbed_official 205:c41fc65bcfb4 102
mbed_official 205:c41fc65bcfb4 103 /* Exported constants --------------------------------------------------------*/
mbed_official 205:c41fc65bcfb4 104 /** @defgroup IWDG_Exported_Constants
mbed_official 205:c41fc65bcfb4 105 * @{
mbed_official 205:c41fc65bcfb4 106 */
mbed_official 205:c41fc65bcfb4 107
mbed_official 205:c41fc65bcfb4 108 /** @defgroup IWDG_Registers_BitMask
mbed_official 205:c41fc65bcfb4 109 * @brief IWDG registers bit mask
mbed_official 205:c41fc65bcfb4 110 * @{
mbed_official 205:c41fc65bcfb4 111 */
mbed_official 205:c41fc65bcfb4 112 /* --- KR Register ---*/
mbed_official 205:c41fc65bcfb4 113 /* KR register bit mask */
mbed_official 205:c41fc65bcfb4 114 #define KR_KEY_RELOAD ((uint32_t)0xAAAA) /*!< IWDG Reload Counter Enable */
mbed_official 205:c41fc65bcfb4 115 #define KR_KEY_ENABLE ((uint32_t)0xCCCC) /*!< IWDG Peripheral Enable */
mbed_official 205:c41fc65bcfb4 116 #define KR_KEY_EWA ((uint32_t)0x5555) /*!< IWDG KR Write Access Enable */
mbed_official 205:c41fc65bcfb4 117 #define KR_KEY_DWA ((uint32_t)0x0000) /*!< IWDG KR Write Access Disable */
mbed_official 205:c41fc65bcfb4 118
mbed_official 205:c41fc65bcfb4 119 #define IS_IWDG_KR(KR) (((KR) == KR_KEY_RELOAD) || \
mbed_official 205:c41fc65bcfb4 120 ((KR) == KR_KEY_ENABLE))|| \
mbed_official 205:c41fc65bcfb4 121 ((KR) == KR_KEY_EWA)) || \
mbed_official 205:c41fc65bcfb4 122 ((KR) == KR_KEY_DWA))
mbed_official 205:c41fc65bcfb4 123 /**
mbed_official 205:c41fc65bcfb4 124 * @}
mbed_official 205:c41fc65bcfb4 125 */
mbed_official 205:c41fc65bcfb4 126
mbed_official 205:c41fc65bcfb4 127 /** @defgroup IWDG_Flag_definition
mbed_official 205:c41fc65bcfb4 128 * @{
mbed_official 205:c41fc65bcfb4 129 */
mbed_official 205:c41fc65bcfb4 130 #define IWDG_FLAG_PVU ((uint32_t)0x0001) /*!< Watchdog counter prescaler value update Flag */
mbed_official 205:c41fc65bcfb4 131 #define IWDG_FLAG_RVU ((uint32_t)0x0002) /*!< Watchdog counter reload value update Flag */
mbed_official 205:c41fc65bcfb4 132 #define IWDG_FLAG_WVU ((uint32_t)0x0004) /*!< Watchdog counter window value update Flag */
mbed_official 205:c41fc65bcfb4 133
mbed_official 205:c41fc65bcfb4 134 #define IS_IWDG_FLAG(FLAG) (((FLAG) == IWDG_FLAG_PVU) || \
mbed_official 205:c41fc65bcfb4 135 ((FLAG) == IWDG_FLAG_RVU) || \
mbed_official 205:c41fc65bcfb4 136 ((FLAG) == IWDG_FLAG_WVU))
mbed_official 205:c41fc65bcfb4 137 /**
mbed_official 205:c41fc65bcfb4 138 * @}
mbed_official 205:c41fc65bcfb4 139 */
mbed_official 205:c41fc65bcfb4 140
mbed_official 205:c41fc65bcfb4 141 /** @defgroup IWDG_Prescaler
mbed_official 205:c41fc65bcfb4 142 * @{
mbed_official 205:c41fc65bcfb4 143 */
mbed_official 205:c41fc65bcfb4 144 #define IWDG_PRESCALER_4 ((uint8_t)0x00) /*!< IWDG prescaler set to 4 */
mbed_official 205:c41fc65bcfb4 145 #define IWDG_PRESCALER_8 ((uint8_t)0x01) /*!< IWDG prescaler set to 8 */
mbed_official 205:c41fc65bcfb4 146 #define IWDG_PRESCALER_16 ((uint8_t)0x02) /*!< IWDG prescaler set to 16 */
mbed_official 205:c41fc65bcfb4 147 #define IWDG_PRESCALER_32 ((uint8_t)0x03) /*!< IWDG prescaler set to 32 */
mbed_official 205:c41fc65bcfb4 148 #define IWDG_PRESCALER_64 ((uint8_t)0x04) /*!< IWDG prescaler set to 64 */
mbed_official 205:c41fc65bcfb4 149 #define IWDG_PRESCALER_128 ((uint8_t)0x05) /*!< IWDG prescaler set to 128 */
mbed_official 205:c41fc65bcfb4 150 #define IWDG_PRESCALER_256 ((uint8_t)0x06) /*!< IWDG prescaler set to 256 */
mbed_official 205:c41fc65bcfb4 151
mbed_official 205:c41fc65bcfb4 152 #define IS_IWDG_PRESCALER(PRESCALER) (((PRESCALER) == IWDG_PRESCALER_4) || \
mbed_official 205:c41fc65bcfb4 153 ((PRESCALER) == IWDG_PRESCALER_8) || \
mbed_official 205:c41fc65bcfb4 154 ((PRESCALER) == IWDG_PRESCALER_16) || \
mbed_official 205:c41fc65bcfb4 155 ((PRESCALER) == IWDG_PRESCALER_32) || \
mbed_official 205:c41fc65bcfb4 156 ((PRESCALER) == IWDG_PRESCALER_64) || \
mbed_official 205:c41fc65bcfb4 157 ((PRESCALER) == IWDG_PRESCALER_128)|| \
mbed_official 205:c41fc65bcfb4 158 ((PRESCALER) == IWDG_PRESCALER_256))
mbed_official 205:c41fc65bcfb4 159
mbed_official 205:c41fc65bcfb4 160 /**
mbed_official 205:c41fc65bcfb4 161 * @}
mbed_official 205:c41fc65bcfb4 162 */
mbed_official 205:c41fc65bcfb4 163
mbed_official 205:c41fc65bcfb4 164 /** @defgroup IWDG_Reload_Value
mbed_official 205:c41fc65bcfb4 165 * @{
mbed_official 205:c41fc65bcfb4 166 */
mbed_official 205:c41fc65bcfb4 167 #define IS_IWDG_RELOAD(RELOAD) ((RELOAD) <= 0xFFF)
mbed_official 205:c41fc65bcfb4 168 /**
mbed_official 205:c41fc65bcfb4 169 * @}
mbed_official 205:c41fc65bcfb4 170 */
mbed_official 205:c41fc65bcfb4 171
mbed_official 205:c41fc65bcfb4 172 /** @defgroup IWDG_CounterWindow_Value
mbed_official 205:c41fc65bcfb4 173 * @{
mbed_official 205:c41fc65bcfb4 174 */
mbed_official 205:c41fc65bcfb4 175 #define IS_IWDG_WINDOW(VALUE) ((VALUE) <= 0xFFF)
mbed_official 205:c41fc65bcfb4 176 /**
mbed_official 205:c41fc65bcfb4 177 * @}
mbed_official 205:c41fc65bcfb4 178 */
mbed_official 205:c41fc65bcfb4 179 /** @defgroup IWDG_Window option disable
mbed_official 205:c41fc65bcfb4 180 * @{
mbed_official 205:c41fc65bcfb4 181 */
mbed_official 205:c41fc65bcfb4 182 #define IWDG_WINDOW_DISABLE 0xFFF
mbed_official 205:c41fc65bcfb4 183 /**
mbed_official 205:c41fc65bcfb4 184 * @}
mbed_official 205:c41fc65bcfb4 185 */
mbed_official 205:c41fc65bcfb4 186
mbed_official 205:c41fc65bcfb4 187 /**
mbed_official 205:c41fc65bcfb4 188 * @}
mbed_official 205:c41fc65bcfb4 189 */
mbed_official 205:c41fc65bcfb4 190
mbed_official 205:c41fc65bcfb4 191 /* Exported macros -----------------------------------------------------------*/
mbed_official 205:c41fc65bcfb4 192
mbed_official 205:c41fc65bcfb4 193 /** @defgroup IWDG_Exported_Macros
mbed_official 205:c41fc65bcfb4 194 * @{
mbed_official 205:c41fc65bcfb4 195 */
mbed_official 205:c41fc65bcfb4 196
mbed_official 205:c41fc65bcfb4 197 /** @brief Reset IWDG handle state
mbed_official 205:c41fc65bcfb4 198 * @param __HANDLE__: IWDG handle.
mbed_official 205:c41fc65bcfb4 199 * @retval None
mbed_official 205:c41fc65bcfb4 200 */
mbed_official 205:c41fc65bcfb4 201 #define __HAL_IWDG_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_IWDG_STATE_RESET)
mbed_official 205:c41fc65bcfb4 202
mbed_official 205:c41fc65bcfb4 203 /**
mbed_official 205:c41fc65bcfb4 204 * @brief Enables the IWDG peripheral.
mbed_official 205:c41fc65bcfb4 205 * @param __HANDLE__: IWDG handle
mbed_official 205:c41fc65bcfb4 206 * @retval None
mbed_official 205:c41fc65bcfb4 207 */
mbed_official 205:c41fc65bcfb4 208 #define __HAL_IWDG_START(__HANDLE__) ((__HANDLE__)->Instance->KR |= KR_KEY_ENABLE)
mbed_official 205:c41fc65bcfb4 209
mbed_official 205:c41fc65bcfb4 210 /**
mbed_official 205:c41fc65bcfb4 211 * @brief Reloads IWDG counter with value defined in the reload register
mbed_official 205:c41fc65bcfb4 212 * (write access to IWDG_PR and IWDG_RLR registers disabled).
mbed_official 205:c41fc65bcfb4 213 * @param __HANDLE__: IWDG handle
mbed_official 205:c41fc65bcfb4 214 * @retval None
mbed_official 205:c41fc65bcfb4 215 */
mbed_official 205:c41fc65bcfb4 216 #define __HAL_IWDG_RELOAD_COUNTER(__HANDLE__) (((__HANDLE__)->Instance->KR) |= KR_KEY_RELOAD)
mbed_official 205:c41fc65bcfb4 217
mbed_official 205:c41fc65bcfb4 218 /**
mbed_official 205:c41fc65bcfb4 219 * @brief Enable write access to IWDG_PR, IWDG_RLR and IWDG_WINR registers.
mbed_official 205:c41fc65bcfb4 220 * @param __HANDLE__: IWDG handle
mbed_official 205:c41fc65bcfb4 221 * @retval None
mbed_official 205:c41fc65bcfb4 222 */
mbed_official 205:c41fc65bcfb4 223 #define __HAL_IWDG_ENABLE_WRITE_ACCESS(__HANDLE__) (((__HANDLE__)->Instance->KR) |= KR_KEY_EWA)
mbed_official 205:c41fc65bcfb4 224
mbed_official 205:c41fc65bcfb4 225 /**
mbed_official 205:c41fc65bcfb4 226 * @brief Disable write access to IWDG_PR, IWDG_RLR and IWDG_WINR registers.
mbed_official 205:c41fc65bcfb4 227 * @param __HANDLE__: IWDG handle
mbed_official 205:c41fc65bcfb4 228 * @retval None
mbed_official 205:c41fc65bcfb4 229 */
mbed_official 205:c41fc65bcfb4 230 #define __HAL_IWDG_DISABLE_WRITE_ACCESS(__HANDLE__) (((__HANDLE__)->Instance->KR) |= KR_KEY_DWA)
mbed_official 205:c41fc65bcfb4 231
mbed_official 205:c41fc65bcfb4 232 /**
mbed_official 205:c41fc65bcfb4 233 * @brief Gets the selected IWDG's flag status.
mbed_official 205:c41fc65bcfb4 234 * @param __HANDLE__: IWDG handle
mbed_official 205:c41fc65bcfb4 235 * @param __FLAG__: specifies the flag to check.
mbed_official 205:c41fc65bcfb4 236 * This parameter can be one of the following values:
mbed_official 205:c41fc65bcfb4 237 * @arg IWDG_FLAG_PVU: Watchdog counter reload value update flag
mbed_official 205:c41fc65bcfb4 238 * @arg IWDG_FLAG_RVU: Watchdog counter prescaler value flag
mbed_official 205:c41fc65bcfb4 239 * @arg IWDG_FLAG_WVU: Watchdog counter window value flag
mbed_official 205:c41fc65bcfb4 240 * @retval The new state of __FLAG__ (TRUE or FALSE).
mbed_official 205:c41fc65bcfb4 241 */
mbed_official 205:c41fc65bcfb4 242 #define __HAL_IWDG_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__))
mbed_official 205:c41fc65bcfb4 243
mbed_official 205:c41fc65bcfb4 244 /**
mbed_official 205:c41fc65bcfb4 245 * @}
mbed_official 205:c41fc65bcfb4 246 */
mbed_official 205:c41fc65bcfb4 247
mbed_official 205:c41fc65bcfb4 248 /* Exported functions --------------------------------------------------------*/
mbed_official 205:c41fc65bcfb4 249
mbed_official 205:c41fc65bcfb4 250 /* Initialization and de-initialization functions ****************************/
mbed_official 205:c41fc65bcfb4 251 HAL_StatusTypeDef HAL_IWDG_Init(IWDG_HandleTypeDef *hiwdg);
mbed_official 205:c41fc65bcfb4 252 void HAL_IWDG_MspInit(IWDG_HandleTypeDef *hiwdg);
mbed_official 205:c41fc65bcfb4 253
mbed_official 205:c41fc65bcfb4 254 /* I/O operation functions ****************************************************/
mbed_official 205:c41fc65bcfb4 255 HAL_StatusTypeDef HAL_IWDG_Start(IWDG_HandleTypeDef *hiwdg);
mbed_official 205:c41fc65bcfb4 256 HAL_StatusTypeDef HAL_IWDG_Refresh(IWDG_HandleTypeDef *hiwdg);
mbed_official 205:c41fc65bcfb4 257
mbed_official 205:c41fc65bcfb4 258 /* Peripheral State functions ************************************************/
mbed_official 205:c41fc65bcfb4 259 HAL_IWDG_StateTypeDef HAL_IWDG_GetState(IWDG_HandleTypeDef *hiwdg);
mbed_official 205:c41fc65bcfb4 260
mbed_official 205:c41fc65bcfb4 261 /**
mbed_official 205:c41fc65bcfb4 262 * @}
mbed_official 205:c41fc65bcfb4 263 */
mbed_official 205:c41fc65bcfb4 264
mbed_official 205:c41fc65bcfb4 265 /**
mbed_official 205:c41fc65bcfb4 266 * @}
mbed_official 205:c41fc65bcfb4 267 */
mbed_official 205:c41fc65bcfb4 268
mbed_official 205:c41fc65bcfb4 269 #ifdef __cplusplus
mbed_official 205:c41fc65bcfb4 270 }
mbed_official 205:c41fc65bcfb4 271 #endif
mbed_official 205:c41fc65bcfb4 272
mbed_official 205:c41fc65bcfb4 273 #endif /* __STM32F0xx_HAL_IWDG_H */
mbed_official 205:c41fc65bcfb4 274
mbed_official 205:c41fc65bcfb4 275 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/