diff --git a/README b/README index ecf2aa6..a4f8236 100644 --- a/README +++ b/README @@ -38,6 +38,7 @@ Work-in-progress printers (untested/partial support present) Mitsubishi CP-D70DW, CP-D707DW and CP-K60DW + Kodak 305 Citizen CW-01/CW-02 Olmec OP900/OP900II ICI Imagedata OP900 @@ -315,15 +316,19 @@ *************************************************************************** BACKEND=mitsu70x - NOTE: We are looking for someone to help test this backend, as it has - received no testing whatsoever. - - Supported but untested printers: + Supported and tested printers: Mitsubishi CP-D70DW Mitsubishi CP-D707DW + + Unsupported printers (bugs): + Mitsubishi CP-K60DW-S + Unsupported printers: + + Kodak 305 + Valid commands: -s Query printer status (Only partially decoded) @@ -365,7 +370,7 @@ -s Query printer status *************************************************************************** - BACKEND=cw01 + BACKEND=citizencw01 Work-in-progress printers: diff --git a/backend_mitsu70x.c b/backend_mitsu70x.c index bf6ce5f..cc75a1e 100644 --- a/backend_mitsu70x.c +++ b/backend_mitsu70x.c @@ -40,6 +40,8 @@ #define USB_VID_MITSU 0x06D3 #define USB_PID_MITSU_D70X 0x3B30 #define USB_PID_MITSU_K60 0x3B31 +//#define USB_VID_KODAK XXXXXX +//#define USB_PID_KODAK305 XXXXXX /* Private data stucture */ struct mitsu70x_ctx { @@ -540,6 +542,7 @@ struct dyesub_backend mitsu70x_backend = { .devices = { { USB_VID_MITSU, USB_PID_MITSU_D70X, P_MITSU_D70X, ""}, { USB_VID_MITSU, USB_PID_MITSU_K60, P_MITSU_D70X, ""}, +// { USB_VID_KODAK, USB_PID_KODAK305, P_MITSU_D70X, ""}, { 0, 0, 0, ""} } };