Skip to content

Commit c947218

Browse files
jigpuJiri Kosina
authored andcommitted
HID: wacom: Add support for One by Wacom (CTL-472 / CTL-672)
Adds support for the second-generation "One by Wacom" tablets. These devices are similar to the last generation, but a slightly different size and reporting a higher number of pressure levels. Signed-off-by: Mx Jing <[email protected]> Signed-off-by: Jason Gerecke <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
1 parent 403c0f6 commit c947218

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

drivers/hid/wacom_wac.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4415,6 +4415,12 @@ static const struct wacom_features wacom_features_0x360 =
44154415
static const struct wacom_features wacom_features_0x361 =
44164416
{ "Wacom Intuos Pro L", 62200, 43200, 8191, 63,
44174417
INTUOSP2_BT, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 10 };
4418+
static const struct wacom_features wacom_features_0x37A =
4419+
{ "Wacom One by Wacom S", 15200, 9500, 2047, 63,
4420+
BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
4421+
static const struct wacom_features wacom_features_0x37B =
4422+
{ "Wacom One by Wacom M", 21600, 13500, 2047, 63,
4423+
BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
44184424

44194425
static const struct wacom_features wacom_features_HID_ANY_ID =
44204426
{ "Wacom HID", .type = HID_GENERIC, .oVid = HID_ANY_ID, .oPid = HID_ANY_ID };
@@ -4583,6 +4589,8 @@ const struct hid_device_id wacom_ids[] = {
45834589
{ USB_DEVICE_WACOM(0x343) },
45844590
{ BT_DEVICE_WACOM(0x360) },
45854591
{ BT_DEVICE_WACOM(0x361) },
4592+
{ USB_DEVICE_WACOM(0x37A) },
4593+
{ USB_DEVICE_WACOM(0x37B) },
45864594
{ USB_DEVICE_WACOM(0x4001) },
45874595
{ USB_DEVICE_WACOM(0x4004) },
45884596
{ USB_DEVICE_WACOM(0x5000) },

0 commit comments

Comments
 (0)