How to update the Firmware without USB connection
I'm totally new to this and just got my printer recently. I'm about to get started and was advised that I should update the Firmware. My printer is not near my pc so its not connected via usb. How am I able to update the printer? Is there a way to download it to the sim card and insert it into the printer?
Thanks
Re: How to update the Firmware without USB connection
Mitch
Unfortunately, firmware updates are via USB/PC only.
Peter
Please note: I do not have any affiliation with Prusa Research. Any advices given are offered in good faith. It is your responsibility to ensure that by following my advice you do not suffer or cause injury, damage…
Re: How to update the Firmware without USB connection
Thank you. I moved the printer so I can connect to do the update via usb to my PC. However, there is no indication if I'm connected properly after downloading the software and the zip file for the firmware update. WIth no progress meter, I can't even tell if its working. The Firmware Updater said its updating, and not to disconnect, but nothing is happening otherwise. Nothing showing on the LCD screen either. I've been on with support chat while doing the firmware update and its hasn't completed after about 20 minutes. I'm worried about doing anything in the midst of an update.
Re: How to update the Firmware without USB connection
I also have my printer quite a distance away from my main PC, but I do use Octoprint on a Raspberry Pi 3. My firmware upgrade workflow is as follows:
Update Script below. This requires the avrdude package in your distribution. I use Ubuntu Mate. so for me, it is "apt-get install avrdude".
#!/bin/sh
if [ -n "$1" ]; then
/usr/bin/avrdude -C/etc/avrdude.conf -v -patmega2560 -cstk500v2 -P/dev/ttyACM0 -b115200 -D -Uflash:w:$1:i
fi
and an 8 inch (200mm) or greater caliper is recommended.
Re: How to update the Firmware without USB connection
I also have my printer quite a distance away from my main PC, but I do use Octoprint on a Raspberry Pi 3. My firmware upgrade workflow is as follows:
Nice work! I'll have to remember this as I transition to using OctoPrint more.
Re: How to update the Firmware without USB connection
I also have my printer quite a distance away from my main PC, but I do use Octoprint on a Raspberry Pi 3. My firmware upgrade workflow is as follows:
Update Script below. This requires the avrdude package in your distribution. I use Ubuntu Mate. so for me, it is "apt-get install avrdude".
#!/bin/sh
if [ -n "$1" ]; then
/usr/bin/avrdude -C/etc/avrdude.conf -v -patmega2560 -cstk500v2 -P/dev/ttyACM0 -b115200 -D -Uflash:w:$1:i
fi
For all Linux user this is pure gold! THANKS! This should be made sticky in a linux thread....
Re: How to update the Firmware without USB connection
Better this way:
#!/bin/sh
[ -n "$1" -a -r "$1" ] && /usr/bin/avrdude -C/etc/avrdude.conf -v -patmega2560 -cstk500v2 -P/dev/ttyACM0 -b115200 -D -Uflash:w:$1:i
(just cosmetic)