EA-LCD-006 Embedded Artists, EA-LCD-006 Datasheet - Page 13

no-image

EA-LCD-006

Manufacturer Part Number
EA-LCD-006
Description
Display Development Tools 7" TFT 800 x 480 LCD BOARD
Manufacturer
Embedded Artists
Datasheet

Specifications of EA-LCD-006

Rohs
yes
Product
Evaluation Boards
Tool Is For Evaluation Of
AT070TN84
Interface Type
I2C, IDC
Operating Supply Voltage
3.3 V, 5 V
Description/function
On-Board Module
Dimensions
165 mm x 150 mm
Factory Pack Quantity
1
Viewing Area
7 in
Copyright 2012 © Embedded Artists AB
LCD Board - User’s Guide
4.4
A general software driver has been created to in order to make it simple and non-complex to work with
different LCD:s. This section contains a very brief description of the structure. The code is the general
documentation in itself, simply because the software will likely be updated
The software driver package (a zip-file) is downloaded from Embedded Artists support page for the
LCD Board. The support site is available after registration of the product serial key that comes with
purchase of an LCD Board. The package shall be unzipped in the same directory as the sample
applications for the LPC1788 Developer's Kit. The default name of that directory is oem_lpc1788. The
sample application is called s_display_board.
There is a support library called Lib_Displays. The code in this library contains all low-level details.
The I2C-E2PROM contains configuration information. The I2C address of the memory is 0x56
(1.0.1.0.1.1.0.RW). An application can begin with detecting if an I2C-E2PROM is present on this
address. If so, an LCD Board is attached to the system and the LCD controller and graphical
application can be started.
Some of the parameters are just to copy directly into the LCD controller of the LPC processors. Other
information is stored in readable command strings. The configuration information stored is:
The general structure of an application utilizing the LCD Board can be found in main() in main.c of the
s_display_board sample application. A call to ea_lcdb_open(…) will read the configuration e2prom
and initialize the application. A call to ea_lcdb_getLcdParams(..) will get the retrieved parameters,
where the main parameters are width and height of the display.
There is also a function for power down of the LCD. Most LCD:s have strict requirements regarding
power-up and power-down when it comes to supply sequencing and control signals. It is important to
adhere to these requirements in order not to damage the display or reducing its performance or
lifetime.
4.4.1
The code listing below contains the LCD controller settings for the controller that is used on many LPC
processors. It also lists parameters about the touch screen and startup/power down behavior for the
general driver that Embedded Artists has created.
static const LCD_PARAM_T lcdParams =
{
480,
272,
40,
5,
2,
8,
8,
2,
0,
0,
1,
Software Driver
Magic number to detect that information has been stored.
Name of LCD and manufacturer in readable strings.
LCD controller setup, including timing parameters. Can be directly copied to LCD controller
registers.
Init sequence command string. The string must be interpreted by the software driver.
Power down command string. The string must be interpreted by the software driver.
Parameters related to touch screen.
Note about 4.3 inch LCD (EA-LCD-004)
/* Horizontal back porch */
/* Horizontal front porch */
/* HSYNC pulse width */
/* Pixels per line */
/* Vertical back porch */
/* Vertical front porch */
/* VSYNC pulse width */
/* Lines per panel */
/* Invert output enable */
/* Do not invert panel clock */
/* Invert HSYNC */
Page 13

Related parts for EA-LCD-006