-
I'm currently unable to upload to my arduino nano (atmega328p). The error is:
My ravedude runner is: [target.'cfg(target_arch = "avr")']
runner = "ravedude -cb 57600 -P com4 nano" I have been able to upload manually using: avr-objcopy -O ihex ./target/avr-atmega328p/release/thing.elf ./target/avr-atmega328p/release/thing.hex
avrdude -F -c arduino -p m328p -P com4 -U flash:w:./target/avr-atmega328p/release/thing.hex Note, I was unable to use Any ideas? |
Beta Was this translation helpful? Give feedback.
Answered by
jngls
Dec 3, 2022
Replies: 1 comment
-
Oh wait, it worked with |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jngls
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh wait, it worked with
nano-new
instead ofnano
in the runner declaration.