高中生
最后登录1970-1-1
在线时间 小时
注册时间2015-1-20
|
楼主 |
发表于 2015-2-23 19:02:20
|
显示全部楼层
谢谢了!
void LCD_Clear(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint16_t color)
{
uint32_t i = 0;
/* column address control set */
LCD_ILI9341_CMD(0X2A);
LCD_ILI9341_Parameter( x >> 8 ); /* Ïȸß8λ£¬È»ºóµÍ8λ */
LCD_ILI9341_Parameter( x & 0xff ); /* column start */
LCD_ILI9341_Parameter( (x+width-1) >> 8 ); /* column end */
LCD_ILI9341_Parameter( (x+width-1) & 0xff );
/* page address control set */
LCD_ILI9341_CMD(0X2B);
LCD_ILI9341_Parameter( y >> 8 ); /* page start */
LCD_ILI9341_Parameter( y & 0xff );
LCD_ILI9341_Parameter( (y+height-1) >> 8); /* page end */
LCD_ILI9341_Parameter( (y+height-1) & 0xff);
/* memory write */
LCD_ILI9341_CMD(0x2c);
for( i=0; i < width*height; i++ )
{
LCD_WR_Data( color );
//Delay(0x0FFf);
}
} |
|