Go to the documentation of this file.
13 #define SYN_QUE_IDENTIFY 0x00
14 #define SYN_QUE_MODES 0x01
15 #define SYN_QUE_CAPABILITIES 0x02
16 #define SYN_QUE_MODEL 0x03
17 #define SYN_QUE_SERIAL_NUMBER_PREFIX 0x06
18 #define SYN_QUE_SERIAL_NUMBER_SUFFIX 0x07
19 #define SYN_QUE_RESOLUTION 0x08
20 #define SYN_QUE_EXT_CAPAB 0x09
21 #define SYN_QUE_FIRMWARE_ID 0x0a
22 #define SYN_QUE_EXT_CAPAB_0C 0x0c
23 #define SYN_QUE_EXT_MAX_COORDS 0x0d
24 #define SYN_QUE_EXT_MIN_COORDS 0x0f
27 #define SYN_BIT_ABSOLUTE_MODE (1 << 7)
28 #define SYN_BIT_HIGH_RATE (1 << 6)
29 #define SYN_BIT_SLEEP_MODE (1 << 3)
30 #define SYN_BIT_DISABLE_GESTURE (1 << 2)
31 #define SYN_BIT_FOUR_BYTE_CLIENT (1 << 1)
32 #define SYN_BIT_W_MODE (1 << 0)
35 #define SYN_MODEL_ROT180(m) ((m) & (1 << 23))
36 #define SYN_MODEL_PORTRAIT(m) ((m) & (1 << 22))
37 #define SYN_MODEL_SENSOR(m) (((m) >> 16) & 0x3f)
38 #define SYN_MODEL_HARDWARE(m) (((m) >> 9) & 0x7f)
39 #define SYN_MODEL_NEWABS(m) ((m) & (1 << 7))
40 #define SYN_MODEL_PEN(m) ((m) & (1 << 6))
41 #define SYN_MODEL_SIMPLIC(m) ((m) & (1 << 5))
42 #define SYN_MODEL_GEOMETRY(m) ((m) & 0x0f)
45 #define SYN_CAP_EXTENDED(c) ((c) & (1 << 23))
46 #define SYN_CAP_MIDDLE_BUTTON(c) ((c) & (1 << 18))
47 #define SYN_CAP_PASS_THROUGH(c) ((c) & (1 << 7))
48 #define SYN_CAP_SLEEP(c) ((c) & (1 << 4))
49 #define SYN_CAP_FOUR_BUTTON(c) ((c) & (1 << 3))
50 #define SYN_CAP_MULTIFINGER(c) ((c) & (1 << 1))
51 #define SYN_CAP_PALMDETECT(c) ((c) & (1 << 0))
52 #define SYN_CAP_SUBMODEL_ID(c) (((c) & 0x00ff00) >> 8)
53 #define SYN_EXT_CAP_REQUESTS(c) (((c) & 0x700000) >> 20)
54 #define SYN_CAP_MULTI_BUTTON_NO(ec) (((ec) & 0x00f000) >> 12)
55 #define SYN_CAP_PRODUCT_ID(ec) (((ec) & 0xff0000) >> 16)
82 #define SYN_CAP_CLICKPAD(ex0c) ((ex0c) & 0x100000)
83 #define SYN_CAP_CLICKPAD2BTN(ex0c) ((ex0c) & 0x000100)
84 #define SYN_CAP_MAX_DIMENSIONS(ex0c) ((ex0c) & 0x020000)
85 #define SYN_CAP_MIN_DIMENSIONS(ex0c) ((ex0c) & 0x002000)
86 #define SYN_CAP_ADV_GESTURE(ex0c) ((ex0c) & 0x080000)
87 #define SYN_CAP_REDUCED_FILTERING(ex0c) ((ex0c) & 0x000400)
88 #define SYN_CAP_IMAGE_SENSOR(ex0c) ((ex0c) & 0x000800)
91 #define SYN_MODE_ABSOLUTE(m) ((m) & (1 << 7))
92 #define SYN_MODE_RATE(m) ((m) & (1 << 6))
93 #define SYN_MODE_BAUD_SLEEP(m) ((m) & (1 << 3))
94 #define SYN_MODE_DISABLE_GESTURE(m) ((m) & (1 << 2))
95 #define SYN_MODE_PACKSIZE(m) ((m) & (1 << 1))
96 #define SYN_MODE_WMODE(m) ((m) & (1 << 0))
99 #define SYN_ID_MODEL(i) (((i) >> 4) & 0x0f)
100 #define SYN_ID_MAJOR(i) ((i) & 0x0f)
101 #define SYN_ID_MINOR(i) (((i) >> 16) & 0xff)
102 #define SYN_ID_FULL(i) ((SYN_ID_MAJOR(i) << 8) | SYN_ID_MINOR(i))
103 #define SYN_ID_IS_SYNAPTICS(i) ((((i) >> 8) & 0xff) == 0x47)
104 #define SYN_ID_DISGEST_SUPPORTED(i) (SYN_ID_MAJOR(i) >= 4)
107 #define SYN_PS_SET_MODE2 0x14
108 #define SYN_PS_CLIENT_CMD 0x28
112 #define SYN_NEWABS_STRICT 1
113 #define SYN_NEWABS_RELAXED 2
117 #define SYN_REDUCED_FILTER_FUZZ 8