Stock | Buttons | Sticks | Touchpad | ATRF | TTRF | TGRF | AR | |
---|---|---|---|---|---|---|---|---|
Absolute? | ✔ | ✘ | ✘ | ✔ (2 points only) | ✘ | ✘ | ✘ | ✔ |
Pinch in/out ordering | ✔ | ✘ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
Linear encoding | ✔ | ✘ | ✘ | ✔ (limited) | ✔ (limited) | ✔ (limited) | ✔ | ✔ |
Multi-point (>2) | ✔ | ✔ (directions only) | ✘ | ✘ | ✘ (current impl) | ✘ (current impl) | summed | ✔ |
Single swipe fills | 31 | undeterministic | undeterministic | 20 | 40 | 40 | 40 (could be ∞) | 31 |
Maximum fills | 136 (8 fingers end-to-end) | ∞ | ∞ | 40 | 40 | 40 | 40+∞ | 136 (8 fingers end-to-end) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Touch.h" | |
#if defined(_USING_HID) | |
#define CONTACT_COUNT_MAXIMUM 10 | |
#define REPORTID_TOUCH 0x04 | |
#define LSB(v) ((v >> 8) & 0xff) | |
#define MSB(v) (v & 0xff) |