As Justin Rajewski wrote: > avrdude> write flash 0 10 > >>> write flash 0 10 > avrdude (write): error writing 0x0a at 0x00000 cell=0xff
That's normal. Single-byte write operations did only work on old AVRs where the flash write was not paged. If someone is seriously interested, terminal mode could probably be rewritten to cache single-byte writes, and coerce them into a page update, but I'd consider that fairly low priority. If you use the -U option (just -U flashfile is OK, the full form were -U flash:w:flashfile:format), it causes avrdude to use paged write operations which is supposed to work. -- cheers, J"org .-.-. --... ...-- -.. . DL8DTL http://www.sax.de/~joerg/ NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) _______________________________________________ avrdude-dev mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/avrdude-dev
