132

Dependencies:   DMSupport DMemWin

Fork of Motor_Embedded_3rd_emwin by Wei Chang Shen

Committer:
Will_Lu
Date:
Wed Jul 12 08:20:05 2017 +0000
Revision:
3:1823bfc913c1
Parent:
0:08606a13a816
123

Who changed what in which revision?

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