瀏覽代碼

fix lcd 9325 driver

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@441 bbd45198-f89e-11dd-88c7-29a3b14d5316
wuyangyong 15 年之前
父節點
當前提交
3c63455ffe
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      bsp/stm32_radio/lcd.c

+ 1 - 3
bsp/stm32_radio/lcd.c

@@ -308,8 +308,6 @@ void rt_hw_lcd_set_pixel(rtgui_color_t *c, rt_base_t x, rt_base_t y)
 {
     unsigned short p;
 
-    if ( (x>320)||(y>240) ) return;
-
     /* get color pixel */
     p = rtgui_color_to_565p(*c);
     ili9325_SetCursor(x,y);
@@ -459,7 +457,7 @@ FINSH_FUNCTION_EXPORT(vline, draw a vline);
 
 void cls()
 {
-    ili9325_Clear(0xF800);
+    ili9325_Clear(0x051F);
 }
 FINSH_FUNCTION_EXPORT(cls, clear screen);
 #endif