mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-13 20:35:42 +02:00
avrdude: add page (#989)
This commit is contained in:
parent
a1ceb9d1b6
commit
f6a41ecee9
1 changed files with 19 additions and 0 deletions
19
pages/common/avrdude.md
Normal file
19
pages/common/avrdude.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# avrdude
|
||||||
|
|
||||||
|
> Driver program for Atmel AVR microcontrollers programming.
|
||||||
|
|
||||||
|
- 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 \?`
|
Loading…
Add table
Reference in a new issue