Unverified Commit 14d0b71a authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #7529 from DonLakeFlyer/RTKMin

Change Survey-In min accuracy
parents dc83a516 08a023d8
......@@ -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
......
......@@ -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
},
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment