STM32F413H-Discovery + 0/4 examples
CodeScope will show references to TS_StateTypeDef from the following samples and libraries:
Examples
STM32F413H-Discovery
Demonstrations
Examples
Applications
USB_Host
 
Symbols
loading...
Files
loading...

TS_StateTypeDef struct

TS_StateTypeDef Define TS State structure

Syntax

typedef struct {   uint8_t  touchDetected;                   uint16_t touchX[TS_MAX_NB_TOUCH];         uint16_t touchY[TS_MAX_NB_TOUCH];       #if (TS_MULTI_TOUCH_SUPPORTED == 1)   uint8_t  touchWeight[TS_MAX_NB_TOUCH];    uint8_t  touchEventId[TS_MAX_NB_TOUCH];        uint8_t  touchArea[TS_MAX_NB_TOUCH];      uint32_t gestureId;  #endif   }TS_StateTypeDef;

Fields

touchDetected

Total number of active touches detected at last scan. Read more...

touchX

Touch X[0], X[1] coordinates on 12 bits. Read more...

touchY

Touch Y[0], Y[1] coordinates on 12 bits. Read more...

touchWeight

Touch_Weight[0], Touch_Weight[1] : weight property of touches. Read more...

touchEventId

Touch_EventId[0], Touch_EventId[1] : take value of type TS_TouchEventTypeDef . Read more...

touchArea

Touch_Area[0], Touch_Area[1] : touch area of each touch. Read more...

gestureId

type of gesture detected : take value of type TS_GestureIdTypeDef . Read more...

Examples

TS_StateTypeDef is referenced by 4 libraries and example projects.