Loads bitmaps into QSPI memory for GC500_2_5inch to use.

Dependencies:   DMBasicGUI DMSupport

Committer:
jmitc91516
Date:
Mon Jul 31 15:44:39 2017 +0000
Revision:
0:a5c253316af6
Background and scroll arrow bitmaps added to QSPI memory.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jmitc91516 0:a5c253316af6 1 /* ************************************************************************ */
jmitc91516 0:a5c253316af6 2 /* */
jmitc91516 0:a5c253316af6 3 /* (C)2004-2014 IBIS Solutions ApS */
jmitc91516 0:a5c253316af6 4 /* sales@easyGUI.com */
jmitc91516 0:a5c253316af6 5 /* www.easyGUI.com */
jmitc91516 0:a5c253316af6 6 /* */
jmitc91516 0:a5c253316af6 7 /* easyGUI display driver unit */
jmitc91516 0:a5c253316af6 8 /* v6.0.23.002 */
jmitc91516 0:a5c253316af6 9 /* */
jmitc91516 0:a5c253316af6 10 /* ************************************************************************ */
jmitc91516 0:a5c253316af6 11
jmitc91516 0:a5c253316af6 12 #ifndef __GUIDISPLAY_H
jmitc91516 0:a5c253316af6 13 #define __GUIDISPLAY_H
jmitc91516 0:a5c253316af6 14
jmitc91516 0:a5c253316af6 15 #ifdef __cplusplus /* If this is a C++ compiler, use C linkage */
jmitc91516 0:a5c253316af6 16 extern "C" {
jmitc91516 0:a5c253316af6 17 #endif
jmitc91516 0:a5c253316af6 18
jmitc91516 0:a5c253316af6 19 #include "GuiConst.h"
jmitc91516 0:a5c253316af6 20 #ifndef GuiConst_CODEVISION_COMPILER
jmitc91516 0:a5c253316af6 21 #include "GuiLib.h"
jmitc91516 0:a5c253316af6 22 #endif
jmitc91516 0:a5c253316af6 23
jmitc91516 0:a5c253316af6 24 extern void GuiDisplay_Lock (void);
jmitc91516 0:a5c253316af6 25 extern void GuiDisplay_Unlock (void);
jmitc91516 0:a5c253316af6 26 extern void GuiDisplay_Init (void);
jmitc91516 0:a5c253316af6 27 extern void GuiDisplay_Refresh (void);
jmitc91516 0:a5c253316af6 28
jmitc91516 0:a5c253316af6 29 #ifdef __cplusplus /* If this is a C++ compiler, end C linkage */
jmitc91516 0:a5c253316af6 30 }
jmitc91516 0:a5c253316af6 31 #endif
jmitc91516 0:a5c253316af6 32
jmitc91516 0:a5c253316af6 33 #endif