1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-30 08:17:56 +01:00
tldr/pages.it/common/avrdude.md

21 lines
483 B
Markdown
Raw Normal View History

2019-01-19 23:11:13 +01:00
# avrdude
> Driver per il programmatore di microcontrollori Atmel AVR.
> Maggiori informazioni: <https://www.nongnu.org/avrdude/>.
2019-01-19 23:11:13 +01:00
- 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 \?`