diff options
author | Tectu <joel@unormal.org> | 2012-06-11 12:41:02 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-11 12:41:02 +0200 |
commit | 1930efd7456e65e3e4888b173f426cfbcacb75fe (patch) | |
tree | e6170e541e98ec912f6d91c582c1255a8848c3f2 | |
parent | 61a6273bcef50a3c25056eb8b8ecbf9445c7df8a (diff) | |
download | uGFX-1930efd7456e65e3e4888b173f426cfbcacb75fe.tar.gz uGFX-1930efd7456e65e3e4888b173f426cfbcacb75fe.tar.bz2 uGFX-1930efd7456e65e3e4888b173f426cfbcacb75fe.zip |
ssd1289 fix
-rw-r--r-- | drivers/ssd1289_lld.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/ssd1289_lld.c b/drivers/ssd1289_lld.c index d07b6742..2d5b44dd 100644 --- a/drivers/ssd1289_lld.c +++ b/drivers/ssd1289_lld.c @@ -160,10 +160,7 @@ uint16_t lld_lcdGetPixelColor(uint16_t x, uint16_t y) { dummy = lcdReadData(); Set_CS; - if( DeviceCode==0x7783 || DeviceCode==0x4531 || DeviceCode==0x8989 ) - return dummy; - else - return lcdBGR2RGB(dummy); + return dummy; } void lld_lcdDrawPixel(uint16_t x, uint16_t y, uint16_t color) { |