DrawProp is only used within Adafruit_Shield.
 
Symbols
loading...
Files
loading...

DrawProp variable

References

LocationReferrerText
stm32_adafruit_lcd.c:109
stm32_adafruit_lcd.c:145BSP_LCD_Init()
DrawProp.BackColor = 0xFFFF;
stm32_adafruit_lcd.c:146BSP_LCD_Init()
DrawProp.pFont = &Font24;
stm32_adafruit_lcd.c:147BSP_LCD_Init()
DrawProp.TextColor = 0x0000;
stm32_adafruit_lcd.c:192BSP_LCD_GetTextColor()
return DrawProp.TextColor;
stm32_adafruit_lcd.c:202BSP_LCD_GetBackColor()
return DrawProp.BackColor;
stm32_adafruit_lcd.c:212BSP_LCD_SetTextColor()
DrawProp.TextColor = Color;
stm32_adafruit_lcd.c:222BSP_LCD_SetBackColor()
DrawProp.BackColor = Color;
stm32_adafruit_lcd.c:232BSP_LCD_SetFont()
DrawProp.pFont = pFonts;
stm32_adafruit_lcd.c:242BSP_LCD_GetFont()
return DrawProp.pFont;
stm32_adafruit_lcd.c:253BSP_LCD_Clear()
uint32_t color_backup = DrawProp.TextColor;
stm32_adafruit_lcd.c:254BSP_LCD_Clear()
DrawProp.TextColor = Color;
stm32_adafruit_lcd.c:260BSP_LCD_Clear()
DrawProp.TextColor = color_backup;
stm32_adafruit_lcd.c:261BSP_LCD_Clear()
stm32_adafruit_lcd.c:275BSP_LCD_ClearStringLine()
uint32_t color_backup = DrawProp.TextColor;
stm32_adafruit_lcd.c:276BSP_LCD_ClearStringLine()
DrawProp.TextColor = DrawProp.BackColor;;
stm32_adafruit_lcd.c:279BSP_LCD_ClearStringLine()
BSP_LCD_FillRect(0, (Line * DrawProp.pFont->Height), BSP_LCD_GetXSize(), DrawProp.pFont->Height);
stm32_adafruit_lcd.c:281BSP_LCD_ClearStringLine()
DrawProp.TextColor = color_backup;
stm32_adafruit_lcd.c:282BSP_LCD_ClearStringLine()
stm32_adafruit_lcd.c:295BSP_LCD_DisplayChar()
DrawChar(Xpos, Ypos, &DrawProp.pFont->table[(Ascii-' ') *\
stm32_adafruit_lcd.c:296BSP_LCD_DisplayChar()
DrawProp.pFont->Height * ((DrawProp.pFont->Width + 7) / 8)]);
stm32_adafruit_lcd.c:321BSP_LCD_DisplayStringAt()
xsize = (BSP_LCD_GetXSize()/DrawProp.pFont->Width);
stm32_adafruit_lcd.c:327BSP_LCD_DisplayStringAt()
refcolumn = Xpos + ((xsize - size)* DrawProp.pFont->Width) / 2;
stm32_adafruit_lcd.c:337BSP_LCD_DisplayStringAt()
refcolumn = - Xpos + ((xsize - size)*DrawProp.pFont->Width);
stm32_adafruit_lcd.c:348BSP_LCD_DisplayStringAt()
while ((*Text != 0) && (((BSP_LCD_GetXSize() - (i*DrawProp.pFont->Width)) & 0xFFFF) >= DrawProp.pFont->Width))
stm32_adafruit_lcd.c:353BSP_LCD_DisplayStringAt()
refcolumn += DrawProp.pFont->Width;
stm32_adafruit_lcd.c:405BSP_LCD_DrawHLine()
lcd_drv->DrawHLine(DrawProp.TextColor, Xpos, Ypos, Length);
stm32_adafruit_lcd.c:411BSP_LCD_DrawHLine()
BSP_LCD_DrawPixel((Xpos + index), Ypos, DrawProp.TextColor);
stm32_adafruit_lcd.c:429BSP_LCD_DrawVLine()
lcd_drv->DrawVLine(DrawProp.TextColor, Xpos, Ypos, Length);
stm32_adafruit_lcd.c:435BSP_LCD_DrawVLine()
BSP_LCD_DrawPixel(Xpos, Ypos + index, DrawProp.TextColor);
stm32_adafruit_lcd.c:502BSP_LCD_DrawLine()
BSP_LCD_DrawPixel(x, y, DrawProp.TextColor); /* Draw the current pixel */
stm32_adafruit_lcd.c:553BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + CurX), (Ypos - CurY), DrawProp.TextColor);
stm32_adafruit_lcd.c:555BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - CurX), (Ypos - CurY), DrawProp.TextColor);
stm32_adafruit_lcd.c:557BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + CurY), (Ypos - CurX), DrawProp.TextColor);
stm32_adafruit_lcd.c:559BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - CurY), (Ypos - CurX), DrawProp.TextColor);
stm32_adafruit_lcd.c:561BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + CurX), (Ypos + CurY), DrawProp.TextColor);
stm32_adafruit_lcd.c:563BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - CurX), (Ypos + CurY), DrawProp.TextColor);
stm32_adafruit_lcd.c:565BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + CurY), (Ypos + CurX), DrawProp.TextColor);
stm32_adafruit_lcd.c:567BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - CurY), (Ypos + CurX), DrawProp.TextColor);
stm32_adafruit_lcd.c:630BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/K)), (Ypos+y), DrawProp.TextColor);
stm32_adafruit_lcd.c:631BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/K)), (Ypos+y), DrawProp.TextColor);
stm32_adafruit_lcd.c:632BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/K)), (Ypos-y), DrawProp.TextColor);
stm32_adafruit_lcd.c:633BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/K)), (Ypos-y), DrawProp.TextColor);
stm32_adafruit_lcd.c:689BSP_LCD_FillRect()
stm32_adafruit_lcd.c:715BSP_LCD_FillCircle()
stm32_adafruit_lcd.c:742BSP_LCD_FillCircle()
stm32_adafruit_lcd.c:885DrawChar()
height = DrawProp.pFont->Height;
stm32_adafruit_lcd.c:886DrawChar()
width = DrawProp.pFont->Width;
stm32_adafruit_lcd.c:925DrawChar()
bitmap[index] = (uint8_t)DrawProp.TextColor;
stm32_adafruit_lcd.c:926DrawChar()
bitmap[index+1] = (uint8_t)(DrawProp.TextColor >> 8);
stm32_adafruit_lcd.c:930DrawChar()
bitmap[index] = (uint8_t)DrawProp.BackColor;
stm32_adafruit_lcd.c:931DrawChar()
bitmap[index+1] = (uint8_t)(DrawProp.BackColor >> 8);