-->
Page 1 of 1

Is there a way to verify the upload in the Arduino IDE

PostPosted: Wed Jun 08, 2016 12:06 pm
by somedude
Hello,


Much like what avrdude does for Arduino uploads, is there any method to have the uploaded sketch verified?
I am using the Arduino IDE with the ESP8266 core and I noticed that it uses esptool to flash the sketch onto the chip.
It doesn't appear to do a verification and I have a couple of modules that are problematic, so I need to ensure that the code is verified.

I looked at preferences.txt located in my AppData|Local\Arduino folder and upload.verify=true.
But there is no indication that it actually performs the upload verification in the console messages.

Many thanks.

Re: Is there a way to verify the upload in the Arduino IDE

PostPosted: Thu Jun 09, 2016 1:24 am
by anotherjoe
The arduino core uses this esptool by default: https://github.com/igrr/esptool-ck (c compiled version of the tool) and there's nothing documented to indicate it supports any verify option.
Slightly confusingly..there's another esptool: https://github.com/themadinventor/esptool (python script type tool) and this one does have a verify option but it's not used by the arduino core by default.

Re: Is there a way to verify the upload in the Arduino IDE

PostPosted: Thu Jun 09, 2016 6:05 pm
by somedude
Thank you very much Joe.
That's too bad though.