A simple Hello World program, to demonstrate the current problem with the dm_board_config.h file - if it is in its normal place, the root directory, the project will not build, while if I copy it to the DMSupport subdirectory, the project builds OK.

Dependencies:   DMBasicGUI DMSupport

Committer:
jmitc91516
Date:
Thu Oct 04 08:33:31 2018 +0000
Revision:
0:4d73151d9b87
Demonstrates the current problem with dm_board_config.h - the project will not build with this file in its normal place, the root directory, but builds OK if I copy it to the DMSupport subdirectory.

Who changed what in which revision?

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