Skip to content

Commit

Permalink
Merge pull request #96 from jigpu/add-new-msp-pid
Browse files Browse the repository at this point in the history
Recognize new MobileStudio Pro PID

Reviewed-by: Aaron Armstrong Skomra <[email protected]>
  • Loading branch information
jigpu authored Dec 16, 2019
2 parents 3b33831 + a2f52bd commit a3b03e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/wcmUSB.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,8 @@ static struct WacomModelDesc
{ WACOM_VENDOR_ID, 0x399, 200000, 200000, &usbCintiqV5, "MobileStudio Pro 16" },
{ WACOM_VENDOR_ID, 0x39A, 200000, 200000, &usbCintiqV5, "MobileStudio Pro 13" }, /* Touch */
{ WACOM_VENDOR_ID, 0x39B, 200000, 200000, &usbCintiqV5, "MobileStudio Pro 16" }, /* Touch */
{ WACOM_VENDOR_ID, 0x3AA, 200000, 200000, &usbCintiqV5, "MobileStudio Pro 16" },
{ WACOM_VENDOR_ID, 0x3AC, 200000, 200000, &usbCintiqV5, "MobileStudio Pro 16" }, /* Touch */

{ WACOM_VENDOR_ID, 0x90, 100000, 100000, &usbTabletPC, "TabletPC 0x90" },
{ WACOM_VENDOR_ID, 0x93, 100000, 100000, &usbTabletPC, "TabletPC 0x93" },
Expand Down
2 changes: 2 additions & 0 deletions src/wcmValidateDevice.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ int wcmDeviceTypeKeys(InputInfoPtr pInfo)
case 0x34E: /* MobileStudio Pro 16 */
case 0x398: /* MobileStudio Pro 13 */
case 0x399: /* MobileStudio Pro 16 */
case 0x3AA: /* MobileStudio Pro 16 */
TabletSetFeature(priv->common, WCM_LCD);
/* fall through */

Expand Down Expand Up @@ -359,6 +360,7 @@ int wcmDeviceTypeKeys(InputInfoPtr pInfo)
case 0x37E:/* DTH-2452 Touch */
case 0x39A:/* MobileStudio Pro 13 Touch */
case 0x39B:/* MobileStudio Pro 16 Touch */
case 0x3AC:/* MobileStudio Pro 16 Touch */
TabletSetFeature(priv->common, WCM_LCD);
break;
}
Expand Down

0 comments on commit a3b03e8

Please sign in to comment.