First draft of a simple application to read a bitmap from a file in QSPI memory, and display it on the LPC4088 using the easyGUI library.

Dependencies:   DMBasicGUI DMSupport

Committer:
jmitc91516
Date:
Fri Jul 28 14:40:43 2017 +0000
Revision:
0:6db0d96b351d
Loads a bitmap file from a file in QSPI memory, and displays it.

Who changed what in which revision?

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