diff options
Diffstat (limited to 'glcd.c')
-rw-r--r-- | glcd.c | 20 |
1 files changed, 4 insertions, 16 deletions
@@ -43,6 +43,10 @@ void lcdSetWindow(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1) { lld_lcdSetWindow(x0, y0, x1, y1); } +void lcdFillArea(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t color) { + lld_lcdFillArea(x0, y0, x1, y1, color); +} + void lcdClear(uint16_t color) { lld_lcdClear(color); } @@ -217,22 +221,6 @@ uint16_t lcdBGR2RGB(uint16_t color) { return( rgb ); } -void lcdFillArea(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t color) { - lcdDrawRect(x0, y0, x1, y1, filled, color); - /* - uint32_t index = 0, area; - - area = ((x1-x0)*(y1-y0)); - - lcdSetWindow(x0, y0, x1, y1); - Clr_CS; - lcdWriteIndex(0x0022); - for(index = 0; index < area; index++) - lcdWriteData(color); - Set_CS; - */ -} - void lcdDrawRect(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint8_t filled, uint16_t color) { uint16_t i, TempX; uint16_t j, TempY; |