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 Dec 02 15:21:18 2014 +0000
Revision:
2:887c6b45e7fa
Parent:
0:6b68dac0d986
Child:
4:6fdcdf7aff8d
Added RTOS-safe logger (RtosLog). Switched USBHost library so that it works in an RTOS setting. Modified the FAT file system to work in an RTOS setting.

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_XBEE
embeddedartists 0:6b68dac0d986 32 #define DM_BOARD_USE_FAST_UART
embeddedartists 0:6b68dac0d986 33 // #define DM_BOARD_USE_INT_EEPROM_WRITE
embeddedartists 2:887c6b45e7fa 34 // #define DM_BOARD_DISABLE_STANDARD_PRINTF
embeddedartists 0:6b68dac0d986 35
embeddedartists 0:6b68dac0d986 36 // #define DM_BOARD_USE_4_3_DISPLAY_TMP /* temporary while debugging */
embeddedartists 0:6b68dac0d986 37
embeddedartists 0:6b68dac0d986 38 #endif