BL Firmware
Tip
- Please note that the factory has already pre-flashed the
bootloader, so there is no need to flash it again. - For regular firmware updates, please prioritize using the USB firmware or USB bridge CAN firmware pages. Do not repeatedly flash the BL firmware.
Entering Flash Mode
Power Off Operation
Before starting, completely shut down the printer and disconnect the power supply. Do not plug or unplug wiring harnesses, organize interface wiring sequences, or touch terminals while the device is powered.
- There are two methods to enter flash mode.
- First method: With the motherboard completely powered off, use a jumper cap to connect BOOT and BOOT1, then connect one end of a data-capable cable to the motherboard and the other end to the computer.
- The second method involves reset timing, which is not recommended for ordinary users to perform on their own. If after-sales support requires this method, please follow the steps provided by after-sales support.
Loading...
Flashing Firmware
- WIN Flashing
- LINUX/FLYOS Flashing
- Gemini bootloader firmware.
- You can obtain the firmware via the following link:
Windows 默认可能隐藏文件扩展名。下载后请确认文件扩展名未被修改,不要保存成
.txt 或其他扩展名。- The firmware is located at
FLY-Firmware/MainBoard/Gemini
- Turn DIP switches
3and4ON, and connect the lower computer USB to the onboard Type-C port. - Turn DIP switches
1and2OFF, otherwise it will affect the connection between the lower computer and the computer.Loading...
- STM32CubeProgrammer
- DFU-AUTO
Notice
To ensure successful STM32 flashing, please note the following:
- The USB port on some computers may cause unstable flashing due to driver or signal compatibility issues. It is recommended to try a different USB port for connection.
- If changing ports does not work, an effective solution is to connect via an external USB hub, which often improves compatibility.
- When the flashing software reports the error shown below, please also prioritize trying a USB hub. If the issue persists, check or use the host computer for flashing.
Loading...
- Flashing tool Download Link
- You need to download
SetupSTM32CubeProgrammerandSTM32 DFU Driver - Download the firmware to any directory on your computer
- Connect the motherboard to the computer using a Type-C cable, ensuring it has entered
dfuflashing mode - In STM32CubeProgrammer, select USB mode, refresh, and connect
Loading...
- If no error popup appears, the connection is successful.
Loading...
- Click the download icon on the left and check the following options
Loading...
- Click
Browseas indicated by the arrow, then select the firmware you need to flashLoading... - Set
Start addressto0x08000000- Note: If the firmware is in
HEXformat, please skip this step!!
Loading... - Note: If the firmware is in
- Click
Start automatic modebelow to begin flashing the firmwareLoading... - The following prompt indicates that the firmware flashing is complete
Loading...
- Download and run FLY DFU-AUTO
- If the
Driver Statusis unavailable, clickInstall Driverto complete the WinUSB driver installation - Click
Browse...and select the.binfirmware file to be flashed - Click
Start Flashing, view the flashing progress via theRunning Logbelow, and wait for the flashing to complete
Detailed Tutorial: FLY DFU-AUTO Download and Usage
- Turn DIP switches
1and2ON, and connect the lower computer to the onboard upper computer via the built-in USB. - Turn DIP switches
3and4OFF, otherwise it will affect the connection between the lower computer and upper computer.Loading... - After adjusting the DIP switches according to this method, the lower Type-C port will be occupied by the lower computer. Do not connect other devices to it.
- Linux
- FLYOS
- Install flashing tool.sudo apt updatesudo apt install dfu-util -y
- Confirm the device has entered DFU flashing mode.lsusb
If you can see 0483:df11, it means DFU flashing mode has been entered successfully.
Loading... - Pull/update firmware repository.git clone https://cnb.cool/3dmellow/FLY-Firmware ~/FLY-Firmwarecd ~/FLY-Firmware && git pull --ff-only
- Flash firmware.sudo dfu-util -a 0 -d 0483:df11 --dfuse-address 0x08000000 -D ~/FLY-Firmware/MainBoard/Gemini/GeminiV3.bin
- If File downloaded successfully appears, flashing is successful.Loading...
- FLY host computer usually has dfu-util built-in, no need to install flashing tool again.
- Confirm the device has entered DFU flashing mode.lsusb
If you can see 0483:df11, it means DFU flashing mode has been entered successfully.
Loading... - Pull/update firmware repository.git clone https://cnb.cool/3dmellow/FLY-Firmware /data/FLY-Firmwareln -s /data/FLY-Firmware /root/FLY-Firmwarecd /data/FLY-Firmware && git pull --ff-only
- Flash firmware.sudo dfu-util -a 0 -d 0483:df11 --dfuse-address 0x08000000 -D /data/FLY-Firmware/MainBoard/Gemini/GeminiV3.bin
- If File downloaded successfully appears, flashing is successful.Loading...
Loading...