updated for FT810 and 800x480 display

Dependents:   FT810_RGB_demo FT81x_TripComp_test FT810_LoadJPG

Fork of FT800_2 by Peter Drescher

Committer:
davidchilds
Date:
Wed Feb 24 14:04:34 2016 +0000
Revision:
7:a69ac4d39afd
Parent:
3:392d2c733c68
The updated library for FT810 with 800x480 display; Thanks to FTDI and Peter Drescher for getting this far

Who changed what in which revision?

UserRevisionLine numberNew contents of line
davidchilds 7:a69ac4d39afd 1 /* mbed Library for FTDI FT810 Enbedded Video Engine "EVE"
davidchilds 7:a69ac4d39afd 2 * ported to mbed by David Childs, based on the great work of Peter Drescher (DC2PD 2014)
dreschpe 2:ab74a9a05970 3 * Released under the MIT License: http://mbed.org/license/mit */
davidchilds 7:a69ac4d39afd 4 // This is for the 800x480 screen that comes with the FTDI FT810 demo board
davidchilds 7:a69ac4d39afd 5
dreschpe 0:5e013296b353 6 #ifndef FT_LCD_TYPE_H
dreschpe 0:5e013296b353 7 #define FT_LCD_TYPE_H
dreschpe 0:5e013296b353 8 /* Global variables for display resolution to support various display panels */
dreschpe 0:5e013296b353 9
davidchilds 7:a69ac4d39afd 10 // New settigns 800x480 resolution
davidchilds 7:a69ac4d39afd 11 #define my_DispWidth 800
davidchilds 7:a69ac4d39afd 12 #define my_DispHeight 480
davidchilds 7:a69ac4d39afd 13 #define my_DispHCycle 1000
davidchilds 7:a69ac4d39afd 14 #define my_DispHOffset 100
dreschpe 0:5e013296b353 15 #define my_DispHSync0 0
davidchilds 7:a69ac4d39afd 16 #define my_DispHSync1 98
davidchilds 7:a69ac4d39afd 17 #define my_DispVCycle 500
davidchilds 7:a69ac4d39afd 18 #define my_DispVOffset 10
dreschpe 0:5e013296b353 19 #define my_DispVSync0 0
davidchilds 7:a69ac4d39afd 20 #define my_DispVSync1 8
davidchilds 7:a69ac4d39afd 21 #define my_DispPCLK 2
dreschpe 0:5e013296b353 22 #define my_DispSwizzle 0
dreschpe 0:5e013296b353 23 #define my_DispPCLKPol 1
dreschpe 0:5e013296b353 24 #endif