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

__HAL_DSI_ENABLE_IT macro

Enables the specified DSI interrupts.

Syntax

#define __HAL_DSI_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->WIER |= (__INTERRUPT__))

Arguments

__HANDLE__

DSI handle.

__INTERRUPT__

specifies the DSI interrupt sources to be enabled. This parameter can be any combination of the following values: @arg DSI_IT_TE : Tearing Effect Interrupt @arg DSI_IT_ER : End of Refresh Interrupt @arg DSI_IT_PLLL: PLL Lock Interrupt @arg DSI_IT_PLLU: PLL Unlock Interrupt @arg DSI_IT_RR : Regulator Ready Interrupt

Return value

None

Examples

__HAL_DSI_ENABLE_IT is referenced by 2 libraries and example projects.

References

LocationText
stm32f4xx_hal_dsi.h:1092
#define __HAL_DSI_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->WIER |= (__INTERRUPT__))
stm32f4xx_hal_dsi.c:1257
__HAL_DSI_ENABLE_IT(hdsi, DSI_IT_TE);
stm32f4xx_hal_dsi.c:1260
__HAL_DSI_ENABLE_IT(hdsi, DSI_IT_ER);