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

DrawProp variable

References

LocationReferrerText
stm324xg_eval_lcd.c:86
stm324xg_eval_lcd.c:115BSP_LCD_Init()
DrawProp.BackColor = 0xFFFF;
stm324xg_eval_lcd.c:116BSP_LCD_Init()
DrawProp.pFont = &Font24;
stm324xg_eval_lcd.c:117BSP_LCD_Init()
DrawProp.TextColor = 0x0000;
stm324xg_eval_lcd.c:159BSP_LCD_GetTextColor()
return DrawProp.TextColor;
stm324xg_eval_lcd.c:168BSP_LCD_GetBackColor()
return DrawProp.BackColor;
stm324xg_eval_lcd.c:177BSP_LCD_SetTextColor()
DrawProp.TextColor = Color;
stm324xg_eval_lcd.c:186BSP_LCD_SetBackColor()
DrawProp.BackColor = Color;
stm324xg_eval_lcd.c:195BSP_LCD_SetFont()
DrawProp.pFont = fonts;
stm324xg_eval_lcd.c:204BSP_LCD_GetFont()
return DrawProp.pFont;
stm324xg_eval_lcd.c:214BSP_LCD_Clear()
uint32_t color_backup = DrawProp.TextColor;
stm324xg_eval_lcd.c:215BSP_LCD_Clear()
DrawProp.TextColor = Color;
stm324xg_eval_lcd.c:221BSP_LCD_Clear()
DrawProp.TextColor = color_backup;
stm324xg_eval_lcd.c:222BSP_LCD_Clear()
stm324xg_eval_lcd.c:235BSP_LCD_ClearStringLine()
uint32_t color_backup = DrawProp.TextColor;
stm324xg_eval_lcd.c:236BSP_LCD_ClearStringLine()
DrawProp.TextColor = DrawProp.BackColor;;
stm324xg_eval_lcd.c:239BSP_LCD_ClearStringLine()
BSP_LCD_FillRect(0, (Line * DrawProp.pFont->Height), BSP_LCD_GetXSize(), DrawProp.pFont->Height);
stm324xg_eval_lcd.c:241BSP_LCD_ClearStringLine()
DrawProp.TextColor = color_backup;
stm324xg_eval_lcd.c:242BSP_LCD_ClearStringLine()
stm324xg_eval_lcd.c:254BSP_LCD_DisplayChar()
DrawChar(Xpos, Ypos, &DrawProp.pFont->table[(Ascii-' ') *\
stm324xg_eval_lcd.c:255BSP_LCD_DisplayChar()
DrawProp.pFont->Height * ((DrawProp.pFont->Width + 7) / 8)]);
stm324xg_eval_lcd.c:279BSP_LCD_DisplayStringAt()
xsize = (BSP_LCD_GetXSize()/DrawProp.pFont->Width);
stm324xg_eval_lcd.c:285BSP_LCD_DisplayStringAt()
refcolumn = Xpos + ((xsize - size)* DrawProp.pFont->Width) / 2;
stm324xg_eval_lcd.c:295BSP_LCD_DisplayStringAt()
refcolumn = - Xpos + ((xsize - size)*DrawProp.pFont->Width);
stm324xg_eval_lcd.c:306BSP_LCD_DisplayStringAt()
while ((*Text != 0) & (((BSP_LCD_GetXSize() - (i*DrawProp.pFont->Width)) & 0xFFFF) >= DrawProp.pFont->Width))
stm324xg_eval_lcd.c:311BSP_LCD_DisplayStringAt()
refcolumn += DrawProp.pFont->Width;
stm324xg_eval_lcd.c:376BSP_LCD_DrawHLine()
stm324xg_eval_lcd.c:382BSP_LCD_DrawHLine()
BSP_LCD_DrawPixel((Xpos + index), Ypos, DrawProp.TextColor);
stm324xg_eval_lcd.c:399BSP_LCD_DrawVLine()
stm324xg_eval_lcd.c:405BSP_LCD_DrawVLine()
BSP_LCD_DrawPixel(Xpos, Ypos + index, DrawProp.TextColor);
stm324xg_eval_lcd.c:471BSP_LCD_DrawLine()
BSP_LCD_DrawPixel(x, y, DrawProp.TextColor); /* Draw the current pixel */
stm324xg_eval_lcd.c:520BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + CurX), (Ypos - CurY), DrawProp.TextColor);
stm324xg_eval_lcd.c:522BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - CurX), (Ypos - CurY), DrawProp.TextColor);
stm324xg_eval_lcd.c:524BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + CurY), (Ypos - CurX), DrawProp.TextColor);
stm324xg_eval_lcd.c:526BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - CurY), (Ypos - CurX), DrawProp.TextColor);
stm324xg_eval_lcd.c:528BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + CurX), (Ypos + CurY), DrawProp.TextColor);
stm324xg_eval_lcd.c:530BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - CurX), (Ypos + CurY), DrawProp.TextColor);
stm324xg_eval_lcd.c:532BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + CurY), (Ypos + CurX), DrawProp.TextColor);
stm324xg_eval_lcd.c:534BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - CurY), (Ypos + CurX), DrawProp.TextColor);
stm324xg_eval_lcd.c:596BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/K)), (Ypos+y), DrawProp.TextColor);
stm324xg_eval_lcd.c:597BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/K)), (Ypos+y), DrawProp.TextColor);
stm324xg_eval_lcd.c:598BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/K)), (Ypos-y), DrawProp.TextColor);
stm324xg_eval_lcd.c:599BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/K)), (Ypos-y), DrawProp.TextColor);
stm324xg_eval_lcd.c:666BSP_LCD_FillRect()
stm324xg_eval_lcd.c:691BSP_LCD_FillCircle()
stm324xg_eval_lcd.c:718BSP_LCD_FillCircle()
stm324xg_eval_lcd.c:855DrawChar()
height = DrawProp.pFont->Height;
stm324xg_eval_lcd.c:856DrawChar()
width = DrawProp.pFont->Width;
stm324xg_eval_lcd.c:884DrawChar()
stm324xg_eval_lcd.c:888DrawChar()