|

楼主 |
发表于 2016-2-22 12:15:56
|
显示全部楼层
我自己有添加24Bit绘图
#if (LCD_BITSPERPIXEL > 8)
case 16:
DrawBitLine16BPP(x0, i + y0, (const U16 *)pData, xsize, pTrans);
//printf("Draw 16bpp\\r\\n");
break;
#endif
#if (LCD_BITSPERPIXEL > 16)
case 24:
DrawBitLine24BPP(x0, i + y0, (const U16 *)pData, xsize, pTrans);
//printf("Draw 24bpp\\r\\n");
break;
#endif
但是没有被调用执行,ucGUI还是工作在RGB565模式 |
|