| /bsp/raspberry-pico/RP2040/board/ports/lcd/ |
| A D | drv_lcd.c | 212 void LCD_Clear(UWORD Color) in LCD_Clear() argument 217 Color = ((Color << 8) & 0xff00) | (Color >> 8); in LCD_Clear() 221 Image[j] = Color; in LCD_Clear() 285 void LCD_DisplayPoint(UWORD X, UWORD Y, UWORD Color) in LCD_DisplayPoint() argument 288 LCD_SendData_16Bit(Color); in LCD_DisplayPoint()
|
| A D | drv_lcd.h | 67 void LCD_Clear(UWORD Color); 72 void LCD_DisplayPoint(UWORD X, UWORD Y, UWORD Color);
|
| /bsp/stm32/stm32f407-rt-spark/board/ports/led_matrix/ |
| A D | drv_matrix_led.c | 155 void Set_LEDColor(uint16_t LedId, RGBColor_TypeDef Color) in Set_LEDColor() argument 157 RGB_Data[LedId].G = Color.G; in Set_LEDColor() 158 RGB_Data[LedId].R = Color.R; in Set_LEDColor() 159 RGB_Data[LedId].B = Color.B; in Set_LEDColor() 216 void led_matrix_fill(RGBColor_TypeDef Color) in MSH_CMD_EXPORT() 221 Set_LEDColor(i, Color); in MSH_CMD_EXPORT()
|
| A D | drv_matrix_led.h | 18 extern void Set_LEDColor(uint16_t LedId, RGBColor_TypeDef Color);
|
| /bsp/stm32/stm32h750-weact-ministm32h7xx/board/port/st7735/ |
| A D | st7735.h | 166 …35_DrawHLine(ST7735_Object_t *pObj, uint32_t Xpos, uint32_t Ypos, uint32_t Length, uint32_t Color); 167 …35_DrawVLine(ST7735_Object_t *pObj, uint32_t Xpos, uint32_t Ypos, uint32_t Length, uint32_t Color); 168 …735_Object_t *pObj, uint32_t Xpos, uint32_t Ypos, uint32_t Width, uint32_t Height, uint32_t Color); 169 int32_t ST7735_SetPixel(ST7735_Object_t *pObj, uint32_t Xpos, uint32_t Ypos, uint32_t Color); 170 int32_t ST7735_GetPixel(ST7735_Object_t *pObj, uint32_t Xpos, uint32_t Ypos, uint32_t *Color);
|
| A D | st7735.c | 733 …735_DrawHLine(ST7735_Object_t *pObj, uint32_t Xpos, uint32_t Ypos, uint32_t Length, uint32_t Color) in ST7735_DrawHLine() argument 752 pdata[2U*i] = (uint8_t)(Color >> 8); in ST7735_DrawHLine() 753 pdata[(2U*i) + 1U] = (uint8_t)(Color); in ST7735_DrawHLine() 776 …735_DrawVLine(ST7735_Object_t *pObj, uint32_t Xpos, uint32_t Ypos, uint32_t Length, uint32_t Color) in ST7735_DrawVLine() argument 789 if(ST7735_SetPixel(pObj, Xpos, Ypos + counter, Color) != ST7735_OK) in ST7735_DrawVLine() 817 if(ST7735_DrawHLine(pObj, Xpos, y_pos, Width, Color) != ST7735_OK) in ST7735_FillRect() 836 int32_t ST7735_SetPixel(ST7735_Object_t *pObj, uint32_t Xpos, uint32_t Ypos, uint32_t Color) in ST7735_SetPixel() argument 842 color = (uint16_t)((uint16_t)Color << 8); in ST7735_SetPixel() 843 color |= (uint16_t)((uint16_t)(Color >> 8)); in ST7735_SetPixel() 873 int32_t ST7735_GetPixel(ST7735_Object_t *pObj, uint32_t Xpos, uint32_t Ypos, uint32_t *Color) in ST7735_GetPixel() argument [all …]
|
| /bsp/tkm32F499/drivers/ |
| A D | drv_lcd.c | 148 …d, rt_uint16_t xStart, rt_uint16_t yStart, rt_uint16_t xLong, rt_uint16_t yLong, rt_uint32_t Color) in Lcd_ColorBox() argument 157 LTDC_Buf[yStart + i + lcd->lcd_info.height * j + temp] = Color; in Lcd_ColorBox() 175 void DrawPixel(struct drv_lcd_device *lcd, rt_uint16_t x, rt_uint16_t y, int Color) in DrawPixel() argument 178 LTDC_Buf[y + lcd->lcd_info.height * x] = Color; in DrawPixel()
|
| /bsp/nxp/lpc/lpc178x/drivers/ |
| A D | drv_glcd.h | 100 void GLCD_SetFont(pFontType_t pFont, LdcPixel_t Color, LdcPixel_t BackgndColor);
|
| A D | drv_glcd.c | 339 void GLCD_SetFont(pFontType_t pFont, LdcPixel_t Color, LdcPixel_t BackgndColor) in GLCD_SetFont() argument 342 TextColour = Color; in GLCD_SetFont()
|