-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Temperature/voltage/current protection + Analog input + Extended DSHOT telemetry + iBUS/S.Port telemetry + KISS auto telemetry + Proper turtle mode + 250ms zero throttle arming interval + DSHOT/serial link recovery + DSHOT commands for changing "timing" and "duty_ramp" + CLI audio feedback mode + LED control Bootloader revision 2 + Flash write protection Support for AT32F421 and GD32E230 G071 hardware comp blanking G071 PA2 input Swap functions of IWDG and WWDG Always use input pull-up Calibrate throttle within 6.25% margin Bug fixes, optimizations and cosmetics Refactored target names Default dead time 750ns (550ns MCU + 200ns FD6288) Drop LTO
- Loading branch information
Showing
37 changed files
with
2,437 additions
and
826 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Tweaks for '.ramtext' sections | ||
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION OFF) | ||
add_link_options(-Wl,--no-warn-rwx-segments) | ||
add_target(BOOT1_PA2 STM32F0 IO_PA2) | ||
add_target(BOOT1_PB4 STM32F0) | ||
add_target(BOOT2_PA6 STM32G0 IO_PA6) | ||
add_target(BOOT2_PB4 STM32G0) | ||
add_target(BOOT3_PA2 STM32F0 IO_PA2 USARTv1) | ||
|
||
add_target(STM32F0 BOOT_F0_PA2 IO_PA2) | ||
add_target(STM32F0 BOOT_F0_PA6 IO_PA6) | ||
add_target(STM32F0 BOOT_F0_PB4) | ||
add_target(STM32G0 BOOT_G0_PA6 IO_PA6) | ||
add_target(STM32G0 BOOT_G0_PB4) | ||
# Experimental targets | ||
add_target(_BOOT1_PA6 STM32F0 IO_PA6) | ||
add_target(_BOOT2_PA2 STM32G0 IO_PA2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.