Skip to content

Commit

Permalink
Merge pull request #7529 from DonLakeFlyer/RTKMin
Browse files Browse the repository at this point in the history
Change Survey-In min accuracy
  • Loading branch information
DonLakeFlyer authored Jun 14, 2019
2 parents dc83a51 + 08a023d commit 14d0b71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Note: This file only contains high level features or important fixes.
* Major rewrite and bug fix pass through Structure Scan. Previous version had such bad problems that it can no longer be supported. Plans with Structure Scan will need to be recreated. New QGC will not load old Structure Scan plans.

### 3.5.3 - Stable
* Change minimum RTK Survey-In limit to 0.01 meters
* Change Windows driver detection logic
* Fix crash when clicking on GeoFence polygon vertex
* PX4: Fix missing ```MC_YAW_FF``` parameter in PID Tuning
Expand Down
6 changes: 3 additions & 3 deletions src/Settings/RTK.SettingsGroup.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
{
"name": "surveyInAccuracyLimit",
"shortDescription": "Survey in accuracy (U-blox only)",
"longDescription": "The maximum accuracy allowed prior to completing survey in.",
"longDescription": "The minimum accuracy value that Survey-In must achieve before it can complete.",
"type": "double",
"defaultValue": 2.0,
"min": 0.5,
"min": 0.01,
"units": "m",
"decimalPlaces": 1,
"decimalPlaces": 2,
"qgcRebootRequired": true
},
{
Expand Down

0 comments on commit 14d0b71

Please sign in to comment.