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:
109:9296ab0bfc11
.

Who changed what in which revision?

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