Katapult Firmware
Katapult Firmware Description
tip
Katapult was originally named CanBoot, and later renamed to katapult.
- Katapult firmware is a type of bootloader that can be used in conjunction with Klipper. After burning the firmware using methods like DFU, you can use commands to update the firmware with one click.
- Advantage: Quickly double-clicking the reset button or quickly cutting power twice will enter the Katapult firmware, at which point there will be an LED flashing on the mainboard.
- Katapult firmware can only be used to burn firmware and cannot connect to Klipper!!!
- Katapult firmware supports three connection methods for connecting to the host computer, and the firmwares for these three methods are independent of each other.
- CAN connection
- Advantage: After compiling the KLIPPER firmware, you can directly update the firmware using a command, and it has strong interference resistance.
- Disadvantage: You need to know the firmware compilation rate in advance.
- RS232 connection
- Advantage: After compiling the KLIPPER firmware, you can update the firmware using a command, and it has very strong interference resistance.
- Disadvantage: You cannot use a command to update the firmware with one click; you need to manually enter the Katapult firmware.
- USB connection
- Advantage: After compiling the KLIPPER firmware, you can directly update the firmware using a command.
- Disadvantage: A long data cable is prone to interference, which may lead to disconnection.
- CAN connection
tip
- SHT36/42 supports CAN
- Only CAN firmware with 500K and 1M baud rates are provided here
Entering Flash Mode
tip
The circled button is the BOOT button
- With the motherboard completely powered off, press and hold the BOOT button, then connect one end of a data-transferring TYPE-C cable to the motherboard and the other end to your device


Flashing Firmware
- STM32F072 Windows flashing guide
- STM32F072 Host flashing guide
- Katapult firmware for SHT36
- Click on the download link below
-
Loading...
Notice
To ensure successful STM32 firmware flashing, please pay attention to the following:
- Some computers' USB ports may cause unstable flashing due to driver or signal compatibility issues. We recommend that you try connecting using a different USB port.
- If changing ports doesn't help, an effective solution is to connect via an external USB hub, which often improves compatibility.
- When the flashing software displays the error message below, try using a hub first. If the problem persists, please check or use the host computer to flash

- Flashing tool Download link
- 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, then refresh and connect

- If no error pop-up appears, the connection is successful.
Warning
If the following message appears, it indicates a computer or software issue. Please use the host computer to flash: Host Computer Flashing Guide

- Click the download icon on the left and select the options below

- Click
Browseat the arrow's location, then select the firmware you need to flash
- Select
Start addressand enter0x08000000- Note: If the firmware is in
HEXformat, skip this step!!

- Note: If the firmware is in
- Click
Start automatic modebelow to begin flashing the firmware
- The appearance of the message below indicates that the firmware has been successfully flashed

- Install the burning tool
- No need to install the burning tool for the FLY upper computer
- If you need to install, please note: The upper computer needs to be connected to the internet to install normally
- If already installed, no need to install
sudo apt update
sudo apt install dfu-util -y
- Execute the following command to check if the connection is successful.
lsusb
- If there is no DFU device, please try to re-enter burning mode
- Due to system version issues, other names may be displayed. If
0483:df11is shown, it indicates that the burning mode has been entered

- Pull the pre-compiled firmware
- These are all pre-compiled firmwares
- Please note: The upper computer needs to be connected to the internet to install
- The upper computer needs to execute the command below to download the firmware package (if unable to get the file due to network issues on the upper computer, please contact the administrator in the after-sales group)
cd && git clone https://github.com/FengHua741/FLY_Katapult.git
- If the firmware package has already been downloaded, it is recommended to update the firmware package before proceeding with the remaining operations
cd ~/FLY_Katapult && git pull
- Flash Firmware
tip
Only one of the firmware files needs to be flashed
-
Below is the command to flash firmware with 500K CAN baud rate
sudo dfu-util -a 0 -d 0483:df11 --dfuse-address 0x08000000 -D ~/FLY_Katapult/developer/SHT36/FLY_SHT36_072_500K.BIN -
Below is the command to flash firmware with 1M CAN baud rate
sudo dfu-util -a 0 -d 0483:df11 --dfuse-address 0x08000000 -D ~/FLY_Katapult/developer/SHT36/FLY_SHT36_072_1M.BIN
-
If you see the text
File downloaded successfullyas indicated in the picture below, the flashing was successful
tip
After flashing, the motherboard must be completely powered off once.
Loading...