Difficulties when burning bootloader with Arduino as ISP (Mini/Mighty/MegaCore)
See original GitHub issueSee MiniCore #115 for more details.
It’s impossible to set the upload baud rate for the bootloader when burning bootloader with Arduino as ISP. this is because ArduinoISP relies on upload_speed = 19200
to work. However, when this is specified, a bootloader with a baud rate of 19200 is always selected, no matter what board_upload.speed
is defined to.
board_upload.speed
should be used when doing “regular” uploads using-carduino
as upload protocol (using a bootloader).upload_speed
should be used when the user is uploading using a programmer to upload, or setting the fuses/burning bootloader.
This is only an issue with programmers that uses a serial port and a baud rate to communicate with Avrdude. @ivankravets @valeros I guess it should be an easy fix.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Bootloder wont burn (arduino as isp)(solved)
I am having issues burnig the bootloader for the arduino uno. Tme IDE keeps giving me this error: avrdude: Yikes! Invalid device signature....
Read more >Burn Bootloader | Troubleshooting Guide For Arduino
Instructions for burning the bootloader: Connect an ISP programmer to the ICSP header on your Arduino board. Select the target board from the...
Read more >Arduino as ISP to Burn Bootloader on AVR Microcontroller
Step by step tutorial how to use Arduino Uno as ISP (In-system programming) to burn bootloader on Arduino Nano (ATmega 328) or Arduino...
Read more >Burn a New Bootloader - Arduino Pro Mini - Instructables
There are a number of ways to burn a bootloader to an Arduino device, but the one I used (for convenience and speed)...
Read more >Installing an Arduino Bootloader - SparkFun Learn
However, "ArduinoISP" will not work if it is selected. Finally, select Burn Bootloader. This will take the board you selected in the Arduino...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
OK, at least my idea is not thought through yet. We can leave this for now and focus on the other thing.
Yes, that is right, sorry. Then I think we agree. Use
board_bootloader.speed
is present to get the correct bootloader file. If not, useboard_upload.speed
. OK?Thank you! Will give this a try very soon. I’ll report back if I find any issues 🙂