728x90

728x90

Tuesday, February 24, 2026

ATMega644P and 25AA010A SPI Bus Serial EEPROM

 Overview

The Microchip Technology Inc. 25XX010A is a 1-Kbit (8-bit x 127) Serial Electrically Erasable PROM (EEPROM). The memory is accessed via a simple Serial Peripheral Interface (SPI) compatible serial bus. The bus signals required are a clock input (SCK) plus separate data in (SI) and data out (SO) lines. Access to the device is controlled through a Chip Select (CS) input. 

ATMega644P and 25AA010A SPI Bus Serial EEPROM

Since it uses the SPI interface it can handle the clock rate up to 10MHz faster than other I2C(TWI) serial EEPROM. Its read/write cycles is up to 1M times.

25AA010A | Microchip Technology 

It has various device's package including a DIP-8 package for hobbyists prototyping.

PIC16F887 SPI 25AA010A EEPROM XC8 Example
Device Selection Table


This chip also has a model in Proteus that enable the engineer to test its operation by software.

 

PIC16F887 SPI 25AA010A EEPROM XC8 Example
Package Types and Pin Function Table

The SPI transfer and receive must have the following data bytes, instruction, address, and data.
PIC16F887 SPI 25AA010A EEPROM XC8 Example
Block Diagram, Instructions, and SPI Read Sequence
 

The read command is 0x03 follows by the EEPROM address. The EEPROM 8-bit data will shift out by the SPI read routine issued by the microprocessor. 

Writing data to the EEPROM requires around 5ms. It requires a write enable instruction before the data writing sequence able to process.

PIC16F887 SPI 25AA010A EEPROM XC8 Example
Write Enable and Disable Commands
 

Write-enable command is 0x06 while the Write-disable command is 0x04. Additionally the Write Protect (WP) pin must pull high to enable data writing.

Byte write sequence instruction is 0x02 follows by the EEPROM address and the 8-bit data. It also has a page write sequence to write a burst of 16 bytes data package. The microprocessor needs to wait around 5ms to complete data writing.
 

PIC16F887 SPI 25AA010A EEPROM XC8 Example
Byte and Page Write Sequences
 

The Read Status Register Instruction is optional you can read the device datasheet for more detail. 

ATMega644P and 25AA010A SPI Bus Serial EEPROM It's useful the for a master MCU to determine when the next read or write operation will proceed. Some programmer just use a delay function that last around 100 micro-seconds instead of using this operation.

ATMega644 and  25AA010A Interfacing

Using a dedicated SPI interface of an MCU is very fast and reliable. The internal MCU serial communication module process this serial data transmission and reception tasks.

This example show a write and read operation to the 25AA010A from a master ATMega644P SPI. Data is written to the 25AA010A prior to reading back from this chip. Then they are shown on PORTC.

ATMega644P and 25AA010A SPI Bus Serial EEPROM
Schematic

 Source Code "main.c":

  1. /*
  2. * 12-spi_25AA010A.c
  3. *
  4. * Created: 2/24/2026 2:16:04 PM
  5. * Author : Admin
  6. */

  7. #include <avr/io.h>
  8. #include <util/delay.h>
  9. #define F_CPU 16000000UL

  10. #define DDR_SPI DDRB
  11. #define PRT_SPI PORTB

  12. #define DD_SS 4
  13. #define DD_MOSI 5
  14. #define DD_MISO 6
  15. #define DD_SCK 7

  16. void SPI_MasterInit(void)
  17. {
  18. /* Set MOSI and SCK output, all others input */
  19. DDR_SPI = (1<<DD_MOSI)|(1<<DD_SCK)|(1<<DD_SS);
  20. /* Enable SPI, Master, set clock rate fck/16 */
  21. SPCR = (1<<SPE)|(1<<MSTR)|(1<<SPR0);
  22. }

  23. void SPI_MasterTransmit(char cData)
  24. {
  25. /* Start transmission */
  26. SPDR = cData;
  27. /* Wait for transmission complete */
  28. while(!(SPSR & (1<<SPIF)))
  29. ;
  30. }

  31. void SPI_SlaveInit(void)
  32. {
  33. /* Set MISO output, all others input */
  34. DDR_SPI = (1<<DD_MISO);
  35. /* Enable SPI */
  36. SPCR = (1<<SPE);
  37. }
  38. char SPI_SlaveReceive(void)
  39. {
  40. /* Wait for reception complete */
  41. while(!(SPSR & (1<<SPIF)))
  42. ;
  43. /* Return Data Register */
  44. return SPDR;
  45. }

  46. // 93AA46B SPI EEPROM

  47. void write_enable(void){
  48. PRT_SPI&=~(1<<DD_SS);
  49. SPI_MasterTransmit(0x06);
  50. PRT_SPI|=(1<<DD_SS);
  51. }

  52. unsigned char read_status(void){
  53. PRT_SPI&=~(1<<DD_SS);
  54. SPI_MasterTransmit(0x05);
  55. SPI_MasterTransmit(0x00);
  56. unsigned char temp=SPI_SlaveReceive();
  57. PRT_SPI|=(1<<DD_SS);
  58. return temp;
  59. }
  60. void write_93AA46B(unsigned char address, unsigned char data){
  61. unsigned char temp;
  62. PRT_SPI&=~(1<<DD_SS);
  63. SPI_MasterTransmit(0x02);
  64. SPI_MasterTransmit(address);
  65. SPI_MasterTransmit(data);
  66. PRT_SPI|=(1<<DD_SS);
  67. //Check Write Busy Flag
  68. do
  69. {
  70. temp=read_status();
  71. } while ((temp&0x01)==1);
  72. }

  73. unsigned char read_93AA46B(unsigned char address){
  74. PRT_SPI&=~(1<<DD_SS);
  75. SPI_MasterTransmit(0x03);
  76. SPI_MasterTransmit(address);
  77. SPI_MasterTransmit(0xFF);
  78. unsigned char data=SPI_SlaveReceive();
  79. PRT_SPI|=(1<<DD_SS);
  80. return data;
  81. }
  82. int main(void)
  83. {
  84. /* Replace with your application code */
  85. SPI_MasterInit();
  86. PRT_SPI|=(1<<DD_SS);
  87. unsigned char temp=0, data=0;
  88. DDRC=0xFF;
  89. write_enable();
  90. while (1)
  91. {
  92. for (unsigned char i=0;i<8;i++)
  93. {
  94. write_93AA46B(i,1<<i);
  95. PORTC=read_93AA46B(i);
  96. _delay_ms(1000);
  97. }
  98. }
  99. }






