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