1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 08:22:08 +02:00

avrdude: add Spanish translation (#10123)

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Darío Hereñú 2023-05-08 23:07:48 -03:00 committed by GitHub
parent 46bbd40c24
commit 1c8b45ac2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,20 @@
# avrdude
> Programa controlador para la programación de microcontroladores Atmel AVR.
> Más información: <https://www.nongnu.org/avrdude/>.
- Lee el microcontrolador AVR:
`avrdude -p {{AVR_dispositivo}} -c {{programador}} -U flash:r:{{file.hex}}:i`
- Escribe el microcontrolador AVR:
`avrdude -p {{AVR_dispositivo}} -c {{programador}} -U flash:w:{{file.hex}}`
- Lista de dispositivos AVR disponibles:
`avrdude -p \?`
- Lista de programadores AVR disponibles:
`avrdude -c \?`