Select one of the symbols to view example projects that use it.
 
Outline
#define __STM324x9I_EVAL_LCD_H
#include "../Components/ampire640480/ampire640480.h"
#include "../Components/ampire480272/ampire480272.h"
#include "../Components/stmpe811/stmpe811.h"
#include "stm324x9i_eval_sdram.h"
#include "stm324x9i_eval.h"
#include "../../../Utilities/Fonts/fonts.h"
LCD_DrawPropTypeDef
Point
pPoint
Text_AlignModeTypdef
#define MAX_LAYER_NUMBER
#define LCD_LayerCfgTypeDef
#define LCD_OK
#define LCD_ERROR
#define LCD_TIMEOUT
#define LCD_FB_START_ADDRESS
#define LCD_MAX_PCLK
#define LCD_MIN_PCLK
#define LCD_COLOR_BLUE
#define LCD_COLOR_GREEN
#define LCD_COLOR_RED
#define LCD_COLOR_CYAN
#define LCD_COLOR_MAGENTA
#define LCD_COLOR_YELLOW
#define LCD_COLOR_LIGHTBLUE
#define LCD_COLOR_LIGHTGREEN
#define LCD_COLOR_LIGHTRED
#define LCD_COLOR_LIGHTCYAN
#define LCD_COLOR_LIGHTMAGENTA
#define LCD_COLOR_LIGHTYELLOW
#define LCD_COLOR_DARKBLUE
#define LCD_COLOR_DARKGREEN
#define LCD_COLOR_DARKRED
#define LCD_COLOR_DARKCYAN
#define LCD_COLOR_DARKMAGENTA
#define LCD_COLOR_DARKYELLOW
#define LCD_COLOR_WHITE
#define LCD_COLOR_LIGHTGRAY
#define LCD_COLOR_GRAY
#define LCD_COLOR_DARKGRAY
#define LCD_COLOR_BLACK
#define LCD_COLOR_BROWN
#define LCD_COLOR_ORANGE
#define LCD_COLOR_TRANSPARENT
#define LCD_DEFAULT_FONT
#define LCD_RELOAD_IMMEDIATE
#define LCD_RELOAD_VERTICAL_BLANKING
BSP_LCD_Init();
BSP_LCD_InitEx(uint32_t);
BSP_LCD_GetXSize();
BSP_LCD_GetYSize();
BSP_LCD_LayerDefaultInit(uint16_t, uint32_t);
BSP_LCD_SetTransparency(uint32_t, uint8_t);
BSP_LCD_SetTransparency_NoReload(uint32_t, uint8_t);
BSP_LCD_SetLayerAddress(uint32_t, uint32_t);
BSP_LCD_SetLayerAddress_NoReload(uint32_t, uint32_t);
BSP_LCD_SetColorKeying(uint32_t, uint32_t);
BSP_LCD_SetColorKeying_NoReload(uint32_t, uint32_t);
BSP_LCD_ResetColorKeying(uint32_t);
BSP_LCD_ResetColorKeying_NoReload(uint32_t);
BSP_LCD_SetLayerWindow(uint16_t, uint16_t, uint16_t, uint16_t, uint16_t);
BSP_LCD_SetLayerWindow_NoReload(uint16_t, uint16_t, uint16_t, uint16_t, uint16_t);
BSP_LCD_SelectLayer(uint32_t);
BSP_LCD_SetLayerVisible(uint32_t, FunctionalState);
BSP_LCD_SetLayerVisible_NoReload(uint32_t, FunctionalState);
BSP_LCD_Relaod(uint32_t);
BSP_LCD_SetTextColor(uint32_t);
BSP_LCD_GetTextColor();
BSP_LCD_SetBackColor(uint32_t);
BSP_LCD_GetBackColor();
BSP_LCD_SetFont(sFONT *);
BSP_LCD_GetFont();
BSP_LCD_ReadPixel(uint16_t, uint16_t);
BSP_LCD_DrawPixel(uint16_t, uint16_t, uint32_t);
BSP_LCD_Clear(uint32_t);
BSP_LCD_ClearStringLine(uint32_t);
BSP_LCD_DisplayStringAtLine(uint16_t, uint8_t *);
BSP_LCD_DisplayStringAt(uint16_t, uint16_t, uint8_t *, Text_AlignModeTypdef);
BSP_LCD_DisplayChar(uint16_t, uint16_t, uint8_t);
BSP_LCD_DrawHLine(uint16_t, uint16_t, uint16_t);
BSP_LCD_DrawVLine(uint16_t, uint16_t, uint16_t);
BSP_LCD_DrawLine(uint16_t, uint16_t, uint16_t, uint16_t);
BSP_LCD_DrawRect(uint16_t, uint16_t, uint16_t, uint16_t);
BSP_LCD_DrawCircle(uint16_t, uint16_t, uint16_t);
BSP_LCD_DrawPolygon(pPoint, uint16_t);
BSP_LCD_DrawEllipse(int, int, int, int);
BSP_LCD_DrawBitmap(uint32_t, uint32_t, uint8_t *);
BSP_LCD_FillRect(uint16_t, uint16_t, uint16_t, uint16_t);
BSP_LCD_FillCircle(uint16_t, uint16_t, uint16_t);
BSP_LCD_FillPolygon(pPoint, uint16_t);
BSP_LCD_FillEllipse(int, int, int, int);
BSP_LCD_DisplayOff();
BSP_LCD_DisplayOn();
BSP_LCD_ClockConfig(LTDC_HandleTypeDef *, void *);
Files
loading...
SourceVuSTM32 Libraries and SamplesSTM324x9I_EVALstm324x9i_eval_lcd.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file stm324x9i_eval_lcd.h * @author MCD Application Team * @brief This file contains the common defines and functions prototypes for * the stm324x9i_eval_lcd.c driver. ****************************************************************************** * @attention * * Copyright (c) 2017 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** *//* ... */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM324x9I_EVAL_LCD_H #define __STM324x9I_EVAL_LCD_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ /* Include LCD component Driver */ /* LCD integrated within MB1063 */ #include "../Components/ampire640480/ampire640480.h" /* LCD integrated within MB1046 */ #include "../Components/ampire480272/ampire480272.h" /* Include IOExpander(STMPE811) component Driver */ #include "../Components/stmpe811/stmpe811.h" /* Include SDRAM Driver */ #include "stm324x9i_eval_sdram.h" #include "stm324x9i_eval.h" #include "../../../Utilities/Fonts/fonts.h" 6 includes /** @addtogroup BSP * @{ *//* ... */ /** @addtogroup STM324x9I_EVAL * @{ *//* ... */ /** @addtogroup STM324x9I_EVAL_LCD * @{ *//* ... */ /** @defgroup STM324x9I_EVAL_LCD_Exported_Types STM324x9I EVAL LCD Exported Types * @{ *//* ... */ typedef struct { uint32_t TextColor; uint32_t BackColor; sFONT *pFont; ...}LCD_DrawPropTypeDef; typedef struct { int16_t X; int16_t Y; ...}Point, * pPoint; /** * @brief Line mode structures definition *//* ... */ typedef enum { CENTER_MODE = 0x01, /* Center mode */ RIGHT_MODE = 0x02, /* Right mode */ LEFT_MODE = 0x03 /* Left mode */ ...}Text_AlignModeTypdef; /** * @} *//* ... */ /** @defgroup STM324x9I_EVAL_LCD_Exported_Constants STM324x9I EVAL LCD Exported Constants * @{ *//* ... */ #define MAX_LAYER_NUMBER 2 #define LCD_LayerCfgTypeDef LTDC_LayerCfgTypeDef /** * @brief LCD status structure definition *//* ... */ #define LCD_OK 0x00 #define LCD_ERROR 0x01 #define LCD_TIMEOUT 0x02 /** * @brief LCD FB_StartAddress *//* ... */ #define LCD_FB_START_ADDRESS ((uint32_t)0xC0000000) /* The programmed LTDC pixel clock depends on the vertical refresh rate of the panel 60Hz => 25.16MHz and the LCD/SDRAM bandwidth affected by the several access on the bus and the number of used layers. when only one layer is enabled "LCD_MAX_PCLK" can be used and when two layers are enabled simultaneously or/and there is several access on the bus "LCD_MIN_PCLK" parameter is recommended *//* ... */ #define LCD_MAX_PCLK ((uint8_t)0x00) #define LCD_MIN_PCLK ((uint8_t)0x01) /** * @brief LCD color *//* ... */ #define LCD_COLOR_BLUE 0xFF0000FF #define LCD_COLOR_GREEN 0xFF00FF00 #define LCD_COLOR_RED 0xFFFF0000 #define LCD_COLOR_CYAN 0xFF00FFFF #define LCD_COLOR_MAGENTA 0xFFFF00FF #define LCD_COLOR_YELLOW 0xFFFFFF00 #define LCD_COLOR_LIGHTBLUE 0xFF8080FF #define LCD_COLOR_LIGHTGREEN 0xFF80FF80 #define LCD_COLOR_LIGHTRED 0xFFFF8080 #define LCD_COLOR_LIGHTCYAN 0xFF80FFFF #define LCD_COLOR_LIGHTMAGENTA 0xFFFF80FF #define LCD_COLOR_LIGHTYELLOW 0xFFFFFF80 #define LCD_COLOR_DARKBLUE 0xFF000080 #define LCD_COLOR_DARKGREEN 0xFF008000 #define LCD_COLOR_DARKRED 0xFF800000 #define LCD_COLOR_DARKCYAN 0xFF008080 #define LCD_COLOR_DARKMAGENTA 0xFF800080 #define LCD_COLOR_DARKYELLOW 0xFF808000 #define LCD_COLOR_WHITE 0xFFFFFFFF #define LCD_COLOR_LIGHTGRAY 0xFFD3D3D3 #define LCD_COLOR_GRAY 0xFF808080 #define LCD_COLOR_DARKGRAY 0xFF404040 #define LCD_COLOR_BLACK 0xFF000000 #define LCD_COLOR_BROWN 0xFFA52A2A #define LCD_COLOR_ORANGE 0xFFFFA500 #define LCD_COLOR_TRANSPARENT 0xFF000000 /** * @brief LCD default font *//* ... */ #define LCD_DEFAULT_FONT Font24 /** * @brief LCD Reload Types *//* ... */ #define LCD_RELOAD_IMMEDIATE ((uint32_t)LTDC_SRCR_IMR) #define LCD_RELOAD_VERTICAL_BLANKING ((uint32_t)LTDC_SRCR_VBR) 37 defines /** * @} *//* ... */ /** @defgroup STM324x9I_EVAL_LCD_Exported_Functions STM324x9I EVAL LCD Exported Functions * @{ *//* ... */ uint8_t BSP_LCD_Init(void); uint8_t BSP_LCD_InitEx(uint32_t PclkConfig); uint32_t BSP_LCD_GetXSize(void); uint32_t BSP_LCD_GetYSize(void); /* Functions using the LTDC controller */ void BSP_LCD_LayerDefaultInit(uint16_t LayerIndex, uint32_t FrameBuffer); void BSP_LCD_SetTransparency(uint32_t LayerIndex, uint8_t Transparency); void BSP_LCD_SetTransparency_NoReload(uint32_t LayerIndex, uint8_t Transparency); void BSP_LCD_SetLayerAddress(uint32_t LayerIndex, uint32_t Address); void BSP_LCD_SetLayerAddress_NoReload(uint32_t LayerIndex, uint32_t Address); void BSP_LCD_SetColorKeying(uint32_t LayerIndex, uint32_t RGBValue); void BSP_LCD_SetColorKeying_NoReload(uint32_t LayerIndex, uint32_t RGBValue); void BSP_LCD_ResetColorKeying(uint32_t LayerIndex); void BSP_LCD_ResetColorKeying_NoReload(uint32_t LayerIndex); void BSP_LCD_SetLayerWindow(uint16_t LayerIndex, uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height); void BSP_LCD_SetLayerWindow_NoReload(uint16_t LayerIndex, uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height); void BSP_LCD_SelectLayer(uint32_t LayerIndex); void BSP_LCD_SetLayerVisible(uint32_t LayerIndex, FunctionalState State); void BSP_LCD_SetLayerVisible_NoReload(uint32_t LayerIndex, FunctionalState State); void BSP_LCD_Relaod(uint32_t ReloadType); void BSP_LCD_SetTextColor(uint32_t Color); uint32_t BSP_LCD_GetTextColor(void); void BSP_LCD_SetBackColor(uint32_t Color); uint32_t BSP_LCD_GetBackColor(void); void BSP_LCD_SetFont(sFONT *fonts); sFONT *BSP_LCD_GetFont(void); uint32_t BSP_LCD_ReadPixel(uint16_t Xpos, uint16_t Ypos); void BSP_LCD_DrawPixel(uint16_t Xpos, uint16_t Ypos, uint32_t pixel); void BSP_LCD_Clear(uint32_t Color); void BSP_LCD_ClearStringLine(uint32_t Line); void BSP_LCD_DisplayStringAtLine(uint16_t Line, uint8_t *ptr); void BSP_LCD_DisplayStringAt(uint16_t Xpos, uint16_t Ypos, uint8_t *Text, Text_AlignModeTypdef Mode); void BSP_LCD_DisplayChar(uint16_t Xpos, uint16_t Ypos, uint8_t Ascii); void BSP_LCD_DrawHLine(uint16_t Xpos, uint16_t Ypos, uint16_t Length); void BSP_LCD_DrawVLine(uint16_t Xpos, uint16_t Ypos, uint16_t Length); void BSP_LCD_DrawLine(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2); void BSP_LCD_DrawRect(uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height); void BSP_LCD_DrawCircle(uint16_t Xpos, uint16_t Ypos, uint16_t Radius); void BSP_LCD_DrawPolygon(pPoint Points, uint16_t PointCount); void BSP_LCD_DrawEllipse(int Xpos, int Ypos, int XRadius, int YRadius); void BSP_LCD_DrawBitmap(uint32_t Xpos, uint32_t Ypos, uint8_t *pbmp); void BSP_LCD_FillRect(uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height); void BSP_LCD_FillCircle(uint16_t Xpos, uint16_t Ypos, uint16_t Radius); void BSP_LCD_FillPolygon(pPoint Points, uint16_t PointCount); void BSP_LCD_FillEllipse(int Xpos, int Ypos, int XRadius, int YRadius); void BSP_LCD_DisplayOff(void); void BSP_LCD_DisplayOn(void); void BSP_LCD_ClockConfig(LTDC_HandleTypeDef *hltdc, void *Params); /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */ #ifdef __cplusplus }extern "C" { ... } #endif /* ... */ #endif /* __STM324x9I_EVAL_LCD_H */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.