[sane-devel] Snapscan: Agfa Snapscan 1236U

Klaas Freitag freitag at suse.de
Fri Sep 14 09:24:27 BST 2001


Hello,

is there any reason why the 1.0.5 snapscan backend does not support
the Agfa Snapscan 1236_U_ (the USB versions of the 1236S ? )from out
of the box ?

I attached a very tiny patch against 1.0.5 which makes it working. The
scanner does the job very well but it takes a relativ long time to set
parameter like the scan window, resolution etc. in the frontend. The
scan speed is OK.

The scanner seems to be a bargain at the moment (at least in germany),
maybe to clear stocks for the newer e-modells ? I had to pay 150 DM for it.

Regards,

Klaas


-- 
 ----------------------------------------------------------------------
 Freunde, nur Mut! Lächelt und sprecht:                  Klaas Freitag
 Die Menschen sind gut, bloss die   *             mail freitag at suse.de
 Leute sind schlecht. - E. Kaestner               SuSE Labs, Nuernberg
 ----------------------------------------------------------------------
-------------- next part --------------
--- backend/snapscan.c
+++ backend/snapscan.c	2001/09/11 13:13:29
@@ -455,6 +455,7 @@
     case SNAPSCAN310:
     case SNAPSCAN600:
     case SNAPSCAN1236S:
+    case SNAPSCAN1236U:
     case SNAPSCAN1212U:
     case SNAPSCANE50:
     case VUEGO310S:		/* WG changed */
@@ -485,6 +486,7 @@
     case SNAPSCAN310:
     case SNAPSCAN600:
     case SNAPSCAN1236S:
+    case SNAPSCAN1236U:
     case SNAPSCAN1212U:
     case SNAPSCANE50:
     case VUEGO310S:		/* WG changed */
@@ -1107,7 +1109,7 @@
              me,
              vendor,
              model,
-             "AGFA SnapScan 300, 310, 600 or 1236s, "
+             "AGFA SnapScan 300, 310, 600 or 1236s (or u), "
              "Acer VUEGO 300, 310S, 610S, or 610plus, "
              "Acer PRISA model 620S");
 
@@ -2506,7 +2508,10 @@
 	||
 	pss->pdev->model == SNAPSCANE50
 	||
-	pss->pdev->model == SNAPSCAN1236S) /* Seb added */
+	pss->pdev->model == SNAPSCAN1236S  /* Seb added */
+        ||
+        pss->pdev->model == SNAPSCAN1236U) /* Klaas added */
+
     {
         status = SANE_STATUS_UNSUPPORTED;
     }
--- backend/snapscan.h
+++ backend/snapscan.h	2001/09/11 13:06:43
@@ -80,6 +80,7 @@
     SNAPSCAN310,		/* the SnapScan 310 */
     SNAPSCAN600,		/* the SnapScan 600 */
     SNAPSCAN1236S,		/* the SnapScan 1236s */
+    SNAPSCAN1236U,              /* the SnapScan 1236U */
     SNAPSCAN1212U,
     SNAPSCANE50,		/* SnapScan e20/e40/e50 */
     ACER300F,
@@ -110,6 +111,7 @@
     {"SNAPSCAN e50",          	SNAPSCANE50},
     {"SNAPSCAN e40",          	SNAPSCANE50},
     {"SNAPSCAN 1236",		SNAPSCAN1236S},
+    {"SNAPSCAN 1236U",          SNAPSCAN1236U},
     {"SNAPSCAN 310",		SNAPSCAN310},
     {"SNAPSCAN 600",		SNAPSCAN600},
     {"SnapScan",		SNAPSCAN300},


More information about the sane-devel mailing list