Simple Arduino-based EEPROM programmer
Go to file
per1234 642f540df2 Move sketch to appropriately named subfolder
The Arduino IDE requires that a sketch be located in a folder of the same name. Although the name of the repository does match the sketch name, when GitHub's popular Clone or download > Download ZIP feature is used to download the contents of a repository the branch/release/commit name is appended to the folder name, causing a mismatch.

When opening a file that does not meet this sketch/folder name matching requirement the Arduino IDE presents a dialog:

The file "TommyPROM.ino" needs to be inside a sketch folder named "TommyPROM".
Create this folder, move the file, and continue?

After clicking "OK" the Arduino IDE currently moves only the file TommyPROM.ino to the new folder, leaving behind the other source files. This causes compilation of the sketch to fail:

TommyPROM-master\TommyPROM\TommyPROM.ino:13:23: fatal error: Configure.h: No such file or directory

 #include "Configure.h"
2018-05-11 00:58:55 -07:00
TommyPROM Move sketch to appropriately named subfolder 2018-05-11 00:58:55 -07:00
docs Split code and add 8755 support 2018-05-10 23:43:31 -04:00
hardware initial commit 2017-02-27 22:42:21 -05:00
README.md more README details 2017-02-27 23:11:14 -05:00

README.md

TommyPROM - An Arduino-based EEPROM programmer

This is a simple EEPROM reader and programmer that can be assembled using an Arduino and a few additional parts. It has been sucessfully built using the Arduino UNO, Micro, and Nano models.

The code is specific to the 28C256 32Kx8 EEPROM, but it would work, with some pin changes with other 5V EEPROMS as well. The PROM-specific code is fairly modular and would be easily adapted. Larger PROMs can be read or written in 64K chunks. Many 5V chips, including UV EPROMs, such as the 2716, can be read with this hardware.

Features include:

  • Simple hardware design that can be assembled on a breadboard.
  • ROM images transfers using XMODEM - no special host client needed.
  • Support for fast block EEPROM writes - a 32K chip will program is just a few seconds.

The project was inspired by the MEEPROMMER programmer.

TommyPROM Nano Hardware

Hardware Design

The hardware uses an Arduino to write data and toggle to control lines with the appropriate timing to access the PROM. A pair of 74LS164 serial to parallel shift registers latch the address lines. Use of the shift registers allows the Arduino to control up to 16 address lines using only 3 output ports.

The basic circuit is as follows:

  • Pins D2..D9 are wired to the data lines on the target PROM.
  • Pins A0..A2 are wired to the WE, CE, and OE control lines on the target PROM.
  • Pins A3..A5 control shift registers to produce the address lines.

The two shift registers can produce a sixteen bit address, although the 28C256 only needs 15 addresses. Chips larger than 64K can be supported by manually tying the additional lines high or low and working with 64K blocks at a time. Additional pins on the Arduino could also be directly tied to additional address lines to do bank selecting.

TommyPROM Nano Schematic

Software Design

The software is designed around several major blocks and classes. It would be cleaner to break the classes out into individual files, but they are kept together so that the entire project can be easily loaded as a simple Arduino project.

CommandStatus class

This is used to store the execution status of the previous command. It allows the status to be saved (and recalled using the / command) instead of just printing the status at the completion of the command. This was important for debugging XMODEM problems, because the error messages would get eaten as part of the transfer. The class has utility beyond XMODEM because it includes formatting that releives each command from having to build paramterized error messages with multiple prints.

PromDevice class

The PromDevice class encapsulates all of the communication between the Arduino and the target PROM device. Although the existing code is specific to the 28C256, the constructor has parameters that easily support other chips. The current design has been used to read other chips, including 2764 and 29c040 EPROMs.

The PromDevice class accesses the data bus using direct port writes instead of 8 individual pin accesses. This greatly increases performance, but it makes the code dependent on the particular flavor of Arduino being used. The code can currently be compiled for Uno, Nano, or Micro versions of Arduino hardware.

Xmodem class

The Xmodem class implements the communications protocols needed to do XMODEM CRC transmit and receive. It calls directly into the PROM read and write code, to the complete files are never stored during the transfer.

CLI code and command implementation

This code parses input commands and parameters and executes the commands.

A compile-time switch enables additional debug commands that are not needed in normal operation, but are very useful to verify proper operation of the hardware.

Operation

TommyPROM Screenshot

To use the programmer, connect the Arduino USB to the host computer and run a terminal program, such as TeraTerm (Windows) or Minicom (Linux). The Arduino development Serial Monitor can also be used as a terminal initially, but it does not support XMODEM transfers, so the READ and WRITE commands can't be used.

Set the terminal's serial parameters to 115200 baud, 8 bits, no parity, 1 stop bit to match the Arduino. Press the Enter key. If the connection is successful, TommyPROM will display a menu of options.

Most of the commands take a start address parameter, always entered as 4 hex characters. If needed, the end address parameter is also 4 hex characters. For example, the command:

d0000 01ff

dumps memory from 0000H to 01ffH. Note that commands and parameters can be entered in uppercase or lowercase.

The R command is used to read from a PROM and save a binary image on the host. The W command receives a file from the host and writes (burns) it into the device. The R command needs a start and end address. The W command determines the end address from the received file size.

The READ and WRITE command both use XMODEM CRC to complete the file transfers. Once the command is issued to the programmer, the transfer must be started on the host program.

Further Work

The next project may be a PCB spin of the Nano design with a ZIF socket for easier access to the target chip.