my fork
Fork of mbed by
TARGET_NUCLEO_F072RB/stm32f0xx_hal_wwdg.h@93:e188a91d3eaa, 2015-02-03 (annotated)
- Committer:
- Kojto
- Date:
- Tue Feb 03 15:31:20 2015 +0000
- Revision:
- 93:e188a91d3eaa
- Parent:
- 92:4fc01daae5a5
Release 93 of the mbed library
Main changes:
- Renesas RZ_A1H bugfixes - i2c, ticker
- new targets - Nucleo F303RE, Nucleo F070RB, BLE SMURFS,
Dragonfly 411RE,
- BusXXX - is connected method, plus operators addition
- LPC8xx - I2c fixes
- timestamp_t reverted to uint32_t
- RTX - fixes regarding stack (alignment, magic word)
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bogdanm | 85:024bf7f99721 | 1 | /** |
bogdanm | 85:024bf7f99721 | 2 | ****************************************************************************** |
bogdanm | 85:024bf7f99721 | 3 | * @file stm32f0xx_hal_wwdg.h |
bogdanm | 85:024bf7f99721 | 4 | * @author MCD Application Team |
Kojto | 93:e188a91d3eaa | 5 | * @version V1.2.0 |
Kojto | 93:e188a91d3eaa | 6 | * @date 11-December-2014 |
bogdanm | 85:024bf7f99721 | 7 | * @brief Header file of WWDG HAL module. |
bogdanm | 85:024bf7f99721 | 8 | ****************************************************************************** |
bogdanm | 85:024bf7f99721 | 9 | * @attention |
bogdanm | 85:024bf7f99721 | 10 | * |
bogdanm | 85:024bf7f99721 | 11 | * <h2><center>© COPYRIGHT(c) 2014 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 | * |
bogdanm | 85:024bf7f99721 | 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_WWDG_H |
bogdanm | 85:024bf7f99721 | 40 | #define __STM32F0xx_HAL_WWDG_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 WWDG |
bogdanm | 85:024bf7f99721 | 54 | * @{ |
bogdanm | 85:024bf7f99721 | 55 | */ |
bogdanm | 85:024bf7f99721 | 56 | |
bogdanm | 85:024bf7f99721 | 57 | /* Exported types ------------------------------------------------------------*/ |
bogdanm | 85:024bf7f99721 | 58 | |
bogdanm | 92:4fc01daae5a5 | 59 | /** @defgroup WWDG_Exported_Types WWDG Exported Types |
bogdanm | 92:4fc01daae5a5 | 60 | * @{ |
bogdanm | 92:4fc01daae5a5 | 61 | */ |
bogdanm | 92:4fc01daae5a5 | 62 | |
bogdanm | 85:024bf7f99721 | 63 | /** |
bogdanm | 85:024bf7f99721 | 64 | * @brief WWDG HAL State Structure definition |
bogdanm | 85:024bf7f99721 | 65 | */ |
bogdanm | 85:024bf7f99721 | 66 | typedef enum |
bogdanm | 85:024bf7f99721 | 67 | { |
bogdanm | 85:024bf7f99721 | 68 | HAL_WWDG_STATE_RESET = 0x00, /*!< WWDG not yet initialized or disabled */ |
bogdanm | 85:024bf7f99721 | 69 | HAL_WWDG_STATE_READY = 0x01, /*!< WWDG initialized and ready for use */ |
bogdanm | 85:024bf7f99721 | 70 | HAL_WWDG_STATE_BUSY = 0x02, /*!< WWDG internal process is ongoing */ |
bogdanm | 85:024bf7f99721 | 71 | HAL_WWDG_STATE_TIMEOUT = 0x03, /*!< WWDG timeout state */ |
bogdanm | 85:024bf7f99721 | 72 | HAL_WWDG_STATE_ERROR = 0x04 /*!< WWDG error state */ |
bogdanm | 85:024bf7f99721 | 73 | }HAL_WWDG_StateTypeDef; |
bogdanm | 85:024bf7f99721 | 74 | |
bogdanm | 85:024bf7f99721 | 75 | /** |
bogdanm | 85:024bf7f99721 | 76 | * @brief WWDG Init structure definition |
bogdanm | 85:024bf7f99721 | 77 | */ |
bogdanm | 85:024bf7f99721 | 78 | typedef struct |
bogdanm | 85:024bf7f99721 | 79 | { |
bogdanm | 85:024bf7f99721 | 80 | uint32_t Prescaler; /*!< Specifies the prescaler value of the WWDG. |
bogdanm | 85:024bf7f99721 | 81 | This parameter can be a value of @ref WWDG_Prescaler */ |
bogdanm | 85:024bf7f99721 | 82 | |
bogdanm | 85:024bf7f99721 | 83 | uint32_t Window; /*!< Specifies the WWDG window value to be compared to the downcounter. |
Kojto | 93:e188a91d3eaa | 84 | This parameter must be a number lower than Max_Data = 0x80 */ |
bogdanm | 85:024bf7f99721 | 85 | |
bogdanm | 85:024bf7f99721 | 86 | uint32_t Counter; /*!< Specifies the WWDG free-running downcounter value. |
Kojto | 93:e188a91d3eaa | 87 | This parameter must be a number between Min_Data = 0x40 and Max_Data = 0x7F */ |
bogdanm | 85:024bf7f99721 | 88 | |
bogdanm | 85:024bf7f99721 | 89 | } WWDG_InitTypeDef; |
bogdanm | 85:024bf7f99721 | 90 | |
bogdanm | 85:024bf7f99721 | 91 | /** |
bogdanm | 85:024bf7f99721 | 92 | * @brief WWDG handle Structure definition |
bogdanm | 85:024bf7f99721 | 93 | */ |
bogdanm | 85:024bf7f99721 | 94 | typedef struct |
bogdanm | 85:024bf7f99721 | 95 | { |
bogdanm | 85:024bf7f99721 | 96 | WWDG_TypeDef *Instance; /*!< Register base address */ |
bogdanm | 85:024bf7f99721 | 97 | |
bogdanm | 85:024bf7f99721 | 98 | WWDG_InitTypeDef Init; /*!< WWDG required parameters */ |
bogdanm | 85:024bf7f99721 | 99 | |
bogdanm | 85:024bf7f99721 | 100 | HAL_LockTypeDef Lock; /*!< WWDG locking object */ |
bogdanm | 85:024bf7f99721 | 101 | |
bogdanm | 85:024bf7f99721 | 102 | __IO HAL_WWDG_StateTypeDef State; /*!< WWDG communication state */ |
bogdanm | 85:024bf7f99721 | 103 | |
bogdanm | 85:024bf7f99721 | 104 | } WWDG_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 | 85:024bf7f99721 | 111 | |
bogdanm | 92:4fc01daae5a5 | 112 | /** @defgroup WWDG_Exported_Constants WWDG Exported Constants |
bogdanm | 85:024bf7f99721 | 113 | * @{ |
bogdanm | 85:024bf7f99721 | 114 | */ |
bogdanm | 85:024bf7f99721 | 115 | |
bogdanm | 92:4fc01daae5a5 | 116 | /** @defgroup WWDG_Interrupt_definition WWDG Interrupt definition |
bogdanm | 85:024bf7f99721 | 117 | * @{ |
bogdanm | 85:024bf7f99721 | 118 | */ |
Kojto | 93:e188a91d3eaa | 119 | #define WWDG_IT_EWI WWDG_CFR_EWI /*!< Early wakeup interrupt */ |
bogdanm | 85:024bf7f99721 | 120 | /** |
bogdanm | 85:024bf7f99721 | 121 | * @} |
bogdanm | 85:024bf7f99721 | 122 | */ |
bogdanm | 85:024bf7f99721 | 123 | |
bogdanm | 92:4fc01daae5a5 | 124 | /** @defgroup WWDG_Flag_definition WWDG Flag definition |
bogdanm | 85:024bf7f99721 | 125 | * @brief WWDG Flag definition |
bogdanm | 85:024bf7f99721 | 126 | * @{ |
bogdanm | 85:024bf7f99721 | 127 | */ |
Kojto | 93:e188a91d3eaa | 128 | #define WWDG_FLAG_EWIF WWDG_SR_EWIF /*!< Early wakeup interrupt flag */ |
bogdanm | 85:024bf7f99721 | 129 | /** |
bogdanm | 85:024bf7f99721 | 130 | * @} |
bogdanm | 85:024bf7f99721 | 131 | */ |
bogdanm | 85:024bf7f99721 | 132 | |
bogdanm | 92:4fc01daae5a5 | 133 | /** @defgroup WWDG_Prescaler WWDG Prescaler |
bogdanm | 85:024bf7f99721 | 134 | * @{ |
bogdanm | 85:024bf7f99721 | 135 | */ |
Kojto | 93:e188a91d3eaa | 136 | #define WWDG_PRESCALER_1 ((uint32_t)0x00000000) /*!< WWDG counter clock = (PCLK1/4096)/1 */ |
Kojto | 93:e188a91d3eaa | 137 | #define WWDG_PRESCALER_2 WWDG_CFR_WDGTB0 /*!< WWDG counter clock = (PCLK1/4096)/2 */ |
Kojto | 93:e188a91d3eaa | 138 | #define WWDG_PRESCALER_4 WWDG_CFR_WDGTB1 /*!< WWDG counter clock = (PCLK1/4096)/4 */ |
Kojto | 93:e188a91d3eaa | 139 | #define WWDG_PRESCALER_8 WWDG_CFR_WDGTB /*!< WWDG counter clock = (PCLK1/4096)/8 */ |
bogdanm | 85:024bf7f99721 | 140 | |
Kojto | 93:e188a91d3eaa | 141 | #define IS_WWDG_PRESCALER(__PRESCALER__) (((__PRESCALER__) == WWDG_PRESCALER_1) || \ |
Kojto | 93:e188a91d3eaa | 142 | ((__PRESCALER__) == WWDG_PRESCALER_2) || \ |
Kojto | 93:e188a91d3eaa | 143 | ((__PRESCALER__) == WWDG_PRESCALER_4) || \ |
Kojto | 93:e188a91d3eaa | 144 | ((__PRESCALER__) == WWDG_PRESCALER_8)) |
bogdanm | 85:024bf7f99721 | 145 | /** |
bogdanm | 85:024bf7f99721 | 146 | * @} |
bogdanm | 85:024bf7f99721 | 147 | */ |
bogdanm | 85:024bf7f99721 | 148 | |
bogdanm | 92:4fc01daae5a5 | 149 | /** @defgroup WWDG_Window WWDG Window |
bogdanm | 85:024bf7f99721 | 150 | * @{ |
bogdanm | 85:024bf7f99721 | 151 | */ |
Kojto | 93:e188a91d3eaa | 152 | #define IS_WWDG_WINDOW(__WINDOW__) ((__WINDOW__) <= 0x7F) |
bogdanm | 85:024bf7f99721 | 153 | /** |
bogdanm | 85:024bf7f99721 | 154 | * @} |
bogdanm | 85:024bf7f99721 | 155 | */ |
bogdanm | 85:024bf7f99721 | 156 | |
bogdanm | 92:4fc01daae5a5 | 157 | /** @defgroup WWDG_Counter WWDG Counter |
bogdanm | 85:024bf7f99721 | 158 | * @{ |
bogdanm | 85:024bf7f99721 | 159 | */ |
Kojto | 93:e188a91d3eaa | 160 | #define IS_WWDG_COUNTER(__COUNTER__) (((__COUNTER__) >= 0x40) && ((__COUNTER__) <= 0x7F)) |
bogdanm | 85:024bf7f99721 | 161 | /** |
bogdanm | 85:024bf7f99721 | 162 | * @} |
bogdanm | 85:024bf7f99721 | 163 | */ |
bogdanm | 85:024bf7f99721 | 164 | |
bogdanm | 85:024bf7f99721 | 165 | /** |
bogdanm | 85:024bf7f99721 | 166 | * @} |
bogdanm | 85:024bf7f99721 | 167 | */ |
bogdanm | 85:024bf7f99721 | 168 | |
bogdanm | 92:4fc01daae5a5 | 169 | /* Exported macro ------------------------------------------------------------*/ |
bogdanm | 85:024bf7f99721 | 170 | |
bogdanm | 92:4fc01daae5a5 | 171 | /** @defgroup WWDG_Exported_Macros WWDG Exported Macros |
bogdanm | 85:024bf7f99721 | 172 | * @{ |
bogdanm | 85:024bf7f99721 | 173 | */ |
bogdanm | 85:024bf7f99721 | 174 | |
bogdanm | 85:024bf7f99721 | 175 | /** @brief Reset WWDG handle state |
bogdanm | 92:4fc01daae5a5 | 176 | * @param __HANDLE__: WWDG handle |
bogdanm | 85:024bf7f99721 | 177 | * @retval None |
bogdanm | 85:024bf7f99721 | 178 | */ |
Kojto | 93:e188a91d3eaa | 179 | #define __HAL_WWDG_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_WWDG_STATE_RESET) |
bogdanm | 85:024bf7f99721 | 180 | |
bogdanm | 85:024bf7f99721 | 181 | /** |
bogdanm | 92:4fc01daae5a5 | 182 | * @brief Enables the WWDG peripheral. |
bogdanm | 85:024bf7f99721 | 183 | * @param __HANDLE__: WWDG handle |
bogdanm | 85:024bf7f99721 | 184 | * @retval None |
bogdanm | 85:024bf7f99721 | 185 | */ |
Kojto | 93:e188a91d3eaa | 186 | #define __HAL_WWDG_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= WWDG_CR_WDGA) |
Kojto | 93:e188a91d3eaa | 187 | |
Kojto | 93:e188a91d3eaa | 188 | /** |
Kojto | 93:e188a91d3eaa | 189 | * @brief Disables the WWDG peripheral. |
Kojto | 93:e188a91d3eaa | 190 | * @param __HANDLE__: WWDG handle |
Kojto | 93:e188a91d3eaa | 191 | * @note WARNING: This is a dummy macro for HAL code alignment. |
Kojto | 93:e188a91d3eaa | 192 | * Once enable, WWDG Peripheral cannot be disabled except by a system reset. |
Kojto | 93:e188a91d3eaa | 193 | * @retval None |
Kojto | 93:e188a91d3eaa | 194 | */ |
Kojto | 93:e188a91d3eaa | 195 | #define __HAL_WWDG_DISABLE(__HANDLE__) /* dummy macro */ |
Kojto | 93:e188a91d3eaa | 196 | |
Kojto | 93:e188a91d3eaa | 197 | /** |
Kojto | 93:e188a91d3eaa | 198 | * @brief Enables the WWDG early wakeup interrupt. |
Kojto | 93:e188a91d3eaa | 199 | * @param __HANDLE__: WWDG handle |
Kojto | 93:e188a91d3eaa | 200 | * @param __INTERRUPT__: specifies the interrupt to enable. |
Kojto | 93:e188a91d3eaa | 201 | * This parameter can be one of the following values: |
Kojto | 93:e188a91d3eaa | 202 | * @arg WWDG_IT_EWI: Early wakeup interrupt |
Kojto | 93:e188a91d3eaa | 203 | * @note Once enabled this interrupt cannot be disabled except by a system reset. |
Kojto | 93:e188a91d3eaa | 204 | * @retval None |
Kojto | 93:e188a91d3eaa | 205 | */ |
Kojto | 93:e188a91d3eaa | 206 | #define __HAL_WWDG_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CFR |= (__INTERRUPT__)) |
Kojto | 93:e188a91d3eaa | 207 | |
Kojto | 93:e188a91d3eaa | 208 | /** |
Kojto | 93:e188a91d3eaa | 209 | * @brief Disables the WWDG early wakeup interrupt. |
Kojto | 93:e188a91d3eaa | 210 | * @param __HANDLE__: WWDG handle |
Kojto | 93:e188a91d3eaa | 211 | * @param __INTERRUPT__: specifies the interrupt to disable. |
Kojto | 93:e188a91d3eaa | 212 | * This parameter can be one of the following values: |
Kojto | 93:e188a91d3eaa | 213 | * @arg WWDG_IT_EWI: Early wakeup interrupt |
Kojto | 93:e188a91d3eaa | 214 | * @note WARNING: This is a dummy macro for HAL code alignment. |
Kojto | 93:e188a91d3eaa | 215 | * Once enabled this interrupt cannot be disabled except by a system reset. |
Kojto | 93:e188a91d3eaa | 216 | * @retval None |
Kojto | 93:e188a91d3eaa | 217 | */ |
Kojto | 93:e188a91d3eaa | 218 | #define __HAL_WWDG_DISABLE_IT(__HANDLE__, __INTERRUPT__) /* dummy macro */ |
Kojto | 93:e188a91d3eaa | 219 | |
Kojto | 93:e188a91d3eaa | 220 | /** |
Kojto | 93:e188a91d3eaa | 221 | * @brief Gets the selected WWDG's it status. |
Kojto | 93:e188a91d3eaa | 222 | * @param __HANDLE__: WWDG handle |
Kojto | 93:e188a91d3eaa | 223 | * @param __INTERRUPT__: specifies the it to check. |
Kojto | 93:e188a91d3eaa | 224 | * This parameter can be one of the following values: |
Kojto | 93:e188a91d3eaa | 225 | * @arg WWDG_FLAG_EWIF: Early wakeup interrupt IT |
Kojto | 93:e188a91d3eaa | 226 | * @retval The new state of WWDG_FLAG (SET or RESET). |
Kojto | 93:e188a91d3eaa | 227 | */ |
Kojto | 93:e188a91d3eaa | 228 | #define __HAL_WWDG_GET_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->SR & (__INTERRUPT__)) == (__INTERRUPT__)) |
Kojto | 93:e188a91d3eaa | 229 | |
Kojto | 93:e188a91d3eaa | 230 | /** @brief Clear the WWDG's interrupt pending bits |
Kojto | 93:e188a91d3eaa | 231 | * bits to clear the selected interrupt pending bits. |
Kojto | 93:e188a91d3eaa | 232 | * @param __HANDLE__: WWDG handle |
Kojto | 93:e188a91d3eaa | 233 | * @param __INTERRUPT__: specifies the interrupt pending bit to clear. |
Kojto | 93:e188a91d3eaa | 234 | * This parameter can be one of the following values: |
Kojto | 93:e188a91d3eaa | 235 | * @arg WWDG_FLAG_EWIF: Early wakeup interrupt flag |
Kojto | 93:e188a91d3eaa | 236 | */ |
Kojto | 93:e188a91d3eaa | 237 | #define __HAL_WWDG_CLEAR_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->SR = ~(__INTERRUPT__)) |
bogdanm | 85:024bf7f99721 | 238 | |
bogdanm | 85:024bf7f99721 | 239 | /** |
bogdanm | 92:4fc01daae5a5 | 240 | * @brief Gets the selected WWDG's flag status. |
bogdanm | 85:024bf7f99721 | 241 | * @param __HANDLE__: WWDG handle |
bogdanm | 85:024bf7f99721 | 242 | * @param __FLAG__: specifies the flag to check. |
bogdanm | 85:024bf7f99721 | 243 | * This parameter can be one of the following values: |
bogdanm | 85:024bf7f99721 | 244 | * @arg WWDG_FLAG_EWIF: Early wakeup interrupt flag |
bogdanm | 85:024bf7f99721 | 245 | * @retval The new state of WWDG_FLAG (SET or RESET). |
bogdanm | 85:024bf7f99721 | 246 | */ |
Kojto | 93:e188a91d3eaa | 247 | #define __HAL_WWDG_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__)) |
bogdanm | 85:024bf7f99721 | 248 | |
bogdanm | 85:024bf7f99721 | 249 | /** |
bogdanm | 92:4fc01daae5a5 | 250 | * @brief Clears the WWDG's pending flags. |
bogdanm | 85:024bf7f99721 | 251 | * @param __HANDLE__: WWDG handle |
bogdanm | 85:024bf7f99721 | 252 | * @param __FLAG__: specifies the flag to clear. |
bogdanm | 85:024bf7f99721 | 253 | * This parameter can be one of the following values: |
bogdanm | 85:024bf7f99721 | 254 | * @arg WWDG_FLAG_EWIF: Early wakeup interrupt flag |
bogdanm | 85:024bf7f99721 | 255 | * @retval None |
bogdanm | 85:024bf7f99721 | 256 | */ |
Kojto | 93:e188a91d3eaa | 257 | #define __HAL_WWDG_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR = ~(__FLAG__)) |
bogdanm | 85:024bf7f99721 | 258 | |
Kojto | 93:e188a91d3eaa | 259 | /** @brief Checks if the specified WWDG interrupt source is enabled or disabled. |
Kojto | 93:e188a91d3eaa | 260 | * @param __HANDLE__: WWDG Handle. |
Kojto | 93:e188a91d3eaa | 261 | * @param __INTERRUPT__: specifies the WWDG interrupt source to check. |
Kojto | 93:e188a91d3eaa | 262 | * This parameter can be one of the following values: |
Kojto | 93:e188a91d3eaa | 263 | * @arg WWDG_IT_EWI: Early Wakeup Interrupt |
Kojto | 93:e188a91d3eaa | 264 | * @retval state of __INTERRUPT__ (TRUE or FALSE). |
bogdanm | 85:024bf7f99721 | 265 | */ |
Kojto | 93:e188a91d3eaa | 266 | #define __HAL_WWDG_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CFR & (__INTERRUPT__)) == (__INTERRUPT__)) |
bogdanm | 92:4fc01daae5a5 | 267 | |
bogdanm | 85:024bf7f99721 | 268 | /** |
bogdanm | 85:024bf7f99721 | 269 | * @} |
bogdanm | 85:024bf7f99721 | 270 | */ |
bogdanm | 85:024bf7f99721 | 271 | |
bogdanm | 85:024bf7f99721 | 272 | /* Exported functions --------------------------------------------------------*/ |
bogdanm | 85:024bf7f99721 | 273 | |
bogdanm | 92:4fc01daae5a5 | 274 | /** @addtogroup WWDG_Exported_Functions |
bogdanm | 92:4fc01daae5a5 | 275 | * @{ |
bogdanm | 92:4fc01daae5a5 | 276 | */ |
bogdanm | 92:4fc01daae5a5 | 277 | |
bogdanm | 92:4fc01daae5a5 | 278 | /** @addtogroup WWDG_Exported_Functions_Group1 |
bogdanm | 92:4fc01daae5a5 | 279 | * @{ |
bogdanm | 92:4fc01daae5a5 | 280 | */ |
bogdanm | 85:024bf7f99721 | 281 | /* Initialization/de-initialization functions **********************************/ |
bogdanm | 92:4fc01daae5a5 | 282 | HAL_StatusTypeDef HAL_WWDG_Init(WWDG_HandleTypeDef *hwwdg); |
bogdanm | 92:4fc01daae5a5 | 283 | HAL_StatusTypeDef HAL_WWDG_DeInit(WWDG_HandleTypeDef *hwwdg); |
bogdanm | 92:4fc01daae5a5 | 284 | void HAL_WWDG_MspInit(WWDG_HandleTypeDef *hwwdg); |
bogdanm | 92:4fc01daae5a5 | 285 | void HAL_WWDG_MspDeInit(WWDG_HandleTypeDef *hwwdg); |
bogdanm | 92:4fc01daae5a5 | 286 | void HAL_WWDG_WakeupCallback(WWDG_HandleTypeDef* hwwdg); |
bogdanm | 85:024bf7f99721 | 287 | |
bogdanm | 92:4fc01daae5a5 | 288 | /** |
bogdanm | 92:4fc01daae5a5 | 289 | * @} |
bogdanm | 92:4fc01daae5a5 | 290 | */ |
bogdanm | 92:4fc01daae5a5 | 291 | |
bogdanm | 92:4fc01daae5a5 | 292 | /** @addtogroup WWDG_Exported_Functions_Group2 |
bogdanm | 92:4fc01daae5a5 | 293 | * @{ |
bogdanm | 92:4fc01daae5a5 | 294 | */ |
bogdanm | 85:024bf7f99721 | 295 | /* I/O operation functions ******************************************************/ |
bogdanm | 92:4fc01daae5a5 | 296 | HAL_StatusTypeDef HAL_WWDG_Start(WWDG_HandleTypeDef *hwwdg); |
bogdanm | 92:4fc01daae5a5 | 297 | HAL_StatusTypeDef HAL_WWDG_Start_IT(WWDG_HandleTypeDef *hwwdg); |
bogdanm | 92:4fc01daae5a5 | 298 | HAL_StatusTypeDef HAL_WWDG_Refresh(WWDG_HandleTypeDef *hwwdg, uint32_t Counter); |
bogdanm | 92:4fc01daae5a5 | 299 | void HAL_WWDG_IRQHandler(WWDG_HandleTypeDef *hwwdg); |
bogdanm | 85:024bf7f99721 | 300 | |
bogdanm | 92:4fc01daae5a5 | 301 | /** |
bogdanm | 92:4fc01daae5a5 | 302 | * @} |
bogdanm | 92:4fc01daae5a5 | 303 | */ |
bogdanm | 92:4fc01daae5a5 | 304 | |
bogdanm | 92:4fc01daae5a5 | 305 | /** @addtogroup WWDG_Exported_Functions_Group3 |
bogdanm | 92:4fc01daae5a5 | 306 | * @{ |
bogdanm | 92:4fc01daae5a5 | 307 | */ |
bogdanm | 85:024bf7f99721 | 308 | /* Peripheral State functions **************************************************/ |
bogdanm | 85:024bf7f99721 | 309 | HAL_WWDG_StateTypeDef HAL_WWDG_GetState(WWDG_HandleTypeDef *hwwdg); |
bogdanm | 85:024bf7f99721 | 310 | |
bogdanm | 85:024bf7f99721 | 311 | /** |
bogdanm | 85:024bf7f99721 | 312 | * @} |
bogdanm | 85:024bf7f99721 | 313 | */ |
bogdanm | 85:024bf7f99721 | 314 | |
bogdanm | 85:024bf7f99721 | 315 | /** |
bogdanm | 85:024bf7f99721 | 316 | * @} |
bogdanm | 85:024bf7f99721 | 317 | */ |
bogdanm | 85:024bf7f99721 | 318 | |
bogdanm | 92:4fc01daae5a5 | 319 | /** |
bogdanm | 92:4fc01daae5a5 | 320 | * @} |
bogdanm | 92:4fc01daae5a5 | 321 | */ |
bogdanm | 92:4fc01daae5a5 | 322 | |
bogdanm | 92:4fc01daae5a5 | 323 | /** |
bogdanm | 92:4fc01daae5a5 | 324 | * @} |
bogdanm | 92:4fc01daae5a5 | 325 | */ |
bogdanm | 92:4fc01daae5a5 | 326 | |
bogdanm | 85:024bf7f99721 | 327 | #ifdef __cplusplus |
bogdanm | 85:024bf7f99721 | 328 | } |
bogdanm | 85:024bf7f99721 | 329 | #endif |
bogdanm | 85:024bf7f99721 | 330 | |
bogdanm | 85:024bf7f99721 | 331 | #endif /* __STM32F0xx_HAL_WWDG_H */ |
bogdanm | 85:024bf7f99721 | 332 | |
bogdanm | 85:024bf7f99721 | 333 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |
bogdanm | 92:4fc01daae5a5 | 334 |