-
Notifications
You must be signed in to change notification settings - Fork 17.5k
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
Plane: Enable quadplane dead reckoning navigation to start earlier #27883
base: master
Are you sure you want to change the base?
Plane: Enable quadplane dead reckoning navigation to start earlier #27883
Conversation
ArduPlane/ArduPlane.cpp
Outdated
@@ -505,6 +505,11 @@ void Plane::update_fly_forward(void) | |||
return; | |||
} | |||
|
|||
if (quadplane.in_transition()) { |
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 this does need an option, and off by default, likely need Q_OPTION2
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.
Needs a rebase on #27770
I think its a good idea, but I think just in transition is is a bit too coarse. Maybe a new method for the the transition class? I think we would be OK to turn on fly forward in the timer stage but maybe not airspeed wait. |
18bbfae
to
e72c075
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.
please check replaying an old log, and double check my 23 bits junkcode test
@@ -87,14 +87,21 @@ class AP_DAL { | |||
void log_writeDefaultAirSpeed3(const float aspeed, const float uncertainty); | |||
void log_writeEulerYawAngle(float yawAngle, float yawAngleErr, uint32_t timeStamp_ms, uint8_t type); | |||
|
|||
enum class StateMask { | |||
enum class RFRNFlags { |
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.
should have a bitwidth?
}; | ||
|
||
// EKF ID for timing checks | ||
enum class EKFType : uint8_t { | ||
EKF2 = 0, | ||
EKF3 = 1, | ||
EKF2 = 2, |
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.
can you explain this?
test here for bits, please check! |
doesn't actually really test the effect this has as I wasn't able to spot one immediately
This reduces EKF errors during transition fromVTOL to FW flight when operating without a GPS fix.
e72c075
to
0f70279
Compare
This reduces EKF errors during transition fromVTOL to FW flight when operating without a GPS fix.