comparison src/cs/drivers/drv_app/r2d/lcds/PC_DSAMPLE/R2D_pc_dsample_lcd_i.h @ 0:945cf7f506b2

src/cs: chipsetsw import from tcs211-fcmodem binary blobs and LCD demo files have been excluded, all line endings are LF only
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 25 Sep 2016 22:50:11 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:945cf7f506b2
1 /*******************************
2
3 LCD DESCRIPTION
4
5 *******************************/
6
7
8 // Size of the LCD in pixels
9 #define R2D_WIDTH 176
10 #define R2D_HEIGHT 220
11
12
13 // Dithering ON/OFF
14
15 #define R2D_DITHERING R2D_OFF
16
17 // Kind of display
18 #define R2D_LCD_DISPLAY R2D_COLOR
19
20 // Refresh mode of LCD
21 #define R2D_REFRESH R2D_HORIZONTAL
22
23 // ln2 of the number of bits to code a pixel value
24 // (color depth)
25 #define R2D_PIXEL_DEPTH 32
26
27 // ln2 of previous value
28 #define R2D_PIXEL_POS_TO_BIT_POS 5
29
30
31 // ln2 of the number of pixels in one memory word
32 // (Number of pixels MUST BE A POWER OF TWO
33 // for optimization reasons since to compute the address of a pixel
34 // in memory one would like to avoid division and would prefer
35 // to use shifts)
36 // 2^0 = 1 pixel
37 #define R2D_PIXELS_PER_MEMORY_WORD 0
38