mirror of https://github.com/CrimsonTome/tldr.git
21 lines
430 B
Markdown
21 lines
430 B
Markdown
# avrdude
|
|
|
|
> Driver program for Atmel AVR microcontrollers programming.
|
|
> More information: <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 \?`
|