From: Stefan K. B. <sf...@co...> - 2000-02-20 18:22:13
|
Robert L Krawitz wrote: > > Date: Sat, 19 Feb 2000 19:49:53 +0100 > From: "Stefan K. Berg" <sf...@co...> > > Robert L Krawitz wrote: > > > > In print-escp2.c, look for this: > > > > /* 4: Stylus Color 800 */ > > (MODEL_PAPER_SMALL | MODEL_IMAGEABLE_600 | MODEL_INIT_600 > > | MODEL_HASBLACK_YES | MODEL_6COLOR_NO | MODEL_720DPI_DEFAULT > > | MODEL_VARIABLE_NORMAL | MODEL_MAKE_XRES(720) > > | MODEL_1440DPI_YES | MODEL_MAKE_NOZZLES(64) | MODEL_MAKE_SEPARATION(8)), > > > > It's around line 584 on the current mainline. Try change > > > > MODEL_MAKE_NOZZLES(64) > > > > to > > > > MODEL_MAKE_NOZZLES(48) > > > > or if that doesn't work > > > > MODEL_MAKE_NOZZLES(32) > > > > If that helps, then my information about how many nozzles the 800 has > > is incorrect (which is possible). > > Just tried this with the mainline code, but the behavior really doesn't > change. Still just numerous paper feeds. > > Could you try a couple of other things? > > 1) Try changing MODEL_MAKE_NOZZLES(64) to MODEL_MAKE_NOZZLES(24). > > 2) At line 2447, the following appears: > > fprintf(prn, "\033.%c%c%c%c", 1, 8 * 5, 5, > > Please change the "8 * 5" to "5" (not in quotes, of course). > > 3) At line 2407, the following appears: > > if (escp2_has_cap(model, MODEL_1440DPI_MASK, MODEL_1440DPI_YES)) > > Please change it to > > if (escp2_has_cap(model, MODEL_1440DPI_MASK, MODEL_1440DPI_YES) && > ydpi > 720) > > Let me know if anything changes in softweave mode. Yes indeed, this time I get output of about the right size but it looks very garbled. I've scanned the output of 720 DPI Softweave mode, which you will find at http://home.swipnet.se/consultron/scan1.gif (96 kB). The black ink has bled through my inkjet paper. Also, the printer made some strange noises when printing this - a quiet but noticable "whooshing" sound from time to time. Setting MODEL_HASBLACK_NO without applying your modifications above did nothing, I still got paper feeds. Setting MODEL_HASBLACK_NO with the above changes gave me rows of color each with different distances of each other but never less than 0.5 inch apart. |