Browse Source

APM Planner - 1.0.88

fix param loading comma vs period issue
update ac dataflash log format
mission-4.1.18
Michael Oborne 13 years ago
parent
commit
a041182021
  1. 10
      Tools/ArdupilotMegaPlanner/GCSViews/Configuration.cs
  2. 2
      Tools/ArdupilotMegaPlanner/Properties/AssemblyInfo.cs
  3. 6
      Tools/ArdupilotMegaPlanner/app.config
  4. 2
      Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.application
  5. 6
      Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.exe.config
  6. 13
      Tools/ArdupilotMegaPlanner/bin/Release/dataflashlog.xml
  7. 13
      Tools/ArdupilotMegaPlanner/dataflashlog.xml

10
Tools/ArdupilotMegaPlanner/GCSViews/Configuration.cs

@ -488,6 +488,11 @@ namespace ArdupilotMega.GCSViews @@ -488,6 +488,11 @@ namespace ArdupilotMega.GCSViews
((DomainUpDown)text[0]).SelectedIndex = index;
((DomainUpDown)text[0]).BackColor = Color.Green;
}
else
{
((DomainUpDown)text[0]).Text = option;
((DomainUpDown)text[0]).BackColor = Color.Green;
}
}
}
catch { }
@ -515,8 +520,11 @@ namespace ArdupilotMega.GCSViews @@ -515,8 +520,11 @@ namespace ArdupilotMega.GCSViews
int index = line.IndexOf(',');
int index2 = line.IndexOf(',', index + 1);
if (index == -1)
continue;
if (index2 != -1)
line = line.Replace(',','.');
string name = line.Substring(0, index);
float value = float.Parse(line.Substring(index + 1), new System.Globalization.CultureInfo("en-US"));
@ -569,7 +577,7 @@ namespace ArdupilotMega.GCSViews @@ -569,7 +577,7 @@ namespace ArdupilotMega.GCSViews
MAVLink.modifyParamForDisplay(false, row.Cells[0].Value.ToString(), ref value);
sw.WriteLine(row.Cells[0].Value.ToString() + "," + value);
sw.WriteLine(row.Cells[0].Value.ToString() + "," + value.ToString(new System.Globalization.CultureInfo("en-US")));
}
sw.Close();
}

2
Tools/ArdupilotMegaPlanner/Properties/AssemblyInfo.cs

@ -34,5 +34,5 @@ using System.Resources; @@ -34,5 +34,5 @@ using System.Resources;
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.87")]
[assembly: AssemblyFileVersion("1.0.88")]
[assembly: NeutralResourcesLanguageAttribute("")]

6
Tools/ArdupilotMegaPlanner/app.config

@ -2,12 +2,6 @@ @@ -2,12 +2,6 @@
<configuration>
<configSections>
</configSections>
<!--
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
<supportedRuntime version="v4.0"/>
</startup>
-->
<startup>
<supportedRuntime version="v2.0.50727"/>
</startup>

2
Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.application

@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>S+dMQOC9TeJyQiYvhw37LpJxZU0=</dsig:DigestValue>
<dsig:DigestValue>wRpim3tDq7ttru3QnVS/G/tNt8A=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>

6
Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.exe.config

@ -2,12 +2,6 @@ @@ -2,12 +2,6 @@
<configuration>
<configSections>
</configSections>
<!--
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
<supportedRuntime version="v4.0"/>
</startup>
-->
<startup>
<supportedRuntime version="v2.0.50727"/>
</startup>

13
Tools/ArdupilotMegaPlanner/bin/Release/dataflashlog.xml

@ -22,10 +22,15 @@ @@ -22,10 +22,15 @@
</ATT>
<NTUN>
<F1>WP Dist</F1>
<F2>WP Verify</F2>
<F3>Target Bear</F3>
<F4>Long Err</F4>
<F5>Lat Err</F5>
<F2>Target Bear</F2>
<F3>Long Err</F3>
<F4>Lat Err</F4>
<F5>nav lon</F5>
<F6>nav lat</F6>
<F7>nav lon I</F7>
<F8>nav lat I</F8>
<F9>Loiter Lon I</F9>
<F10>Loiter Lat I</F10>
</NTUN>
<CTUN>
<F1>Yaw Sensor</F1>

13
Tools/ArdupilotMegaPlanner/dataflashlog.xml

@ -22,10 +22,15 @@ @@ -22,10 +22,15 @@
</ATT>
<NTUN>
<F1>WP Dist</F1>
<F2>WP Verify</F2>
<F3>Target Bear</F3>
<F4>Long Err</F4>
<F5>Lat Err</F5>
<F2>Target Bear</F2>
<F3>Long Err</F3>
<F4>Lat Err</F4>
<F5>nav lon</F5>
<F6>nav lat</F6>
<F7>nav lon I</F7>
<F8>nav lat I</F8>
<F9>Loiter Lon I</F9>
<F10>Loiter Lat I</F10>
</NTUN>
<CTUN>
<F1>Yaw Sensor</F1>

Loading…
Cancel
Save