Clearing EEPROM
I'm new and I can't figure out how to clear the EEPROM.
I mistakenly pressed F11 and loaded a small program into EEPROM and it worked just fine, but now I want to work on my program.
I've tried powering down, removing the USB cable, reinstalling all, etc. etc. The program just starts up again from the EEPROM.
I know this is a no-brainer but I've spent way too much time and not figured it out.
Kurt Finnie
I mistakenly pressed F11 and loaded a small program into EEPROM and it worked just fine, but now I want to work on my program.
I've tried powering down, removing the USB cable, reinstalling all, etc. etc. The program just starts up again from the EEPROM.
I know this is a no-brainer but I've spent way too much time and not figured it out.
Kurt Finnie

Comments
In other words, just hit F11 again and new code will go into EEPROM.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Searider
John
Upload to EEPROM F11. Upon boot up the Propeller will Do Nothing.
Ron
' using Basic I2C Driver or PASM I2C Driver PRI _errase | i, empty[16] '' errase EEPROM memory longfill(@empty, 0, 16) REPEAT i FROM $0 TO $7FFF STEP 64 write(i, @empty, 64) PUB write (addr, valueAddr, size) | time '' write page to EEPROM with watchdog IF i2c.WritePage(BootPin, EEPROM, addr, valueAddr, size) RETURN false time := cnt repeat while i2c.WriteWait(BootPin, EEPROM, addr) ' wait for watchdog if cnt - time > clkfreq / 10 RETURN false RETURN trueProbably not as efficient as it could be, but it's the way I've do it on a non-time sensitive system.