forked from MarlinFirmware/Marlin
-
Notifications
You must be signed in to change notification settings - Fork 15
Flashing: Linux
Alexander D. Kanevskiy edited this page Nov 13, 2020
·
5 revisions
- Install avrdude in your Linux distribution.
- Debian/Ubuntu/Raspbian:
apt install avrdude
- Fedora/CentOS:
or
dnf install avrdude
yum install avrdude
- OpenSUSE:
zypper in avrdude
- Debian/Ubuntu/Raspbian:
- Using avrdude:
Notes:
avrdude -v -p atmega1284p -c arduino -b 115200 -D -P /dev/ttyUSBx -U flash:w:Anycubic-Mega-Zero-firmware.hex:i
- Replace
/dev/ttyUSBx
with your actual name of USB-Serial port where printer is attached - Replace
Anycubic-Mega-Zero-firmware.hex
if you have different firmware filename
- Replace