|
Hello Brock. This is how it works: - RAM is temporary storage that goes away when power is removed. The user and the BASIC store temporary info here. - FLASH is where program code goes, not EEPROM. The fun thing is (this is NOT true for the Pro) you can also store values here permanently in large quantities but you run the risk of writing over your code or bootloader. The first is an annoyance, the other makes your part worthless as an Atom/Nano. This is done with the READPM, WRITEPM commands. Not recommended for obvious reasons. - EEPROM is 256 bytes of permanent storage for whatever byte-size data you want to squirrel away for ever and ever. BUT you have to reload this every time you program the Atom/Nano as the compiler erases everything before writing to the part. But after that you can turn power on and off and the data is still there. Yeah! This is done with the READ and WRITE commands.
As always you'll want to refer to the manual for these commands, on the forum eventually, or the version 3002 manual at the Download Section. Take care.
|