mbed support for LPC4088 Display Module

Dependencies:   DM_FATFileSystem DM_HttpServer DM_USBHost EthernetInterface USBDevice mbed-rpc mbed-rtos mbed-src

Dependents:   emptyProgram

Fork of DMSupport by Embedded Artists

Committer:
embeddedartists
Date:
Tue Feb 17 10:41:48 2015 +0100
Revision:
31:d47cffcb0a3e
Parent:
21:1e6bc4aca5b7
Child:
34:fc366bab393f
- Added function get current BIOS version
- Added function to allocate consequtive frame buffers
- Removed printouts that slowed down the touch controller
- Replaced wait_ms with Thread::wait in MCIFileSystem
- Changed CardDetect pin for MCIFileSystem
- Added (but disabled) extra pins for measurements
- Updated the DM_USBHost library (see version history there for changes)
- Updated EthernetInterface library to get TARGET_LPC4088_DM support
- Updated to latest versions of mbed, mbed-rpc, mbed-rtos and USBDevice libs

Who changed what in which revision?

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