Announcement

Collapse
No announcement yet.

Atmega328P EEPROM Tools

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Atmega328P EEPROM Tools

    Clear EEPROM content:

    Code:
    #include <EEPROM.h>
    void setup() 
    {
      for (int i = 0 ; i < EEPROM.length() ; i++) 
      {
        EEPROM.write(i, 0);
      }
      digitalWrite(13, HIGH);
    }
    void loop() 
    {
    
    }


  • #2
    Read EEPROM content and displays it in serial monitor:

    Code:
    #include <EEPROM.h>
    int address = 0;
    byte value;
    void setup() 
    {
       Serial.begin(9600);
      while (!Serial) 
    {
       ; 
    }
    }
    void loop() 
    {
      value = EEPROM.read(address);
      Serial.print(address);
      Serial.print("\t");
      Serial.print(value, HEX);
      Serial.println();
      address = address + 1;
      if (address == EEPROM.length()) 
    {
        address = 0;
    }
      delay(500);
    }

    Comment


    • #3
      EEPROM Write:

      Code:
      /* * EEPROM Write
       *
       * Stores values read from analog input 0 into the EEPROM.
       * These values will stay in the EEPROM when the board is
       * turned off and may be retrieved later by another sketch.
       */
      #include <EEPROM.h>
      /** the current address in the EEPROM (i.e. which byte we're going to write to next) **/
      int addr = 4;
      void setup() {
        /** Empty setup. **/
      }
      void loop() {
        /***
          Need to divide by 4 because analog inputs range from
          0 to 1023 and each byte of the EEPROM can only hold a
          value from 0 to 255.
        ***/
        int val = analogRead(0) / 4;
        /***
          Write the value to the appropriate byte of the EEPROM.
          these values will remain there when the board is
          turned off.
        ***/
        EEPROM.write(4,A0);
        /***
          Advance to the next address, when at the end restart at the beginning.
      
      
          Larger AVR processors have larger EEPROM sizes, E.g:
          - Arduno Duemilanove: 512b EEPROM storage.
          - Arduino Uno:        1kb EEPROM storage.
          - Arduino Mega:       4kb EEPROM storage.
          Rather than hard-coding the length, you should use the pre-provided length function.
          This will make your code portable to all AVR processors.
        ***
        addr = addr + 1;
        if (addr == EEPROM.length()) {
          addr = 0;/
        }
        /***
          As the EEPROM sizes are powers of two, wrapping (preventing overflow) of an
          EEPROM address is also doable by a bitwise and of the length - 1.
          ++addr &= EEPROM.length() - 1;
        ***/
        delay(100);
      }

      Comment


      • #4
        EEPROM CRC:

        Code:
        /***    Written by Christopher Andrews.
            CRC algorithm generated by pycrc, MIT licence ( https://github.com/tpircher/pycrc ).
            A CRC is a simple way of checking whether data has changed or become corrupted.
            This example calculates a CRC value directly on the EEPROM values.
            The purpose of this example is to highlight how the EEPROM object can be used just like an array.
        ***/
        #include <Arduino.h>
        #include <EEPROM.h>
        void setup() {
          //Start serial
          Serial.begin(9600);
          while (!Serial) {
            ; // wait for serial port to connect. Needed for Leonardo only
          }
          //Print length of data to run CRC on.
          Serial.print("EEPROM length: ");
          Serial.println(EEPROM.length());
          //Print the result of calling eeprom_crc()
          Serial.print("CRC32 of EEPROM data: 0x");
          Serial.println(eeprom_crc(), HEX);
          Serial.print("\n\nDone!");
        }
        void loop() {
          /* Empty loop */
        }
        unsigned long eeprom_crc(void) {
          const unsigned long crc_table[16] = {
            0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac,
            0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c,
            0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c,
            0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c
          };
          unsigned long crc = ~0L;
          for (int index = 0 ; index < EEPROM.length()  ; ++index) {
            crc = crc_table[(crc ^ EEPROM[index]) & 0x0f] ^ (crc >> 4);
            crc = crc_table[(crc ^ (EEPROM[index] >> 4)) & 0x0f] ^ (crc >> 4);
            crc = ~crc;
          }
          return crc;
        }

        Comment


        • #5
          EEPROM PUT:

          Code:
          /***    eeprom_put example.
              This shows how to use the EEPROM.put() method.
              Also, this sketch will pre-set the EEPROM data for the
              example sketch eeprom_get.
              Note, unlike the single byte version EEPROM.write(),
              the put method will use update semantics. As in a byte
              will only be written to the EEPROM if the data is actually
              different.
              Written by Christopher Andrews 2015
              Released under MIT licence.
          ***/
          #include <EEPROM.h>
          struct MyObject {
            float field1;
            byte field2;
            char name[10];
          };
          void setup() {
            Serial.begin(9600);
            while (!Serial) {
              ; // wait for serial port to connect. Needed for Leonardo only
            }
            float f = 123.456f;  //Variable to store in EEPROM.
            int eeAddress = 0;   //Location we want the data to be put.
            //One simple call, with the address first and the object second.
            EEPROM.put(eeAddress, f);
            Serial.println("Written float data type!");
            /** Put is designed for use with custom structures also. **/
            //Data to store.
            MyObject customVar = {
              3.14f,
              65,
              "Working!"
            };
            eeAddress += sizeof(float); //Move address to the next byte after float 'f'.
            EEPROM.put(eeAddress, customVar);
            Serial.print("Written custom data type! \n\nView the example sketch eeprom_get to see how you can retrieve the values!");
          }
          void loop() {
            /* Empty loop */
          }

          Comment


          • #6
            Who ever made an attempt to successfully diy FelezJoo PI detector; might find these simple codes pretty useful in analyzing what's going on in the eeprom.
            All the presets and adjustments are stored in eeprom.
            So as "counter protection" variables.
            There is "300 attempts" limiting counter in the FelezJoo PI code.
            After 300th powering ON the device; it stops functioning.
            One of the suggested solution (by author) is to re-program Atmega again with the same HEX.
            Simpler solution is just to erase the eeprom.
            I guess most of the software for programmers do allowing separate eeprom deleting.
            Avrdudess allows it for sure. And it is pretty straightforward.
            So... it is enough to extract uart pins on FelezJoo PI pcb and delete eeprom through the cable, without taking out the chip itself.
            The same way enthusiasts can use to monitor all the changes done in the eeprom while adjusting various parameters in the device's menu.
            I remember once i did complete map of bytes stored in eeprom, their values, meaning and exact position in map.
            Also i located exact bytes related to counter protection.
            Probably pretty trivial example, but can be highly educational.

            Comment


            • #7
              Cool Beans I scooped all those up. Thank You !

              Comment

              Working...
              X