Skip to content

Commit 44fc95e

Browse files
jigpudtor
authored andcommitted
Input: wacom_serial4 - add support for Wacom ArtPad II tablet
Tablet initially begins communicating at 9600 baud, so this command should be used to connect to the device: $ inputattach --daemon --baud 9600 --wacom_iv /dev/ttyS0 linuxwacom/xf86-input-wacom#40 Signed-off-by: Jason Gerecke <[email protected]> Cc: [email protected] Signed-off-by: Dmitry Torokhov <[email protected]>
1 parent e154ab6 commit 44fc95e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

drivers/input/tablet/wacom_serial4.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ enum {
187187
MODEL_DIGITIZER_II = 0x5544, /* UD */
188188
MODEL_GRAPHIRE = 0x4554, /* ET */
189189
MODEL_PENPARTNER = 0x4354, /* CT */
190+
MODEL_ARTPAD_II = 0x4B54, /* KT */
190191
};
191192

192193
static void wacom_handle_model_response(struct wacom *wacom)
@@ -245,6 +246,7 @@ static void wacom_handle_model_response(struct wacom *wacom)
245246
wacom->flags = F_HAS_STYLUS2 | F_HAS_SCROLLWHEEL;
246247
break;
247248

249+
case MODEL_ARTPAD_II:
248250
case MODEL_DIGITIZER_II:
249251
wacom->dev->name = "Wacom Digitizer II";
250252
wacom->dev->id.version = MODEL_DIGITIZER_II;

0 commit comments

Comments
 (0)