aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h')
-rw-r--r--os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h b/os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h
index f4055b24d..828808d5e 100644
--- a/os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h
+++ b/os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h
@@ -118,17 +118,17 @@ typedef struct {
* @brief Configuration of the IWDG_PR register.
* @details See the STM32 reference manual for details.
*/
- uint8_t pr;
+ uint32_t pr;
/**
* @brief Configuration of the IWDG_RLR register.
* @details See the STM32 reference manual for details.
*/
- uint16_t rlr;
+ uint32_t rlr;
/**
* @brief Configuration of the IWDG_WINR register.
* @details See the STM32 reference manual for details.
*/
- uint16_t winr;
+ uint32_t winr;
} WDGConfig;
/**