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

__HAL_DSI_ENABLE macro

Enables the DSI host.

Syntax

#define __HAL_DSI_ENABLE(__HANDLE__) do { \     __IO uint32_t tmpreg = 0x00U; \     SET_BIT((__HANDLE__)->Instance->CR, DSI_CR_EN);\     \     tmpreg = READ_BIT((__HANDLE__)->Instance->CR, DSI_CR_EN);\     UNUSED(tmpreg); \     } while(0U)

Arguments

__HANDLE__

DSI handle

Return value

None.

Examples

__HAL_DSI_ENABLE is referenced by 4 libraries and example projects.

References

LocationText
stm32f4xx_hal_dsi.h:950
#define __HAL_DSI_ENABLE(__HANDLE__) do { \
stm32f4xx_hal_dsi.c:1472
__HAL_DSI_ENABLE(hdsi);