Skip to content
Snippets Groups Projects
Commit 46068fa5 authored by patacongo's avatar patacongo
Browse files

More LCD fixes

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3168 42af7a65-404d-4744-a932-0658087f49c3
parent f8cdb4bb
No related branches found
No related tags found
No related merge requests found
......@@ -232,7 +232,7 @@
/* If bit 9 is set, the byte is data; clear for commands */
#define NOKIA_LCD_DATA (1 << 9)
#define NOKIA_LCD_DATA (1 << 8)
/* Define CONFIG_LCD_REGDEBUG to enable register-level debug output.
* (Verbose debug must also be enabled)
......@@ -275,17 +275,17 @@
# define NOKIA_BPP 8
# define NOKIA_COLORFMT FB_FMT_RGB8_332
# define NOKIA_STRIDE NOKIA_XRES
# define NOKIA_PIX2BYTES(b) (b)
# define NOKIA_PIX2BYTES(p) (p)
#elif CONFIG_NOKIA6100_BPP == 12
# define NOKIA_BPP 12
# define NOKIA_COLORFMT FB_FMT_RGB12_444
# define NOKIA_STRIDE ((3*NOKIA_XRES+1)/2)
# define NOKIA_PIX2BYTES(b) ((3*(b)+1)/2)
# define NOKIA_PIX2BYTES(p) ((3*(p)+1)/2)
#elif CONFIG_NOKIA6100_BPP == 16
# define NOKIA_BPP 16
# define NOKIA_COLORFMT FB_FMT_RGB16_565
# define NOKIA_STRIDE (2*NOKIA_XRES)
# define NOKIA_PIX2BYTES(b) (2*(b))
# define NOKIA_PIX2BYTES(p) (2*(p))
#endif
/* Handle any potential strange behavior at edges */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment