Sample GUI for LPC4088. Base code to begin dev

Dependencies:   DMBasicGUI DMSupport

Fork of lpc4088_displaymodule_shipped_demo by Embedded Artists

Committer:
alindvall
Date:
Tue Apr 28 12:21:14 2015 +0000
Revision:
4:a7cbb22e4348
Parent:
2:229f88d6f56b
Updated to latest version of the DMSupport and DMBasicGUI libraries

Who changed what in which revision?

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