Editor Version ×
Standard

1.Easy to use and quick to get started

2.The process supports design scales of 300 devices or 1000 pads

3.Supports simple circuit simulation

4.For students, teachers, creators

Profession

1.Brand new interactions and interfaces

2.Smooth support for design sizes of over 5,000 devices or 10,000 pads

3.More rigorous design constraints, more standardized processes

4.For enterprises, more professional users

Ongoing

STD ATmega EEPROM Programmer

License: CC-BY-SA 3.0

Mode: Editors' pick

  • 8.4k
  • 5
  • 14
Update time: 2023-11-27 21:22:38
Creation time: 2019-08-23 18:08:19
Description
# Overview Parallel EEPROM Programmer for 28C64B and 28C256 based on ATmega8 featuring: - GUI-based front-end written in Python - Possibility to access the programmer via a serial monitor - Hardware SPI with 8 Mbps to control address bus via shift registers - Hardware UART with 1 Mbps for data transfer to/from PC via USB 2.0 - Utilizing the fast page write mode of the EEPROM - Binary data transmission ![EEPROM_pic1.jpg](https://raw.githubusercontent.com/wagiminator/ATmega-EEPROM-Programmer/master/documentation/EEPROM_pic1.jpg) - Project Video (YouTube): https://youtu.be/FkSXgdC_ToQ - Firmware (Github): https://github.com/wagiminator/ATmega-EEPROM-Programmer # Hardware The heart of the EEPROM programmer is an ATmega8 microcontroller. The address bus of the EEPROM (up to 15 bit) is controlled via two daisy-chained 74HC595 shift registers using hardware SPI @ 8 Mbps. The data bus is controlled directly via the pins of the ATmega. Address and data bus are simultaneously driven to achieve the maximum data transfer rate. The data connection to the PC runs via the hardware UART interface of the ATmega transfering the data in binary format with up to 1 Mbps. A CH330N (or CH340N) converts the serial data for USB 2.0. # 28C64B and 28C256 EEPROMs This EEPROM is a high-performance electrically erasable and programmable read-only memory. The device offers access times to 150 ns with power dissipation of just 440 mW. When the device is deselected, the CMOS standby current is less than 200 μA. The EEPROM is accessed like a Static RAM for the read or write cycle without the need for external components. The device contains a 64-byte page register to allow writing of up to 64 bytes simultaneously. The end of a write cycle can be detected by data polling. Once the end of a write cycle has been detected a new access for a read or write can begin. An optional software data protection mechanism is available to guard against inadvertent writes. The EEPROM is ideally suited to replace (E)EPROMs in old 8-bit computers. ![EEPROM_pic4.png](https://raw.githubusercontent.com/wagiminator/ATmega-EEPROM-Programmer/master/documentation/EEPROM_pic4.png) ## Read Access The EEPROM is accessed like a Static RAM. When !CE and !OE are low and !WE is high, the data stored at the memory location determined by the address pins is asserted on the outputs. The outputs are put in the high impedance state when either !CE or !OE is high. ## Write Access A low pulse on the !WE or !CE input with !CE or !WE low (respectively) and !OE high initiates a write cycle. The address is latched on the falling edge of !CE or !WE, whichever occurs last. The data is latched by the first rising edge of !CE or !WE. Once a byte write has been started it will automatically time itself to completion. The page write operation allows 1 to 64 bytes of data to be written into the device during a single internal programming period. A page write operation is initiated in the same manner as a byte write; the first byte written can then be followed by 1 to 63 additional bytes. Each successive byte must be written within 150 μs of the previous byte. All bytes during a page write operation must reside on the same page as defined by the state of the A6 - A14 inputs. For each WE high to low transition during the page write operation, A6 - A14 must be the same. The A0 to A5 inputs are used to specify which bytes within the page are to be written. The bytes may be loaded in any order and may be altered within the same load period. Only bytes which are specified for writing will be written; unnecessary cycling of other bytes within the page does not occur. ## Data Polling The EEPROM features DATA Polling to indicate the end of a write cycle. During a byte or page write cycle an attempted read of the last byte written will result in the complement of the written data to be presented on I/O7. Once the write cycle has been completed, true data is valid on all outputs, and the next write cycle may begin. DATA Polling may begin at anytime during the write cycle. In addition to DATA Polling the EEPROM provides another method for determining the end of a write cycle. During the write operation, successive attempts to read data from the device will result in I/O6 toggling between one and zero. Once the write has completed, I/O6 will stop toggling and valid data will be read. Reading the toggle bit may begin at any time during the write cycle. # Software ## Implementation On the microcontroller side, data is received via UART and written to the EEPROM according to the data sheet or vice versa. The programmer is controlled with simple commands, which are also sent via the serial interface: |Command|Function| |:-|:-| |i |Print "EEPROM Programmer" (for identification)| |v |Print firmware version| |a 0100 |Set address bus to 0100 (hex) (for test purposes)| |d 0000 7fff |Print hex dump of memory addresses 0000-7fff (hex)| |f 1000 1fff ff |Fill memory (1000-1fff) with value ff (hex)| |r 0000 3fff |Read memory addresses 0000-3fff (hex) and send as binary data| |p 0100 013f |Page write binary data to memory page 0100-013f (bytes must follow)| |l |Lock EEPROM (enable write protection)| |u |Unlock EEPROM (disable write protection)| Any serial monitor (set BAUD rate to 1000000) can be used for control from the PC. However, in order to use the full capabilities, it is recommended to use the attached Python scripts. The script "eepromgui.py" offers a simple graphical user interface and functions for reading and writing binary files as well as for displaying the EEPROM content. The scripts have only been tested on Linux, but should work on all operating systems. A [driver for the CH330N/CH340N](https://learn.sparkfun.com/tutorials/how-to-install-ch340-drivers/all#drivers-if-you-need-them) may be required for Windows. ![EEPROM_pic2.png](https://raw.githubusercontent.com/wagiminator/ATmega-EEPROM-Programmer/master/documentation/EEPROM_pic2.png) ![EEPROM_pic3.png](https://raw.githubusercontent.com/wagiminator/ATmega-EEPROM-Programmer/master/documentation/EEPROM_pic3.png) ## Compiling and Uploading ### If using the Arduino IDE - Make sure you have installed [MiniCore](https://github.com/MCUdude/MiniCore). - Go to **Tools -> Board -> MiniCore** and select **ATmega8**. - Go to **Tools** and choose the following board options: - **Clock:** External 16 MHz - **BOD:** BOD 4.0V - **Compiler LTO:** LTO enabled - **Bootloader:** No bootloader - Leave the rest at the default settings - Connect your programmer to your PC and to the ICSP header of the device. - Go to **Tools -> Programmer** and select your ISP programmer (e.g. [USBasp](https://aliexpress.com/wholesale?SearchText=usbasp)). - Go to **Tools -> Burn Bootloader** to burn the fuses. - Open EEPROM_Programmer sketch and click **Upload**. ### If using the precompiled hex-file - Make sure you have installed [avrdude](https://learn.adafruit.com/usbtinyisp/avrdude). - Connect your programmer to your PC and to the ICSP header of the device. - Open a terminal. - Navigate to the folder with the hex-file. - Execute the following command (if necessary replace "usbasp" with the programmer you use): ``` avrdude -c usbasp -p m8 -U lfuse:w:0x3f:m -U hfuse:w:0xd1:m -U flash:w:eeprom_programmer_m8.hex ``` ### If using the makefile (Linux/Mac) - Make sure you have installed [avr-gcc toolchain and avrdude](http://maxembedded.com/2015/06/setting-up-avr-gcc-toolchain-on-linux-and-mac-os-x/). - Connect your programmer to your PC and to the ICSP header of the device. - Open the makefile and change the programmer if you are not using usbasp. - Open a terminal. - Navigate to the folder with the makefile and the Arduino sketch. - Run "make install" to compile, burn the fuses and upload the firmware. # Operating Instructions 1. Connect the EEPROM Programmer via USB to your PC. 2. Insert your EEPROM into the ZIF socket with pin1 facing to the handle of the socket. 3. Run the eepromgui.py application. # References, Links and Notes 1. [AT28C64B Datasheet](https://ww1.microchip.com/downloads/en/DeviceDoc/doc0270.pdf) 2. [AT28C256 Datasheet](http://ww1.microchip.com/downloads/en/DeviceDoc/doc0006.pdf) 3. [ATmega8A Datasheet](https://ww1.microchip.com/downloads/en/DeviceDoc/ATmega8A-Data-Sheet-DS40001974B.pdf) 4. [74HC595 Datasheet](https://www.diodes.com/assets/Datasheets/74HC595.pdf) 5. [CH330N Datasheet](https://datasheet.lcsc.com/szlcsc/2008191734_WCH-Jiangsu-Qin-Heng-CH330N_C108996.pdf) # License ![license.png](https://i.creativecommons.org/l/by-sa/3.0/88x31.png) This work is licensed under Creative Commons Attribution-ShareAlike 3.0 Unported License. (http://creativecommons.org/licenses/by-sa/3.0/)
Design Drawing
schematic diagram
1 /
PCB
1 /
The preview image was not generated, please save it again in the editor.
ID Name Designator Footprint Quantity
1 CH330N U2 SOP-8_150MIL 1
2 16MHZ X1 HC-49S 1
3 USB-B-Female USB1 USB-M-49 1
4 74HC595D U4,U3 SOP-16_150MIL 2
5 1k R3,R2,R4,R5,R6 0603 5
6 10k R1,R7,R9,R8 0603 4
7 ICSP-6 ICSP1 ICSP-6 1
8 22p C6,C5 0603 2
9 100n C8,C11,C3,C2,C10,C1,C7,C9 0603 8
10 47u C4 1206 1
11 WRITE LED3 LED-0603 1
12 READ LED2 LED-0603 1
13 PWR LED1 LED-0603 1
14 28C256 U5 DIP28 WIDE PACKAGE BIGHOLE 1
15 ATMEGA8/168/328 U1 TQFP-32_7X7X08P 1

Unfold

Project Attachments
Empty
Project Members
Target complaint
Related Projects
Change a batch
Loading...
Add to album ×

Loading...

reminder ×

Do you need to add this project to the album?

服务时间

周一至周五 9:00~18:00
  • 0755 - 2382 4495
  • 153 6159 2675

服务时间

周一至周五 9:00~18:00
  • 立创EDA微信号

    easyeda

  • QQ交流群

    664186054

  • 立创EDA公众号

    lceda-cn