From d8242a49a5d78e5c94494744d5fe39d87289f913 Mon Sep 17 00:00:00 2001 From: Rolf Bensch Date: Fri, 15 Mar 2013 22:39:54 +0100 Subject: [PATCH] new scanner Canon Pixma MG6300 --- backend/pixma_mp150.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/pixma_mp150.c b/backend/pixma_mp150.c index 376623c5f..de0bc2580 100644 --- a/backend/pixma_mp150.c +++ b/backend/pixma_mp150.c @@ -186,6 +186,9 @@ #define E600_PID 0x175A #define MG4200_PID 0x1763 +/* 2013 new devices (untested) */ +#define MG6300_PID 0x1765 + /* Generation 4 XML messages that encapsulates the Pixma protocol messages */ #define XML_START_1 \ @@ -1708,5 +1711,8 @@ const pixma_config_t pixma_mp150_devices[] = { DEVICE ("Canon PIXMA E600 Series", "E600", E600_PID, 1200, 0, 0, 638, 877, PIXMA_CAP_CIS | PIXMA_CAP_ADF), DEVICE ("Canon PIXMA MG4200", "MG4200", MG4200_PID, 1200, 0, 0, 638, 877, PIXMA_CAP_CIS), + /* Latest devices (2013) Generation 4 CIS */ + DEVICE ("Canon PIXMA MG6300", "MG6300", MG6300_PID, 2400, 0, 0, 638, 877, PIXMA_CAP_CIS), + END_OF_DEVICE_LIST };