Select one of the symbols to view example projects that use it.
 
Outline
#define __STM32469I_DISCOVERY_TS_H
#include "stm32469i_discovery.h"
#include "stm32469i_discovery_lcd.h"
#include "../Components/ft6x06/ft6x06.h"
#define TS_MAX_NB_TOUCH
#define TS_NO_IRQ_PENDING
#define TS_IRQ_PENDING
#define TS_SWAP_NONE
#define TS_SWAP_X
#define TS_SWAP_Y
#define TS_SWAP_XY
TS_StateTypeDef
TS_StatusTypeDef
TS_GestureIdTypeDef
TS_TouchEventTypeDef
ts_event_string_tab;
ts_gesture_id_string_tab;
BSP_TS_Init(uint16_t, uint16_t);
BSP_TS_GetState(TS_StateTypeDef *);
BSP_TS_Get_GestureId(TS_StateTypeDef *);
BSP_TS_ResetTouchData(TS_StateTypeDef *);
BSP_TS_ITConfig();
BSP_TS_INT_MspInit();
Files
loading...
CodeScopeSTM32 Libraries and SamplesSTM32469I-Discoverystm32469i_discovery_ts.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file stm32469i_discovery_ts.h * @author MCD Application Team * @brief This file contains the common defines and functions prototypes for * the stm32469i_discovery_ts.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 __STM32469I_DISCOVERY_TS_H #define __STM32469I_DISCOVERY_TS_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32469i_discovery.h" #include "stm32469i_discovery_lcd.h" /* Include TouchScreen component driver */ #include "../Components/ft6x06/ft6x06.h" /** @addtogroup BSP * @{ *//* ... */ /** @addtogroup STM32469I_Discovery * @{ *//* ... */ /** @addtogroup STM32469I-Discovery_TS * @{ *//* ... */ /** @defgroup STM32469I-Discovery_TS_Exported_Constants STM32469I Discovery TS Exported Constants * @{ *//* ... */ /** @brief With FT6206 : maximum 2 touches detected simultaneously *//* ... */ #define TS_MAX_NB_TOUCH ((uint32_t) FT6206_MAX_DETECTABLE_TOUCH) #define TS_NO_IRQ_PENDING ((uint8_t) 0) #define TS_IRQ_PENDING ((uint8_t) 1) #define TS_SWAP_NONE ((uint8_t) 0x01) #define TS_SWAP_X ((uint8_t) 0x02) #define TS_SWAP_Y ((uint8_t) 0x04) #define TS_SWAP_XY ((uint8_t) 0x08) 7 defines /** * @} *//* ... */ /** @defgroup STM32469I-Discovery_TS_Exported_Types STM32469I Discovery TS Exported Types * @{ *//* ... */ /** * @brief TS_StateTypeDef * Define TS State structure *//* ... */ typedef struct { uint8_t touchDetected; /*!< Total number of active touches detected at last scan */ uint16_t touchX[TS_MAX_NB_TOUCH]; /*!< Touch X[0], X[1] coordinates on 12 bits */ uint16_t touchY[TS_MAX_NB_TOUCH]; /*!< Touch Y[0], Y[1] coordinates on 12 bits */ #if (TS_MULTI_TOUCH_SUPPORTED == 1) uint8_t touchWeight[TS_MAX_NB_TOUCH]; /*!< Touch_Weight[0], Touch_Weight[1] : weight property of touches */ uint8_t touchEventId[TS_MAX_NB_TOUCH]; /*!< Touch_EventId[0], Touch_EventId[1] : take value of type @ref TS_TouchEventTypeDef */ uint8_t touchArea[TS_MAX_NB_TOUCH]; /*!< Touch_Area[0], Touch_Area[1] : touch area of each touch */ uint32_t gestureId; /*!< type of gesture detected : take value of type @ref TS_GestureIdTypeDef *//* ... */ #endif /* TS_MULTI_TOUCH_SUPPORTED == 1 */ ...} TS_StateTypeDef; /** * @brief TS_StatusTypeDef * Define BSP_TS_xxx() functions possible return value, * when status is returned by those functions. *//* ... */ typedef enum { TS_OK = 0x00, /*!< Touch Ok */ TS_ERROR = 0x01, /*!< Touch Error */ TS_TIMEOUT = 0x02, /*!< Touch Timeout */ TS_DEVICE_NOT_FOUND = 0x03 /*!< Touchscreen device not found */ ...} TS_StatusTypeDef; /** * @brief TS_GestureIdTypeDef * Define Possible managed gesture identification values returned by touch screen * driver. *//* ... */ typedef enum { GEST_ID_NO_GESTURE = 0x00, /*!< Gesture not defined / recognized */ GEST_ID_MOVE_UP = 0x01, /*!< Gesture Move Up */ GEST_ID_MOVE_RIGHT = 0x02, /*!< Gesture Move Right */ GEST_ID_MOVE_DOWN = 0x03, /*!< Gesture Move Down */ GEST_ID_MOVE_LEFT = 0x04, /*!< Gesture Move Left */ GEST_ID_ZOOM_IN = 0x05, /*!< Gesture Zoom In */ GEST_ID_ZOOM_OUT = 0x06, /*!< Gesture Zoom Out */ GEST_ID_NB_MAX = 0x07 /*!< max number of gesture id */ ...} TS_GestureIdTypeDef; /** * @brief TS_TouchEventTypeDef * Define Possible touch events kind as returned values * by touch screen IC Driver. *//* ... */ typedef enum { TOUCH_EVENT_NO_EVT = 0x00, /*!< Touch Event : undetermined */ TOUCH_EVENT_PRESS_DOWN = 0x01, /*!< Touch Event Press Down */ TOUCH_EVENT_LIFT_UP = 0x02, /*!< Touch Event Lift Up */ TOUCH_EVENT_CONTACT = 0x03, /*!< Touch Event Contact */ TOUCH_EVENT_NB_MAX = 0x04 /*!< max number of touch events kind */ ...} TS_TouchEventTypeDef; /** * @} *//* ... */ /** @defgroup STM32469I-Discovery_TS_Imported_Variables STM32469I Discovery TS Imported Variables * @{ *//* ... */ /** * @brief Table for touchscreen event information display on LCD : * table indexed on enum @ref TS_TouchEventTypeDef information *//* ... */ extern char * ts_event_string_tab[TOUCH_EVENT_NB_MAX]; /** * @brief Table for touchscreen gesture Id information display on LCD : table indexed * on enum @ref TS_GestureIdTypeDef information *//* ... */ extern char * ts_gesture_id_string_tab[GEST_ID_NB_MAX]; /** * @} *//* ... */ /** @defgroup STM32469I-Discovery_TS_Exported_Functions STM32469I Discovery TS Exported Functions * @{ *//* ... */ uint8_t BSP_TS_Init(uint16_t ts_SizeX, uint16_t ts_SizeY); uint8_t BSP_TS_GetState(TS_StateTypeDef *TS_State); #if (TS_MULTI_TOUCH_SUPPORTED == 1) uint8_t BSP_TS_Get_GestureId(TS_StateTypeDef *TS_State); uint8_t BSP_TS_ResetTouchData(TS_StateTypeDef *TS_State);/* ... */ #endif /* TS_MULTI_TOUCH_SUPPORTED == 1 */ uint8_t BSP_TS_ITConfig(void); /* These __weak function can be surcharged by application code in case the current settings need to be changed for specific (example GPIO allocation) *//* ... */ void BSP_TS_INT_MspInit(void); /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */ #ifdef __cplusplus }extern "C" { ... } #endif /* ... */ #endif /* __STM32469I_DISCOVERY_TS_H */