52a53,58
> enum TKCommands {
> TouchKitActive = 'A',
> TouchKitFWRev = 'D',
> TouchKitCtrlType = 'E',
> };
>
65a72,75
> bool recvTouchKit(const std::vector<uint8_t> &data);
> void sendTouchKit(const uint8_t *data, size_t size);
> void sendTouchKit(uint8_t data) { sendTouchKit(&data, 1); }
>
68a79,81
> /** Is the device enabled? */
> bool enabled;
>
70,71c83,84
< * Has the driver been initialized in TouchKit mode? The model
< * suppresses touch event generation until this is true.
---
> * Has the driver enabled TouchKit mode? The model suppresses
> * touch event generation until this is true.
73c86
< bool driverInitialized;
---
> bool touchKitEnabled;