|
STM8L15x Standard Peripherals Drivers
|
Defines | |
| #define | IS_CLK_CLEAR_IT(IT) |
| #define | IS_CLK_IT(IT) |
Enumerations | |
| enum | CLK_IT_TypeDef { CLK_IT_CSSD = (uint8_t)0x0C, CLK_IT_SWIF = (uint8_t)0x1C, CLK_IT_LSECSSF = (uint8_t)0x2C } |
Define Documentation
| #define IS_CLK_CLEAR_IT | ( | IT | ) |
Value:
(((IT) == CLK_IT_SWIF)||\ ((IT) == CLK_IT_LSECSSF))
Definition at line 356 of file stm8l15x_clk.h.
Referenced by CLK_ClearITPendingBit().
| #define IS_CLK_IT | ( | IT | ) |
Value:
(((IT) == CLK_IT_CSSD) ||\ ((IT) == CLK_IT_SWIF) ||\ ((IT) == CLK_IT_LSECSSF))
Definition at line 352 of file stm8l15x_clk.h.
Referenced by CLK_GetITStatus(), and CLK_ITConfig().
Enumeration Type Documentation
| enum CLK_IT_TypeDef |
Definition at line 347 of file stm8l15x_clk.h.