diff options
Diffstat (limited to 'backend/pixma_mp150.c')
-rw-r--r-- | backend/pixma_mp150.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/backend/pixma_mp150.c b/backend/pixma_mp150.c index 79711fe..4f8b232 100644 --- a/backend/pixma_mp150.c +++ b/backend/pixma_mp150.c @@ -227,6 +227,7 @@ /* 2015 new devices (untested) */ #define MX490_PID 0x1787 #define E480_PID 0x1789 +#define MG3600_PID 0x178a /* Generation 4 XML messages that encapsulates the Pixma protocol messages */ @@ -1154,7 +1155,8 @@ post_process_image_data (pixma_t * s, pixma_imagebuf_t * ib) && s->cfg->pid != MG5500_PID && s->cfg->pid != MG6300_PID && s->cfg->pid != MG6400_PID - && s->cfg->pid != MG7100_PID) + && s->cfg->pid != MG7100_PID + && s->cfg->pid != MG7500_PID) reorder_pixels (mp->linebuf, sptr, c, n, m, s->param->wx, line_size); /* Crop line to selected borders */ @@ -1825,6 +1827,7 @@ const pixma_config_t pixma_mp150_devices[] = { /* Latest devices (2015) Generation 4 CIS */ DEVICE ("Canon PIXMA MX490 Series", "MX490", MX490_PID, 600, 0, 0, 638, 1050, PIXMA_CAP_CIS | PIXMA_CAP_ADF), DEVICE ("Canon PIXMA E480 Series", "E480", E480_PID, 600, 0, 0, 638, 1050, PIXMA_CAP_CIS | PIXMA_CAP_ADF), + DEVICE ("Canon PIXMA MG3600 Series", "MG3600", MG3600_PID, 1200, 0, 0, 638, 877, PIXMA_CAP_CIS), END_OF_DEVICE_LIST }; |