*: clean up and normalize (#5437)

This commit is contained in:
marchersimon
2021-03-25 17:42:04 +01:00
committed by GitHub
parent 0f37d0336b
commit de311e1749
115 changed files with 874 additions and 877 deletions

View File

@@ -3,18 +3,18 @@
> Treiberprogramm für Atmel AVR Mikrocontroller-Programmierung.
> Mehr Informationen: <https://www.nongnu.org/avrdude/>.
- Schreibt Speicherinhalt des AVR Mikrocontrollers in datei.hex:
- Schreibt den Speicherinhalt eines AVR-Mikrocontrollers in eine Datei:
`avrdude -p {{AVR_gerät}} -c {{programmer}} -U flash:r:{{datei.hex}}:i`
`avrdude -p {{avr_gerät}} -c {{programmer}} -U flash:r:{{pfad/zu/datei.hex}}:i`
- Schreibt den Inhalt von datei.hex in den AVR Mikrocontroller:
- Schreibt den Inhalt einer Datei in einen AVR-Mikrocontroller:
`avrdude -p {{AVR_gerät}} -c {{programmer}} -U flash:w:{{datei.hex}}`
`avrdude -p {{avr_gerät}} -c {{programmer}} -U flash:w:{{pfad/zu/datei.hex}}`
- Liste alle verfügbaren AVR Geräte auf:
- Liste alle verfügbaren AVR-Geräte auf:
`avrdude -p \?`
- Liste alle verfügbaren AVR Programmer auf:
- Liste alle verfügbaren AVR-Programmer auf:
`avrdude -c \?`