Allow simulation of more htan two GPS instances#28578
Merged
peterbarker merged 6 commits intoArduPilot:masterfrom Nov 20, 2024
Merged
Allow simulation of more htan two GPS instances#28578peterbarker merged 6 commits intoArduPilot:masterfrom
peterbarker merged 6 commits intoArduPilot:masterfrom
Conversation
4cce4e9 to
dad086b
Compare
5c5cae6 to
139cbeb
Compare
tridge
requested changes
Nov 13, 2024
| #include <GCS_MAVLink/GCS.h> | ||
|
|
||
| namespace SITL { | ||
| // user settable parameters for airspeed sensors |
| // @Description: Enabled GPS | ||
| // @Values: 0:Disable, 1:Enable | ||
| // @User: Advanced | ||
| AP_GROUPINFO_FLAGS("ENABLE", 1, GPSParms, enabled, 0, AP_PARAM_FLAG_ENABLE), |
| // @Param: HDG | ||
| // @DisplayName: GPS Heading | ||
| // @Description: Enable GPS1 output of NMEA heading HDT sentence or UBLOX_RELPOSNED | ||
| // @Values: 0:Disabled, 1:Enabled |
| GPS_HEADING_HDT = 1, | ||
| GPS_HEADING_THS = 2, | ||
| GPS_HEADING_KSXT = 3, | ||
| GPS_HEADING_BASE = 4, // nb. I'm guessing, this could be ROVER! |
Contributor
Author
There was a problem hiding this comment.
Fixed this up - the enumeration name was correct.
139cbeb to
e996079
Compare
need to take into account addition of (eg.) _X suffix for VECTOR3F parameters
e996079 to
3b295ce
Compare
This file contains hidden or 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
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.
Test with:
No parameter conversion is done.
Parameters are moved to a subclass
Tested on branch for this PR: #28581
New requirements for testing RTK moving baseline - you must specify which is your "other" GPS as well as what sort of moving baseline thing you are.