2025-09-14 18:48:49 -06:00
|
|
|
# avrdude
|
|
|
|
|
|
|
|
|
|
> Program ovladače pro programování Atmel AVR mikrořadičů.
|
|
|
|
|
> Více informací: <https://www.nongnu.org/avrdude/user-manual/avrdude_3.html#Option-Descriptions>.
|
|
|
|
|
|
|
|
|
|
- P[r]ečíst flash ROM AVR mikrořadiče s konkrétním ID součástky:
|
|
|
|
|
|
2026-06-12 17:51:25 -06:00
|
|
|
`avrdude -p {{part_id}} -c {{id_programatora}} -U flash:r:{{soubor.hex}}:i`
|
2025-09-14 18:48:49 -06:00
|
|
|
|
|
|
|
|
- Zapsat do flash ROM AVR mikrořadiče:
|
|
|
|
|
|
2026-06-12 17:51:25 -06:00
|
|
|
`avrdude -p {{part_id}} -c {{programator}} -U flash:w:{{file.hex}}`
|
2025-09-14 18:48:49 -06:00
|
|
|
|
|
|
|
|
- Vypsat dostupné AVR zařízení:
|
|
|
|
|
|
|
|
|
|
`avrdude -p \?`
|
|
|
|
|
|
|
|
|
|
- Vypsat dostupné AVR programátory:
|
|
|
|
|
|
|
|
|
|
`avrdude -c \?`
|