updated for FT810 and 800x480 display

Dependents:   FT810_RGB_demo FT81x_TripComp_test FT810_LoadJPG

Fork of FT800_2 by Peter Drescher

FT_LCD_Type.h

Committer:
davidchilds
Date:
2016-02-24
Revision:
7:a69ac4d39afd
Parent:
3:392d2c733c68

File content as of revision 7:a69ac4d39afd:

/* mbed Library for FTDI FT810  Enbedded Video Engine "EVE"
 * ported to mbed by David Childs, based on the great work of Peter Drescher (DC2PD 2014) 
 * Released under the MIT License: http://mbed.org/license/mit */
// This is for the 800x480 screen that comes with the FTDI FT810 demo board

#ifndef FT_LCD_TYPE_H
#define FT_LCD_TYPE_H
/* Global variables for display resolution to support various display panels */

// New settigns 800x480 resolution
#define my_DispWidth  800
#define my_DispHeight 480
#define my_DispHCycle 1000
#define my_DispHOffset 100
#define my_DispHSync0  0
#define my_DispHSync1  98
#define my_DispVCycle  500
#define my_DispVOffset  10
#define my_DispVSync0  0
#define my_DispVSync1  8
#define my_DispPCLK  2
#define my_DispSwizzle  0
#define my_DispPCLKPol  1
#endif