diff chipsetsw/drivers/drv_app/r2d/lcds/E_Sample/R2D_board_esample_i.h @ 0:509db1a7b7b8

initial import: leo2moko-r1
author Space Falcon <falcon@ivan.Harhan.ORG>
date Mon, 01 Jun 2015 03:24:05 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/chipsetsw/drivers/drv_app/r2d/lcds/E_Sample/R2D_board_esample_i.h	Mon Jun 01 03:24:05 2015 +0000
@@ -0,0 +1,43 @@
+/*******************************
+
+   LCD DESCRIPTION
+
+*******************************/
+
+
+// Size of the LCD in pixels
+#define R2D_WIDTH 176
+#define R2D_HEIGHT 220
+
+// Dithering ON/OFF
+
+#define R2D_DITHERING R2D_OFF
+
+// Kind of display
+#define R2D_LCD_DISPLAY R2D_COLOR
+
+// Refresh mode of LCD
+#define R2D_REFRESH R2D_HORIZONTAL
+
+// Mirrorred mode
+//#define R2D_MIRRORED_X
+//#define R2D_MIRRORED_Y
+
+// ln2 of the number of bits to code a pixel value
+// (color depth)
+//#define R2D_PIXEL_DEPTH 32 // 8 for alpha channel 
+#define R2D_PIXEL_DEPTH 16 // No alpha channel
+
+// ln2 of previous value
+#define R2D_PIXEL_POS_TO_BIT_POS 4
+
+
+
+// ln2 of the number of pixels in one memory word
+// (Number of pixels MUST BE A POWER OF TWO 
+// for optimization reasons since to compute the address of a pixel
+// in memory one would like to avoid division and would prefer
+// to use shifts)
+// 2^0 = 1 pixel
+#define R2D_PIXELS_PER_MEMORY_WORD 1
+