Template for creating new programs for the LPC4088 Display Module

Dependencies:   DMBasicGUI DMSupport

Fork of lpc4088_displaymodule_hello_world by EmbeddedArtists AB

A minimal example showing how to initialize the display module and draw a message on the display.

This project can be selected as a template when creating a new project based on the LPC4088 Display Module.

Information

This project works on both the 4.3" and 5" display modules.

This is what it looks like:

/media/uploads/embeddedartists/hello_cap_000.png

Committer:
embeddedartists
Date:
Wed Oct 23 07:00:18 2019 +0000
Revision:
7:791d32dd9dd9
Parent:
4:5077afc9f0f4
Updates related to mbed OS 5

Who changed what in which revision?

UserRevisionLine numberNew contents of line
embeddedartists 0:8ef5f57e33dc 1 /*
embeddedartists 0:8ef5f57e33dc 2 * Copyright 2014 Embedded Artists AB
embeddedartists 0:8ef5f57e33dc 3 *
embeddedartists 0:8ef5f57e33dc 4 * Licensed under the Apache License, Version 2.0 (the "License");
embeddedartists 0:8ef5f57e33dc 5 * you may not use this file except in compliance with the License.
embeddedartists 0:8ef5f57e33dc 6 * You may obtain a copy of the License at
embeddedartists 0:8ef5f57e33dc 7 *
embeddedartists 0:8ef5f57e33dc 8 * http://www.apache.org/licenses/LICENSE-2.0
embeddedartists 0:8ef5f57e33dc 9 *
embeddedartists 0:8ef5f57e33dc 10 * Unless required by applicable law or agreed to in writing, software
embeddedartists 0:8ef5f57e33dc 11 * distributed under the License is distributed on an "AS IS" BASIS,
embeddedartists 0:8ef5f57e33dc 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
embeddedartists 0:8ef5f57e33dc 13 * See the License for the specific language governing permissions and
embeddedartists 0:8ef5f57e33dc 14 * limitations under the License.
embeddedartists 0:8ef5f57e33dc 15 */
embeddedartists 0:8ef5f57e33dc 16
embeddedartists 0:8ef5f57e33dc 17 #ifndef DM_BOARD_CONFIG_H
embeddedartists 0:8ef5f57e33dc 18 #define DM_BOARD_CONFIG_H
embeddedartists 0:8ef5f57e33dc 19
embeddedartists 0:8ef5f57e33dc 20 // Template to use for the project-specific settings. Copy this file to your project,
embeddedartists 0:8ef5f57e33dc 21 // rename it to dm_board_config.h and uncomment the wanted features below:
embeddedartists 0:8ef5f57e33dc 22
embeddedartists 0:8ef5f57e33dc 23 // #define DM_BOARD_USE_USB_DEVICE
embeddedartists 0:8ef5f57e33dc 24 // #define DM_BOARD_USE_USB_HOST
embeddedartists 0:8ef5f57e33dc 25 // #define DM_BOARD_USE_MCI_FS
embeddedartists 0:8ef5f57e33dc 26 // #define DM_BOARD_USE_QSPI_FS
embeddedartists 0:8ef5f57e33dc 27 // #define DM_BOARD_USE_QSPI
embeddedartists 0:8ef5f57e33dc 28 #define DM_BOARD_USE_DISPLAY
embeddedartists 0:8ef5f57e33dc 29 #define DM_BOARD_USE_TOUCH
embeddedartists 7:791d32dd9dd9 30 //#define DM_BOARD_USE_ETHERNET
embeddedartists 0:8ef5f57e33dc 31 #define DM_BOARD_USE_FAST_UART
alindvall 3:68bfac52f867 32 // #define DM_BOARD_USE_USBSERIAL_IN_RTOSLOG
embeddedartists 0:8ef5f57e33dc 33 // #define DM_BOARD_DISABLE_STANDARD_PRINTF
embeddedartists 0:8ef5f57e33dc 34 // #define DM_BOARD_ENABLE_MEASSURING_PINS
embeddedartists 0:8ef5f57e33dc 35 #define DM_BOARD_USE_REGISTRY
embeddedartists 0:8ef5f57e33dc 36
embeddedartists 0:8ef5f57e33dc 37 #endif