mbed library sources

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Superseded

This library was superseded by mbed-dev - https://os.mbed.com/users/mbed_official/code/mbed-dev/.

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Committer:
mbed_official
Date:
Mon Oct 27 09:45:07 2014 +0000
Revision:
369:2e96f1b71984
Parent:
226:b062af740e40
Synchronized with git revision 2d1f64de28cfb25c0e602532e3ce5ad1d9accbed

Full URL: https://github.com/mbedmicro/mbed/commit/2d1f64de28cfb25c0e602532e3ce5ad1d9accbed/

CMSIS: NUCLEO_F401RE - Update STM32Cube driver

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 87:085cde657901 1 /**
mbed_official 87:085cde657901 2 ******************************************************************************
mbed_official 87:085cde657901 3 * @file stm32f4xx_hal_wwdg.c
mbed_official 87:085cde657901 4 * @author MCD Application Team
mbed_official 369:2e96f1b71984 5 * @version V1.1.0
mbed_official 369:2e96f1b71984 6 * @date 19-June-2014
mbed_official 87:085cde657901 7 * @brief WWDG HAL module driver.
mbed_official 87:085cde657901 8 * This file provides firmware functions to manage the following
mbed_official 87:085cde657901 9 * functionalities of the Window Watchdog (WWDG) peripheral:
mbed_official 87:085cde657901 10 * + Initialization and de-initialization functions
mbed_official 87:085cde657901 11 * + IO operation functions
mbed_official 87:085cde657901 12 * + Peripheral State functions
mbed_official 87:085cde657901 13 @verbatim
mbed_official 87:085cde657901 14 ==============================================================================
mbed_official 87:085cde657901 15 ##### WWDG specific features #####
mbed_official 87:085cde657901 16 ==============================================================================
mbed_official 87:085cde657901 17 [..]
mbed_official 87:085cde657901 18 Once enabled the WWDG generates a system reset on expiry of a programmed
mbed_official 87:085cde657901 19 time period, unless the program refreshes the counter (downcounter)
mbed_official 87:085cde657901 20 before reaching 0x3F value (i.e. a reset is generated when the counter
mbed_official 87:085cde657901 21 value rolls over from 0x40 to 0x3F).
mbed_official 87:085cde657901 22
mbed_official 87:085cde657901 23 (+) An MCU reset is also generated if the counter value is refreshed
mbed_official 87:085cde657901 24 before the counter has reached the refresh window value. This
mbed_official 87:085cde657901 25 implies that the counter must be refreshed in a limited window.
mbed_official 87:085cde657901 26 (+) Once enabled the WWDG cannot be disabled except by a system reset.
mbed_official 87:085cde657901 27 (+) WWDGRST flag in RCC_CSR register can be used to inform when a WWDG
mbed_official 87:085cde657901 28 reset occurs.
mbed_official 87:085cde657901 29 (+) The WWDG counter input clock is derived from the APB clock divided
mbed_official 87:085cde657901 30 by a programmable prescaler.
mbed_official 87:085cde657901 31 (+) WWDG clock (Hz) = PCLK1 / (4096 * Prescaler)
mbed_official 87:085cde657901 32 (+) WWDG timeout (mS) = 1000 * Counter / WWDG clock
mbed_official 87:085cde657901 33 (+) WWDG Counter refresh is allowed between the following limits :
mbed_official 87:085cde657901 34 (++) min time (mS) = 1000 * (Counter – Window) / WWDG clock
mbed_official 87:085cde657901 35 (++) max time (mS) = 1000 * (Counter – 0x40) / WWDG clock
mbed_official 87:085cde657901 36
mbed_official 87:085cde657901 37 (+) Min-max timeout value at 50 MHz(PCLK1): 81.9 us / 41.9 ms
mbed_official 87:085cde657901 38
mbed_official 87:085cde657901 39
mbed_official 87:085cde657901 40 ##### How to use this driver #####
mbed_official 87:085cde657901 41 ==============================================================================
mbed_official 87:085cde657901 42 [..]
mbed_official 87:085cde657901 43 (+) Enable WWDG APB1 clock using __WWDG_CLK_ENABLE().
mbed_official 87:085cde657901 44 (+) Set the WWDG prescaler, refresh window and counter value
mbed_official 87:085cde657901 45 using HAL_WWDG_Init() function.
mbed_official 87:085cde657901 46 (+) Start the WWDG using HAL_WWDG_Start() function.
mbed_official 87:085cde657901 47 When the WWDG is enabled the counter value should be configured to
mbed_official 87:085cde657901 48 a value greater than 0x40 to prevent generating an immediate reset.
mbed_official 87:085cde657901 49 (+) Optionally you can enable the Early Wakeup Interrupt (EWI) which is
mbed_official 87:085cde657901 50 generated when the counter reaches 0x40, and then start the WWDG using
mbed_official 87:085cde657901 51 HAL_WWDG_Start_IT(). At EWI HAL_WWDG_WakeupCallback is executed and user can
mbed_official 87:085cde657901 52 add his own code by customization of function pointer HAL_WWDG_WakeupCallback
mbed_official 87:085cde657901 53 Once enabled, EWI interrupt cannot be disabled except by a system reset.
mbed_official 87:085cde657901 54 (+) Then the application program must refresh the WWDG counter at regular
mbed_official 87:085cde657901 55 intervals during normal operation to prevent an MCU reset, using
mbed_official 87:085cde657901 56 HAL_WWDG_Refresh() function. This operation must occur only when
mbed_official 87:085cde657901 57 the counter is lower than the refresh window value already programmed.
mbed_official 87:085cde657901 58
mbed_official 87:085cde657901 59 *** WWDG HAL driver macros list ***
mbed_official 87:085cde657901 60 ==================================
mbed_official 87:085cde657901 61 [..]
mbed_official 87:085cde657901 62 Below the list of most used macros in WWDG HAL driver.
mbed_official 87:085cde657901 63
mbed_official 87:085cde657901 64 (+) __HAL_WWDG_ENABLE: Enable the WWDG peripheral
mbed_official 369:2e96f1b71984 65 (+) __HAL_WWDG_GET_FLAG: Get the selected WWDG's flag status
mbed_official 369:2e96f1b71984 66 (+) __HAL_WWDG_CLEAR_FLAG: Clear the WWDG's pending flags
mbed_official 369:2e96f1b71984 67 (+) __HAL_WWDG_ENABLE_IT: Enables the WWDG early wakeup interrupt
mbed_official 87:085cde657901 68
mbed_official 87:085cde657901 69 @endverbatim
mbed_official 87:085cde657901 70 ******************************************************************************
mbed_official 87:085cde657901 71 * @attention
mbed_official 87:085cde657901 72 *
mbed_official 87:085cde657901 73 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
mbed_official 87:085cde657901 74 *
mbed_official 87:085cde657901 75 * Redistribution and use in source and binary forms, with or without modification,
mbed_official 87:085cde657901 76 * are permitted provided that the following conditions are met:
mbed_official 87:085cde657901 77 * 1. Redistributions of source code must retain the above copyright notice,
mbed_official 87:085cde657901 78 * this list of conditions and the following disclaimer.
mbed_official 87:085cde657901 79 * 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 87:085cde657901 80 * this list of conditions and the following disclaimer in the documentation
mbed_official 87:085cde657901 81 * and/or other materials provided with the distribution.
mbed_official 87:085cde657901 82 * 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 87:085cde657901 83 * may be used to endorse or promote products derived from this software
mbed_official 87:085cde657901 84 * without specific prior written permission.
mbed_official 87:085cde657901 85 *
mbed_official 87:085cde657901 86 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 87:085cde657901 87 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 87:085cde657901 88 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 87:085cde657901 89 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 87:085cde657901 90 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 87:085cde657901 91 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 87:085cde657901 92 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 87:085cde657901 93 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 87:085cde657901 94 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 87:085cde657901 95 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 87:085cde657901 96 *
mbed_official 87:085cde657901 97 ******************************************************************************
mbed_official 87:085cde657901 98 */
mbed_official 87:085cde657901 99
mbed_official 87:085cde657901 100 /* Includes ------------------------------------------------------------------*/
mbed_official 87:085cde657901 101 #include "stm32f4xx_hal.h"
mbed_official 87:085cde657901 102
mbed_official 87:085cde657901 103 /** @addtogroup STM32F4xx_HAL_Driver
mbed_official 87:085cde657901 104 * @{
mbed_official 87:085cde657901 105 */
mbed_official 87:085cde657901 106
mbed_official 87:085cde657901 107 /** @defgroup WWDG
mbed_official 87:085cde657901 108 * @brief WWDG HAL module driver.
mbed_official 87:085cde657901 109 * @{
mbed_official 87:085cde657901 110 */
mbed_official 87:085cde657901 111
mbed_official 87:085cde657901 112 #ifdef HAL_WWDG_MODULE_ENABLED
mbed_official 87:085cde657901 113
mbed_official 87:085cde657901 114 /* Private typedef -----------------------------------------------------------*/
mbed_official 87:085cde657901 115 /* Private define ------------------------------------------------------------*/
mbed_official 87:085cde657901 116 /* Private macro -------------------------------------------------------------*/
mbed_official 87:085cde657901 117 /* Private variables ---------------------------------------------------------*/
mbed_official 87:085cde657901 118 /* Private function prototypes -----------------------------------------------*/
mbed_official 87:085cde657901 119 /* Private functions ---------------------------------------------------------*/
mbed_official 87:085cde657901 120
mbed_official 87:085cde657901 121 /** @defgroup WWDG_Private_Functions
mbed_official 87:085cde657901 122 * @{
mbed_official 87:085cde657901 123 */
mbed_official 87:085cde657901 124
mbed_official 87:085cde657901 125 /** @defgroup WWDG_Group1 Initialization and de-initialization functions
mbed_official 87:085cde657901 126 * @brief Initialization and Configuration functions.
mbed_official 87:085cde657901 127 *
mbed_official 87:085cde657901 128 @verbatim
mbed_official 87:085cde657901 129 ==============================================================================
mbed_official 87:085cde657901 130 ##### Initialization and de-initialization functions #####
mbed_official 87:085cde657901 131 ==============================================================================
mbed_official 87:085cde657901 132 [..]
mbed_official 87:085cde657901 133 This section provides functions allowing to:
mbed_official 87:085cde657901 134 (+) Initialize the WWDG according to the specified parameters
mbed_official 87:085cde657901 135 in the WWDG_InitTypeDef and create the associated handle
mbed_official 87:085cde657901 136 (+) DeInitialize the WWDG peripheral
mbed_official 87:085cde657901 137 (+) Initialize the WWDG MSP
mbed_official 87:085cde657901 138 (+) DeInitialize the WWDG MSP
mbed_official 87:085cde657901 139
mbed_official 87:085cde657901 140 @endverbatim
mbed_official 87:085cde657901 141 * @{
mbed_official 87:085cde657901 142 */
mbed_official 87:085cde657901 143
mbed_official 87:085cde657901 144 /**
mbed_official 87:085cde657901 145 * @brief Initializes the WWDG according to the specified
mbed_official 87:085cde657901 146 * parameters in the WWDG_InitTypeDef and creates the associated handle.
mbed_official 226:b062af740e40 147 * @param hwwdg: pointer to a WWDG_HandleTypeDef structure that contains
mbed_official 226:b062af740e40 148 * the configuration information for the specified WWDG module.
mbed_official 87:085cde657901 149 * @retval HAL status
mbed_official 87:085cde657901 150 */
mbed_official 87:085cde657901 151 HAL_StatusTypeDef HAL_WWDG_Init(WWDG_HandleTypeDef *hwwdg)
mbed_official 87:085cde657901 152 {
mbed_official 87:085cde657901 153 /* Check the WWDG handle allocation */
mbed_official 369:2e96f1b71984 154 if(hwwdg == HAL_NULL)
mbed_official 87:085cde657901 155 {
mbed_official 87:085cde657901 156 return HAL_ERROR;
mbed_official 87:085cde657901 157 }
mbed_official 369:2e96f1b71984 158
mbed_official 87:085cde657901 159 /* Check the parameters */
mbed_official 369:2e96f1b71984 160 assert_param(IS_WWDG_ALL_INSTANCE(hwwdg->Instance));
mbed_official 87:085cde657901 161 assert_param(IS_WWDG_PRESCALER(hwwdg->Init.Prescaler));
mbed_official 87:085cde657901 162 assert_param(IS_WWDG_WINDOW(hwwdg->Init.Window));
mbed_official 87:085cde657901 163 assert_param(IS_WWDG_COUNTER(hwwdg->Init.Counter));
mbed_official 87:085cde657901 164
mbed_official 87:085cde657901 165 if(hwwdg->State == HAL_WWDG_STATE_RESET)
mbed_official 87:085cde657901 166 {
mbed_official 87:085cde657901 167 /* Init the low level hardware */
mbed_official 87:085cde657901 168 HAL_WWDG_MspInit(hwwdg);
mbed_official 87:085cde657901 169 }
mbed_official 87:085cde657901 170
mbed_official 87:085cde657901 171 /* Change WWDG peripheral state */
mbed_official 87:085cde657901 172 hwwdg->State = HAL_WWDG_STATE_BUSY;
mbed_official 87:085cde657901 173
mbed_official 87:085cde657901 174 /* Set WWDG Prescaler and Window */
mbed_official 369:2e96f1b71984 175 MODIFY_REG(hwwdg->Instance->CFR, (WWDG_CFR_WDGTB | WWDG_CFR_W), (hwwdg->Init.Prescaler | hwwdg->Init.Window));
mbed_official 87:085cde657901 176 /* Set WWDG Counter */
mbed_official 369:2e96f1b71984 177 MODIFY_REG(hwwdg->Instance->CR, WWDG_CR_T, hwwdg->Init.Counter);
mbed_official 369:2e96f1b71984 178
mbed_official 87:085cde657901 179 /* Change WWDG peripheral state */
mbed_official 87:085cde657901 180 hwwdg->State = HAL_WWDG_STATE_READY;
mbed_official 87:085cde657901 181
mbed_official 87:085cde657901 182 /* Return function status */
mbed_official 87:085cde657901 183 return HAL_OK;
mbed_official 87:085cde657901 184 }
mbed_official 87:085cde657901 185
mbed_official 87:085cde657901 186 /**
mbed_official 87:085cde657901 187 * @brief DeInitializes the WWDG peripheral.
mbed_official 226:b062af740e40 188 * @param hwwdg: pointer to a WWDG_HandleTypeDef structure that contains
mbed_official 226:b062af740e40 189 * the configuration information for the specified WWDG module.
mbed_official 87:085cde657901 190 * @retval HAL status
mbed_official 87:085cde657901 191 */
mbed_official 87:085cde657901 192 HAL_StatusTypeDef HAL_WWDG_DeInit(WWDG_HandleTypeDef *hwwdg)
mbed_official 369:2e96f1b71984 193 {
mbed_official 369:2e96f1b71984 194 /* Check the WWDG handle allocation */
mbed_official 369:2e96f1b71984 195 if(hwwdg == HAL_NULL)
mbed_official 369:2e96f1b71984 196 {
mbed_official 369:2e96f1b71984 197 return HAL_ERROR;
mbed_official 369:2e96f1b71984 198 }
mbed_official 369:2e96f1b71984 199
mbed_official 369:2e96f1b71984 200 /* Check the parameters */
mbed_official 369:2e96f1b71984 201 assert_param(IS_WWDG_ALL_INSTANCE(hwwdg->Instance));
mbed_official 369:2e96f1b71984 202
mbed_official 87:085cde657901 203 /* Change WWDG peripheral state */
mbed_official 87:085cde657901 204 hwwdg->State = HAL_WWDG_STATE_BUSY;
mbed_official 87:085cde657901 205
mbed_official 87:085cde657901 206 /* DeInit the low level hardware */
mbed_official 87:085cde657901 207 HAL_WWDG_MspDeInit(hwwdg);
mbed_official 87:085cde657901 208
mbed_official 87:085cde657901 209 /* Reset WWDG Control register */
mbed_official 87:085cde657901 210 hwwdg->Instance->CR = (uint32_t)0x0000007F;
mbed_official 87:085cde657901 211
mbed_official 87:085cde657901 212 /* Reset WWDG Configuration register */
mbed_official 87:085cde657901 213 hwwdg->Instance->CFR = (uint32_t)0x0000007F;
mbed_official 87:085cde657901 214
mbed_official 87:085cde657901 215 /* Reset WWDG Status register */
mbed_official 87:085cde657901 216 hwwdg->Instance->SR = 0;
mbed_official 87:085cde657901 217
mbed_official 87:085cde657901 218 /* Change WWDG peripheral state */
mbed_official 87:085cde657901 219 hwwdg->State = HAL_WWDG_STATE_RESET;
mbed_official 87:085cde657901 220
mbed_official 106:ced8cbb51063 221 /* Release Lock */
mbed_official 106:ced8cbb51063 222 __HAL_UNLOCK(hwwdg);
mbed_official 106:ced8cbb51063 223
mbed_official 87:085cde657901 224 /* Return function status */
mbed_official 87:085cde657901 225 return HAL_OK;
mbed_official 87:085cde657901 226 }
mbed_official 87:085cde657901 227
mbed_official 87:085cde657901 228 /**
mbed_official 87:085cde657901 229 * @brief Initializes the WWDG MSP.
mbed_official 226:b062af740e40 230 * @param hwwdg: pointer to a WWDG_HandleTypeDef structure that contains
mbed_official 226:b062af740e40 231 * the configuration information for the specified WWDG module.
mbed_official 87:085cde657901 232 * @retval None
mbed_official 87:085cde657901 233 */
mbed_official 87:085cde657901 234 __weak void HAL_WWDG_MspInit(WWDG_HandleTypeDef *hwwdg)
mbed_official 87:085cde657901 235 {
mbed_official 87:085cde657901 236 /* NOTE: This function Should not be modified, when the callback is needed,
mbed_official 87:085cde657901 237 the HAL_WWDG_MspInit could be implemented in the user file
mbed_official 87:085cde657901 238 */
mbed_official 87:085cde657901 239 }
mbed_official 87:085cde657901 240
mbed_official 87:085cde657901 241 /**
mbed_official 87:085cde657901 242 * @brief DeInitializes the WWDG MSP.
mbed_official 226:b062af740e40 243 * @param hwwdg: pointer to a WWDG_HandleTypeDef structure that contains
mbed_official 226:b062af740e40 244 * the configuration information for the specified WWDG module.
mbed_official 87:085cde657901 245 * @retval None
mbed_official 87:085cde657901 246 */
mbed_official 87:085cde657901 247 __weak void HAL_WWDG_MspDeInit(WWDG_HandleTypeDef *hwwdg)
mbed_official 87:085cde657901 248 {
mbed_official 87:085cde657901 249 /* NOTE: This function Should not be modified, when the callback is needed,
mbed_official 87:085cde657901 250 the HAL_WWDG_MspDeInit could be implemented in the user file
mbed_official 87:085cde657901 251 */
mbed_official 87:085cde657901 252 }
mbed_official 87:085cde657901 253
mbed_official 87:085cde657901 254 /**
mbed_official 87:085cde657901 255 * @}
mbed_official 87:085cde657901 256 */
mbed_official 87:085cde657901 257
mbed_official 87:085cde657901 258 /** @defgroup WWDG_Group2 IO operation functions
mbed_official 87:085cde657901 259 * @brief IO operation functions
mbed_official 87:085cde657901 260 *
mbed_official 87:085cde657901 261 @verbatim
mbed_official 87:085cde657901 262 ==============================================================================
mbed_official 87:085cde657901 263 ##### IO operation functions #####
mbed_official 87:085cde657901 264 ==============================================================================
mbed_official 87:085cde657901 265 [..]
mbed_official 87:085cde657901 266 This section provides functions allowing to:
mbed_official 87:085cde657901 267 (+) Start the WWDG.
mbed_official 87:085cde657901 268 (+) Refresh the WWDG.
mbed_official 87:085cde657901 269 (+) Handle WWDG interrupt request.
mbed_official 87:085cde657901 270
mbed_official 87:085cde657901 271 @endverbatim
mbed_official 87:085cde657901 272 * @{
mbed_official 87:085cde657901 273 */
mbed_official 87:085cde657901 274
mbed_official 87:085cde657901 275 /**
mbed_official 87:085cde657901 276 * @brief Starts the WWDG.
mbed_official 226:b062af740e40 277 * @param hwwdg: pointer to a WWDG_HandleTypeDef structure that contains
mbed_official 226:b062af740e40 278 * the configuration information for the specified WWDG module.
mbed_official 87:085cde657901 279 * @retval HAL status
mbed_official 87:085cde657901 280 */
mbed_official 87:085cde657901 281 HAL_StatusTypeDef HAL_WWDG_Start(WWDG_HandleTypeDef *hwwdg)
mbed_official 87:085cde657901 282 {
mbed_official 87:085cde657901 283 /* Process Locked */
mbed_official 87:085cde657901 284 __HAL_LOCK(hwwdg);
mbed_official 87:085cde657901 285
mbed_official 87:085cde657901 286 /* Change WWDG peripheral state */
mbed_official 87:085cde657901 287 hwwdg->State = HAL_WWDG_STATE_BUSY;
mbed_official 87:085cde657901 288
mbed_official 87:085cde657901 289 /* Enable the peripheral */
mbed_official 87:085cde657901 290 __HAL_WWDG_ENABLE(hwwdg);
mbed_official 87:085cde657901 291
mbed_official 87:085cde657901 292 /* Change WWDG peripheral state */
mbed_official 87:085cde657901 293 hwwdg->State = HAL_WWDG_STATE_READY;
mbed_official 87:085cde657901 294
mbed_official 87:085cde657901 295 /* Process Unlocked */
mbed_official 87:085cde657901 296 __HAL_UNLOCK(hwwdg);
mbed_official 87:085cde657901 297
mbed_official 87:085cde657901 298 /* Return function status */
mbed_official 87:085cde657901 299 return HAL_OK;
mbed_official 87:085cde657901 300 }
mbed_official 87:085cde657901 301
mbed_official 87:085cde657901 302 /**
mbed_official 87:085cde657901 303 * @brief Starts the WWDG with interrupt enabled.
mbed_official 226:b062af740e40 304 * @param hwwdg: pointer to a WWDG_HandleTypeDef structure that contains
mbed_official 226:b062af740e40 305 * the configuration information for the specified WWDG module.
mbed_official 87:085cde657901 306 * @retval HAL status
mbed_official 87:085cde657901 307 */
mbed_official 87:085cde657901 308 HAL_StatusTypeDef HAL_WWDG_Start_IT(WWDG_HandleTypeDef *hwwdg)
mbed_official 369:2e96f1b71984 309 {
mbed_official 87:085cde657901 310 /* Process Locked */
mbed_official 87:085cde657901 311 __HAL_LOCK(hwwdg);
mbed_official 369:2e96f1b71984 312
mbed_official 87:085cde657901 313 /* Change WWDG peripheral state */
mbed_official 87:085cde657901 314 hwwdg->State = HAL_WWDG_STATE_BUSY;
mbed_official 369:2e96f1b71984 315
mbed_official 87:085cde657901 316 /* Enable the Early Wakeup Interrupt */
mbed_official 87:085cde657901 317 __HAL_WWDG_ENABLE_IT(WWDG_IT_EWI);
mbed_official 87:085cde657901 318
mbed_official 87:085cde657901 319 /* Enable the peripheral */
mbed_official 87:085cde657901 320 __HAL_WWDG_ENABLE(hwwdg);
mbed_official 369:2e96f1b71984 321
mbed_official 87:085cde657901 322 /* Return function status */
mbed_official 87:085cde657901 323 return HAL_OK;
mbed_official 87:085cde657901 324 }
mbed_official 87:085cde657901 325
mbed_official 87:085cde657901 326 /**
mbed_official 87:085cde657901 327 * @brief Refreshes the WWDG.
mbed_official 226:b062af740e40 328 * @param hwwdg: pointer to a WWDG_HandleTypeDef structure that contains
mbed_official 226:b062af740e40 329 * the configuration information for the specified WWDG module.
mbed_official 369:2e96f1b71984 330 * @param Counter: value of counter to put in WWDG counter
mbed_official 87:085cde657901 331 * @retval HAL status
mbed_official 87:085cde657901 332 */
mbed_official 87:085cde657901 333 HAL_StatusTypeDef HAL_WWDG_Refresh(WWDG_HandleTypeDef *hwwdg, uint32_t Counter)
mbed_official 87:085cde657901 334 {
mbed_official 87:085cde657901 335 /* Process Locked */
mbed_official 87:085cde657901 336 __HAL_LOCK(hwwdg);
mbed_official 87:085cde657901 337
mbed_official 87:085cde657901 338 /* Change WWDG peripheral state */
mbed_official 87:085cde657901 339 hwwdg->State = HAL_WWDG_STATE_BUSY;
mbed_official 87:085cde657901 340
mbed_official 87:085cde657901 341 /* Check the parameters */
mbed_official 87:085cde657901 342 assert_param(IS_WWDG_COUNTER(Counter));
mbed_official 87:085cde657901 343
mbed_official 87:085cde657901 344 /* Write to WWDG CR the WWDG Counter value to refresh with */
mbed_official 369:2e96f1b71984 345 MODIFY_REG(hwwdg->Instance->CR, (uint32_t)WWDG_CR_T, Counter);
mbed_official 87:085cde657901 346
mbed_official 87:085cde657901 347 /* Change WWDG peripheral state */
mbed_official 87:085cde657901 348 hwwdg->State = HAL_WWDG_STATE_READY;
mbed_official 87:085cde657901 349
mbed_official 87:085cde657901 350 /* Process Unlocked */
mbed_official 87:085cde657901 351 __HAL_UNLOCK(hwwdg);
mbed_official 87:085cde657901 352
mbed_official 87:085cde657901 353 /* Return function status */
mbed_official 87:085cde657901 354 return HAL_OK;
mbed_official 87:085cde657901 355 }
mbed_official 87:085cde657901 356
mbed_official 87:085cde657901 357 /**
mbed_official 87:085cde657901 358 * @brief Handles WWDG interrupt request.
mbed_official 87:085cde657901 359 * @note The Early Wakeup Interrupt (EWI) can be used if specific safety operations
mbed_official 87:085cde657901 360 * or data logging must be performed before the actual reset is generated.
mbed_official 87:085cde657901 361 * The EWI interrupt is enabled using __HAL_WWDG_ENABLE_IT() macro.
mbed_official 87:085cde657901 362 * When the downcounter reaches the value 0x40, and EWI interrupt is
mbed_official 87:085cde657901 363 * generated and the corresponding Interrupt Service Routine (ISR) can
mbed_official 87:085cde657901 364 * be used to trigger specific actions (such as communications or data
mbed_official 87:085cde657901 365 * logging), before resetting the device.
mbed_official 226:b062af740e40 366 * @param hwwdg: pointer to a WWDG_HandleTypeDef structure that contains
mbed_official 226:b062af740e40 367 * the configuration information for the specified WWDG module.
mbed_official 87:085cde657901 368 * @retval None
mbed_official 87:085cde657901 369 */
mbed_official 87:085cde657901 370 void HAL_WWDG_IRQHandler(WWDG_HandleTypeDef *hwwdg)
mbed_official 87:085cde657901 371 {
mbed_official 87:085cde657901 372 /* WWDG Early Wakeup Interrupt occurred */
mbed_official 87:085cde657901 373 if(__HAL_WWDG_GET_FLAG(hwwdg, WWDG_FLAG_EWIF) != RESET)
mbed_official 87:085cde657901 374 {
mbed_official 87:085cde657901 375 /* Early Wakeup callback */
mbed_official 87:085cde657901 376 HAL_WWDG_WakeupCallback(hwwdg);
mbed_official 87:085cde657901 377
mbed_official 87:085cde657901 378 /* Change WWDG peripheral state */
mbed_official 87:085cde657901 379 hwwdg->State = HAL_WWDG_STATE_READY;
mbed_official 87:085cde657901 380
mbed_official 87:085cde657901 381 /* Clear the WWDG Data Ready flag */
mbed_official 87:085cde657901 382 __HAL_WWDG_CLEAR_FLAG(hwwdg, WWDG_FLAG_EWIF);
mbed_official 87:085cde657901 383
mbed_official 87:085cde657901 384 /* Process Unlocked */
mbed_official 87:085cde657901 385 __HAL_UNLOCK(hwwdg);
mbed_official 87:085cde657901 386 }
mbed_official 87:085cde657901 387 }
mbed_official 87:085cde657901 388
mbed_official 87:085cde657901 389 /**
mbed_official 87:085cde657901 390 * @brief Early Wakeup WWDG callback.
mbed_official 226:b062af740e40 391 * @param hwwdg: pointer to a WWDG_HandleTypeDef structure that contains
mbed_official 226:b062af740e40 392 * the configuration information for the specified WWDG module.
mbed_official 87:085cde657901 393 * @retval None
mbed_official 87:085cde657901 394 */
mbed_official 87:085cde657901 395 __weak void HAL_WWDG_WakeupCallback(WWDG_HandleTypeDef* hwwdg)
mbed_official 87:085cde657901 396 {
mbed_official 87:085cde657901 397 /* NOTE: This function Should not be modified, when the callback is needed,
mbed_official 87:085cde657901 398 the HAL_WWDG_WakeupCallback could be implemented in the user file
mbed_official 87:085cde657901 399 */
mbed_official 87:085cde657901 400 }
mbed_official 87:085cde657901 401
mbed_official 87:085cde657901 402 /**
mbed_official 87:085cde657901 403 * @}
mbed_official 87:085cde657901 404 */
mbed_official 87:085cde657901 405
mbed_official 87:085cde657901 406 /** @defgroup WWDG_Group3 Peripheral State functions
mbed_official 87:085cde657901 407 * @brief Peripheral State functions.
mbed_official 87:085cde657901 408 *
mbed_official 87:085cde657901 409 @verbatim
mbed_official 87:085cde657901 410 ==============================================================================
mbed_official 87:085cde657901 411 ##### Peripheral State functions #####
mbed_official 87:085cde657901 412 ==============================================================================
mbed_official 87:085cde657901 413 [..]
mbed_official 87:085cde657901 414 This subsection permits to get in run-time the status of the peripheral
mbed_official 87:085cde657901 415 and the data flow.
mbed_official 87:085cde657901 416
mbed_official 87:085cde657901 417 @endverbatim
mbed_official 87:085cde657901 418 * @{
mbed_official 87:085cde657901 419 */
mbed_official 87:085cde657901 420
mbed_official 87:085cde657901 421 /**
mbed_official 87:085cde657901 422 * @brief Returns the WWDG state.
mbed_official 226:b062af740e40 423 * @param hwwdg: pointer to a WWDG_HandleTypeDef structure that contains
mbed_official 226:b062af740e40 424 * the configuration information for the specified WWDG module.
mbed_official 87:085cde657901 425 * @retval HAL state
mbed_official 87:085cde657901 426 */
mbed_official 87:085cde657901 427 HAL_WWDG_StateTypeDef HAL_WWDG_GetState(WWDG_HandleTypeDef *hwwdg)
mbed_official 87:085cde657901 428 {
mbed_official 87:085cde657901 429 return hwwdg->State;
mbed_official 87:085cde657901 430 }
mbed_official 87:085cde657901 431
mbed_official 87:085cde657901 432 /**
mbed_official 87:085cde657901 433 * @}
mbed_official 87:085cde657901 434 */
mbed_official 87:085cde657901 435
mbed_official 87:085cde657901 436 /**
mbed_official 87:085cde657901 437 * @}
mbed_official 87:085cde657901 438 */
mbed_official 87:085cde657901 439
mbed_official 87:085cde657901 440 #endif /* HAL_WWDG_MODULE_ENABLED */
mbed_official 87:085cde657901 441 /**
mbed_official 87:085cde657901 442 * @}
mbed_official 87:085cde657901 443 */
mbed_official 87:085cde657901 444
mbed_official 87:085cde657901 445 /**
mbed_official 87:085cde657901 446 * @}
mbed_official 87:085cde657901 447 */
mbed_official 87:085cde657901 448
mbed_official 87:085cde657901 449 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/