Mustek MFC-08000CZ suffers damage with y_range.max=292.0

Angel Orille-Franz (angel@ee1.upc.es)
Tue, 24 Nov 1998 23:57:42 +0100

Hello,

I want to inform you that with the following settings in
"sane-1.00/backend/mustek.c"
the Mustek MFC-08000CZ scanner breaks apart in thousand peaces without
having time to shut it down:

else if (strncmp (model_name, "MFC-08000CZ", 11) == 0)
{
dev->x_range.max = SANE_FIX (220.0); /* measured */
dev->y_range.max = SANE_FIX (292.0); /* measured */
dev->dpi_range.max = SANE_FIX (800);

Though, it was interesting to screw it several times together ;) ,
I would like to suggest to modify these lines in order to prevent further
hardware breakdowns to :

else if (strncmp (model_name, "MFC-08000CZ", 11) == 0)
{
dev->x_range.max = SANE_FIX (220.0); /* measured */
dev->y_range.max = SANE_FIX (284.0); /* experienced */
dev->dpi_range.max = SANE_FIX (800);
}

(Each value > 284.0 leads to loose one or more sprockets in my scanner ;) - I
think that
the differences between the values is due to great production tolerances)

Thank you very much for your attention!

Greetings,
Angel Orille

--
Source code, list archive, and docs: http://www.mostang.com/sane/
To unsubscribe: echo unsubscribe sane-devel | mail majordomo@mostang.com