|
Troubleshooting and MaintenanceIf you have problems operating your TRS-80 MC-10, check the following table of symptoms. Hopefully, you'll find the cure as well.
AC Power SourcesComputers 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:
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. MaintenanceYour 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 TestFor 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 TestType 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 DemonstrationThe 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] |