Lines Matching defs:level

70    2004-02-01   Added D7 function level as copy of D1 for CX-6400
98 Fixed problem with older B3 level SCSI scanners that do
125 Changed debug level for sense handler from 0 to 2
140 Finally fixed the TPU problem with B4 level scanners
147 This caused problems with older (B4 level) scanners when a TPU
236 2000-03-19 Fixed problem with A4 level devices - they use the
249 function levels. The level > n does not work anymore with
252 2000-02-23 First stab at level D1 support, also added a test
396 /* there is also a function level "A5", which I'm ignoring here until somebody can
397 convince me that this is still needed. The A5 level was for the GT-300, which
640 * The A and B level scanners work differently than the D level scanners, therefore
813 u_char level;
1470 * is reported as a warning (only visible if debug level is set to 10 or greater) -
1474 * "warming up" code, so it's not a problem for B3 level scanners, that don't handle
2047 s->hw->cmd = &epson_cmd[EPSON_LEVEL_DEFAULT]; /* default function level */
2849 if (s->hw->level >= 7)
2851 else if (s->hw->level >= 4)
2916 * special handling for D1 function level - at this time I'm not
2917 * testing for D1, I'm just assuming that all D level scanners will
2918 * behave the same way. This has to be confirmed with the next D-level
2921 if (s->hw->cmd->level[0] == 'D')
3100 s->opt[OPT_CCT_1].desc = SANE_I18N ("Controls green level");
3101 s->opt[OPT_CCT_2].desc = SANE_I18N ("Adds to red based on green level");
3102 s->opt[OPT_CCT_3].desc = SANE_I18N ("Adds to blue based on green level");
3103 s->opt[OPT_CCT_4].desc = SANE_I18N ("Adds to green based on red level");
3104 s->opt[OPT_CCT_5].desc = SANE_I18N ("Controls red level");
3105 s->opt[OPT_CCT_6].desc = SANE_I18N ("Adds to blue based on red level");
3106 s->opt[OPT_CCT_7].desc = SANE_I18N ("Adds to green based on blue level");
3107 s->opt[OPT_CCT_8].desc = SANE_I18N ("Adds to red based on blue level");
3108 s->opt[OPT_CCT_9].desc = SANE_I18N ("Controls blue level");
4503 if ((s->hw->cmd->level[0] == 'D' ||
4504 (s->hw->cmd->level[0] == 'B' && s->hw->level >= 5)) &&
4639 if (s->hw->cmd->level[0] == 'D')
4642 * The D1 level has only the two user defined gamma
4899 * color mode. The D1 level requires it, we are however only testing for
4900 * 'D' and not for the actual numeric level.
4903 if (((s->hw->cmd->level[0] == 'B') &&
4904 ((s->hw->level >= 5) || ((s->hw->level >= 4) &&
4906 || (s->hw->cmd->level[0] == 'D'))
4924 * for bi-level scanning. If a bit depth of 1 is selected, then
4927 if (s->hw->cmd->level[0] == 'D')
5890 DBG (1, "level %3c 0x%02x\n", ident->level, ident->level);
5898 ident->level = force[1];
5901 DBG (1, "level %3c 0x%02x\n", ident->level, ident->level);
5926 * set command type and level.
5935 sprintf(type_level, "%c%c", ident->type, ident->level);
5936 if (!strncmp (type_level, epson_cmd[n].level, 2))
5947 DBG (1, "Unknown type %c or level %c, using %s\n",
5948 ident->type, ident->level, dev->cmd->level);
5951 s->hw->level = dev->cmd->level[1] - '0';
5952 } /* set command type and level */