Reduce CPU overhead by rate-limiting updateArmingStatus() to 200 Hz #11200
+6
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
User description
Summary
Rate-limit
updateArmingStatus()from every PID loop iteration (2000 Hz) to 200 Hz, reducing CPU overhead by 10-13%.Changes
updateArmingStatus()every 10th PID loop iterationRationale
The
updateArmingStatus()function performs 20+ safety checks (GPS fix quality, battery voltage, sensor health, failsafe status, LED indicators) that don't require millisecond-level updates:Testing
Tested on AT32F435 hardware (BLUEBERRYF435WING):
All arming safety checks, LED indicators, and mode switching remain fully functional.
Impact
PR Type
Enhancement
Description
Rate-limit updateArmingStatus() from 2000 Hz to 200 Hz
Reduces CPU overhead by 10-13% on PID loop execution
Maintains all safety checks and functional behavior
No configuration changes or breaking changes required
Diagram Walkthrough
File Walkthrough
fc_core.c
Implement rate divider for updateArmingStatus() functionsrc/main/fc/fc_core.c
every iteration