1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/avrdude.md
2019-04-12 14:41:22 +02:00

20 lines
422 B
Markdown

# avrdude
> Driver program for Atmel AVR microcontrollers programming.
> Homepage: <https://www.nongnu.org/avrdude/>.
- 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 \?`