Library for FT810

Fork of FT800_3 by david childs

FT_LCD_Type.h

Committer:
cratliff
Date:
2017-05-10
Revision:
9:137692641c20
Parent:
7:a69ac4d39afd

File content as of revision 9:137692641c20:

/* 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