updated for FT810 and 800x480 display

Dependents:   FT810_RGB_demo FT81x_TripComp_test FT810_LoadJPG

Fork of FT800_2 by Peter Drescher

Committer:
dreschpe
Date:
Fri Jan 03 15:26:10 2014 +0000
Revision:
0:5e013296b353
Child:
2:ab74a9a05970
Lib for FTDI FT800 Graphic Controller EVE

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dreschpe 0:5e013296b353 1 #ifndef FT_LCD_TYPE_H
dreschpe 0:5e013296b353 2 #define FT_LCD_TYPE_H
dreschpe 0:5e013296b353 3
dreschpe 0:5e013296b353 4 /* Global variables for display resolution to support various display panels */
dreschpe 0:5e013296b353 5 /* Default is WQVGA - 480x272 */
dreschpe 0:5e013296b353 6
dreschpe 0:5e013296b353 7 #define my_DispWidth 480
dreschpe 0:5e013296b353 8 #define my_DispHeight 272
dreschpe 0:5e013296b353 9 #define my_DispHCycle 548
dreschpe 0:5e013296b353 10 #define my_DispHOffset 43
dreschpe 0:5e013296b353 11 #define my_DispHSync0 0
dreschpe 0:5e013296b353 12 #define my_DispHSync1 41
dreschpe 0:5e013296b353 13 #define my_DispVCycle 292
dreschpe 0:5e013296b353 14 #define my_DispVOffset 12
dreschpe 0:5e013296b353 15 #define my_DispVSync0 0
dreschpe 0:5e013296b353 16 #define my_DispVSync1 10
dreschpe 0:5e013296b353 17 #define my_DispPCLK 5
dreschpe 0:5e013296b353 18 #define my_DispSwizzle 0
dreschpe 0:5e013296b353 19 #define my_DispPCLKPol 1
dreschpe 0:5e013296b353 20
dreschpe 0:5e013296b353 21 /* the GLYN display has inverted backlite */
dreschpe 0:5e013296b353 22 #define Inv_Backlite
dreschpe 0:5e013296b353 23
dreschpe 0:5e013296b353 24 #endif