STM32F413H-Discovery + 0/2 examples
CodeScope will show references to BSP_LCD_DrawPixel() from the following samples and libraries:
Examples
STM32F413H-Discovery
Applications
LibJPEG
 
Symbols
loading...
Files
loading...

BSP_LCD_DrawPixel() function

Draws a pixel on LCD.

Syntax

void BSP_LCD_DrawPixel(uint16_t Xpos,     uint16_t Ypos,     uint16_t RGB_Code);
Implemented in stm32f413h_discovery_lcd.c:406

Arguments

Xpos

X position

Ypos

Y position

RGB_Code

Pixel color in RGB mode (5-6-5)

Examples

BSP_LCD_DrawPixel() is referenced by 2 libraries and example projects.

References

LocationReferrerText
stm32f413h_discovery_lcd.c:406
void BSP_LCD_DrawPixel(uint16_t Xpos, uint16_t Ypos, uint16_t RGB_Code)
stm32f413h_discovery_lcd.h:170
void BSP_LCD_DrawPixel(uint16_t Xpos, uint16_t Ypos, uint16_t RGB_Code);
stm32f413h_discovery_lcd.c:432BSP_LCD_DrawHLine()
BSP_LCD_DrawPixel((Xpos + index), Ypos, DrawProp.TextColor);
stm32f413h_discovery_lcd.c:455BSP_LCD_DrawVLine()
BSP_LCD_DrawPixel(Xpos, Ypos + index, DrawProp.TextColor);
stm32f413h_discovery_lcd.c:521BSP_LCD_DrawLine()
BSP_LCD_DrawPixel(x, y, DrawProp.TextColor); /* Draw the current pixel */
stm32f413h_discovery_lcd.c:570BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_x), (Ypos - current_y), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:572BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_x), (Ypos - current_y), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:574BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_y), (Ypos - current_x), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:576BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_y), (Ypos - current_x), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:578BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_x), (Ypos + current_y), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:580BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_x), (Ypos + current_y), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:582BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_y), (Ypos + current_x), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:584BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_y), (Ypos + current_x), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:645BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/k)), (Ypos+y), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:646BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/k)), (Ypos+y), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:647BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/k)), (Ypos-y), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:648BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/k)), (Ypos-y), DrawProp.TextColor);
stm32f413h_discovery_lcd.c:991DrawChar()
BSP_LCD_DrawPixel((Xpos + j), Ypos, DrawProp.TextColor);
stm32f413h_discovery_lcd.c:995DrawChar()
BSP_LCD_DrawPixel((Xpos + j), Ypos, DrawProp.BackColor);

Call Tree

Functions calling BSP_LCD_DrawPixel()
Functions called by BSP_LCD_DrawPixel()
BSP_LCD_DrawPixel()
all items filtered out