Service manual
if (result[i] < 0) result[i] = 0;
if (result[i] > 2.0) printf ("\n*** Resistance for Channel %u HI path is 2.0 Ohms
*** %If", i, result[i]);
}
printf ("\ n\ nMeasurements complete for Channels 00-47 and 90-92 HI");
printf ("\ nPress ENTER for Channels 90-92 LO measurements");
getchar ();
/*..........Measure Channels 90-92 LO..........*/
iprintf (id, "*RST\ n");
printf ("\ n\ n\ nChannels 90-92 LO measurements");
printf ("\ n\ n 1. Connect DMM Sense and Input HI leads to COMMON LO.");
printf ("\ n 2. Connect DMM Sense and Input LO leads to VOLTAGE SENSE
LO.");
printf ("\ n 3. Press ENTER when connections are complete.");
getchar ();
j = 100;
for (i = 0;i <= 2; i++)
{
iprintf (id, "CLOS (@%u)\ n", j);
iprintf (dm, "TRIG SGL\ n");
iscanf (dm, "%If", &value1[i][1]);
iscanf (dm, "%t", cr);
iprintf (id, "OPEN (@%u)\ n", i*8);
result1[i][1] = value1[i][1] - R[42];
if (resultl[i][1] < 0) resultl[i][1] = 0;
if (resultl[i][1] > 2.0) printf ("\n*** Resistance for Channel %u LO Relay is 2.0
Ohms", i+ 90);
j = j + 8;
}
printf ("\ n\ nMeasurements complete for Channels 90-92 LO.");
printf ("\ nPress ENTER for Channel 90-92 G measurements.");
getchar ();
/*..........Measure Channels 90-92 G..........*/
printf ("\ n\ n\ nChannels 90-92 G measurements");
printf ("\ n\ n 1. Connect DMM Sense and Input HI leads to COMMON G.");
printf ("\ n 2. Connect DMM Sense and Input LO leads to VOLTAGE SENSE G.");
printf ("\ n 3. Press ENTER when connections are complete.");
getchar ();
j = 100;
A-4 Example C Programs Appendix A