S6D1121 macro fix

ugfx_release_2.6
Joel Bodenmann 2012-11-22 21:23:38 +01:00
parent 0ef5bf9dfc
commit 971c9fd0d9
1 changed files with 7 additions and 4 deletions

View File

@ -39,13 +39,16 @@
/* Driver local definitions. */ /* Driver local definitions. */
/*===========================================================================*/ /*===========================================================================*/
#ifndef GDISP_SCREEN_HEIGHT #if defined(GDISP_SCREEN_HEIGHT)
#define GDISP_SCREEN_HEIGHT 320 #undef GISP_SCREEN_HEIGHT
#endif #endif
#ifndef GDISP_SCREEN_WIDTH #if defined(GDISP_SCREEN_WIDTH)
#define GDISP_SCREEN_WIDTH 240 #undef GDISP_SCREEN_WIDTH
#endif #endif
#define GDISP_SCREEN_HEIGHT 320
#define GDISP_SCREEN_WIDTH 240
#define GDISP_INITIAL_CONTRAST 50 #define GDISP_INITIAL_CONTRAST 50
#define GDISP_INITIAL_BACKLIGHT 100 #define GDISP_INITIAL_BACKLIGHT 100