HAL + 0/2 examples
CodeScope will show references to __HAL_DSI_CLEAR_FLAG from the following samples and libraries:
Examples
STM32469I-Discovery
Demonstrations
STM32469I_EVAL
Demonstrations
 
Symbols
loading...
Files
loading...

__HAL_DSI_CLEAR_FLAG macro

Clears the DSI pending flags.

Syntax

#define __HAL_DSI_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->WIFCR = (__FLAG__))

Arguments

__HANDLE__

DSI handle.

__FLAG__

specifies the flag to clear. This parameter can be any combination of the following values: @arg DSI_FLAG_TE : Tearing Effect Interrupt Flag @arg DSI_FLAG_ER : End of Refresh Interrupt Flag @arg DSI_FLAG_PLLL : PLL Lock Interrupt Flag @arg DSI_FLAG_PLLU : PLL Unlock Interrupt Flag @arg DSI_FLAG_RR : Regulator Ready Interrupt Flag

Return value

None

Examples

__HAL_DSI_CLEAR_FLAG is referenced by 2 libraries and example projects.

References

LocationText
stm32f4xx_hal_dsi.h:1078
#define __HAL_DSI_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->WIFCR = (__FLAG__))
stm32f4xx_hal_dsi.c:832
__HAL_DSI_CLEAR_FLAG(hdsi, DSI_FLAG_TE);
stm32f4xx_hal_dsi.c:851
__HAL_DSI_CLEAR_FLAG(hdsi, DSI_FLAG_ER);