How to write data to the EEPROM?
lyassa
Posts: 52
I have the "Propeller Education Kit". How can I write data back to the EEPROM? Do I need any parts other than what came with the Education kit?
Thanks in advance for your answer.
Thanks in advance for your answer.
Comments
Just follow the instructions in your lessons and you will likely find you have everything as Parallax tries very hard to provide complete kits for beginners.
http://forums.parallax.com/showthread.php?97625-PE-Kit-Lab-Applications-%E2%80%93-EEPROM-Datalogging-and-I2C
edit: fixed link - that's what I get for posting in the wee hours
Wrong link -- just looping back to this thread.
http://forums.parallax.com/showthread.php?104202-Some-advice-needed-to-write-modified-data-back-into-the-boot-eeprom-for-usage-a
If you want to play with the EEPROM from a command line, perhaps check out propforth
http://code.google.com/p/propforth/
The word writes the current RAM imange back to EEPROM
Also, the source code file fs.f implements an EEPROM in the upper area above the standard 32k image on 64K or larger EEPROM.
This allow one to see how the commands are set up, and the individual commands to perform each function, and they can be run from the command line.
The lowest level word are implemented in assembler, so you can see exactly what they do, and are strung together as forth words like charms on a bracelet.