/* DataFlash.cpp - DataFlash log library for AT45DB161 Code by Jordi Muñoz and Jose Julio. DIYDrones.com This code works with boards based on ATMega168/328 and ATMega1280/2560 using SPI port This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. Dataflash library for AT45DB161D flash memory Memory organization : 4096 pages of 512 bytes or 528 bytes Maximun write bandwidth : 512 bytes in 14ms This code is written so the master never has to wait to write the data on the eeprom Methods: Init() : Library initialization (SPI initialization) StartWrite(page) : Start a write session. page=start page. WriteByte(data) : Write a byte WriteInt(data) : Write an integer (2 bytes) WriteLong(data) : Write a long (4 bytes) StartRead(page) : Start a read on (page) GetWritePage() : Returns the last page written to GetPage() : Returns the last page read ReadByte() ReadInt() ReadLong() Properties: */ extern "C" { // AVR LibC Includes #include #include #include "WConstants.h" } #include "DataFlash.h" #define OVERWRITE_DATA 0 // 0: When reach the end page stop, 1: Start overwritten from page 1 // *** INTERNAL FUNCTIONS *** unsigned char dataflash_SPI_transfer(unsigned char output) { SPDR = output; // Start the transmission while (!(SPSR & (1<> 7)); dataflash_SPI_transfer((unsigned char)(PageAdr << 1)); }else{ dataflash_SPI_transfer((unsigned char)(PageAdr >> 6)); dataflash_SPI_transfer((unsigned char)(PageAdr << 2)); } dataflash_SPI_transfer(0x00); // don´t care bytes dataflash_CS_inactive(); //initiate the transfer dataflash_CS_active(); while(!ReadStatus()); //monitor the status register, wait until busy-flag is high } void DataFlash_Class::BufferToPage (unsigned char BufferNum, unsigned int PageAdr, unsigned char wait) { dataflash_CS_inactive(); // Reset dataflash command decoder dataflash_CS_active(); if (BufferNum==1) dataflash_SPI_transfer(DF_BUFFER_1_TO_PAGE_WITH_ERASE); else dataflash_SPI_transfer(DF_BUFFER_2_TO_PAGE_WITH_ERASE); if(df_PageSize==512){ dataflash_SPI_transfer((unsigned char)(PageAdr >> 7)); dataflash_SPI_transfer((unsigned char)(PageAdr << 1)); }else{ dataflash_SPI_transfer((unsigned char)(PageAdr >> 6)); dataflash_SPI_transfer((unsigned char)(PageAdr << 2)); } dataflash_SPI_transfer(0x00); // don´t care bytes dataflash_CS_inactive(); //initiate the transfer dataflash_CS_active(); // Check if we need to wait to write the buffer to memory or we can continue... if (wait) while(!ReadStatus()); //monitor the status register, wait until busy-flag is high } void DataFlash_Class::BufferWrite (unsigned char BufferNum, unsigned int IntPageAdr, unsigned char Data) { dataflash_CS_inactive(); // Reset dataflash command decoder dataflash_CS_active(); if (BufferNum==1) dataflash_SPI_transfer(DF_BUFFER_1_WRITE); else dataflash_SPI_transfer(DF_BUFFER_2_WRITE); dataflash_SPI_transfer(0x00); //don't cares dataflash_SPI_transfer((unsigned char)(IntPageAdr>>8)); //upper part of internal buffer address dataflash_SPI_transfer((unsigned char)(IntPageAdr)); //lower part of internal buffer address dataflash_SPI_transfer(Data); //write data byte } unsigned char DataFlash_Class::BufferRead (unsigned char BufferNum, unsigned int IntPageAdr) { byte tmp; dataflash_CS_inactive(); // Reset dataflash command decoder dataflash_CS_active(); if (BufferNum==1) dataflash_SPI_transfer(DF_BUFFER_1_READ); else dataflash_SPI_transfer(DF_BUFFER_2_READ); dataflash_SPI_transfer(0x00); //don't cares dataflash_SPI_transfer((unsigned char)(IntPageAdr>>8)); //upper part of internal buffer address dataflash_SPI_transfer((unsigned char)(IntPageAdr)); //lower part of internal buffer address dataflash_SPI_transfer(0x00); //don't cares tmp = dataflash_SPI_transfer(0x00); //read data byte return (tmp); } // *** END OF INTERNAL FUNCTIONS *** void DataFlash_Class::PageErase (unsigned int PageAdr) { dataflash_CS_inactive(); //make sure to toggle CS signal in order dataflash_CS_active(); //to reset Dataflash command decoder dataflash_SPI_transfer(DF_PAGE_ERASE); // Command if(df_PageSize==512){ dataflash_SPI_transfer((unsigned char)(PageAdr >> 7)); dataflash_SPI_transfer((unsigned char)(PageAdr << 1)); }else{ dataflash_SPI_transfer((unsigned char)(PageAdr >> 6)); dataflash_SPI_transfer((unsigned char)(PageAdr << 2)); } dataflash_SPI_transfer(0x00); // "dont cares" dataflash_CS_inactive(); //initiate flash page erase dataflash_CS_active(); while(!ReadStatus()); } void DataFlash_Class::ChipErase () { dataflash_CS_inactive(); //make sure to toggle CS signal in order dataflash_CS_active(); //to reset Dataflash command decoder // opcodes for chip erase dataflash_SPI_transfer(DF_CHIP_ERASE_0); dataflash_SPI_transfer(DF_CHIP_ERASE_1); dataflash_SPI_transfer(DF_CHIP_ERASE_2); dataflash_SPI_transfer(DF_CHIP_ERASE_3); dataflash_CS_inactive(); //initiate flash page erase dataflash_CS_active(); while(!ReadStatus()); } // *** DATAFLASH PUBLIC FUNCTIONS *** void DataFlash_Class::StartWrite(int PageAdr) { df_BufferNum=1; df_BufferIdx=0; df_PageAdr=PageAdr; df_Stop_Write=0; WaitReady(); } void DataFlash_Class::FinishWrite(void) { df_BufferIdx=0; BufferToPage(df_BufferNum,df_PageAdr,0); // Write Buffer to memory, NO WAIT df_PageAdr++; if (OVERWRITE_DATA==1) { if (df_PageAdr>=4096) // If we reach the end of the memory, start from the begining df_PageAdr = 1; } else { if (df_PageAdr>=4096) // If we reach the end of the memory, stop here df_Stop_Write=1; } if (df_BufferNum==1) // Change buffer to continue writing... df_BufferNum=2; else df_BufferNum=1; } void DataFlash_Class::WriteByte(byte data) { if (!df_Stop_Write) { BufferWrite(df_BufferNum,df_BufferIdx,data); df_BufferIdx++; if (df_BufferIdx >= df_PageSize) // End of buffer? { df_BufferIdx=0; BufferToPage(df_BufferNum,df_PageAdr,0); // Write Buffer to memory, NO WAIT df_PageAdr++; if (OVERWRITE_DATA==1) { if (df_PageAdr>=4096) // If we reach the end of the memory, start from the begining df_PageAdr = 1; } else { if (df_PageAdr>=4096) // If we reach the end of the memory, stop here df_Stop_Write=1; } if (df_BufferNum==1) // Change buffer to continue writing... df_BufferNum=2; else df_BufferNum=1; } } } void DataFlash_Class::WriteInt(int data) { WriteByte(data>>8); // High byte WriteByte(data&0xFF); // Low byte } void DataFlash_Class::WriteLong(long data) { WriteByte(data>>24); // First byte WriteByte(data>>16); WriteByte(data>>8); WriteByte(data&0xFF); // Last byte } // Get the last page written to int DataFlash_Class::GetWritePage() { return(df_PageAdr); } // Get the last page read int DataFlash_Class::GetPage() { return(df_Read_PageAdr-1); } void DataFlash_Class::StartRead(int PageAdr) { df_Read_BufferNum=1; df_Read_BufferIdx=0; df_Read_PageAdr=PageAdr; WaitReady(); PageToBuffer(df_Read_BufferNum,df_Read_PageAdr); // Write Memory page to buffer df_Read_PageAdr++; } byte DataFlash_Class::ReadByte() { byte result; WaitReady(); result = BufferRead(df_Read_BufferNum,df_Read_BufferIdx); df_Read_BufferIdx++; if (df_Read_BufferIdx >= df_PageSize) // End of buffer? { df_Read_BufferIdx=0; PageToBuffer(df_Read_BufferNum,df_Read_PageAdr); // Write memory page to Buffer df_Read_PageAdr++; if (df_Read_PageAdr>=4096) // If we reach the end of the memory, start from the begining { df_Read_PageAdr = 0; df_Read_END = true; } } return result; } int DataFlash_Class::ReadInt() { int result; result = ReadByte(); // High byte result = (result<<8) | ReadByte(); // Low byte return result; } long DataFlash_Class::ReadLong() { long result; result = ReadByte(); // First byte result = (result<<8) | ReadByte(); result = (result<<8) | ReadByte(); result = (result<<8) | ReadByte(); // Last byte return result; } // make one instance for the user to use DataFlash_Class DataFlash;