Appendix D
Up

 

Home
Hardware
Software
Shareware
Manuals
Miscellaneous

Troubleshooting and Maintenance


If you have problems operating your TRS-80 MC-10, check the following table of symptoms.  Hopefully, you'll find the cure as well.

Symptom

Cure

The OK prompt doesn't appear when you turn the Computer on
  1. No AC power.  Check the power cord connection
  2. Incorrect power-up sequence.  All accessories should be turned ON before you turn the Computer ON
  3. Accessory device is not connected properly.  Check connections
  4. Your TV screen needs adjustment. Check the Contrast, Brightness, or fine tuning controls
  5. Antenna Switch should be set to COMPUTER, not TV
Poor reception or fuzzy display
  1. Be sure TV is set on the proper channel display (3 or 4-whichever gives the best display)
  2. Check the antenna connections to be sure they are connected both securely and properly
Your cassette program won't load
  1. Improper cassette connections.  Check connection instructions in the cassette owner's manual
  2. Cassette volume is too low or high. Check the recorder's volume control
  3. Information on tape may have been garbled due to electricity discharge, magnetic field, or tape deterioration. Try to load the duplicate copy, if you have one

The Computer "hangs up" during normal operations, requiring RESET or Power-off/on.

  1. Fluctuations in the AC supply.  See AC Power Sources.
  2. Defective or improperly installed connector. Check all connection cables to see that they are securely attached and that they are not frayed or broken

  3. Programming error. Re-check the program

"Ghosts" or mixed Computer and TV reception
  1. Try using the other TV channel (3 or 4)

AC Power Sources

Computers are sensitive to fluctuations in the power supply at the wall socket. This is rarely a problem unless you are operating in the vicinity of heavy electrical machinery. The power source may also be unstable if some appliance or office machine in the vicinity has a defective switch which arcs when turned on or off.

If the fluctuations are severe, you may need to take some or all of the following steps:

  • Install bypass or isolation devices in the problem-causing devices.
  • Repair or replace any defective (arcing) switches on lights or appliances.
  • Install a separate power-line for the Computer.
  • Install a special line filter designed for computers and other sensitive electronic equipment.

Power line problems are rare and many times can be prevented by proper choice of installation location. The more complex the system and the more serious the application, the more consideration you should give to providing an ideal power source for your computer.

Maintenance

Your MC-10 requires little maintenance. It's a good idea to keep it clean and free of dust build-up. This is especially important for the keyboard.

If you need to clean the Computer case, use a damp, lint-free cloth.

The accessory devices (cassette recorder, printer, etc.) may require more maintenance. Check the owner's manual for each accessory in your system.

Color Adjustment Test

For the purpose of adjustment, as well as example, the following program will give you a chance to view the available spectrum.

Start Micro Color BASIC and type in the program. Don't worry about spacing, but type everything else exactly as listed below:

NEW [ENTER]
5 FOR X=0 TO 63 [ENTER]
10 FOR Y=0 TO 31 [ENTER]
15 C=INT(X/8+1) [ENTER]
20 SET(X,Y,C) [ENTER]
25 NEXT Y,X [ENTER]
30 GOTO 30 [ENTER]
To check for typing errors, list the program by typing:
LIST [ENTER]

It should look like this:

5 FOR X=0 TO 63
10 FOR Y=0 TO 31
15 C=INT(X/8+1)
20 SET(X,Y,C)
25 NEXT Y,X
30 GOTO 30

If you find any mistakes, simply re-type the line, then type

RUN [ENTER]

Your TV should display eight color-bars (in the order of green, yellow, blue, red, buff, cyan, magenta, and orange) on a black background.

You can now use your TV color adjustment control to adjust the colors to their proper hue.

Press [BREAK] to stop the program.

Use the preceding test to adjust your TV for the best possible spread of colors. But remember, the range of adjustment will vary, depending on the condition and quality of your TV set.

Video Centering Test

Type in the following to insure your TV display is centered correctly on the screen.

NEW [ENTER]
10 CLS [ENTER]
15 FOR X=0 TO 63 [ENTER]
20 Y=15 [ENTER]
25 RESET(X,Y) [ENTER]
30 NEXT X [ENTER]
35 FOR Y=0 TO 31 [ENTER]
40 X=31 [ENTER]
45 RESET(X,Y) [ENTER]
50 NEXT Y [ENTER]
55 GOTO 55 [ENTER]

To check for typing errors, type:

LIST [ENTER]

It should look like this:

10 CLS
15 FOR X=0 TO 63
20 Y=15
25 RESET(X,Y)
30 NEXT X
35 FOR Y=0 TO 31
40 X=31
45 RESET(X,Y)
50 NEXT Y
55 GOTO 55

If you find any mistakes, simply re-type the line, then type

RUN [ENTER]

You should have a green background, surrounded by black, with a horizontal and vertical line (both black) intersecting in the center of the screen. You can now adjust your set until the display is centered.

Press [BREAK] to stop the program.

The MC-10 generates a rectangular image designed to fill most of the TV's screen. Use the horizontal and vertical centering controls on your TV to center this image as much as possible.

Don't worry if you can't get a perfectly centered image, or if you notice a slight distortion in certain areas of your TV screen. These minor variations depend on the condition of you TV set. If they are severe, consult a qualified TV service technician.

Sound Demonstration

The following program will output the entire frequency range (codes 0-255) Micro Color BASIC can produce.

NEW [ENTER]
10 FOR X=1 TO 255 [ENTER]
20 SOUND X,1 [ENTER]
30 NEXT X [ENTER]

To check for typing errors, type:

LIST [ENTER]

It should look like this:

10 FOR X=1 TO 255
20 SOUND X,1
30 NEXT X

If you find any ERRORS, simply re-type the line. Set your TV volume to a normal level, and type:

RUN [ENTER]