I was working with my Arduino DUE an suddenly it got freeze, when i tried to download a program i got
"Flash page is Locked" error, I am using DueFlashStorage library an it seem to be the origin of the problem.
I tried push the erase button with the reset together, but it don´t fix the problem.
Are There any solution for that?
Lots of users of this library have had this issue, but I don't know why.
BTW, unlike the arduino DUE, the DUE Core (a 100% DUE compatible board), has an EEPROM.
Or try out this:
The SAM3X that makes up the heart of the DUE doesn't have any EEPROM itself, but the Atmel 16U2 that is the bridge between the UART interface on the DUE and the USB programming port does (512 Bytes of EEPROM).
And here is how you can wire your DUE to extract 512 bytes of EEPROM:
ard_newbie:
Copy and past platform.txt into a new blank IDE window (without setup() and loop()
What is the reason for this step?
ard_newbie:
At the end of the file, you will find:
-e -w -v -b, change this by:
That is the "tools.bossac_remote.upload.pattern" recipe, right? AFAIK, this is not used during a normal upload. I would expect it to be "tools.bossac.upload.pattern" that you need to modify.
I don't understand what you mean by that. In order to copy/paste the contents of platform.txt, it already needs to be open in a text editor. So why not just edit the file there?