Lib FT800 Modifiee

Dependents:   FT800_Lib_perso

Committer:
schnf30
Date:
Tue Feb 08 08:17:31 2022 +0000
Revision:
0:7ea2f058a713
Librairie FT800 adaptee avec drawline, Brigntness etc...

Who changed what in which revision?

UserRevisionLine numberNew contents of line
schnf30 0:7ea2f058a713 1 /* mbed Library for FTDI FT800 Enbedded Video Engine "EVE"
schnf30 0:7ea2f058a713 2 * ported to mbed by Peter Drescher, DC2PD 2014
schnf30 0:7ea2f058a713 3 * Released under the MIT License: http://mbed.org/license/mit */
schnf30 0:7ea2f058a713 4
schnf30 0:7ea2f058a713 5 /* change this file to adapt other LCD screens */
schnf30 0:7ea2f058a713 6
schnf30 0:7ea2f058a713 7 #ifndef FT_LCD_TYPE_H
schnf30 0:7ea2f058a713 8 #define FT_LCD_TYPE_H
schnf30 0:7ea2f058a713 9
schnf30 0:7ea2f058a713 10 /* Global variables for display resolution to support various display panels */
schnf30 0:7ea2f058a713 11 /* Default is WQVGA - 480x272 */
schnf30 0:7ea2f058a713 12
schnf30 0:7ea2f058a713 13 #define my_DispWidth 480
schnf30 0:7ea2f058a713 14 #define my_DispHeight 272
schnf30 0:7ea2f058a713 15 #define my_DispHCycle 548
schnf30 0:7ea2f058a713 16 #define my_DispHOffset 43
schnf30 0:7ea2f058a713 17 #define my_DispHSync0 0
schnf30 0:7ea2f058a713 18 #define my_DispHSync1 41
schnf30 0:7ea2f058a713 19 #define my_DispVCycle 292
schnf30 0:7ea2f058a713 20 #define my_DispVOffset 12
schnf30 0:7ea2f058a713 21 #define my_DispVSync0 0
schnf30 0:7ea2f058a713 22 #define my_DispVSync1 10
schnf30 0:7ea2f058a713 23 #define my_DispPCLK 5
schnf30 0:7ea2f058a713 24 #define my_DispSwizzle 0
schnf30 0:7ea2f058a713 25 #define my_DispPCLKPol 1
schnf30 0:7ea2f058a713 26
schnf30 0:7ea2f058a713 27 /* the GLYN display has inverted backlite */
schnf30 0:7ea2f058a713 28 //#define Inv_Backlite
schnf30 0:7ea2f058a713 29
schnf30 0:7ea2f058a713 30 #endif
schnf30 0:7ea2f058a713 31