STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
Eclipse_WS2
STM32F769IDiscovery
Middlewares
ST
STemWin
Config
GUIConf.h
Go to the documentation of this file.
1
/*********************************************************************
2
* SEGGER Microcontroller GmbH & Co. KG *
3
* Solutions for real time microcontroller applications *
4
**********************************************************************
5
* *
6
* (c) 1996 - 2015 SEGGER Microcontroller GmbH & Co. KG *
7
* *
8
* Internet: www.segger.com Support: support@segger.com *
9
* *
10
**********************************************************************
11
12
** emWin V5.32 - Graphical user interface for embedded applications **
13
All Intellectual Property rights in the Software belongs to SEGGER.
14
emWin is protected by international copyright laws. Knowledge of the
15
source code may not be used to write a similar product. This file may
16
only be used in accordance with the following terms:
17
18
The software has been licensed to STMicroelectronics International
19
N.V. a Dutch company with a Swiss branch and its headquarters in Plan-
20
les-Ouates, Geneva, 39 Chemin du Champ des Filles, Switzerland for the
21
purposes of creating libraries for ARM Cortex-M-based 32-bit microcon_
22
troller products commercialized by Licensee only, sublicensed and dis_
23
tributed under the terms and conditions of the End User License Agree_
24
ment supplied by STMicroelectronics International N.V.
25
Full source code is available at: www.segger.com
26
27
We appreciate your understanding and fairness.
28
----------------------------------------------------------------------
29
File : GUIConf.h
30
Purpose : Configures emWins abilities, fonts etc.
31
----------------------------------------------------------------------
32
*/
33
34
#ifndef GUICONF_H
35
#define GUICONF_H
36
37
/*********************************************************************
38
*
39
* Multi layer/display support
40
*/
41
#define GUI_NUM_LAYERS 2 // Maximum number of available layers
42
#define OS_SUPPORT
43
/*********************************************************************
44
*
45
* Multi tasking support
46
*/
47
#ifdef OS_SUPPORT
48
#define GUI_OS (1) // Compile with multitasking support
49
#else
50
#define GUI_OS (0)
51
#endif
52
53
/*********************************************************************
54
*
55
* Configuration of touch support
56
*/
57
#ifndef GUI_SUPPORT_TOUCH
58
#define GUI_SUPPORT_TOUCH (1) // Support touchscreen
59
#endif
60
61
/*********************************************************************
62
*
63
* Default font
64
*/
65
#define GUI_DEFAULT_FONT &GUI_Font6x8
66
67
/*********************************************************************
68
*
69
* Configuration of available packages
70
*/
71
#define GUI_SUPPORT_MOUSE (1)
/* Support a mouse */
72
#define GUI_WINSUPPORT (1)
/* Use window manager */
73
#define GUI_SUPPORT_MEMDEV (1)
/* Memory device package available */
74
#define GUI_SUPPORT_DEVICES (1)
/* Enable use of device pointers */
75
76
#endif
/* Avoid multiple inclusion */
Generated by
1.8.11