| This is a late response, but as there was a question concerning the same topic, http://www.avrfreaks.net/index.php?name ... 949#963949 , I decided to answer.
david.harrison wrote:
I then use the following script to write the ReadGPFuses.hex file to the in-system chips :
batchisp.exe -device AT32UC3A1128 -hardware usb -operation memory configuration program loadbuffer "ReadGPFuses.hex
Batchisp commands are executed in order and you missed that. You should first load the buffer and then program:
Code:
batchisp.exe -device AT32UC3A1128 -hardware usb -operation memory configuration loadbuffer "ReadGPFuses.hex" program
It's also good to verify the memory after it has been reprogrammed:
Code:
batchisp.exe -device AT32UC3A1128 -hardware usb -operation memory configuration loadbuffer "ReadGPFuses.hex" program verify
|