Empty program for LPC4088

Dependencies:   DMSupport

Committer:
redbird
Date:
Wed Feb 17 16:57:43 2016 +0000
Revision:
0:1f5dc83e66d6
Empty template for LPC4088 Program

Who changed what in which revision?

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