Katapult Firmware
Katapult Firmware Description
Tip
- The Fly-D7 motherboard can only be flashed with BL via the Type-C USB interface
- Katapult firmware is pre-installed by default from the factory
Entering Flash Mode
Tip
The RST button is on the left, and the BOOT button is on the right
- There are two ways to enter flash mode
- Method 1: With the toolboard completely powered off, hold down the BOOT button, then connect one end of a Type-C cable with data transfer capability to the motherboard and the other end to your device
- Method 2: After connecting one end of a Type-C cable with data transfer capability to the motherboard and the other end to your device, hold down the BOOT button and press the RST button, then release the RST button and finally release the BOOT button
Loading...
Flashing Firmware
- WIN Flashing
- LINUX/FLYOS Flashing
- D7 Katapult firmware
- You can obtain the firmware via the following link:
Windows 默认可能隐藏文件扩展名。下载后请确认文件扩展名未被修改,不要保存成
.txt 或其他扩展名。- The firmware is located at
FLY-Firmware/MainBoard/D
- 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/D/FLY_DP5.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/D/FLY_DP5.bin
- If File downloaded successfully appears, flashing is successful.Loading...
Loading...