MCU Firmware Update w/ ZMU
Guide to updating microcontroller (MCU) firmware using the ZMU utility on Windows and Linux systems.
You can use this process to install updated microcontroller (MCU) firmware on your model system. You will need the updated Microcontroller firmware, which is available on the specific system’s page. Make sure to download the Microcontroller firmware before proceeding.
Downloads
Download the ZMU utility for deploying the updated microcontroller firmware
Windows Update
Download the ZMU utility with the link above and copy zmu-windows-x86_64.exe from it to the desktop.
Copy the firmware to be installed to the desktop.
Open a command prompt (press Win+X then I, or open the Start Menu and type “cmd”), then run the following commands (replace “<firmware.bin>” with the name of the firmware to be installed):
cd %HOME%\Desktop
zmu-windows-x86_64.exe image upload <firmware.bin>
Once the update is complete, fully shutdown the computer (not just a Restart). Turn the system back on, and the update is now complete.
Linux Update
(x86-64, ARM, AArch64)
Download the ZMU utility with the link above.
Open a terminal and run the following commands (replace “<firmware.bin>” with the name of the firmware to be installed):
zmu=zmu-linux-`uname -m`
unzip ~/Downloads/zmu-1.0.0.zip $zmu
chmod +x $zmu
sudo ./$zmu image upload <firmware.bin>
Once the update is complete, fully shutdown the computer (not just a Restart). Turn the system back on, and the update is now complete.
Last updated