DHT11

Committer:
jhon309
Date:
Thu Aug 13 00:21:57 2015 +0000
Revision:
0:c52df770855b
DHT11

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jhon309 0:c52df770855b 1 /**
jhon309 0:c52df770855b 2 ******************************************************************************
jhon309 0:c52df770855b 3 * @file stm32f0xx_hal_wwdg.h
jhon309 0:c52df770855b 4 * @author MCD Application Team
jhon309 0:c52df770855b 5 * @version V1.2.0
jhon309 0:c52df770855b 6 * @date 11-December-2014
jhon309 0:c52df770855b 7 * @brief Header file of WWDG HAL module.
jhon309 0:c52df770855b 8 ******************************************************************************
jhon309 0:c52df770855b 9 * @attention
jhon309 0:c52df770855b 10 *
jhon309 0:c52df770855b 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
jhon309 0:c52df770855b 12 *
jhon309 0:c52df770855b 13 * Redistribution and use in source and binary forms, with or without modification,
jhon309 0:c52df770855b 14 * are permitted provided that the following conditions are met:
jhon309 0:c52df770855b 15 * 1. Redistributions of source code must retain the above copyright notice,
jhon309 0:c52df770855b 16 * this list of conditions and the following disclaimer.
jhon309 0:c52df770855b 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
jhon309 0:c52df770855b 18 * this list of conditions and the following disclaimer in the documentation
jhon309 0:c52df770855b 19 * and/or other materials provided with the distribution.
jhon309 0:c52df770855b 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
jhon309 0:c52df770855b 21 * may be used to endorse or promote products derived from this software
jhon309 0:c52df770855b 22 * without specific prior written permission.
jhon309 0:c52df770855b 23 *
jhon309 0:c52df770855b 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
jhon309 0:c52df770855b 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
jhon309 0:c52df770855b 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
jhon309 0:c52df770855b 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
jhon309 0:c52df770855b 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
jhon309 0:c52df770855b 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
jhon309 0:c52df770855b 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
jhon309 0:c52df770855b 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
jhon309 0:c52df770855b 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
jhon309 0:c52df770855b 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
jhon309 0:c52df770855b 34 *
jhon309 0:c52df770855b 35 ******************************************************************************
jhon309 0:c52df770855b 36 */
jhon309 0:c52df770855b 37
jhon309 0:c52df770855b 38 /* Define to prevent recursive inclusion -------------------------------------*/
jhon309 0:c52df770855b 39 #ifndef __STM32F0xx_HAL_WWDG_H
jhon309 0:c52df770855b 40 #define __STM32F0xx_HAL_WWDG_H
jhon309 0:c52df770855b 41
jhon309 0:c52df770855b 42 #ifdef __cplusplus
jhon309 0:c52df770855b 43 extern "C" {
jhon309 0:c52df770855b 44 #endif
jhon309 0:c52df770855b 45
jhon309 0:c52df770855b 46 /* Includes ------------------------------------------------------------------*/
jhon309 0:c52df770855b 47 #include "stm32f0xx_hal_def.h"
jhon309 0:c52df770855b 48
jhon309 0:c52df770855b 49 /** @addtogroup STM32F0xx_HAL_Driver
jhon309 0:c52df770855b 50 * @{
jhon309 0:c52df770855b 51 */
jhon309 0:c52df770855b 52
jhon309 0:c52df770855b 53 /** @addtogroup WWDG
jhon309 0:c52df770855b 54 * @{
jhon309 0:c52df770855b 55 */
jhon309 0:c52df770855b 56
jhon309 0:c52df770855b 57 /* Exported types ------------------------------------------------------------*/
jhon309 0:c52df770855b 58
jhon309 0:c52df770855b 59 /** @defgroup WWDG_Exported_Types WWDG Exported Types
jhon309 0:c52df770855b 60 * @{
jhon309 0:c52df770855b 61 */
jhon309 0:c52df770855b 62
jhon309 0:c52df770855b 63 /**
jhon309 0:c52df770855b 64 * @brief WWDG HAL State Structure definition
jhon309 0:c52df770855b 65 */
jhon309 0:c52df770855b 66 typedef enum
jhon309 0:c52df770855b 67 {
jhon309 0:c52df770855b 68 HAL_WWDG_STATE_RESET = 0x00, /*!< WWDG not yet initialized or disabled */
jhon309 0:c52df770855b 69 HAL_WWDG_STATE_READY = 0x01, /*!< WWDG initialized and ready for use */
jhon309 0:c52df770855b 70 HAL_WWDG_STATE_BUSY = 0x02, /*!< WWDG internal process is ongoing */
jhon309 0:c52df770855b 71 HAL_WWDG_STATE_TIMEOUT = 0x03, /*!< WWDG timeout state */
jhon309 0:c52df770855b 72 HAL_WWDG_STATE_ERROR = 0x04 /*!< WWDG error state */
jhon309 0:c52df770855b 73 }HAL_WWDG_StateTypeDef;
jhon309 0:c52df770855b 74
jhon309 0:c52df770855b 75 /**
jhon309 0:c52df770855b 76 * @brief WWDG Init structure definition
jhon309 0:c52df770855b 77 */
jhon309 0:c52df770855b 78 typedef struct
jhon309 0:c52df770855b 79 {
jhon309 0:c52df770855b 80 uint32_t Prescaler; /*!< Specifies the prescaler value of the WWDG.
jhon309 0:c52df770855b 81 This parameter can be a value of @ref WWDG_Prescaler */
jhon309 0:c52df770855b 82
jhon309 0:c52df770855b 83 uint32_t Window; /*!< Specifies the WWDG window value to be compared to the downcounter.
jhon309 0:c52df770855b 84 This parameter must be a number lower than Max_Data = 0x80 */
jhon309 0:c52df770855b 85
jhon309 0:c52df770855b 86 uint32_t Counter; /*!< Specifies the WWDG free-running downcounter value.
jhon309 0:c52df770855b 87 This parameter must be a number between Min_Data = 0x40 and Max_Data = 0x7F */
jhon309 0:c52df770855b 88
jhon309 0:c52df770855b 89 } WWDG_InitTypeDef;
jhon309 0:c52df770855b 90
jhon309 0:c52df770855b 91 /**
jhon309 0:c52df770855b 92 * @brief WWDG handle Structure definition
jhon309 0:c52df770855b 93 */
jhon309 0:c52df770855b 94 typedef struct
jhon309 0:c52df770855b 95 {
jhon309 0:c52df770855b 96 WWDG_TypeDef *Instance; /*!< Register base address */
jhon309 0:c52df770855b 97
jhon309 0:c52df770855b 98 WWDG_InitTypeDef Init; /*!< WWDG required parameters */
jhon309 0:c52df770855b 99
jhon309 0:c52df770855b 100 HAL_LockTypeDef Lock; /*!< WWDG locking object */
jhon309 0:c52df770855b 101
jhon309 0:c52df770855b 102 __IO HAL_WWDG_StateTypeDef State; /*!< WWDG communication state */
jhon309 0:c52df770855b 103
jhon309 0:c52df770855b 104 } WWDG_HandleTypeDef;
jhon309 0:c52df770855b 105
jhon309 0:c52df770855b 106 /**
jhon309 0:c52df770855b 107 * @}
jhon309 0:c52df770855b 108 */
jhon309 0:c52df770855b 109
jhon309 0:c52df770855b 110 /* Exported constants --------------------------------------------------------*/
jhon309 0:c52df770855b 111
jhon309 0:c52df770855b 112 /** @defgroup WWDG_Exported_Constants WWDG Exported Constants
jhon309 0:c52df770855b 113 * @{
jhon309 0:c52df770855b 114 */
jhon309 0:c52df770855b 115
jhon309 0:c52df770855b 116 /** @defgroup WWDG_Interrupt_definition WWDG Interrupt definition
jhon309 0:c52df770855b 117 * @{
jhon309 0:c52df770855b 118 */
jhon309 0:c52df770855b 119 #define WWDG_IT_EWI WWDG_CFR_EWI /*!< Early wakeup interrupt */
jhon309 0:c52df770855b 120 /**
jhon309 0:c52df770855b 121 * @}
jhon309 0:c52df770855b 122 */
jhon309 0:c52df770855b 123
jhon309 0:c52df770855b 124 /** @defgroup WWDG_Flag_definition WWDG Flag definition
jhon309 0:c52df770855b 125 * @brief WWDG Flag definition
jhon309 0:c52df770855b 126 * @{
jhon309 0:c52df770855b 127 */
jhon309 0:c52df770855b 128 #define WWDG_FLAG_EWIF WWDG_SR_EWIF /*!< Early wakeup interrupt flag */
jhon309 0:c52df770855b 129 /**
jhon309 0:c52df770855b 130 * @}
jhon309 0:c52df770855b 131 */
jhon309 0:c52df770855b 132
jhon309 0:c52df770855b 133 /** @defgroup WWDG_Prescaler WWDG Prescaler
jhon309 0:c52df770855b 134 * @{
jhon309 0:c52df770855b 135 */
jhon309 0:c52df770855b 136 #define WWDG_PRESCALER_1 ((uint32_t)0x00000000) /*!< WWDG counter clock = (PCLK1/4096)/1 */
jhon309 0:c52df770855b 137 #define WWDG_PRESCALER_2 WWDG_CFR_WDGTB0 /*!< WWDG counter clock = (PCLK1/4096)/2 */
jhon309 0:c52df770855b 138 #define WWDG_PRESCALER_4 WWDG_CFR_WDGTB1 /*!< WWDG counter clock = (PCLK1/4096)/4 */
jhon309 0:c52df770855b 139 #define WWDG_PRESCALER_8 WWDG_CFR_WDGTB /*!< WWDG counter clock = (PCLK1/4096)/8 */
jhon309 0:c52df770855b 140
jhon309 0:c52df770855b 141 #define IS_WWDG_PRESCALER(__PRESCALER__) (((__PRESCALER__) == WWDG_PRESCALER_1) || \
jhon309 0:c52df770855b 142 ((__PRESCALER__) == WWDG_PRESCALER_2) || \
jhon309 0:c52df770855b 143 ((__PRESCALER__) == WWDG_PRESCALER_4) || \
jhon309 0:c52df770855b 144 ((__PRESCALER__) == WWDG_PRESCALER_8))
jhon309 0:c52df770855b 145 /**
jhon309 0:c52df770855b 146 * @}
jhon309 0:c52df770855b 147 */
jhon309 0:c52df770855b 148
jhon309 0:c52df770855b 149 /** @defgroup WWDG_Window WWDG Window
jhon309 0:c52df770855b 150 * @{
jhon309 0:c52df770855b 151 */
jhon309 0:c52df770855b 152 #define IS_WWDG_WINDOW(__WINDOW__) ((__WINDOW__) <= 0x7F)
jhon309 0:c52df770855b 153 /**
jhon309 0:c52df770855b 154 * @}
jhon309 0:c52df770855b 155 */
jhon309 0:c52df770855b 156
jhon309 0:c52df770855b 157 /** @defgroup WWDG_Counter WWDG Counter
jhon309 0:c52df770855b 158 * @{
jhon309 0:c52df770855b 159 */
jhon309 0:c52df770855b 160 #define IS_WWDG_COUNTER(__COUNTER__) (((__COUNTER__) >= 0x40) && ((__COUNTER__) <= 0x7F))
jhon309 0:c52df770855b 161 /**
jhon309 0:c52df770855b 162 * @}
jhon309 0:c52df770855b 163 */
jhon309 0:c52df770855b 164
jhon309 0:c52df770855b 165 /**
jhon309 0:c52df770855b 166 * @}
jhon309 0:c52df770855b 167 */
jhon309 0:c52df770855b 168
jhon309 0:c52df770855b 169 /* Exported macro ------------------------------------------------------------*/
jhon309 0:c52df770855b 170
jhon309 0:c52df770855b 171 /** @defgroup WWDG_Exported_Macros WWDG Exported Macros
jhon309 0:c52df770855b 172 * @{
jhon309 0:c52df770855b 173 */
jhon309 0:c52df770855b 174
jhon309 0:c52df770855b 175 /** @brief Reset WWDG handle state
jhon309 0:c52df770855b 176 * @param __HANDLE__: WWDG handle
jhon309 0:c52df770855b 177 * @retval None
jhon309 0:c52df770855b 178 */
jhon309 0:c52df770855b 179 #define __HAL_WWDG_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_WWDG_STATE_RESET)
jhon309 0:c52df770855b 180
jhon309 0:c52df770855b 181 /**
jhon309 0:c52df770855b 182 * @brief Enables the WWDG peripheral.
jhon309 0:c52df770855b 183 * @param __HANDLE__: WWDG handle
jhon309 0:c52df770855b 184 * @retval None
jhon309 0:c52df770855b 185 */
jhon309 0:c52df770855b 186 #define __HAL_WWDG_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= WWDG_CR_WDGA)
jhon309 0:c52df770855b 187
jhon309 0:c52df770855b 188 /**
jhon309 0:c52df770855b 189 * @brief Disables the WWDG peripheral.
jhon309 0:c52df770855b 190 * @param __HANDLE__: WWDG handle
jhon309 0:c52df770855b 191 * @note WARNING: This is a dummy macro for HAL code alignment.
jhon309 0:c52df770855b 192 * Once enable, WWDG Peripheral cannot be disabled except by a system reset.
jhon309 0:c52df770855b 193 * @retval None
jhon309 0:c52df770855b 194 */
jhon309 0:c52df770855b 195 #define __HAL_WWDG_DISABLE(__HANDLE__) /* dummy macro */
jhon309 0:c52df770855b 196
jhon309 0:c52df770855b 197 /**
jhon309 0:c52df770855b 198 * @brief Enables the WWDG early wakeup interrupt.
jhon309 0:c52df770855b 199 * @param __HANDLE__: WWDG handle
jhon309 0:c52df770855b 200 * @param __INTERRUPT__: specifies the interrupt to enable.
jhon309 0:c52df770855b 201 * This parameter can be one of the following values:
jhon309 0:c52df770855b 202 * @arg WWDG_IT_EWI: Early wakeup interrupt
jhon309 0:c52df770855b 203 * @note Once enabled this interrupt cannot be disabled except by a system reset.
jhon309 0:c52df770855b 204 * @retval None
jhon309 0:c52df770855b 205 */
jhon309 0:c52df770855b 206 #define __HAL_WWDG_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CFR |= (__INTERRUPT__))
jhon309 0:c52df770855b 207
jhon309 0:c52df770855b 208 /**
jhon309 0:c52df770855b 209 * @brief Disables the WWDG early wakeup interrupt.
jhon309 0:c52df770855b 210 * @param __HANDLE__: WWDG handle
jhon309 0:c52df770855b 211 * @param __INTERRUPT__: specifies the interrupt to disable.
jhon309 0:c52df770855b 212 * This parameter can be one of the following values:
jhon309 0:c52df770855b 213 * @arg WWDG_IT_EWI: Early wakeup interrupt
jhon309 0:c52df770855b 214 * @note WARNING: This is a dummy macro for HAL code alignment.
jhon309 0:c52df770855b 215 * Once enabled this interrupt cannot be disabled except by a system reset.
jhon309 0:c52df770855b 216 * @retval None
jhon309 0:c52df770855b 217 */
jhon309 0:c52df770855b 218 #define __HAL_WWDG_DISABLE_IT(__HANDLE__, __INTERRUPT__) /* dummy macro */
jhon309 0:c52df770855b 219
jhon309 0:c52df770855b 220 /**
jhon309 0:c52df770855b 221 * @brief Gets the selected WWDG's it status.
jhon309 0:c52df770855b 222 * @param __HANDLE__: WWDG handle
jhon309 0:c52df770855b 223 * @param __INTERRUPT__: specifies the it to check.
jhon309 0:c52df770855b 224 * This parameter can be one of the following values:
jhon309 0:c52df770855b 225 * @arg WWDG_FLAG_EWIF: Early wakeup interrupt IT
jhon309 0:c52df770855b 226 * @retval The new state of WWDG_FLAG (SET or RESET).
jhon309 0:c52df770855b 227 */
jhon309 0:c52df770855b 228 #define __HAL_WWDG_GET_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->SR & (__INTERRUPT__)) == (__INTERRUPT__))
jhon309 0:c52df770855b 229
jhon309 0:c52df770855b 230 /** @brief Clear the WWDG's interrupt pending bits
jhon309 0:c52df770855b 231 * bits to clear the selected interrupt pending bits.
jhon309 0:c52df770855b 232 * @param __HANDLE__: WWDG handle
jhon309 0:c52df770855b 233 * @param __INTERRUPT__: specifies the interrupt pending bit to clear.
jhon309 0:c52df770855b 234 * This parameter can be one of the following values:
jhon309 0:c52df770855b 235 * @arg WWDG_FLAG_EWIF: Early wakeup interrupt flag
jhon309 0:c52df770855b 236 */
jhon309 0:c52df770855b 237 #define __HAL_WWDG_CLEAR_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->SR = ~(__INTERRUPT__))
jhon309 0:c52df770855b 238
jhon309 0:c52df770855b 239 /**
jhon309 0:c52df770855b 240 * @brief Gets the selected WWDG's flag status.
jhon309 0:c52df770855b 241 * @param __HANDLE__: WWDG handle
jhon309 0:c52df770855b 242 * @param __FLAG__: specifies the flag to check.
jhon309 0:c52df770855b 243 * This parameter can be one of the following values:
jhon309 0:c52df770855b 244 * @arg WWDG_FLAG_EWIF: Early wakeup interrupt flag
jhon309 0:c52df770855b 245 * @retval The new state of WWDG_FLAG (SET or RESET).
jhon309 0:c52df770855b 246 */
jhon309 0:c52df770855b 247 #define __HAL_WWDG_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__))
jhon309 0:c52df770855b 248
jhon309 0:c52df770855b 249 /**
jhon309 0:c52df770855b 250 * @brief Clears the WWDG's pending flags.
jhon309 0:c52df770855b 251 * @param __HANDLE__: WWDG handle
jhon309 0:c52df770855b 252 * @param __FLAG__: specifies the flag to clear.
jhon309 0:c52df770855b 253 * This parameter can be one of the following values:
jhon309 0:c52df770855b 254 * @arg WWDG_FLAG_EWIF: Early wakeup interrupt flag
jhon309 0:c52df770855b 255 * @retval None
jhon309 0:c52df770855b 256 */
jhon309 0:c52df770855b 257 #define __HAL_WWDG_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR = ~(__FLAG__))
jhon309 0:c52df770855b 258
jhon309 0:c52df770855b 259 /** @brief Checks if the specified WWDG interrupt source is enabled or disabled.
jhon309 0:c52df770855b 260 * @param __HANDLE__: WWDG Handle.
jhon309 0:c52df770855b 261 * @param __INTERRUPT__: specifies the WWDG interrupt source to check.
jhon309 0:c52df770855b 262 * This parameter can be one of the following values:
jhon309 0:c52df770855b 263 * @arg WWDG_IT_EWI: Early Wakeup Interrupt
jhon309 0:c52df770855b 264 * @retval state of __INTERRUPT__ (TRUE or FALSE).
jhon309 0:c52df770855b 265 */
jhon309 0:c52df770855b 266 #define __HAL_WWDG_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CFR & (__INTERRUPT__)) == (__INTERRUPT__))
jhon309 0:c52df770855b 267
jhon309 0:c52df770855b 268 /**
jhon309 0:c52df770855b 269 * @}
jhon309 0:c52df770855b 270 */
jhon309 0:c52df770855b 271
jhon309 0:c52df770855b 272 /* Exported functions --------------------------------------------------------*/
jhon309 0:c52df770855b 273
jhon309 0:c52df770855b 274 /** @addtogroup WWDG_Exported_Functions
jhon309 0:c52df770855b 275 * @{
jhon309 0:c52df770855b 276 */
jhon309 0:c52df770855b 277
jhon309 0:c52df770855b 278 /** @addtogroup WWDG_Exported_Functions_Group1
jhon309 0:c52df770855b 279 * @{
jhon309 0:c52df770855b 280 */
jhon309 0:c52df770855b 281 /* Initialization/de-initialization functions **********************************/
jhon309 0:c52df770855b 282 HAL_StatusTypeDef HAL_WWDG_Init(WWDG_HandleTypeDef *hwwdg);
jhon309 0:c52df770855b 283 HAL_StatusTypeDef HAL_WWDG_DeInit(WWDG_HandleTypeDef *hwwdg);
jhon309 0:c52df770855b 284 void HAL_WWDG_MspInit(WWDG_HandleTypeDef *hwwdg);
jhon309 0:c52df770855b 285 void HAL_WWDG_MspDeInit(WWDG_HandleTypeDef *hwwdg);
jhon309 0:c52df770855b 286 void HAL_WWDG_WakeupCallback(WWDG_HandleTypeDef* hwwdg);
jhon309 0:c52df770855b 287
jhon309 0:c52df770855b 288 /**
jhon309 0:c52df770855b 289 * @}
jhon309 0:c52df770855b 290 */
jhon309 0:c52df770855b 291
jhon309 0:c52df770855b 292 /** @addtogroup WWDG_Exported_Functions_Group2
jhon309 0:c52df770855b 293 * @{
jhon309 0:c52df770855b 294 */
jhon309 0:c52df770855b 295 /* I/O operation functions ******************************************************/
jhon309 0:c52df770855b 296 HAL_StatusTypeDef HAL_WWDG_Start(WWDG_HandleTypeDef *hwwdg);
jhon309 0:c52df770855b 297 HAL_StatusTypeDef HAL_WWDG_Start_IT(WWDG_HandleTypeDef *hwwdg);
jhon309 0:c52df770855b 298 HAL_StatusTypeDef HAL_WWDG_Refresh(WWDG_HandleTypeDef *hwwdg, uint32_t Counter);
jhon309 0:c52df770855b 299 void HAL_WWDG_IRQHandler(WWDG_HandleTypeDef *hwwdg);
jhon309 0:c52df770855b 300
jhon309 0:c52df770855b 301 /**
jhon309 0:c52df770855b 302 * @}
jhon309 0:c52df770855b 303 */
jhon309 0:c52df770855b 304
jhon309 0:c52df770855b 305 /** @addtogroup WWDG_Exported_Functions_Group3
jhon309 0:c52df770855b 306 * @{
jhon309 0:c52df770855b 307 */
jhon309 0:c52df770855b 308 /* Peripheral State functions **************************************************/
jhon309 0:c52df770855b 309 HAL_WWDG_StateTypeDef HAL_WWDG_GetState(WWDG_HandleTypeDef *hwwdg);
jhon309 0:c52df770855b 310
jhon309 0:c52df770855b 311 /**
jhon309 0:c52df770855b 312 * @}
jhon309 0:c52df770855b 313 */
jhon309 0:c52df770855b 314
jhon309 0:c52df770855b 315 /**
jhon309 0:c52df770855b 316 * @}
jhon309 0:c52df770855b 317 */
jhon309 0:c52df770855b 318
jhon309 0:c52df770855b 319 /**
jhon309 0:c52df770855b 320 * @}
jhon309 0:c52df770855b 321 */
jhon309 0:c52df770855b 322
jhon309 0:c52df770855b 323 /**
jhon309 0:c52df770855b 324 * @}
jhon309 0:c52df770855b 325 */
jhon309 0:c52df770855b 326
jhon309 0:c52df770855b 327 #ifdef __cplusplus
jhon309 0:c52df770855b 328 }
jhon309 0:c52df770855b 329 #endif
jhon309 0:c52df770855b 330
jhon309 0:c52df770855b 331 #endif /* __STM32F0xx_HAL_WWDG_H */
jhon309 0:c52df770855b 332
jhon309 0:c52df770855b 333 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
jhon309 0:c52df770855b 334