diff --git a/backend_mitsu.c b/backend_mitsu.c index af71e2d..800679b 100644 --- a/backend_mitsu.c +++ b/backend_mitsu.c @@ -280,12 +280,20 @@ const char *mitsu_media_types(int printer, uint8_t brand, uint8_t type) return "R2L-CF460/5R (5x7)"; else if (type == 0x0f) return "R68-CF400/6R (6x8)"; + } else if (brand == 0xd1) { /* Mitsubishi (D70/D80 -S series) */ + if (type == 0x02) + return "CK-D715 (4x6)"; + else if (type == 0x04) + return "CK-D718 (5x7)"; + else if (type == 0x05) + return "CK-D723 (6x9)"; + else if (type == 0x0f) + return "CK-D720 (6x8)"; } return "Unknown"; -// Also CK-D715, CK-D718, CK-D720, CK-D723 (4x6,5x8,6x8,6x9) for D70-S model -// CK-D746-U for D70-U model +// Also CK-D746-U for D70-U model // CK-D820 (6x8) for D80-S model // D90 can use _all_ of these types except for the -U! diff --git a/backend_mitsu.h b/backend_mitsu.h index 4ad45f2..f6f7a8f 100644 --- a/backend_mitsu.h +++ b/backend_mitsu.h @@ -85,7 +85,7 @@ typedef uint8_t (*M1_CalcOpRateGlossFN)(uint16_t rows, uint16_t cols); #define REQUIRED_LIB_APIVERSION 6 -#define LIBMITSU_VER "0.05" +#define LIBMITSU_VER "0.06" /* Image processing library function prototypes */ #define LIB_NAME_RE "libMitsuD70ImageReProcess" DLL_SUFFIX