stm32f30x_iwdg.h
Go to the documentation of this file.
1 
29 /* Define to prevent recursive inclusion -------------------------------------*/
30 #ifndef __STM32F30x_IWDG_H
31 #define __STM32F30x_IWDG_H
32 
33 #ifdef __cplusplus
34  extern "C" {
35 #endif
36 
37 /* Includes ------------------------------------------------------------------*/
38 #include "stm32f30x.h"
39 
48 /* Exported types ------------------------------------------------------------*/
49 /* Exported constants --------------------------------------------------------*/
50 
59 #define IWDG_WriteAccess_Enable ((uint16_t)0x5555)
60 #define IWDG_WriteAccess_Disable ((uint16_t)0x0000)
61 #define IS_IWDG_WRITE_ACCESS(ACCESS) (((ACCESS) == IWDG_WriteAccess_Enable) || \
62  ((ACCESS) == IWDG_WriteAccess_Disable))
63 
71 #define IWDG_Prescaler_4 ((uint8_t)0x00)
72 #define IWDG_Prescaler_8 ((uint8_t)0x01)
73 #define IWDG_Prescaler_16 ((uint8_t)0x02)
74 #define IWDG_Prescaler_32 ((uint8_t)0x03)
75 #define IWDG_Prescaler_64 ((uint8_t)0x04)
76 #define IWDG_Prescaler_128 ((uint8_t)0x05)
77 #define IWDG_Prescaler_256 ((uint8_t)0x06)
78 #define IS_IWDG_PRESCALER(PRESCALER) (((PRESCALER) == IWDG_Prescaler_4) || \
79  ((PRESCALER) == IWDG_Prescaler_8) || \
80  ((PRESCALER) == IWDG_Prescaler_16) || \
81  ((PRESCALER) == IWDG_Prescaler_32) || \
82  ((PRESCALER) == IWDG_Prescaler_64) || \
83  ((PRESCALER) == IWDG_Prescaler_128)|| \
84  ((PRESCALER) == IWDG_Prescaler_256))
85 
93 #define IWDG_FLAG_PVU ((uint16_t)0x0001)
94 #define IWDG_FLAG_RVU ((uint16_t)0x0002)
95 #define IWDG_FLAG_WVU ((uint16_t)0x0002)
96 #define IS_IWDG_FLAG(FLAG) (((FLAG) == IWDG_FLAG_PVU) || ((FLAG) == IWDG_FLAG_RVU) || \
97  ((FLAG) == IWDG_FLAG_WVU))
98 
105 #define IS_IWDG_RELOAD(RELOAD) ((RELOAD) <= 0xFFF)
106 
114 #define IS_IWDG_WINDOW_VALUE(VALUE) ((VALUE) <= 0xFFF)
115 
123 /* Exported macro ------------------------------------------------------------*/
124 /* Exported functions --------------------------------------------------------*/
125 
126 /* Prescaler and Counter configuration functions ******************************/
127 void IWDG_WriteAccessCmd(uint16_t IWDG_WriteAccess);
128 void IWDG_SetPrescaler(uint8_t IWDG_Prescaler);
129 void IWDG_SetReload(uint16_t Reload);
130 void IWDG_ReloadCounter(void);
131 void IWDG_SetWindowValue(uint16_t WindowValue);
132 
133 /* IWDG activation function ***************************************************/
134 void IWDG_Enable(void);
135 
136 /* Flag management function ***************************************************/
137 FlagStatus IWDG_GetFlagStatus(uint16_t IWDG_FLAG);
138 
139 #ifdef __cplusplus
140 }
141 #endif
142 
143 #endif /* __STM32F30x_IWDG_H */
144 
153 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
FlagStatus
Definition: stm32f4xx.h:706
void IWDG_Enable(void)
Enables IWDG (write access to IWDG_PR and IWDG_RLR registers disabled).
void IWDG_WriteAccessCmd(uint16_t IWDG_WriteAccess)
Enables or disables write access to IWDG_PR and IWDG_RLR registers.
void IWDG_SetWindowValue(uint16_t WindowValue)
Sets the IWDG window value.
void IWDG_ReloadCounter(void)
Reloads IWDG counter with value defined in the reload register (write access to IWDG_PR and IWDG_RLR ...
void IWDG_SetReload(uint16_t Reload)
Sets IWDG Reload value.
void IWDG_SetPrescaler(uint8_t IWDG_Prescaler)
Sets IWDG Prescaler value.
FlagStatus IWDG_GetFlagStatus(uint16_t IWDG_FLAG)
Checks whether the specified IWDG flag is set or not.


rosflight_firmware
Author(s): Daniel Koch , James Jackson
autogenerated on Thu Apr 15 2021 05:07:48