As it is possible to program a ATtiny45 using Arduino as ISP Programmer, is there a way to backup an ATtiny45 program to a .hex file using Arduino?
Asked
Active
Viewed 934 times
5
1 Answers
5
Assuming the lock bits on the device haven't been set, sure. Simply prepare the Arduino for ArduinoISP, hook up the ATtiny45, and perform a read using AVRDUDE instead of a write (-U flash:r:foo.hex:i).
Ignacio Vazquez-Abrams
- 17,663
- 1
- 27
- 32
avrdude. You need to call something likeavrdude -pattiny45 -cstk500v1 -Uflash:r:filename.hex:i– Gerben Oct 09 '14 at 16:27