If the 25-pin side follows standard RS-232 convention,
pin 1 will be chasis ground, pin 2 transmit data, pin 3
receive data, and pin 7 signal ground. The meaning of 2 & 3
may be reversed, depending if it's wired to look like a DTE
(PC port) or DCE (modem).
As someone pointed out earlier, the...
4,013.43 (0x240D) PC_DEV_FAULT_ GEAR_GRIND. During power-on initialization, the engine is unable to disengage the process motor. Prior to declaring this fault, the engine has attempted to move the process motor through enough revolutions to disengage the head tilt mechanism, but the motor...
Terry,
I don't have a cable, but others in this forum are trying to find one. Can you make the disk available in the expectation that someone will come up with a cable?
-Bill
(From the Service Manual)
4,013.43 (0x240D) PC_DEV_FAULT_ GEAR_GRIND: During power-on initialization, the engine is unable to disengage the process motor. Prior to declaring this fault, the engine has attempted to move the process motor through enough revolutions to disengage the head tilt...
Ivo123,
Send me an email address and I'll email you relevent
section of the service manual that has the disassembly instructions.
-Bill (billr@neocat.org)
The leading uniq part of the filename is created here:
my $uniq=time().'-'.$$;
which is the current time in seconds since Jan 1 1970, followed by a '-', followed by the current process id (the $$).
To keep the filename the same, just pick a name and assign it to the $filename variable and...
4,005.44 (0x2405): PC_DEV_FAULT_DM_CAM_ERR Failure positioning drum maintenance cam during a drum maintenance cycle: check drum maintenance cam solenoid, clutch, home sensor, and related hardware.
-Bill
There may be more efficient ways of doing it, but one way is:
my (@list, $sum, $count, $avg);
while (<>) {
@list = split /::-::/;
$count = scalar @list;
$sum = 0;
foreach (@list) {
$sum += $_;
}
print "$count entries, average = ", $sum / $count, "\n";
}...
According to the service manual your error is:
13,004.43 (0x6c04): TCH_JS_LEFT_ SLOW The left jetstack heater is not heating at all, or is not heating as quickly as it should. Replace the printhead.
As with other problems, you can always try disassembling the major component (e.g., printhead in...
This error is listed as:
15,004.45 (0x7c04): TCD_ THERMISTOR_ SLOW The drum heater is not heating at all, or is not heating as quickly as it should. Check for open connection or open thermistor in power supply.
This happened to me recently. In my case, it was an open thermal fuse in the drum...
I'm not sure exactly what's wrong with your script, but the approach seems overly complicated to me. Try this version. It appears to work on the simple tests I ran.
-Bill
#!/usr/bin/perl
open FH1, "<le_spoiler_en.txt" || die "can't open card file";
my $prevfield;
my...
I'm replying to my own query for the archives. Thanks to everyone for suggestions, especially TMart. The actual cause of the error message turned out to be an open thermal fuse in the drum heater assembly.
I removed the drum heater, took it apart and replaced the thermal fuse for $1.99 +...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.