From 7a2e8d52f460190ab55f04a89e70517e3e01b248 Mon Sep 17 00:00:00 2001 From: Ralph Little Date: Mon, 28 Oct 2024 09:16:25 -0700 Subject: [PATCH] pixma: Added MF650 series. --- backend/pixma/pixma_imageclass.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/pixma/pixma_imageclass.c b/backend/pixma/pixma_imageclass.c index c750b20e1..2f43fc3ad 100644 --- a/backend/pixma/pixma_imageclass.c +++ b/backend/pixma/pixma_imageclass.c @@ -122,7 +122,7 @@ #define MF640_PID 0x27fe #define MF645_PID 0x27fd #define MF440_PID 0x2823 - +#define MF650_PID 0x287b enum iclass_state_t { @@ -994,6 +994,7 @@ const pixma_config_t pixma_iclass_devices[] = { DEV ("Canon i-SENSYS MF750 Series", "MF750C", MF750_PID, 600, 300, 640, 1050, PIXMA_CAP_ADFDUP), DEV ("Canon i-SENSYS MF640 Series", "MF642C/643C/644C", MF640_PID, 600, 0, 640, 1050, PIXMA_CAP_ADFDUP), DEV ("Canon i-SENSYS MF645C", "MF645C", MF645_PID, 600, 0, 637, 877, PIXMA_CAP_ADFDUP), /* max. w = 216mm */ + DEV ("Canon i-SENSYS MF650C", "MF650C", MF650_PID, 600, 0, 637, 1050, PIXMA_CAP_ADFDUP), /* max. w = 216mm */ DEV ("Canon i-SENSYS MF440 Series", "MF440", MF440_PID, 600, 300, 637, 877, PIXMA_CAP_ADFDUP), DEV (NULL, NULL, 0, 0, 0, 0, 0, 0) };