forked from Infineon/capsense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcy_capsense_structure.c
1239 lines (1104 loc) · 45.4 KB
/
cy_capsense_structure.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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***************************************************************************//**
* \file cy_capsense_structure.c
* \version 2.0
*
* \brief
* This file defines the data structure global variables and provides the
* implementation for the functions of the Data Structure module.
*
********************************************************************************
* \copyright
* Copyright 2018-2019, Cypress Semiconductor Corporation. All rights reserved.
* You may use this file only in accordance with the license, terms, conditions,
* disclaimers, and limitations in the end user license agreement accompanying
* the software package with which this file was provided.
*******************************************************************************/
#include <stddef.h>
#include <string.h>
#include "cy_syslib.h"
#include "cy_capsense_common.h"
#include "cy_capsense_structure.h"
#include "cy_capsense_lib.h"
#include "cy_csd.h"
#if defined(CY_IP_MXCSDV2)
/*******************************************************************************
* Function Name: Cy_CapSense_IsAnyWidgetActive
****************************************************************************//**
*
* Reports whether any widget has detected touch.
*
* This function reports whether any widget has detected a touch by extracting
* information from the widget status registers. This function does
* not process widget data but extracts previously processed results
* from the \ref group_capsense_structures.
*
* \param context
* The pointer to the CapSense context structure \ref cy_stc_capsense_context_t.
*
* \return
* Returns the touch detection status of all the widgets:
* - Zero - No touch is detected in any of the widgets or sensors.
* - Non-zero - At least one widget or sensor has detected a touch.
*
*******************************************************************************/
uint32_t Cy_CapSense_IsAnyWidgetActive(const cy_stc_capsense_context_t * context)
{
uint32_t result = 0u;
uint32_t wdIndex;
for (wdIndex = context->ptrCommonConfig->numWd; wdIndex-- > 0u;)
{
result |= (uint32_t)context->ptrWdContext[wdIndex].status & CY_CAPSENSE_WD_ACTIVE_MASK;
}
return result;
}
/*******************************************************************************
* Function Name: Cy_CapSense_IsWidgetActive
****************************************************************************//**
*
* Reports whether the specified widget detected touch on any of its sensors.
*
* This function reports whether the specified widget has detected a touch by
* extracting information from the widget status register.
* This function does not process widget data but extracts previously processed
* results from the \ref group_capsense_structures.
*
* \param widgetId
* Specifies the ID number of the widget. A macro for the widget ID can be found
* in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
*
* \param context
* The pointer to the CapSense context structure \ref cy_stc_capsense_context_t.
*
* \return
* Returns the touch detection status of the specified widgets:
* - Zero - No touch is detected in the specified widget or a wrong widgetId
* is specified.
* - Non-zero if at least one sensor of the specified widget is active, i.e.
* a touch is detected.
*
*******************************************************************************/
uint32_t Cy_CapSense_IsWidgetActive(
uint32_t widgetId,
const cy_stc_capsense_context_t * context)
{
uint32_t result = 0uL;
if (widgetId < context->ptrCommonConfig->numWd)
{
result = (uint32_t)context->ptrWdContext[widgetId].status & CY_CAPSENSE_WD_ACTIVE_MASK;
}
return result;
}
/*******************************************************************************
* Function Name: Cy_CapSense_IsSensorActive
****************************************************************************//**
*
* Reports whether the specified sensor in the widget detected touch.
*
* This function reports whether the specified sensor in the widget has detected a
* touch by extracting information from the widget status register.
* This function does not process widget or sensor data but extracts previously
* processed results from the \ref group_capsense_structures.
*
* For proximity sensors, this function returns the proximity detection status.
* To get the touch status of proximity sensors, use the
* Cy_CapSense_IsProximitySensorActive() function.
*
* \param widgetId
* Specifies the ID number of the widget. A macro for the widget ID can be found
* in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
*
* \param sensorId
* Specifies the ID number of the sensor within the widget. A macro for the
* sensor ID within a specified widget can be found in the cycfg_capsense.h
* file defined as CY_CAPSENSE_<WIDGET_NAME>_SNS<SENSOR_NUMBER>_ID.
*
* \param context
* The pointer to the CapSense context structure \ref cy_stc_capsense_context_t.
*
* \return
* Returns the touch detection status of the specified sensor/widget:
* - Zero if no touch is detected in the specified sensor/widget or a wrong
* widget ID/sensor ID is specified.
* - Non-zero if the specified sensor is active, i.e. touch is detected. If the
* specific sensor belongs to a proximity widget, the proximity detection
* status is returned.
*
*******************************************************************************/
uint32_t Cy_CapSense_IsSensorActive(
uint32_t widgetId,
uint32_t sensorId,
const cy_stc_capsense_context_t * context)
{
uint32_t result = 0uL;
if (widgetId < context->ptrCommonConfig->numWd)
{
if (sensorId < context->ptrWdConfig[widgetId].numSns)
{
result = context->ptrWdConfig[widgetId].ptrSnsContext[sensorId].status;
}
}
return result;
}
/*******************************************************************************
* Function Name: Cy_CapSense_IsProximitySensorActive
****************************************************************************//**
*
* Reports the status of the specified proximity widget/sensor.
*
* This function reports whether the specified proximity sensor has detected
* a touch or proximity event by extracting information from the widget
* status register. This function is used only with proximity widgets.
* This function does not process widget data but extracts previously processed
* results from the \ref group_capsense_structures.
*
* \param widgetId
* Specifies the ID number of the widget. A macro for the widget ID can be found
* in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
*
* \param sensorId
* Specifies the ID number of the sensor within the widget. A macro for the
* sensor ID within a specified widget can be found in the cycfg_capsense.h
* file defined as CY_CAPSENSE_<WIDGET_NAME>_SNS<SENSOR_NUMBER>_ID.
*
* \param context
* The pointer to the CapSense context structure \ref cy_stc_capsense_context_t.
*
* \return
* Returns the status of the specified sensor of the proximity widget. Zero
* indicates that no touch is detected in the specified sensor/widget or a
* wrong widgetId/proxId is specified.
* - Bits [31..2] are reserved.
* - Bit [1] indicates that a touch is detected.
* - Bit [0] indicates that a proximity is detected.
*
*******************************************************************************/
uint32_t Cy_CapSense_IsProximitySensorActive(
uint32_t widgetId,
uint32_t sensorId,
const cy_stc_capsense_context_t * context)
{
uint32_t result = 0uL;
if (widgetId < context->ptrCommonConfig->numWd)
{
if ((uint8_t)CY_CAPSENSE_WD_PROXIMITY_E == context->ptrWdConfig[widgetId].wdType)
{
if (sensorId < context->ptrWdConfig[widgetId].numSns)
{
result |= context->ptrWdConfig[widgetId].ptrSnsContext[sensorId].status;
}
}
}
return result;
}
/*******************************************************************************
* Function Name: Cy_CapSense_GetTouchInfo
****************************************************************************//**
*
* Reports the details of touch position detected on the specified touchpad,
* matrix buttons or slider widgets.
*
* This function does not process widget data but extracts previously processed
* results from the \ref group_capsense_structures.
*
* \param widgetId
* Specifies the ID number of the widget. A macro for the widget ID can be found
* in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
*
* \param context
* The pointer to the CapSense context structure \ref cy_stc_capsense_context_t.
*
* \return
* Returns the pointer to widget cy_stc_capsense_touch_t structure that
* contains number of positions and data about each position.
*
*
*******************************************************************************/
cy_stc_capsense_touch_t * Cy_CapSense_GetTouchInfo(
uint32_t widgetId,
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_touch_t * ptrTouch = NULL;
const cy_stc_capsense_widget_config_t * ptrWdCfg;
if (widgetId < context->ptrCommonConfig->numWd)
{
ptrWdCfg = &context->ptrWdConfig[widgetId];
switch (ptrWdCfg->wdType)
{
case (uint8_t)CY_CAPSENSE_WD_TOUCHPAD_E:
case (uint8_t)CY_CAPSENSE_WD_MATRIX_BUTTON_E:
case (uint8_t)CY_CAPSENSE_WD_LINEAR_SLIDER_E:
case (uint8_t)CY_CAPSENSE_WD_RADIAL_SLIDER_E:
ptrTouch = &ptrWdCfg->ptrWdContext->wdTouch;
break;
default:
break;
}
}
return ptrTouch;
}
/*******************************************************************************
* Function Name: Cy_CapSense_CheckConfigIntegrity
****************************************************************************//**
*
* Performs verification of CapSense data structure initialization.
*
* \param context
* The pointer to the CapSense context structure \ref cy_stc_capsense_context_t.
*
* \return status
* Returns status of operation:
* - Zero - Indicates successful initialization.
* - Non-zero - One or more errors occurred in the initialization process.
*
*******************************************************************************/
cy_status Cy_CapSense_CheckConfigIntegrity(const cy_stc_capsense_context_t * context)
{
cy_status result = CY_RET_SUCCESS;
const cy_stc_capsense_common_config_t * ptrCommonCfg = context->ptrCommonConfig;
const cy_stc_capsense_common_context_t * ptrCommonCxt = context->ptrCommonContext;
const cy_stc_capsense_internal_context_t * ptrInternalCxt = context->ptrInternalContext;
const cy_stc_capsense_widget_config_t * ptrWdCfg = context->ptrWdConfig;
const cy_stc_capsense_widget_context_t * ptrWdCxt = context->ptrWdContext;
const cy_stc_capsense_pin_config_t * ptrPinCfg = context->ptrPinConfig;
const cy_stc_capsense_pin_config_t * ptrShieldPinCfg = context->ptrShieldPinConfig;
const cy_stc_active_scan_sns_t * ptrActScanSns = context->ptrActiveScanSns;
if (ptrCommonCfg == NULL) {result |= CY_RET_BAD_DATA;}
if (ptrCommonCxt == NULL) {result |= CY_RET_BAD_DATA;}
if (ptrInternalCxt == NULL) {result |= CY_RET_BAD_DATA;}
if (ptrWdCfg == NULL) {result |= CY_RET_BAD_DATA;}
if (ptrWdCxt == NULL) {result |= CY_RET_BAD_DATA;}
if (ptrPinCfg == NULL) {result |= CY_RET_BAD_DATA;}
if (ptrCommonCfg->csdShieldEn != 0u)
{
if((ptrCommonCfg->csdShieldNumPin > 0u) && (ptrShieldPinCfg == NULL))
{
result |= CY_RET_BAD_DATA;
}
}
if (ptrActScanSns == NULL) {result |= CY_RET_BAD_DATA;}
return (result);
}
/**< Internal wrapper functions for the flash optimization */
/*******************************************************************************
* Function Name: Cy_CapSense_CSDCalibrateWidget_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_CSDCalibrateWidget function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_CSDCalibrateWidget().
*
* \param widgetId
* \param target
* \param context
* \return
*
*******************************************************************************/
cy_status Cy_CapSense_CSDCalibrateWidget_Call(
uint32_t widgetId,
uint32_t target,
cy_stc_capsense_context_t * context)
{
cy_status result = CY_RET_INVALID_STATE;
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrCSDCalibrateWidget)
{
result = ptrFptrCfg->fptrCSDCalibrateWidget(widgetId, target, context);
}
return result;
}
/*******************************************************************************
* Function Name: Cy_CapSense_CSDSetupWidget_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_CSDSetupWidget function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_CSDSetupWidget().
*
* \param widgetId
* \param context
*
*******************************************************************************/
void Cy_CapSense_CSDSetupWidget_Call(
uint32_t widgetId,
cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrCSDSetupWidget)
{
ptrFptrCfg->fptrCSDSetupWidget(widgetId, context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_CSDScan_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_CSDScan function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_CSDScan().
*
* \param context
*
*******************************************************************************/
void Cy_CapSense_CSDScan_Call(
cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrCSDScan)
{
ptrFptrCfg->fptrCSDScan(context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_CSXSetupWidget_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_CSXSetupWidget function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_CSXSetupWidget().
*
* \param widgetId
* \param context
*
*******************************************************************************/
void Cy_CapSense_CSXSetupWidget_Call(
uint32_t widgetId,
cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrCSXSetupWidget)
{
ptrFptrCfg->fptrCSXSetupWidget(widgetId, context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_CSXScan_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_CSXScan function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_CSXScan().
*
* \param context
*
*******************************************************************************/
void Cy_CapSense_CSXScan_Call(
cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrCSXScan)
{
ptrFptrCfg->fptrCSXScan(context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_CalibrateAllCsdWidgets_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_CalibrateAllCsdWidgets function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_CalibrateAllCsdWidgets().
*
* \param context
* \return
*
*******************************************************************************/
cy_status Cy_CapSense_CalibrateAllCsdWidgets_Call(
cy_stc_capsense_context_t * context)
{
cy_status result = CY_RET_INVALID_STATE;
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrCalibrateAllCsdWidgets)
{
result = ptrFptrCfg->fptrCalibrateAllCsdWidgets(context);
}
return result;
}
/*******************************************************************************
* Function Name: Cy_CapSense_CalibrateAllCsxWidgets_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_CalibrateAllCsxWidgets function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_CalibrateAllCsxWidgets().
*
* \param context
* \return
*
*******************************************************************************/
cy_status Cy_CapSense_CalibrateAllCsxWidgets_Call(
cy_stc_capsense_context_t * context)
{
cy_status result = CY_RET_INVALID_STATE;
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrCalibrateAllCsxWidgets)
{
result = ptrFptrCfg->fptrCalibrateAllCsxWidgets(context);
}
return result;
}
/*******************************************************************************
* Function Name: Cy_CapSense_CSDDisableMode_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_CSDDisableMode function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_CSDDisableMode().
*
* \param context
*
*******************************************************************************/
void Cy_CapSense_CSDDisableMode_Call(
cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrCSDDisableMode)
{
ptrFptrCfg->fptrCSDDisableMode(context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_CSDInitialize_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_CSDInitialize function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_CSDInitialize().
*
* \param context
*
*******************************************************************************/
void Cy_CapSense_CSDInitialize_Call(
cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrCSDInitialize)
{
ptrFptrCfg->fptrCSDInitialize(context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_DpProcessButton_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_DpProcessButton function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_DpProcessButton().
*
* \param ptrWdConfig
* \param context
*
*******************************************************************************/
void Cy_CapSense_DpProcessButton_Call(
const cy_stc_capsense_widget_config_t * ptrWdConfig,
cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrDpProcessButton)
{
ptrFptrCfg->fptrDpProcessButton(ptrWdConfig, context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_DpProcessCsxTouchpad_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_DpProcessCsxTouchpad function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_DpProcessCsxTouchpad().
*
* \param ptrWdConfig
* \param context
*
*******************************************************************************/
void Cy_CapSense_DpProcessCsxTouchpad_Call(
const cy_stc_capsense_widget_config_t * ptrWdConfig,
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrDpProcessCsxTouchpad)
{
ptrFptrCfg->fptrDpProcessCsxTouchpad(ptrWdConfig, context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_DpProcessProximity_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_DpProcessProximity function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_DpProcessProximity().
*
* \param ptrWdConfig
* \param context
*
*******************************************************************************/
void Cy_CapSense_DpProcessProximity_Call(
cy_stc_capsense_widget_config_t const * ptrWdConfig,
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrDpProcessProximity)
{
ptrFptrCfg->fptrDpProcessProximity(ptrWdConfig);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_DpProcessCsdTouchpad_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_DpProcessCsdTouchpad function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_DpProcessCsdTouchpad().
*
* \param ptrWdConfig
* \param context
*
*******************************************************************************/
void Cy_CapSense_DpProcessCsdTouchpad_Call(
const cy_stc_capsense_widget_config_t * ptrWdConfig,
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrDpProcessCsdTouchpad)
{
ptrFptrCfg->fptrDpProcessCsdTouchpad(ptrWdConfig, context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_DpProcessSlider_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_DpProcessSlider function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_DpProcessSlider().
*
* \param ptrWdConfig
* \param context
*
*******************************************************************************/
void Cy_CapSense_DpProcessSlider_Call(
const cy_stc_capsense_widget_config_t * ptrWdConfig,
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrDpProcessSlider)
{
ptrFptrCfg->fptrDpProcessSlider(ptrWdConfig, context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_DpProcessCsdMatrix_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_DpProcessCsdMatrix function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_DpProcessCsdMatrix().
*
* \param ptrWdConfig
* \param context
*
*******************************************************************************/
void Cy_CapSense_DpProcessCsdMatrix_Call(
const cy_stc_capsense_widget_config_t * ptrWdConfig,
cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrDpProcessCsdMatrix)
{
ptrFptrCfg->fptrDpProcessCsdMatrix(ptrWdConfig, context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_DpProcessCsdWidgetStatus_Call
****************************************************************************//**
*
* This is a wrapper function for calling
* the Cy_CapSense_DpProcessCsdWidgetStatus function. All details,
* parameters and return,* For the operation details, refer to the Cy_CapSense_DpProcessCsdWidgetStatus().
*
* \param ptrWdConfig
* \param context
*
*******************************************************************************/
void Cy_CapSense_DpProcessCsdWidgetStatus_Call(
const cy_stc_capsense_widget_config_t * ptrWdConfig,
cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrDpProcessCsdWidgetStatus)
{
ptrFptrCfg->fptrDpProcessCsdWidgetStatus(ptrWdConfig, context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_DpProcessCsdWidgetRawCounts_Call
****************************************************************************//**
*
* This is a wrapper function for calling
* the Cy_CapSense_DpProcessCsdWidgetRawCounts function. All details,
* parameters and return,* For the operation details, refer to the Cy_CapSense_DpProcessCsdWidgetRawCounts().
*
* \param ptrWdConfig
* \param context
*
* \return
*
*******************************************************************************/
uint32_t Cy_CapSense_DpProcessCsdWidgetRawCounts_Call(
const cy_stc_capsense_widget_config_t * ptrWdConfig,
const cy_stc_capsense_context_t * context)
{
cy_status result = CY_RET_INVALID_STATE;
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrDpProcessCsdWidgetRawCounts)
{
result = ptrFptrCfg->fptrDpProcessCsdWidgetRawCounts(ptrWdConfig, context);
}
return result;
}
/*******************************************************************************
* Function Name: Cy_CapSense_DpProcessCsxWidgetStatus_Call
****************************************************************************//**
*
* This is a wrapper function for calling
* the Cy_CapSense_DpProcessCsxWidgetStatus function. All details,
* parameters and return,* For the operation details, refer to the Cy_CapSense_DpProcessCsxWidgetStatus().
*
* \param ptrWdConfig
* \param context
*
*******************************************************************************/
void Cy_CapSense_DpProcessCsxWidgetStatus_Call(
const cy_stc_capsense_widget_config_t * ptrWdConfig,
cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrDpProcessCsxWidgetStatus)
{
ptrFptrCfg->fptrDpProcessCsxWidgetStatus(ptrWdConfig, context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_DpProcessCsxWidgetRawCounts_Call
****************************************************************************//**
*
* This is a wrapper function for calling
* the Cy_CapSense_DpProcessCsxWidgetRawCounts function. All details,
* parameters and return,* For the operation details, refer to the Cy_CapSense_DpProcessCsxWidgetRawCounts().
*
* \param ptrWdConfig
* \param context
* \return
*
*******************************************************************************/
uint32_t Cy_CapSense_DpProcessCsxWidgetRawCounts_Call(
const cy_stc_capsense_widget_config_t * ptrWdConfig,
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
uint32_t result = CY_RET_INVALID_STATE;
if(NULL != ptrFptrCfg->fptrDpProcessCsxWidgetRawCounts)
{
result = ptrFptrCfg->fptrDpProcessCsxWidgetRawCounts(ptrWdConfig, context);
}
return result;
}
/*******************************************************************************
* Function Name: Cy_CapSense_DpAdvancedCentroidTouchpad_Call
****************************************************************************//**
*
* This is a wrapper function for calling
* the Cy_CapSense_DpAdvancedCentroidTouchpad function. All details, parameters
* and return,* For the operation details, refer to the Cy_CapSense_DpAdvancedCentroidTouchpad().
*
* \param newTouch
* \param ptrWdConfig
* \param context
*
*******************************************************************************/
void Cy_CapSense_DpAdvancedCentroidTouchpad_Call(
cy_stc_capsense_touch_t * newTouch,
const cy_stc_capsense_widget_config_t * ptrWdConfig,
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrDpAdvancedCentroidTouchpad)
{
ptrFptrCfg->fptrDpAdvancedCentroidTouchpad(newTouch, ptrWdConfig);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_InitPositionFilters_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_InitPositionFilters function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_InitPositionFilters().
*
* \param filterConfig
* \param ptrInput
* \param ptrHistory
* \param context
*
*******************************************************************************/
void Cy_CapSense_InitPositionFilters_Call(
uint32_t filterConfig,
const cy_stc_capsense_position_t * ptrInput,
cy_stc_capsense_position_t * ptrHistory,
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrInitPositionFilters)
{
ptrFptrCfg->fptrInitPositionFilters(filterConfig, ptrInput, ptrHistory);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_RunPositionFilters_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_RunPositionFilters function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_RunPositionFilters().
*
* \param ptrWdConfig
* \param ptrInput
* \param ptrHistory
* \param context
*
*******************************************************************************/
void Cy_CapSense_RunPositionFilters_Call(
const cy_stc_capsense_widget_config_t * ptrWdConfig,
cy_stc_capsense_position_t * ptrInput,
cy_stc_capsense_position_t * ptrHistory,
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrRunPositionFilters)
{
ptrFptrCfg->fptrRunPositionFilters(ptrWdConfig, ptrInput, ptrHistory, context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_ProcessPositionFilters_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_ProcessPositionFilters function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_ProcessPositionFilters().
*
* \param newTouch
* \param ptrWdConfig
* \param context
*
*******************************************************************************/
void Cy_CapSense_ProcessPositionFilters_Call(
cy_stc_capsense_touch_t * newTouch,
const cy_stc_capsense_widget_config_t * ptrWdConfig,
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrProcessPositionFilters)
{
ptrFptrCfg->fptrProcessPositionFilters(newTouch, ptrWdConfig, context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_InitializeAllFilters_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_InitializeAllFilters function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_InitializeAllFilters().
*
* \param context
*
*******************************************************************************/
void Cy_CapSense_InitializeAllFilters_Call(
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrInitializeAllFilters)
{
ptrFptrCfg->fptrInitializeAllFilters(context);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_FtRunEnabledFiltersInternal_Call
****************************************************************************//**
*
* This is a wrapper function for calling
* the Cy_CapSense_FtRunEnabledFiltersInternal function. All details,
* parameters and return,* For the operation details, refer to the Cy_CapSense_FtRunEnabledFiltersInternal().
*
* \param ptrWdConfig
* \param ptrSnsContext
* \param ptrSnsRawHistory
* \param ptrSnsRawHistoryLow
* \param context
*
*******************************************************************************/
void Cy_CapSense_FtRunEnabledFiltersInternal_Call(
const cy_stc_capsense_widget_config_t * ptrWdConfig,
cy_stc_capsense_sensor_context_t * ptrSnsContext,
uint16_t * ptrSnsRawHistory,
uint8_t * ptrSnsRawHistoryLow,
const cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrFtRunEnabledFiltersInternal)
{
ptrFptrCfg->fptrFtRunEnabledFiltersInternal(ptrWdConfig, ptrSnsContext, ptrSnsRawHistory, ptrSnsRawHistoryLow);
}
}
/*******************************************************************************
* Function Name: Cy_CapSense_CSXDisableMode_Call
****************************************************************************//**
*
* This is a wrapper of the Cy_CapSense_CSXDisableMode function.
* It calls this function if the corresponding function pointer is initialized.
*
* For the operation details, refer to the Cy_CapSense_CSXDisableMode().
*
* \param context
*
*******************************************************************************/
void Cy_CapSense_CSXDisableMode_Call(
cy_stc_capsense_context_t * context)
{
cy_stc_capsense_fptr_config_t * ptrFptrCfg = (cy_stc_capsense_fptr_config_t *)context->ptrFptrConfig;
if(NULL != ptrFptrCfg->fptrCSXDisableMode)
{
ptrFptrCfg->fptrCSXDisableMode(context);
}
}