Simple application to write a single bitmap to a file in QSPI memory.

Dependencies:   DMBasicGUI DMSupport

Committer:
jmitc91516
Date:
Fri Jul 28 14:32:15 2017 +0000
Revision:
0:7d6bc03009a3
Simple application to write a single bitmap to a file in QSPI memory.

Who changed what in which revision?

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