I don't have a physical device for this chip. So I just tested it in a simulator.

Now I added a character LCD to display some ASCII data. 

ATMega644P and 25AA010A SPI Bus Serial EEPROM
Schematic

 

Source Code "main.c":

  1. /*
  2. * 25AA010A_1602.c
  3. *
  4. * Created: 2/24/2026 9:36:19 PM
  5. * Author : Admin
  6. */

  7. #include <avr/io.h>
  8. #include <util/delay.h>
  9. #define F_CPU 16000000UL

  10. #define DDR_SPI DDRB
  11. #define PRT_SPI PORTB

  12. #define DD_SS 4
  13. #define DD_MOSI 5
  14. #define DD_MISO 6
  15. #define DD_SCK 7

  16. void SPI_MasterInit(void)
  17. {
  18. /* Set MOSI and SCK output, all others input */
  19. DDR_SPI = (1<<DD_MOSI)|(1<<DD_SCK)|(1<<DD_SS);
  20. /* Enable SPI, Master, set clock rate fck/16 */
  21. SPCR = (1<<SPE)|(1<<MSTR)|(1<<SPR0);
  22. }

  23. void SPI_MasterTransmit(char cData)
  24. {
  25. /* Start transmission */
  26. SPDR = cData;
  27. /* Wait for transmission complete */
  28. while(!(SPSR & (1<<SPIF)))
  29. ;
  30. }

  31. void SPI_SlaveInit(void)
  32. {
  33. /* Set MISO output, all others input */
  34. DDR_SPI = (1<<DD_MISO);
  35. /* Enable SPI */
  36. SPCR = (1<<SPE);
  37. }
  38. char SPI_SlaveReceive(void)
  39. {
  40. /* Wait for reception complete */
  41. while(!(SPSR & (1<<SPIF)))
  42. ;
  43. /* Return Data Register */
  44. return SPDR;
  45. }

  46. // 93AA46B SPI EEPROM

  47. void write_enable(void){
  48. PRT_SPI&=~(1<<DD_SS);
  49. SPI_MasterTransmit(0x06);
  50. PRT_SPI|=(1<<DD_SS);
  51. }

  52. unsigned char read_status(void){
  53. PRT_SPI&=~(1<<DD_SS);
  54. SPI_MasterTransmit(0x05);
  55. SPI_MasterTransmit(0x00);
  56. unsigned char temp=SPI_SlaveReceive();
  57. PRT_SPI|=(1<<DD_SS);
  58. return temp;
  59. }
  60. void write_25AA010A(unsigned char address, unsigned char data){
  61. write_enable();
  62. unsigned char temp;
  63. PRT_SPI&=~(1<<DD_SS);
  64. SPI_MasterTransmit(0x02);
  65. SPI_MasterTransmit(address&0x7F);
  66. SPI_MasterTransmit(data);
  67. PRT_SPI|=(1<<DD_SS);
  68. //Check Write Busy Flag
  69. do
  70. {
  71. temp=read_status();
  72. } while ((temp&0x01)==1);
  73. }

  74. unsigned char read_25AA010A(unsigned char address){
  75. PRT_SPI&=~(1<<DD_SS);
  76. SPI_MasterTransmit(0x03);
  77. SPI_MasterTransmit(address&0x7F);
  78. SPI_MasterTransmit(0x00);
  79. _delay_us(100);
  80. unsigned char data=SPI_SlaveReceive();
  81. PRT_SPI|=(1<<DD_SS);
  82. return data;
  83. }

  84. int main(void)
  85. {
  86. /* Replace with your application code */
  87. SPI_MasterInit();
  88. PRT_SPI|=(1<<DD_SS);
  89. lcd_init();
  90. unsigned char temp[16]="ATMEGA644P SPI";
  91. for (unsigned char i=0;i<16;i++)
  92. {
  93. write_25AA010A(i,temp[i]);
  94. }
  95. for (unsigned char i=0;i<16;i++)
  96. {
  97. temp[i]=read_25AA010A(i);
  98. }
  99. lcd_text(temp);
  100. unsigned char temp_1[16]="25AA010A EEPROM";
  101. for (unsigned char i=16;i<32;i++)
  102. {
  103. write_25AA010A(i,temp_1[i]);
  104. }
  105. for (unsigned char i=16;i<32;i++)
  106. {
  107. temp_1[15-i]=read_25AA010A(i);
  108. }
  109. lcd_xy(1,2);
  110. lcd_text(temp_1);
  111. while (1)
  112. {
  113. }
  114. }

Click here to download this example.

 

 


 

No comments:

Post a Comment

320x50

Search This Blog

tyro-728x90