BL Firmware
Tip
- Please note that the factory has already pre-flashed the
bootloader, no need to flash it again
Entering Flash Mode
- There are two methods to enter flash mode
- First method: With the tool board completely powered off, short-circuit the BOOT button, then connect one end of a data-capable TYPE-C cable to the motherboard and the other end to your device
- Second method: After connecting one end of a data-capable TYPE-C cable to the motherboard and the other end to your device, short-circuit the BOOT button, then press the RST button, release the RST button, and finally release the BOOT button
Loading...
Flashing Firmware
- WIN Flashing
- LINUX/FLYOS Flashing
- SUPER8 bootloader firmware
- You can obtain the firmware via the following link:
- You can obtain the firmware via the following link:
Windows 默认可能隐藏文件扩展名。下载后请确认文件扩展名未被修改,不要保存成
.txt 或其他扩展名。- The firmware is located at
FLY-Firmware/MainBoard/SUPER
- 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
- 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/SUPER/SUPER8PRO.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/SUPER/SUPER8PRO.bin
- If File downloaded successfully appears, flashing is successful.Loading...
Loading...