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
TARGET_NUCLEO_F070RB/stm32f0xx_hal_iwdg.h@121:672067c3ada4, 2016-04-14 (annotated)
- Committer:
- elijahorr
- Date:
- Thu Apr 14 07:28:54 2016 +0000
- Revision:
- 121:672067c3ada4
- Parent:
- 108:34e6b704fe68
.
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 stm32f0xx_hal_iwdg.h |
Kojto | 93:e188a91d3eaa | 4 | * @author MCD Application Team |
Kojto | 108:34e6b704fe68 | 5 | * @version V1.3.0 |
Kojto | 108:34e6b704fe68 | 6 | * @date 26-June-2015 |
Kojto | 93:e188a91d3eaa | 7 | * @brief Header file of IWDG HAL module. |
Kojto | 93:e188a91d3eaa | 8 | ****************************************************************************** |
Kojto | 93:e188a91d3eaa | 9 | * @attention |
Kojto | 93:e188a91d3eaa | 10 | * |
Kojto | 108:34e6b704fe68 | 11 | * <h2><center>© COPYRIGHT(c) 2015 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 | 108:34e6b704fe68 | 35 | ****************************************************************************** |
Kojto | 93:e188a91d3eaa | 36 | */ |
Kojto | 93:e188a91d3eaa | 37 | |
Kojto | 93:e188a91d3eaa | 38 | /* Define to prevent recursive inclusion -------------------------------------*/ |
Kojto | 93:e188a91d3eaa | 39 | #ifndef __STM32F0xx_HAL_IWDG_H |
Kojto | 93:e188a91d3eaa | 40 | #define __STM32F0xx_HAL_IWDG_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 "stm32f0xx_hal_def.h" |
Kojto | 93:e188a91d3eaa | 48 | |
Kojto | 93:e188a91d3eaa | 49 | /** @addtogroup STM32F0xx_HAL_Driver |
Kojto | 93:e188a91d3eaa | 50 | * @{ |
Kojto | 93:e188a91d3eaa | 51 | */ |
Kojto | 93:e188a91d3eaa | 52 | |
Kojto | 93:e188a91d3eaa | 53 | /** @addtogroup IWDG |
Kojto | 93:e188a91d3eaa | 54 | * @{ |
Kojto | 108:34e6b704fe68 | 55 | */ |
Kojto | 93:e188a91d3eaa | 56 | |
Kojto | 108:34e6b704fe68 | 57 | /* Exported types ------------------------------------------------------------*/ |
Kojto | 93:e188a91d3eaa | 58 | /** @defgroup IWDG_Exported_Types IWDG Exported Types |
Kojto | 93:e188a91d3eaa | 59 | * @{ |
Kojto | 93:e188a91d3eaa | 60 | */ |
Kojto | 93:e188a91d3eaa | 61 | |
Kojto | 93:e188a91d3eaa | 62 | /** |
Kojto | 108:34e6b704fe68 | 63 | * @brief IWDG HAL State Structure definition |
Kojto | 108:34e6b704fe68 | 64 | */ |
Kojto | 93:e188a91d3eaa | 65 | typedef enum |
Kojto | 93:e188a91d3eaa | 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 */ |
Kojto | 93:e188a91d3eaa | 72 | |
Kojto | 93:e188a91d3eaa | 73 | }HAL_IWDG_StateTypeDef; |
Kojto | 93:e188a91d3eaa | 74 | |
Kojto | 93:e188a91d3eaa | 75 | /** |
Kojto | 108:34e6b704fe68 | 76 | * @brief IWDG Init structure definition |
Kojto | 93:e188a91d3eaa | 77 | */ |
Kojto | 93:e188a91d3eaa | 78 | typedef struct |
Kojto | 93:e188a91d3eaa | 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 */ |
Kojto | 93:e188a91d3eaa | 88 | |
Kojto | 93:e188a91d3eaa | 89 | } IWDG_InitTypeDef; |
Kojto | 93:e188a91d3eaa | 90 | |
Kojto | 93:e188a91d3eaa | 91 | /** |
Kojto | 93:e188a91d3eaa | 92 | * @brief IWDG Handle Structure definition |
Kojto | 108:34e6b704fe68 | 93 | */ |
Kojto | 93:e188a91d3eaa | 94 | typedef struct |
Kojto | 93:e188a91d3eaa | 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 */ |
Kojto | 93:e188a91d3eaa | 103 | |
Kojto | 93:e188a91d3eaa | 104 | }IWDG_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 | /** @defgroup IWDG_Exported_Constants IWDG Exported Constants |
Kojto | 93:e188a91d3eaa | 112 | * @{ |
Kojto | 93:e188a91d3eaa | 113 | */ |
Kojto | 93:e188a91d3eaa | 114 | |
Kojto | 93:e188a91d3eaa | 115 | /** @defgroup IWDG_Prescaler IWDG Prescaler |
Kojto | 93:e188a91d3eaa | 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 */ |
Kojto | 93:e188a91d3eaa | 125 | /** |
Kojto | 93:e188a91d3eaa | 126 | * @} |
Kojto | 93:e188a91d3eaa | 127 | */ |
Kojto | 93:e188a91d3eaa | 128 | |
Kojto | 108:34e6b704fe68 | 129 | /** @defgroup IWDG_Window IWDG Window |
Kojto | 93:e188a91d3eaa | 130 | * @{ |
Kojto | 108:34e6b704fe68 | 131 | */ |
Kojto | 108:34e6b704fe68 | 132 | #define IWDG_WINDOW_DISABLE ((uint32_t)0x00000FFF) |
Kojto | 93:e188a91d3eaa | 133 | /** |
Kojto | 93:e188a91d3eaa | 134 | * @} |
Kojto | 93:e188a91d3eaa | 135 | */ |
Kojto | 93:e188a91d3eaa | 136 | |
Kojto | 93:e188a91d3eaa | 137 | /** |
Kojto | 93:e188a91d3eaa | 138 | * @} |
Kojto | 93:e188a91d3eaa | 139 | */ |
Kojto | 93:e188a91d3eaa | 140 | |
Kojto | 93:e188a91d3eaa | 141 | /* Exported macros -----------------------------------------------------------*/ |
Kojto | 108:34e6b704fe68 | 142 | /** @defgroup IWDG_Exported_Macros IWDG Exported Macros |
Kojto | 108:34e6b704fe68 | 143 | * @{ |
Kojto | 108:34e6b704fe68 | 144 | */ |
Kojto | 93:e188a91d3eaa | 145 | |
Kojto | 108:34e6b704fe68 | 146 | /** @brief Reset IWDG handle state. |
Kojto | 93:e188a91d3eaa | 147 | * @param __HANDLE__: IWDG handle. |
Kojto | 93:e188a91d3eaa | 148 | * @retval None |
Kojto | 93:e188a91d3eaa | 149 | */ |
Kojto | 108:34e6b704fe68 | 150 | #define __HAL_IWDG_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_IWDG_STATE_RESET) |
Kojto | 93:e188a91d3eaa | 151 | |
Kojto | 93:e188a91d3eaa | 152 | /** |
Kojto | 108:34e6b704fe68 | 153 | * @brief Enable the IWDG peripheral. |
Kojto | 93:e188a91d3eaa | 154 | * @param __HANDLE__: IWDG handle |
Kojto | 93:e188a91d3eaa | 155 | * @retval None |
Kojto | 93:e188a91d3eaa | 156 | */ |
Kojto | 108:34e6b704fe68 | 157 | #define __HAL_IWDG_START(__HANDLE__) WRITE_REG((__HANDLE__)->Instance->KR, IWDG_KEY_ENABLE) |
Kojto | 93:e188a91d3eaa | 158 | |
Kojto | 93:e188a91d3eaa | 159 | /** |
Kojto | 108:34e6b704fe68 | 160 | * @brief Reload IWDG counter with value defined in the reload register. |
Kojto | 93:e188a91d3eaa | 161 | * @param __HANDLE__: IWDG handle |
Kojto | 93:e188a91d3eaa | 162 | * @retval None |
Kojto | 93:e188a91d3eaa | 163 | */ |
Kojto | 108:34e6b704fe68 | 164 | #define __HAL_IWDG_RELOAD_COUNTER(__HANDLE__) WRITE_REG((__HANDLE__)->Instance->KR, IWDG_KEY_RELOAD) |
Kojto | 93:e188a91d3eaa | 165 | |
Kojto | 93:e188a91d3eaa | 166 | /** |
Kojto | 108:34e6b704fe68 | 167 | * @brief Get the selected IWDG flag status. |
Kojto | 93:e188a91d3eaa | 168 | * @param __HANDLE__: IWDG handle |
Kojto | 93:e188a91d3eaa | 169 | * @param __FLAG__: specifies the flag to check. |
Kojto | 93:e188a91d3eaa | 170 | * This parameter can be one of the following values: |
Kojto | 93:e188a91d3eaa | 171 | * @arg IWDG_FLAG_PVU: Watchdog counter reload value update flag |
Kojto | 93:e188a91d3eaa | 172 | * @arg IWDG_FLAG_RVU: Watchdog counter prescaler value flag |
Kojto | 93:e188a91d3eaa | 173 | * @arg IWDG_FLAG_WVU: Watchdog counter window value flag |
Kojto | 93:e188a91d3eaa | 174 | * @retval The new state of __FLAG__ (TRUE or FALSE). |
Kojto | 93:e188a91d3eaa | 175 | */ |
Kojto | 108:34e6b704fe68 | 176 | #define __HAL_IWDG_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__)) |
Kojto | 93:e188a91d3eaa | 177 | |
Kojto | 93:e188a91d3eaa | 178 | /** |
Kojto | 93:e188a91d3eaa | 179 | * @} |
Kojto | 93:e188a91d3eaa | 180 | */ |
Kojto | 93:e188a91d3eaa | 181 | |
Kojto | 93:e188a91d3eaa | 182 | /* Exported functions --------------------------------------------------------*/ |
Kojto | 93:e188a91d3eaa | 183 | /** @addtogroup IWDG_Exported_Functions |
Kojto | 93:e188a91d3eaa | 184 | * @{ |
Kojto | 93:e188a91d3eaa | 185 | */ |
Kojto | 93:e188a91d3eaa | 186 | |
Kojto | 93:e188a91d3eaa | 187 | /** @addtogroup IWDG_Exported_Functions_Group1 |
Kojto | 93:e188a91d3eaa | 188 | * @{ |
Kojto | 93:e188a91d3eaa | 189 | */ |
Kojto | 93:e188a91d3eaa | 190 | /* Initialization/de-initialization functions ********************************/ |
Kojto | 93:e188a91d3eaa | 191 | HAL_StatusTypeDef HAL_IWDG_Init(IWDG_HandleTypeDef *hiwdg); |
Kojto | 108:34e6b704fe68 | 192 | void HAL_IWDG_MspInit(IWDG_HandleTypeDef *hiwdg); |
Kojto | 93:e188a91d3eaa | 193 | /** |
Kojto | 93:e188a91d3eaa | 194 | * @} |
Kojto | 93:e188a91d3eaa | 195 | */ |
Kojto | 108:34e6b704fe68 | 196 | |
Kojto | 93:e188a91d3eaa | 197 | /** @addtogroup IWDG_Exported_Functions_Group2 |
Kojto | 93:e188a91d3eaa | 198 | * @{ |
Kojto | 93:e188a91d3eaa | 199 | */ |
Kojto | 93:e188a91d3eaa | 200 | /* I/O operation functions ****************************************************/ |
Kojto | 93:e188a91d3eaa | 201 | HAL_StatusTypeDef HAL_IWDG_Start(IWDG_HandleTypeDef *hiwdg); |
Kojto | 93:e188a91d3eaa | 202 | HAL_StatusTypeDef HAL_IWDG_Refresh(IWDG_HandleTypeDef *hiwdg); |
Kojto | 93:e188a91d3eaa | 203 | /** |
Kojto | 93:e188a91d3eaa | 204 | * @} |
Kojto | 93:e188a91d3eaa | 205 | */ |
Kojto | 108:34e6b704fe68 | 206 | |
Kojto | 93:e188a91d3eaa | 207 | /** @addtogroup IWDG_Exported_Functions_Group3 |
Kojto | 93:e188a91d3eaa | 208 | * @{ |
Kojto | 93:e188a91d3eaa | 209 | */ |
Kojto | 93:e188a91d3eaa | 210 | /* Peripheral State functions ************************************************/ |
Kojto | 93:e188a91d3eaa | 211 | HAL_IWDG_StateTypeDef HAL_IWDG_GetState(IWDG_HandleTypeDef *hiwdg); |
Kojto | 108:34e6b704fe68 | 212 | /** |
Kojto | 108:34e6b704fe68 | 213 | * @} |
Kojto | 108:34e6b704fe68 | 214 | */ |
Kojto | 93:e188a91d3eaa | 215 | |
Kojto | 93:e188a91d3eaa | 216 | /** |
Kojto | 93:e188a91d3eaa | 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 */ |
Kojto | 93:e188a91d3eaa | 238 | |
Kojto | 93:e188a91d3eaa | 239 | /** |
Kojto | 93:e188a91d3eaa | 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) |
Kojto | 93:e188a91d3eaa | 287 | |
Kojto | 93:e188a91d3eaa | 288 | /** |
Kojto | 93:e188a91d3eaa | 289 | * @} |
Kojto | 108:34e6b704fe68 | 290 | */ |
Kojto | 93:e188a91d3eaa | 291 | |
Kojto | 93:e188a91d3eaa | 292 | /** |
Kojto | 93:e188a91d3eaa | 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 | |
Kojto | 93:e188a91d3eaa | 301 | #ifdef __cplusplus |
Kojto | 93:e188a91d3eaa | 302 | } |
Kojto | 93:e188a91d3eaa | 303 | #endif |
Kojto | 93:e188a91d3eaa | 304 | |
Kojto | 93:e188a91d3eaa | 305 | #endif /* __STM32F0xx_HAL_IWDG_H */ |
Kojto | 93:e188a91d3eaa | 306 | |
Kojto | 93:e188a91d3eaa | 307 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |
Kojto | 93:e188a91d3eaa | 308 |