Graphical demo for the LPC4088 Experiment Base Board with one of the Display Expansion Kits. This program decodes decodes and shows two png images.

Dependencies:   EALib mbed

Committer:
embeddedartists
Date:
Fri Oct 03 13:30:09 2014 +0000
Revision:
0:b567d56a59d7
First version

Who changed what in which revision?

UserRevisionLine numberNew contents of line
embeddedartists 0:b567d56a59d7 1 /*
embeddedartists 0:b567d56a59d7 2 * Copyright 2013 Embedded Artists AB
embeddedartists 0:b567d56a59d7 3 *
embeddedartists 0:b567d56a59d7 4 * Licensed under the Apache License, Version 2.0 (the "License");
embeddedartists 0:b567d56a59d7 5 * you may not use this file except in compliance with the License.
embeddedartists 0:b567d56a59d7 6 * You may obtain a copy of the License at
embeddedartists 0:b567d56a59d7 7 *
embeddedartists 0:b567d56a59d7 8 * http://www.apache.org/licenses/LICENSE-2.0
embeddedartists 0:b567d56a59d7 9 *
embeddedartists 0:b567d56a59d7 10 * Unless required by applicable law or agreed to in writing, software
embeddedartists 0:b567d56a59d7 11 * distributed under the License is distributed on an "AS IS" BASIS,
embeddedartists 0:b567d56a59d7 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
embeddedartists 0:b567d56a59d7 13 * See the License for the specific language governing permissions and
embeddedartists 0:b567d56a59d7 14 * limitations under the License.
embeddedartists 0:b567d56a59d7 15 */
embeddedartists 0:b567d56a59d7 16
embeddedartists 0:b567d56a59d7 17 #ifndef TESTDISPLAY_H
embeddedartists 0:b567d56a59d7 18 #define TESTDISPLAY_H
embeddedartists 0:b567d56a59d7 19
embeddedartists 0:b567d56a59d7 20 #include "AR1021I2C.h"
embeddedartists 0:b567d56a59d7 21 #include "Graphics.h"
embeddedartists 0:b567d56a59d7 22 #include "LcdController.h"
embeddedartists 0:b567d56a59d7 23 #include "EaLcdBoardGPIO.h"
embeddedartists 0:b567d56a59d7 24
embeddedartists 0:b567d56a59d7 25 /**
embeddedartists 0:b567d56a59d7 26 * Test the display connected with a FPC cable to the LPC4088 Experiment Base Board
embeddedartists 0:b567d56a59d7 27 * as well as the AR1021 touch sensor on the board.
embeddedartists 0:b567d56a59d7 28 */
embeddedartists 0:b567d56a59d7 29 class TestDisplay {
embeddedartists 0:b567d56a59d7 30 public:
embeddedartists 0:b567d56a59d7 31 enum WhichDisplay {
embeddedartists 0:b567d56a59d7 32 TFT_5, // 5" display
embeddedartists 0:b567d56a59d7 33 TFT_4_3, // 4.3" display
embeddedartists 0:b567d56a59d7 34 };
embeddedartists 0:b567d56a59d7 35
embeddedartists 0:b567d56a59d7 36 /**
embeddedartists 0:b567d56a59d7 37 * Create an interface to the display
embeddedartists 0:b567d56a59d7 38 */
embeddedartists 0:b567d56a59d7 39 TestDisplay(WhichDisplay which);
embeddedartists 0:b567d56a59d7 40 ~TestDisplay();
embeddedartists 0:b567d56a59d7 41
embeddedartists 0:b567d56a59d7 42 /**
embeddedartists 0:b567d56a59d7 43 * Test the display
embeddedartists 0:b567d56a59d7 44 *
embeddedartists 0:b567d56a59d7 45 * @return true if the test was successful; otherwise false
embeddedartists 0:b567d56a59d7 46 */
embeddedartists 0:b567d56a59d7 47 bool runTest();
embeddedartists 0:b567d56a59d7 48
embeddedartists 0:b567d56a59d7 49 private:
embeddedartists 0:b567d56a59d7 50
embeddedartists 0:b567d56a59d7 51 void calibrate_drawMarker(Graphics &g, uint16_t x, uint16_t y, bool erase);
embeddedartists 0:b567d56a59d7 52 bool calibrate_display();
embeddedartists 0:b567d56a59d7 53
embeddedartists 0:b567d56a59d7 54 char* _initStr;
embeddedartists 0:b567d56a59d7 55 LcdController::Config* _lcdCfg;
embeddedartists 0:b567d56a59d7 56 EaLcdBoardGPIO _lcdBoard;
embeddedartists 0:b567d56a59d7 57 AR1021I2C _touch;
embeddedartists 0:b567d56a59d7 58
embeddedartists 0:b567d56a59d7 59 uint32_t _framebuffer;
embeddedartists 0:b567d56a59d7 60 };
embeddedartists 0:b567d56a59d7 61
embeddedartists 0:b567d56a59d7 62 #endif
embeddedartists 0:b567d56a59d7 63