Select one of the symbols to view example projects that use it.
 
Outline
#include "stm32446e_eval_ts.h"
#include "stm32446e_eval_io.h"
ts_driver
tsBundaryX
tsBundaryY
tsOrientation
AddressI2C
BSP_TS_Init(uint16_t, uint16_t)
BSP_TS_DeInit()
BSP_TS_ITEnable()
BSP_TS_ITDisable()
BSP_TS_ITConfig()
BSP_TS_ITClear()
BSP_TS_ITGetStatus()
BSP_TS_FIFOClear()
BSP_TS_GetState(TS_StateTypeDef *)
Files
loading...
CodeScopeSTM32 Libraries and SamplesSTM32446E_EVALstm32446e_eval_ts.c
 
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file stm32446e_eval_ts.c * @author MCD Application Team * @brief This file provides a set of functions needed to manage the Touch * Screen on STM32446E-EVAL evaluation board. ****************************************************************************** * @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. * ****************************************************************************** *//* ... */ /* File Info : ----------------------------------------------------------------- User NOTES 1. How To use this driver: -------------------------- - This driver is used to drive the touch screen module of the STM32446E-EVAL evaluation board on AMPIRE 480x272 LCD mounted on MB1046 daughter board. - the MFXSTM32L152 IO expander device component driver must be included in order to run the TS module commanded by the IO expander device, the MFX IO expander device component driver must be also included in case of interrupt mode use of the TS. 2. Driver description: --------------------- + Initialization steps: o Initialize the TS module using the BSP_TS_Init() function. This function includes the MSP layer hardware resources initialization and the communication layer configuration to start the TS use. The LCD size properties (x and y) are passed as parameters. o If TS interrupt mode is desired, you must configure the TS interrupt mode by calling the function BSP_TS_ITConfig(). The TS interrupt mode is generated as an external interrupt whenever a touch is detected. The interrupt mode internally uses the IO functionalities driver driven by the IO expander, to configure the IT line. + Touch screen use o The touch screen state is captured whenever the function BSP_TS_GetState() is used. This function returns information about the last LCD touch occurred in the TS_StateTypeDef structure. o If TS interrupt mode is used, the function BSP_TS_ITGetStatus() is needed to get the interrupt status. To clear the IT pending bits, you should call the function BSP_TS_ITClear(). o The IT is handled using the corresponding external interrupt IRQ handler, the user IT callback treatment is implemented on the same external interrupt callback. ------------------------------------------------------------------------------*//* ... */ /* Includes ------------------------------------------------------------------*/ #include "stm32446e_eval_ts.h" #include "stm32446e_eval_io.h" /** @addtogroup BSP * @{ *//* ... */ /** @addtogroup STM32446E_EVAL * @{ *//* ... */ /** @defgroup STM32446E_EVAL_TS STM32446E EVAL TS * @{ *//* ... */ /** @defgroup STM32446E_EVAL_TS_Private_Types_Definitions STM32446E EVAL TS Private Types Definitions * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32446E_EVAL_TS_Private_Defines STM32446E EVAL TS Private Defines * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32446E_EVAL_TS_Private_Macros STM32446E EVAL TS Private Macros * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32446E_EVAL_TS_Private_Variables STM32446E EVAL TS Private Variables * @{ *//* ... */ static TS_DrvTypeDef *ts_driver; static uint16_t tsBundaryX, tsBundaryY; static uint8_t tsOrientation; static uint8_t AddressI2C; /** * @} *//* ... */ /** @defgroup STM32446E_EVAL_TS_Private_Function_Prototypes STM32446E EVAL TS Private Function Prototypes * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32446E_EVAL_TS_Private_Functions STM32446E EVAL TS Private Functions * @{ *//* ... */ /** * @brief Initializes and configures the touch screen functionalities and * configures all necessary hardware resources (GPIOs, clocks..). * @param xSize: Maximum X size of the TS area on LCD * @param ySize: Maximum Y size of the TS area on LCD * @retval TS_OK if all initializations are OK. Other value if error. *//* ... */ uint8_t BSP_TS_Init(uint16_t xSize, uint16_t ySize) { uint8_t mfxstm32l152_id = 0; tsBundaryX = xSize; tsBundaryY = ySize; /* Initialize IO functionalities (MFX) used by TS */ BSP_IO_Init(); /* Read ID and verify if the IO expander is ready */ mfxstm32l152_id = mfxstm32l152_io_drv.ReadID(IO_I2C_ADDRESS); if((mfxstm32l152_id == MFXSTM32L152_ID_1) || (mfxstm32l152_id == MFXSTM32L152_ID_2)) { /* Initialize the TS driver structure */ ts_driver = &mfxstm32l152_ts_drv; AddressI2C = TS_I2C_ADDRESS; tsOrientation = TS_SWAP_NONE; }if ((mfxstm32l152_id == MFXSTM32L152_ID_1) || (mfxstm32l152_id == MFXSTM32L152_ID_2)) { ... } /* Initialize the TS driver */ ts_driver->Init(AddressI2C); ts_driver->Start(AddressI2C); return TS_OK; }{ ... } /** * @brief DeInitializes the TouchScreen. * @retval TS state *//* ... */ uint8_t BSP_TS_DeInit(void) { /* Actually ts_driver does not provide a DeInit function */ return TS_OK; }{ ... } /** * @brief Enables the touch screen interrupts. * @retval TS_OK if all initializations are OK. Other value if error. *//* ... */ uint8_t BSP_TS_ITEnable(void) { /* Enable the TS ITs */ ts_driver->EnableIT(AddressI2C); return TS_OK; }{ ... } /** * @brief Disables the touch screen interrupts. * @retval TS_OK if all initializations are OK. Other value if error. *//* ... */ uint8_t BSP_TS_ITDisable(void) { /* Disable the TS ITs */ ts_driver->DisableIT(AddressI2C); return TS_OK; }{ ... } /** * @brief Configures and enables the touch screen interrupts. * @retval TS_OK if all initializations are OK. Other value if error. *//* ... */ uint8_t BSP_TS_ITConfig(void) { /* Initialize the IO */ BSP_IO_Init(); /* Enable the TS ITs */ ts_driver->EnableIT(AddressI2C); return TS_OK; }{ ... } /** * @brief Clears all touch screen interrupts. *//* ... */ void BSP_TS_ITClear(void) { /* Clear TS IT pending bits */ ts_driver->ClearIT(AddressI2C); }{ ... } /** * @brief Gets the touch screen interrupt status. * @retval TS_OK if all initializations are OK. Other value if error. *//* ... */ uint8_t BSP_TS_ITGetStatus(void) { /* Return the TS IT status */ return (ts_driver->GetITStatus(AddressI2C)); }{ ... } /** * @brief Clears touch screen FIFO containing 128 x,y values. *//* ... */ void BSP_TS_FIFOClear(void) { /* ts.h does not foresee an API that allows clearing the FIFO */ /* reading GetXY currently read one value from the FIFO */ /* but the FIFO can contain up to 128 values ... */ /* which would mean 128 I2C read. */ /* Best is to modify ts.h (not done for compatibility with other families) */ }{ ... } /** * @brief Returns status and positions of the touch screen. * @param TS_State: Pointer to touch screen current state structure * @retval TS_OK if all initializations are OK. Other value if error. *//* ... */ uint8_t BSP_TS_GetState(TS_StateTypeDef *TS_State) { static uint32_t _x = 0, _y = 0; uint16_t x_diff, y_diff , x , y; uint16_t swap; TS_State->TouchDetected = ts_driver->DetectTouch(AddressI2C); if(TS_State->TouchDetected) { ts_driver->GetXY(AddressI2C, &x, &y); if(tsOrientation & TS_SWAP_X) { x = 4096 - x; }if (tsOrientation & TS_SWAP_X) { ... } if(tsOrientation & TS_SWAP_Y) { y = 4096 - y; }if (tsOrientation & TS_SWAP_Y) { ... } if(tsOrientation & TS_SWAP_XY) { swap = y; y = x; x = swap; }if (tsOrientation & TS_SWAP_XY) { ... } x_diff = x > _x? (x - _x): (_x - x); y_diff = y > _y? (y - _y): (_y - y); if (x_diff + y_diff > 5) { _x = x; _y = y; }if (x_diff + y_diff > 5) { ... } TS_State->x = (tsBundaryX * _x) >> 12; TS_State->y = (tsBundaryY * _y) >> 12; }if (TS_State->TouchDetected) { ... } return TS_OK; }{ ... } /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */