-
-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Smith Predictor #782
Draft
nerdCopter
wants to merge
4
commits into
emuflight-1.0.0-master
Choose a base branch
from
20220329_cherry_pick_Smith_Predictor
base: emuflight-1.0.0-master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Smith Predictor #782
nerdCopter
wants to merge
4
commits into
emuflight-1.0.0-master
from
20220329_cherry_pick_Smith_Predictor
Conversation
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
nerdCopter
commented
Mar 30, 2022
nerdCopter
force-pushed
the
emuflight-1.0.0-master
branch
2 times, most recently
from
May 22, 2022 20:05
07ddd2b
to
7015291
Compare
nerdCopter
force-pushed
the
20220329_cherry_pick_Smith_Predictor
branch
from
May 26, 2022 13:30
32e6390
to
d33f104
Compare
nerdCopter
force-pushed
the
emuflight-1.0.0-master
branch
from
May 26, 2022 15:47
7015291
to
4a922e6
Compare
nerdCopter
force-pushed
the
20220329_cherry_pick_Smith_Predictor
branch
from
May 26, 2022 15:50
d33f104
to
f67b904
Compare
nerdCopter
force-pushed
the
emuflight-1.0.0-master
branch
from
May 31, 2022 16:09
4a922e6
to
64a1957
Compare
nerdCopter
force-pushed
the
20220329_cherry_pick_Smith_Predictor
branch
from
June 2, 2022 15:04
f67b904
to
bd2dcf3
Compare
nerdCopter
force-pushed
the
emuflight-1.0.0-master
branch
2 times, most recently
from
June 11, 2022 20:52
0c4ee8b
to
3aab740
Compare
nerdCopter
force-pushed
the
20220329_cherry_pick_Smith_Predictor
branch
from
July 6, 2022 16:23
bd2dcf3
to
a6f248a
Compare
nerdCopter
force-pushed
the
emuflight-1.0.0-master
branch
from
July 15, 2022 14:16
3aab740
to
e86e758
Compare
nerdCopter
force-pushed
the
20220329_cherry_pick_Smith_Predictor
branch
from
July 15, 2022 14:47
a6f248a
to
a114582
Compare
nerdCopter
force-pushed
the
emuflight-1.0.0-master
branch
2 times, most recently
from
November 22, 2022 19:11
fe70257
to
fe7710c
Compare
adds a smith predictor that helps reduce delay from gyro filtering
nerdCopter
force-pushed
the
20220329_cherry_pick_Smith_Predictor
branch
from
November 22, 2022 19:18
a114582
to
e699c49
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Smith predictors feed inverse delay into a system in order to reduce delay of a system. Here it is used to help remove delay from filtering with a simple time delay model. Seems to work fairly well. The settings are the strength, delay, and filtering. Filtering adds a pt1 filter over the prediction to help reduce noise. Strength decides how much of the prediction we use, AKA a strength of 50 uses half the prediction. Delay decides how many ms/10 of delay the predictor will try to compensate for, AKA a value of 40 tries to account for 4.0 ms of delay.
For logging set the debug mode to smith_predictor. Debug 0 is the input, debug 1 is the output, debug 2 is the gyro sample it is using for the prediction, and debug 3 is the amount that the predictor changes the input.