1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 06:18:17 +01:00
tldr/pages.it/common/avrdude.md
2019-01-28 18:10:19 +00:00

19 lines
423 B
Markdown

# avrdude
> Driver per il programmatore di microcontrollori Atmel AVR.
- Leggi dal microcontrollore AVR:
`avrdude -p {{dispositivo_AVR}} -c {{id_programmatore}} -U flash:r:{{file.hex}}:i`
- Scrivi sul microcontrollore AVR:
`avrdude -p {{dispositivo_AVR}} -c {{id_programmatore}} -U flash:w:{{file.hex}}`
- Elenca dispositivi AVR disponibili:
`avrdude -p \?`
- Elenca programmatori AVR disponibili:
`avrdude -c \?`