Thanks for reply.
I am progamming original .hex like AN1136Demo PIC24 PICtail 2.hex,AN1182Demo PIC32 PICtail 2.hex,AN1227Demo PIC32 PICtail 2.hex,AN1246Demo PIC24 PICtail 2.hex.
Though I have also changed Version 2 in place of 3 in GraphicsConfig.h file,I am getting white screen.
And other thing,in GraphicsConfig.h file they have define LGDP4531 if the GRAPHICS_PICTAIL_VERSION is 2 like
#elif (GRAPHICS_PICTAIL_VERSION == 2)
#define DISPLAY_CONTROLLER LGDP4531
#define DISP_HOR_RESOLUTION 240
#define DISP_VER_RESOLUTION 320
#define COLOR_DEPTH 16
#define DISP_ORIENTATION 90
But on my GRAPHICS_PICTAIL board Display controller is SSD1906.
So i am writing like
#elif (GRAPHICS_PICTAIL_VERSION == 2)
#define DISPLAY_CONTROLLER SSD1906
#define DISPLAY_PANEL TFT_G240320DTSW_118W_E
#define DISP_HOR_RESOLUTION 240
#define DISP_VER_RESOLUTION 320
#define COLOR_DEPTH 16
#define DISP_ORIENTATION 0
#define DISP_HOR_PULSE_WIDTH 24
#define DISP_HOR_BACK_PORCH 8
#define DISP_HOR_FRONT_PORCH 0
#define DISP_VER_PULSE_WIDTH 4
#define DISP_VER_BACK_PORCH 0
#define DISP_VER_FRONT_PORCH 0
But again I am getting blank black screen but not white.
post edited by vipul - 2009/06/27 05:47:16