AVRDUDE warnings #1636
-
I get AVRDUDE warnings like these:
And these:
I think this means there's a discrepancy between my Arduino board and the AVRDUDE config file. What should I do to fix this? Or maybe this won't cause any major issues since everything seems to running successfully?
Note: I'm using Arduino Uno R3. And I'm running AVRDUDE using Also posted here. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
These warnings look like the setup uses a new(er) avrdude with an old configuration file that contains errors. This is not recommended. Always use the avrdude.conf file that comes with the particular release. If a part is not mentioned by any f these warnings (eg, the ATmega328P) then programming these parts won't be affected. |
Beta Was this translation helpful? Give feedback.
-
Sorry but where do I get the right |
Beta Was this translation helpful? Give feedback.
-
Use the official release here. |
Beta Was this translation helpful? Give feedback.
-
I have never heard of that method. Can you not run avrdude directly from the shell, eg, bash? |
Beta Was this translation helpful? Give feedback.
I found out the problematic config file. It's in the Cargo crate (Rust): https://github.com/Rahix/avr-hal/blob/main/ravedude/src/avrdude/avrdude.conf
Thanks for helping me. I have to figure out how to fix that file.