-
Notifications
You must be signed in to change notification settings - Fork 17.6k
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
Prearm check to validate backend read rates against scheduler loop rate #28672
base: master
Are you sure you want to change the base?
Prearm check to validate backend read rates against scheduler loop rate #28672
Conversation
fafeac5
to
6628454
Compare
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Getting there
} | ||
// if gyro backend rate hz is 0, that means we are polling sensor at the sample rate or higher | ||
if (_backends[i]->get_gyro_backend_rate_hz() == 0) { | ||
if (_gyro_raw_sample_rates[i] < _loop_rate) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't you have to cater for oversampling here? See get_gyro_rate_hz()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn't we agree that the rate needs to be at least 2x the loop rate?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't you have to cater for oversampling here? See get_gyro_rate_hz()
No, oversampling is only set by drivers that use FIFO, and hence will be setting backend_rate_hz and we will be using that for comparision
Didn't we agree that the rate needs to be at least 2x the loop rate?
Done.
@@ -75,6 +75,11 @@ class AP_InertialSensor_Invensensev3 : public AP_InertialSensor_Backend | |||
bool accumulate_samples(const struct FIFOData *data, uint8_t n_samples); | |||
bool accumulate_highres_samples(const struct FIFODataHighRes *data, uint8_t n_samples); | |||
|
|||
// get the gyro backend rate in Hz at which the FIFO is being read | |||
uint16_t get_gyro_backend_rate_hz() const override { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should take the opportunity to come up with a better name than "backend". Perhaps "get_gyro_read_rate_hz()" at least conveys what is going on and why it might be important.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That needs to be much larger and a separate change, I don't want to widen the scope of this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you could just remove the word "backend" from the method name maybe?
6628454
to
023a3ad
Compare
continue; | ||
} | ||
if (_backends[i]->get_gyro_backend_rate_hz() < (2*_loop_rate)) { | ||
hal.util->snprintf(fail_msg, fail_msg_len, "Gyro %d backend rate %dHz < sched loop rate %dHz", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we could shorten the message by removing "Hz" or "rate"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks good to me but I'll leave it to Andy and Sid to sort out naming
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me, thanks @bugobliterator !
@andyp1per I'd like to get your comments on this if possible |
@andyp1per looking for your approval on this one. Seems like a sensible sanity check. |
023a3ad
to
ff88246
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good now - thanks @bugobliterator !
…t scheduler loop rate
ff88246
to
94c4ebc
Compare
I've rebased this on top of CI fixes and marking it for MergeOnCIPass. |
.... has to pass CI:
|
This PR adds a prearm check that ensures that we are reading gyro data atleast as fast as we are running our main loop, where all controllers run at. We do this for all the INS sensors that are enabled.
This avoids a situation where user might have set SCHED LOOP RATE faster than gyro poll rate or primary gyro with appropriate backend rate but forgot to do so for the rest.