mitsu9550: Add in VID/PID for mitsu9600

This commit is contained in:
Solomon Peachy 2016-09-28 23:47:24 +03:00
parent fdc6da2f05
commit 047f60ed46
3 changed files with 6 additions and 2 deletions

5
README
View File

@ -46,6 +46,7 @@
DNP DS80DX
Mitsubishi CP-D70DW, CP-D707DW, CP-K60DW-S, and CP-D80DW
Mitsubishi CP-9600DW
Kodak 305
Fuji ASK-300
Citizen CW-02 and CX2
@ -569,11 +570,11 @@
Supported and tested printers:
Mitsubishi CP-9550DZ/DZS/DW-S
Mitsubishi CP-9550D/DW and CP-9550DZ/DZS/DW-S
Work-in-progress printers:
Mitsubishi CP-9550D/DW
Mitsubishi CP-9600D/DW
Valid commands:

View File

@ -112,6 +112,7 @@ enum {
P_MITSU_K60,
P_MITSU_9550,
P_MITSU_9550S,
P_MITSU_9600,
P_DNP_DS40,
P_DNP_DS80,
P_DNP_DS80D,

View File

@ -42,6 +42,7 @@
#define USB_VID_MITSU 0x06D3
#define USB_PID_MITSU_9550D 0x03A1
#define USB_PID_MITSU_9550DS 0x03A5 // or DZ/DZS/DZU
#define USB_PID_MITSU_9600 0x03A9
/* Private data stucture */
struct mitsu9550_ctx {
@ -798,6 +799,7 @@ struct dyesub_backend mitsu9550_backend = {
.devices = {
{ USB_VID_MITSU, USB_PID_MITSU_9550D, P_MITSU_9550, ""},
{ USB_VID_MITSU, USB_PID_MITSU_9550DS, P_MITSU_9550S, ""},
{ USB_VID_MITSU, USB_PID_MITSU_9600, P_MITSU_9600, ""},
{ 0, 0, 0, ""}
}
};