Lib for FTDI FT800 graphic controller "EVE" The API is changed from the FTDI original names. It use smaller names now. DL() will add something to the display list instead of Ft_App_WrCoCmd_Buffer ... The FTDI programmer Guide is also using this commands.

Dependents:   FT800_RGB_demo FT800_RGB_demo2 FT800_demo_for_habr Temp_&_RH_at_TFT-demo ... more

Fork of FT800 by Peter Drescher

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers FT_LCD_Type.h Source File

FT_LCD_Type.h

00001 /* mbed Library for FTDI FT800  Enbedded Video Engine "EVE"
00002  * ported to mbed by Peter Drescher, DC2PD 2014
00003  * Released under the MIT License: http://mbed.org/license/mit */
00004  
00005  /* change this file to adapt other LCD screens */
00006  
00007 #ifndef FT_LCD_TYPE_H
00008 #define FT_LCD_TYPE_H
00009 
00010 /* Global variables for display resolution to support various display panels */
00011 /* Default is WQVGA - 480x272 */
00012 
00013 #define my_DispWidth  480
00014 #define my_DispHeight 272
00015 #define my_DispHCycle 548
00016 #define my_DispHOffset 43
00017 #define my_DispHSync0  0
00018 #define my_DispHSync1  41
00019 #define my_DispVCycle  292
00020 #define my_DispVOffset  12
00021 #define my_DispVSync0  0
00022 #define my_DispVSync1  10
00023 #define my_DispPCLK  5
00024 #define my_DispSwizzle  0
00025 #define my_DispPCLKPol  1
00026 
00027 /* the GLYN display has inverted backlite */
00028 //#define Inv_Backlite    
00029 
00030 #endif