LcdDrv is only used within STM32F413H-Discovery.
 
Symbols
loading...
Files
loading...

LcdDrv variable

Syntax

References

LocationReferrerText
stm32f413h_discovery_lcd.c:80
static LCD_DrvTypeDef *LcdDrv;
stm32f413h_discovery_lcd.c:139BSP_LCD_InitEx()
LcdDrv = &ST7789H2_drv;
stm32f413h_discovery_lcd.c:142BSP_LCD_InitEx()
LcdDrv->Init();
stm32f413h_discovery_lcd.c:181BSP_LCD_GetXSize()
return(LcdDrv->GetLcdPixelWidth());
stm32f413h_discovery_lcd.c:190BSP_LCD_GetYSize()
return(LcdDrv->GetLcdPixelHeight());
stm32f413h_discovery_lcd.c:392BSP_LCD_ReadPixel()
if(LcdDrv->ReadPixel != NULL)
stm32f413h_discovery_lcd.c:394BSP_LCD_ReadPixel()
ret = LcdDrv->ReadPixel(Xpos, Ypos);
stm32f413h_discovery_lcd.c:408BSP_LCD_DrawPixel()
if(LcdDrv->WritePixel != NULL)
stm32f413h_discovery_lcd.c:410BSP_LCD_DrawPixel()
stm32f413h_discovery_lcd.c:424BSP_LCD_DrawHLine()
if(LcdDrv->DrawHLine != NULL)
stm32f413h_discovery_lcd.c:426BSP_LCD_DrawHLine()
stm32f413h_discovery_lcd.c:447BSP_LCD_DrawVLine()
if(LcdDrv->DrawVLine != NULL)
stm32f413h_discovery_lcd.c:449BSP_LCD_DrawVLine()
stm32f413h_discovery_lcd.c:679BSP_LCD_DrawBitmap()
if(LcdDrv->DrawBitmap != NULL)
stm32f413h_discovery_lcd.c:681BSP_LCD_DrawBitmap()
LcdDrv->DrawBitmap(Xpos, Ypos, pbmp);
stm32f413h_discovery_lcd.c:699BSP_LCD_DrawRGBImage()
if(LcdDrv->DrawRGBImage != NULL)
stm32f413h_discovery_lcd.c:701BSP_LCD_DrawRGBImage()
LcdDrv->DrawRGBImage(Xpos, Ypos, Xsize, Ysize, pdata);
stm32f413h_discovery_lcd.c:874BSP_LCD_DisplayOn()
LcdDrv->DisplayOn();
stm32f413h_discovery_lcd.c:882BSP_LCD_DisplayOff()
LcdDrv->DisplayOff();
stm32f413h_discovery_lcd.c:1011SetDisplayWindow()
if(LcdDrv->SetDisplayWindow != NULL)
stm32f413h_discovery_lcd.c:1013SetDisplayWindow()