STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
LCD_ConfDefaults.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.28 - 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 : LCD_ConfDefaults.h
30 Purpose : Valid LCD configuration and defaults
31 ----------------------------------------------------------------------
32 */
33 
34 #ifndef LCD_CONFIG_DEFAULTS_H
35 #define LCD_CONFIG_DEFAULTS_H
36 
37 #include "LCDConf.h" /* Configuration header file */
38 
39 /**********************************************************
40 *
41 * Configuration defaults
42 */
43 #ifndef LCD_MIRROR_X
44  #define LCD_MIRROR_X 0
45 #endif
46 #ifndef LCD_MIRROR_Y
47  #define LCD_MIRROR_Y 0
48 #endif
49 #ifndef LCD_SWAP_XY
50  #define LCD_SWAP_XY 0
51 #endif
52 #ifndef LCD_FIRSTCOM0
53  #define LCD_FIRSTCOM0 0
54 #endif
55 #ifndef LCD_FIRSTSEG0
56  #define LCD_FIRSTSEG0 0
57 #endif
58 #ifndef LCD_SWAP_RB
59  #define LCD_SWAP_RB 0
60 #endif
61 #ifndef LCD_DISPLAY_INDEX
62  #define LCD_DISPLAY_INDEX 0
63 #endif
64 #ifndef LCD_ENDIAN_BIG
65  #define LCD_ENDIAN_BIG 0
66 #endif
67 #ifndef LCD_ALLOW_NON_OPTIMIZED_MODE
68  #define LCD_ALLOW_NON_OPTIMIZED_MODE 1
69 #endif
70 
71 #endif /* LCD_CONFIG_DEFAULTS_H */
72 
73 /*************************** End of file ****************************/
Header for LCDConf file.