Buy Magic Mushrooms
Magic Mushroom Gummies Best Amanita Muscaria Gummies
Jan 062013
 

TRS80 + Teensy

Thirty years ago in 1983 the first tablet computer was released: the Tandy / RadioShack TRS-80 Model 100. It ran for weeks on four AA batteries and gathered quite a following. Despite the $1099 ($1399 with extra 8-KB of memory) introductory price tag, features like the built in 300 baud modem with acoustic couplers made them very popular with reporters in the field, and the built-in BASIC programming language (written by Bill Gates himself!) made them easy to adapt into various custom applications. Over six million were produced and as a result, inexpensive, used Model 100s are readily available now. Amazingly many of them still work perfectly and there is a somewhat active Club100 fan club.

TRS-80 Model 100 motherboard versus Teensy++ version

I bought one that was non-functional for $20 with the goal of replacing the 80C85 motherboard with a more modern AVR or ARM CPU. While this particular motherboard had failed sometime ago due to bad capacitors, the LCD and keyboard were in perfect working order. Thanks to the combination of the age of the design, the system’s low original clock speed (2.4 MHz) and its 5 V logic make it simple for modern hardware to drive. Moore’s Law also means that the entire motherboard can be shrunk into a PCB with almost zero chips other than the MCU. Read on for what is involved in building a new brain for your Model 100.

LCD Module

Dead bug LCD driver

The 240×64 LCD module has a 5×2 array of ten Hitachi HD44102 display drivers, each of which drive a 50×32 rectangle on the module (the last two only have 40 columns connected). These are pure bitmap displays — there is no character generator hardware. Intriguingly, the designers cut out square holes in the circuit board and mounted half of the chips inverted “dead bug” style inside of the board. This simplified the circuit layout, as you can see from the parallel traces between the pairs of chips.


The 30-pin header provides ten individual chip select lines, one for each driver, and an 8-bit wide data bus plus a variety of other control lines. I could drive the chip select with a decade counter, but that would require additional components and complicate the circuit board. Instead I use the entire PORTF and a few additional pins to interface with it.

Teensy++ TRS-80 motherboard

The breadboard required 15 traces to be cut so that I could solder the 30 pin connector to it, and since the connector is now partially covering the topside of the board, there are wires on the bottom as well. White are data lines, brown are chip select and green are other signaling.

LCD Charge pump

The additional complication is that these older LCDs require significant negative bias voltage on the VEE pin to display an image. Since I wanted to run it off of USB or AAA batteries, I used a two diode, two capacitor charge pump and one of the many PWM outputs to generate the negative voltage. The analog contrast voltage on the V2 pin had been adjusted with a potentiometer in the original design; I’m using a second PWM output via a low-pass filter capacitor to generate it via software instead.

At boot time the software runs the lcd_init() function to configure all of the pins, configure the PWM outputs, and then send commands to each of the ten drivers to bring them up in 8-bit mode, page 0. They come up with random garbage, so it is important to clear the contents before proceding.

Fonts

5x7 font

Since the LCD does not have a character generator, we have to generate our own fonts. The display is 240×64 and the normal “small” font is a 5×7 with a 6×8 bounding box. This gives us the traditional 40×8 resolution. My font is stored in program memory in font.c, one byte per column. Underline and reverse video flags are supported, although scrolling has not yet been implemented.

Another reason for using an 8 pixel vertical bounding box is the efficiency of writing to the LCD. The display drivers accept an 8 pixel tall write command, aligned on an 8 pixel boundary. If the vertical portion of the font spans this boundary we need to either keep a 16 KB frame buffer to redraw the additional portions (hard to do with only 4 KB of SRAM), or spend extra time to read/modify/write the pixels from the display drivers. This might be implemented in a later version of my code.

Line drawing using Bresenham’s algorithm is possible, but will require RMW as well. I haven’t implemented it yet, but it was present in the Microsoft BASIC on the original device.

Keyboard


The keyboard is a normal matrix design, with marvelous mechanical keyswitches instead of rubber dome membranes, and with the Control key in the right place. It’s not quite a nice as a Model M buckling spring, but still very comfortable for extended typing. The downside is that it lacks several modern common programming characters, such as ~, |, { and }. Trigraphs are one option, as are using the CODE modifier key to select them. Other oddities are that Capslock and Numlock are a mechanically locking keys, and the Left and right shift do not have separate scancodes

