Lines Matching full:reload
56 * @brief Calculates prescaler & reload values.
60 * @param reload Pointer to reload value.
64 uint32_t *reload) in iwdg_stm32_convert_timeout() argument
82 *reload = (uint32_t)(ticks / divider) - 1U; in iwdg_stm32_convert_timeout()
116 /* Write the prescaler and reload counter to the IWDG registers*/ in iwdg_stm32_setup()
118 LL_IWDG_SetReloadCounter(iwdg, data->reload); in iwdg_stm32_setup()
129 /* Reload counter just before leaving */ in iwdg_stm32_setup()
149 uint32_t reload = 0U; in iwdg_stm32_install_timeout() local
156 iwdg_stm32_convert_timeout(timeout, &prescaler, &reload); in iwdg_stm32_install_timeout()
159 IS_IWDG_RELOAD(reload))) { in iwdg_stm32_install_timeout()
166 data->reload = reload; in iwdg_stm32_install_timeout()