![]()  | 
  
  
  
    STM32F10x Standard Peripherals Library
    3.5.0
    
   
   | 
  
  
  
 
Functions | |
| void | EXTI_DeInit (void) | 
| Deinitializes the EXTI peripheral registers to their default reset values.   | |
| void | EXTI_Init (EXTI_InitTypeDef *EXTI_InitStruct) | 
| Initializes the EXTI peripheral according to the specified parameters in the EXTI_InitStruct.   | |
| void | EXTI_StructInit (EXTI_InitTypeDef *EXTI_InitStruct) | 
| Fills each EXTI_InitStruct member with its reset value.   | |
| void | EXTI_GenerateSWInterrupt (uint32_t EXTI_Line) | 
| Generates a Software interrupt.   | |
| FlagStatus | EXTI_GetFlagStatus (uint32_t EXTI_Line) | 
| Checks whether the specified EXTI line flag is set or not.   | |
| void | EXTI_ClearFlag (uint32_t EXTI_Line) | 
| Clears the EXTI's line pending flags.   | |
| ITStatus | EXTI_GetITStatus (uint32_t EXTI_Line) | 
| Checks whether the specified EXTI line is asserted or not.   | |
| void | EXTI_ClearITPendingBit (uint32_t EXTI_Line) | 
| Clears the EXTI's line pending bits.   | |
| void EXTI_ClearFlag | ( | uint32_t | EXTI_Line | ) | 
Clears the EXTI's line pending flags.
| EXTI_Line,: | specifies the EXTI lines flags to clear. This parameter can be any combination of EXTI_Linex where x can be (0..19). | 
| None | 
Definition at line 209 of file stm32f10x_exti.c.
| void EXTI_ClearITPendingBit | ( | uint32_t | EXTI_Line | ) | 
Clears the EXTI's line pending bits.
| EXTI_Line,: | specifies the EXTI lines to clear. This parameter can be any combination of EXTI_Linex where x can be (0..19). | 
| None | 
Definition at line 249 of file stm32f10x_exti.c.
| void EXTI_DeInit | ( | void | ) | 
Deinitializes the EXTI peripheral registers to their default reset values.
| None | 
| None | 
Definition at line 85 of file stm32f10x_exti.c.
| void EXTI_GenerateSWInterrupt | ( | uint32_t | EXTI_Line | ) | 
Generates a Software interrupt.
| EXTI_Line,: | specifies the EXTI lines to be enabled or disabled. This parameter can be any combination of EXTI_Linex where x can be (0..19). | 
| None | 
Definition at line 171 of file stm32f10x_exti.c.
| FlagStatus EXTI_GetFlagStatus | ( | uint32_t | EXTI_Line | ) | 
Checks whether the specified EXTI line flag is set or not.
| EXTI_Line,: | specifies the EXTI line flag to check. This parameter can be: 
  | 
| The | new state of EXTI_Line (SET or RESET). | 
Definition at line 186 of file stm32f10x_exti.c.
| ITStatus EXTI_GetITStatus | ( | uint32_t | EXTI_Line | ) | 
Checks whether the specified EXTI line is asserted or not.
| EXTI_Line,: | specifies the EXTI line to check. This parameter can be: 
  | 
| The | new state of EXTI_Line (SET or RESET). | 
Definition at line 224 of file stm32f10x_exti.c.
| void EXTI_Init | ( | EXTI_InitTypeDef * | EXTI_InitStruct | ) | 
Initializes the EXTI peripheral according to the specified parameters in the EXTI_InitStruct.
| EXTI_InitStruct,: | pointer to a EXTI_InitTypeDef structure that contains the configuration information for the EXTI peripheral. | 
| None | 
Definition at line 101 of file stm32f10x_exti.c.
| void EXTI_StructInit | ( | EXTI_InitTypeDef * | EXTI_InitStruct | ) | 
Fills each EXTI_InitStruct member with its reset value.
| EXTI_InitStruct,: | pointer to a EXTI_InitTypeDef structure which will be initialized. | 
| None | 
Definition at line 157 of file stm32f10x_exti.c.