5x7 font test

My original design shared the data port between the LCD and the keyboard rows, but this lead to garbage on the screen depending on which keys were held down while the LCD commands were being written. My new design uses dedicates PORTA to the keyboard rows, while it continues to share the 9 column lines with the LCD. The source in keyboard.c has been updated.

To read the keyboard, keyboard_init() drives all of the columns high and activates pull ups on all of the rows. The scan routine then drives one column line low and reads all of the rows to see if any of them are being driven low against the pullup resistors. Currently only one key is returned at a time and there is no software debouncing — the original design debounced in hardware on the mainboard. Both of these could be future improvements.

VT100 emulation

TRS80 Model 100 Retro hackaday

I’ve implemented enough of the VT100 command set in vt100.c to allow vi and lynx to run. The escape code parser is not even close to compliant and could stand for a rigorous state machine implementation. There are lots of documents online that list various subsets of the codes; I used umich’s vt100.codes.txt. Click the above image for a video of the upgraded Model 100 in action.

Future work?

New CPU for a Tandy Model 100

My initial version was on a breadboard and now it is on a more permanent protoboard, but designing a proper PCB would be a good step. Something that can mount inside the original case using existing mounting holes and run off batteries would be ideal.

Teensy++ controller for a TRS80 Model 100

Currently the only function I have implemented in the firmware is a USB serial terminal. The real Model 100 had a text editor and a programming language, in addition to a (non-VT100) serial monitor and an analog modem. Porting busybox vi to the AVR is doable now that there is a VT100 emulator, and using something like pForth for the interactive programming wouldn’t take much code space. It would be a very fun project to write a 300 baud software modem to drive the acoustic couplers, but where would you find a phone to use it with?


Adding MicroSD card support to store documents would expand the space available from the original 32 KB to 32 GB, a minor factor of one million. Plus the SD cards are non-volatile, so all of your work wouldn’t be lost when the batteries die. Another option would be to add a Raspberry Pi (or maybe Bunnie’s awesome homemade laptop) into the case, using the Teensy to act as a serial console for it since the Pi lacks sufficient IO and 5V tolerance.

If you’re interested in upgrading your Model 100, here is my source code and schematics for the board. Perhaps these devices will have another thirty years of life left in them with a few minor upgrades…

 Posted by at 7:44 pm

  12 Responses to “TRS-80 Model 100 upgrade”

Comments (11) Pingbacks (1)
  1. this is awesome. i have the m100 and still use it from time to time when i need to drive a stepper or anything that needs a parallel port to drive it

    how compatable with the original are you aiming for?

  2. This is great, I have a model 100 but the screen is dead, I would love to replace it with a more modern one but the physical size is tough to find a modern screen that will fit.

  3. Awesome, I’ve always wanted to do this!
    I did a video teardown of a Model 100 here: http://www.youtube.com/watch?v=Prl6D7bqQo8

  4. I love everything about this. Thank You.

  5. This is one of the coolest projects i’ve seen good job.

  6. Very nice job. Thanx

  7. Very cool. You know what you’re doing for sure. To comment on your suspicion of the bad caps I offer the following:

    I have 2 Model 100’s and a NADS box. One of the computers hadn’t been turned on in over a year and when I powered it up the LCD display was erratic and finally went blank. After turning it on and off several times all the files I had stored were wiped out. I opened the thing up to look for corrosion etc. but found none (I had replaced the backup battery some time ago). I buttoned it back up and have, for several days, powered it up for a few minutes at a time. After several days it has become stable. I suspect one or more of the electrolytic capacitors had developed deformed plates through non use and the gradual reforming of them has seemed to work. I hope this easy fix may help others with this type of problem.

  8. By the way, if you have a working Model 100/102/200, you can use it as a terminal for vi, emacs and w3m without any modifications. Either use John Hoegerhuis’ excellent HTERM or try my UNIX terminfo with the builtin TELCOM program.

Leave a Reply to Max Cancel reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)