Select one of the symbols to view example projects that use it.
 
Outline
#include "main.h"
#include "GUIDRV_Lin.h"
#define LCDCONF_H
LCD_LayerPropTypedef
Files
loading...
CodeScopeSTM32 Libraries and SamplesSTemWin_FontsSTemWin/Target/LCDConf.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @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. * ****************************************************************************** *//* ... */ #include "main.h" #include "GUIDRV_Lin.h" #ifndef LCDCONF_H #define LCDCONF_H typedef struct { int32_t address; __IO int32_t pending_buffer; int32_t buffer_index; int32_t xSize; int32_t ySize; int32_t BytesPerPixel; LCD_API_COLOR_CONV *pColorConvAPI; ...} LCD_LayerPropTypedef; /* ... */ #endif /* LCDCONF_H */