Demo for Embedded World 2015.

Dependencies:   DMBasicGUI DMSupport

Demo running on several LPC4088 Display Modules on the Embedded World 2015 exhibition.

Information

To run the demo first drag-n-drop the to_sync.fs3 file to the MBED drive and then drag-n-drop the demo itself. This way both the file system and software are up to date.

This is what the launcher will look like:

/media/uploads/embeddedartists/ew2015_cap_000.png /media/uploads/embeddedartists/ew2015_cap_002.png /media/uploads/embeddedartists/ew2015_cap_003.png /media/uploads/embeddedartists/ew2015_cap_004.png /media/uploads/embeddedartists/ew2015_cap_005.png /media/uploads/embeddedartists/ew2015_cap_006.png

Committer:
alindvall
Date:
Thu Feb 19 13:54:53 2015 +0000
Revision:
0:6bd24cbb88a1
First public version

Who changed what in which revision?

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