STM32L4xx_HAL_Driver  1.14.0

IO operation functions. More...

Functions

HAL_StatusTypeDef HAL_IWDG_Refresh (IWDG_HandleTypeDef *hiwdg)
 Refresh the IWDG. More...
 

Detailed Description

IO operation functions.

 ===============================================================================
                      ##### IO operation functions #####
 ===============================================================================
 [..]  This section provides functions allowing to:
      (+) Refresh the IWDG.

Function Documentation

◆ HAL_IWDG_Refresh()

HAL_StatusTypeDef HAL_IWDG_Refresh ( IWDG_HandleTypeDef hiwdg)

Refresh the IWDG.

Parameters
hiwdgpointer to a IWDG_HandleTypeDef structure that contains the configuration information for the specified IWDG module.
Return values
HALstatus

Definition at line 238 of file stm32l4xx_hal_iwdg.c.

239 {
240  /* Reload IWDG counter with value defined in the reload register */
241  __HAL_IWDG_RELOAD_COUNTER(hiwdg);
242 
243  /* Return function status */
244  return HAL_OK;
245 }
return HAL_OK