tldr/pages/common/avrdude.md

21 lines
422 B
Markdown
Raw Normal View History

2016-08-08 08:10:06 +01:00
# avrdude
> Driver program for Atmel AVR microcontrollers programming.
2019-04-11 17:28:52 +01:00
> Homepage: <https://www.nongnu.org/avrdude/>.
2016-08-08 08:10:06 +01:00
- Read AVR microcontroller:
`avrdude -p {{AVR_device}} -c {{programmer}} -U flash:r:{{file.hex}}:i`
- Write AVR microcontroller:
`avrdude -p {{AVR_device}} -c {{programmer}} -U flash:w:{{file.hex}}`
- List available AVR devices:
`avrdude -p \?`
- List available AVR programmers:
`avrdude -c \?`