How To Use Atheros Eeprom Tool

Hi, this is short introduce how to crack atheros 5005 mini pci card. In fact, we can't write the eeprom of 5005. After a lots of googles, I found the pin 7 of eeprom named 24c32 is the key. The write protect can be disabledbb by cut off pin 7, why do I know cut pin 7? How to use Xtool X100 Pro2 Auto Key Programmer with EEprom Adapter?Welcome to check http://www.buyonme.net/xtool-x100-pro2-auto-key-programmer-with-eeprom-ad.

Expand your board's storage with an I2C-enabled EEPROM chip.

  • 24,592 views
  • 3 comments
  • 22 respects

Components and supplies

Microchip Technology AT24C02C 2KB I2C EEPROM
×1
Arduino UNO
×1

Necessary tools and machines

Apps and online services

Arduino IDE
Eagle

About this project

What is EEPROM?

EEPROM stands for Electronically Erasable Programmable Read-Only Memory. It allows for values to be written and stored for long periods of time while using very little power. Most microcontrollers even have EEPROM directly in their circuitry, such as the ATmega328P (Arduino Uno chip), which has 1KB of it. But what if that’s not enough? SD cards have much greater storage sizes, but are also more complex, physically larger, and use more power. In this tutorial, I will show how easy it is to add another 2KB of non-volatile storage to a project with the 24C02 EEPROM IC.

Breaking Out Pins

How to use atheros eeprom tool software

The chip I chose comes in several packages, but because I needed to mount them on PCBs, I went with the SOIC-8 package, which is a surface-mount variant. To begin, I added the EEPROM IC part into Eagle, along with a 3-pin header for the ADDR pins and a 5-pin header for the other pins. Then I simply routed net segments between the pins to connect them.

Next, I laid it all out on a PCB by placing the IC first and then the headers on either side. I made sure that they were directly lined up, as crossing the paths adds a lot of unnecessary complexity.

I used Chilipeppr to generate Gcode for my CNC router, which I used to mill the traces on the board. Then it was simply a matter of soldering everything together.

Wiring

Tool

Connecting the EEPROM chip to an Arduino Uno board was simple. Here is a list of connections:

The address pins are only necessary if more than one EEPROM chips are going to be used. If that is the case, just increment the three-bit address value for each new chip. For example, the third IC would have these pins connected:

Writing New Data

To write data, first ensure the WP (write protect) pin is connected to GND. The device address is first sent with a value between 0x50 and 0x57. Then an eight bit must be added on to then end which toggles between reading or writing. To write, it gets set to 0. To demonstrate, the address byte of the first IC as a write operation would be 1010000.

Next, an address is specified for the data to be written to, followed by the byte to be written. Using the Wire library, this looks like:

Reading Data

Reading data from the chip is done in a similar way. First, the target storage address must be selected. This is done by sending a dummy write command to load in the target address. Next, one byte is sent containing the device address and the read/write bit as 1. The EEPROM chip then sends one byte of data in return. This looks like:

What’s Possible?

Tool

By using an EEPROM chip instead of an SD card, you can save space, power, and complexity. If you have a project that needs to store initial values for a game or have a save state, an EEPROM chip is perfect. It allows for the storage of values even after the main microcontroller has been powered off.

Code

Schematics

Author

Arduino “having11” Guy
  • 44 projects
  • 733 followers

Published on

August 13, 2019
Write a comment

Members who respect this project

and 14 others

HowSee similar projects
you might like

Table of contents

How To Use Atheros Eeprom Tool Download

Write a comment

Comments are closed.