source: S-port/trunk/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.c

Last change on this file was 1, checked in by AlexLir, 3 years ago
File size: 9.7 KB
Line 
1/**
2 ******************************************************************************
3 * @file stm32f4xx_hal_iwdg.c
4 * @author MCD Application Team
5 * @brief IWDG HAL module driver.
6 * This file provides firmware functions to manage the following
7 * functionalities of the Independent Watchdog (IWDG) peripheral:
8 * + Initialization and Start functions
9 * + IO operation functions
10 *
11 @verbatim
12 ==============================================================================
13 ##### IWDG Generic features #####
14 ==============================================================================
15 [..]
16 (+) The IWDG can be started by either software or hardware (configurable
17 through option byte).
18
19 (+) The IWDG is clocked by the Low-Speed Internal clock (LSI) and thus stays
20 active even if the main clock fails.
21
22 (+) Once the IWDG is started, the LSI is forced ON and both cannot be
23 disabled. The counter starts counting down from the reset value (0xFFF).
24 When it reaches the end of count value (0x000) a reset signal is
25 generated (IWDG reset).
26
27 (+) Whenever the key value 0x0000 AAAA is written in the IWDG_KR register,
28 the IWDG_RLR value is reloaded into the counter and the watchdog reset
29 is prevented.
30
31 (+) The IWDG is implemented in the VDD voltage domain that is still functional
32 in STOP and STANDBY mode (IWDG reset can wake up the CPU from STANDBY).
33 IWDGRST flag in RCC_CSR register can be used to inform when an IWDG
34 reset occurs.
35
36 (+) Debug mode: When the microcontroller enters debug mode (core halted),
37 the IWDG counter either continues to work normally or stops, depending
38 on DBG_IWDG_STOP configuration bit in DBG module, accessible through
39 __HAL_DBGMCU_FREEZE_IWDG() and __HAL_DBGMCU_UNFREEZE_IWDG() macros.
40
41 [..] Min-max timeout value @32KHz (LSI): ~125us / ~32.7s
42 The IWDG timeout may vary due to LSI clock frequency dispersion.
43 STM32F4xx devices provide the capability to measure the LSI clock
44 frequency (LSI clock is internally connected to TIM5 CH4 input capture).
45 The measured value can be used to have an IWDG timeout with an
46 acceptable accuracy.
47
48 [..] Default timeout value (necessary for IWDG_SR status register update):
49 Constant LSI_VALUE is defined based on the nominal LSI clock frequency.
50 This frequency being subject to variations as mentioned above, the
51 default timeout value (defined through constant HAL_IWDG_DEFAULT_TIMEOUT
52 below) may become too short or too long.
53 In such cases, this default timeout value can be tuned by redefining
54 the constant LSI_VALUE at user-application level (based, for instance,
55 on the measured LSI clock frequency as explained above).
56
57 ##### How to use this driver #####
58 ==============================================================================
59 [..]
60 (#) Use IWDG using HAL_IWDG_Init() function to :
61 (++) Enable instance by writing Start keyword in IWDG_KEY register. LSI
62 clock is forced ON and IWDG counter starts counting down.
63 (++) Enable write access to configuration registers:
64 IWDG_PR and IWDG_RLR.
65 (++) Configure the IWDG prescaler and counter reload value. This reload
66 value will be loaded in the IWDG counter each time the watchdog is
67 reloaded, then the IWDG will start counting down from this value.
68 (++) Wait for status flags to be reset.
69
70 (#) Then the application program must refresh the IWDG counter at regular
71 intervals during normal operation to prevent an MCU reset, using
72 HAL_IWDG_Refresh() function.
73
74 *** IWDG HAL driver macros list ***
75 ====================================
76 [..]
77 Below the list of most used macros in IWDG HAL driver:
78 (+) __HAL_IWDG_START: Enable the IWDG peripheral
79 (+) __HAL_IWDG_RELOAD_COUNTER: Reloads IWDG counter with value defined in
80 the reload register
81
82 @endverbatim
83 ******************************************************************************
84 * @attention
85 *
86 * <h2><center>&copy; Copyright (c) 2016 STMicroelectronics.
87 * All rights reserved.</center></h2>
88 *
89 * This software component is licensed by ST under BSD 3-Clause license,
90 * the "License"; You may not use this file except in compliance with the
91 * License. You may obtain a copy of the License at:
92 * opensource.org/licenses/BSD-3-Clause
93 *
94 ******************************************************************************
95 */
96
97/* Includes ------------------------------------------------------------------*/
98#include "stm32f4xx_hal.h"
99
100/** @addtogroup STM32F4xx_HAL_Driver
101 * @{
102 */
103
104#ifdef HAL_IWDG_MODULE_ENABLED
105/** @addtogroup IWDG
106 * @brief IWDG HAL module driver.
107 * @{
108 */
109
110/* Private typedef -----------------------------------------------------------*/
111/* Private define ------------------------------------------------------------*/
112/** @defgroup IWDG_Private_Defines IWDG Private Defines
113 * @{
114 */
115/* Status register needs up to 5 LSI clock periods divided by the clock
116 prescaler to be updated. The number of LSI clock periods is upper-rounded to
117 6 for the timeout value calculation.
118 The timeout value is also calculated using the highest prescaler (256) and
119 the LSI_VALUE constant. The value of this constant can be changed by the user
120 to take into account possible LSI clock period variations.
121 The timeout value is multiplied by 1000 to be converted in milliseconds. */
122#define HAL_IWDG_DEFAULT_TIMEOUT ((6UL * 256UL * 1000UL) / LSI_VALUE)
123#define IWDG_KERNEL_UPDATE_FLAGS (IWDG_SR_RVU | IWDG_SR_PVU)
124/**
125 * @}
126 */
127
128/* Private macro -------------------------------------------------------------*/
129/* Private variables ---------------------------------------------------------*/
130/* Private function prototypes -----------------------------------------------*/
131/* Exported functions --------------------------------------------------------*/
132
133/** @addtogroup IWDG_Exported_Functions
134 * @{
135 */
136
137/** @addtogroup IWDG_Exported_Functions_Group1
138 * @brief Initialization and Start functions.
139 *
140@verbatim
141 ===============================================================================
142 ##### Initialization and Start functions #####
143 ===============================================================================
144 [..] This section provides functions allowing to:
145 (+) Initialize the IWDG according to the specified parameters in the
146 IWDG_InitTypeDef of associated handle.
147 (+) Once initialization is performed in HAL_IWDG_Init function, Watchdog
148 is reloaded in order to exit function with correct time base.
149
150@endverbatim
151 * @{
152 */
153
154/**
155 * @brief Initialize the IWDG according to the specified parameters in the
156 * IWDG_InitTypeDef and start watchdog. Before exiting function,
157 * watchdog is refreshed in order to have correct time base.
158 * @param hiwdg pointer to a IWDG_HandleTypeDef structure that contains
159 * the configuration information for the specified IWDG module.
160 * @retval HAL status
161 */
162HAL_StatusTypeDef HAL_IWDG_Init(IWDG_HandleTypeDef *hiwdg)
163{
164 uint32_t tickstart;
165
166 /* Check the IWDG handle allocation */
167 if (hiwdg == NULL)
168 {
169 return HAL_ERROR;
170 }
171
172 /* Check the parameters */
173 assert_param(IS_IWDG_ALL_INSTANCE(hiwdg->Instance));
174 assert_param(IS_IWDG_PRESCALER(hiwdg->Init.Prescaler));
175 assert_param(IS_IWDG_RELOAD(hiwdg->Init.Reload));
176
177 /* Enable IWDG. LSI is turned on automatically */
178 __HAL_IWDG_START(hiwdg);
179
180 /* Enable write access to IWDG_PR and IWDG_RLR registers by writing
181 0x5555 in KR */
182 IWDG_ENABLE_WRITE_ACCESS(hiwdg);
183
184 /* Write to IWDG registers the Prescaler & Reload values to work with */
185 hiwdg->Instance->PR = hiwdg->Init.Prescaler;
186 hiwdg->Instance->RLR = hiwdg->Init.Reload;
187
188 /* Check pending flag, if previous update not done, return timeout */
189 tickstart = HAL_GetTick();
190
191 /* Wait for register to be updated */
192 while ((hiwdg->Instance->SR & IWDG_KERNEL_UPDATE_FLAGS) != 0x00u)
193 {
194 if ((HAL_GetTick() - tickstart) > HAL_IWDG_DEFAULT_TIMEOUT)
195 {
196 if ((hiwdg->Instance->SR & IWDG_KERNEL_UPDATE_FLAGS) != 0x00u)
197 {
198 return HAL_TIMEOUT;
199 }
200 }
201 }
202
203 /* Reload IWDG counter with value defined in the reload register */
204 __HAL_IWDG_RELOAD_COUNTER(hiwdg);
205
206 /* Return function status */
207 return HAL_OK;
208}
209
210
211/**
212 * @}
213 */
214
215
216/** @addtogroup IWDG_Exported_Functions_Group2
217 * @brief IO operation functions
218 *
219@verbatim
220 ===============================================================================
221 ##### IO operation functions #####
222 ===============================================================================
223 [..] This section provides functions allowing to:
224 (+) Refresh the IWDG.
225
226@endverbatim
227 * @{
228 */
229
230/**
231 * @brief Refresh the IWDG.
232 * @param hiwdg pointer to a IWDG_HandleTypeDef structure that contains
233 * the configuration information for the specified IWDG module.
234 * @retval HAL status
235 */
236HAL_StatusTypeDef HAL_IWDG_Refresh(IWDG_HandleTypeDef *hiwdg)
237{
238 /* Reload IWDG counter with value defined in the reload register */
239 __HAL_IWDG_RELOAD_COUNTER(hiwdg);
240
241 /* Return function status */
242 return HAL_OK;
243}
244
245
246/**
247 * @}
248 */
249
250/**
251 * @}
252 */
253
254#endif /* HAL_IWDG_MODULE_ENABLED */
255/**
256 * @}
257 */
258
259/**
260 * @}
261 */
262
263/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Note: See TracBrowser for help on using the repository browser.