Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
108:34e6b704fe68
.

Who changed what in which revision?

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