Library for FT810 EVE chip

Dependents:   PANEL_GUI_hello_world

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers FT_LCD_Type.h Source File

FT_LCD_Type.h

00001 //this file modified by Curtis Mattull 7/21/16
00002 // to add support for beyondtek lcd screen
00003 
00004 //comment out line 12 unless using beyondtek
00005 
00006 /* mbed Library for FTDI FT810  Enbedded Video Engine "EVE"
00007  * ported to mbed by David Childs, based on the great work of Peter Drescher (DC2PD 2014) 
00008  * Released under the MIT License: http://mbed.org/license/mit */
00009 // This is for the 800x480 screen that comes with the FTDI FT810 demo board
00010 
00011 #ifndef FT_LCD_TYPE_H
00012 #define FT_LCD_TYPE_H
00013 /* Global variables for display resolution to support various display panels */
00014 
00015 #define my_DispWidth  800
00016 #define my_DispHeight 480
00017 #define my_DispHCycle 1056
00018 #define my_DispHOffset 46
00019 #define my_DispHSync0  210
00020 #define my_DispHSync1  230
00021 #define my_DispVCycle  525
00022 #define my_DispVOffset  23
00023 #define my_DispVSync0  22
00024 #define my_DispVSync1  32
00025 #define my_DispPCLK  1
00026 #define my_DispSwizzle  0
00027 #define my_DispPCLKPol  1
00028 
00029 #endif