mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 10:28:29 -04:00
Merge branch 'master' of https://code.google.com/p/ardupilot-mega into param-suffix
Conflicts: Tools/ArdupilotMegaPlanner/ArdupilotMega.csproj Tools/ArdupilotMegaPlanner/Utilities/ParameterMetaDataConstants.cs Tools/ArdupilotMegaPlanner/Utilities/ParameterMetaDataParser.cs Tools/ArdupilotMegaPlanner/app.config
This commit is contained in:
commit
faf51754ba
@ -101,6 +101,70 @@ Too high = slow wobbles
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
</FIELDS>
|
||||
|
||||
<SUBHEAD>Yaw Angular Rate Control:</SUBHEAD>
|
||||
<DESC>How much throttle is applied to rotate the copter at the desired speed.
|
||||
</DESC>
|
||||
<FIELDS>
|
||||
<FIELD>
|
||||
<NAME>P</NAME>
|
||||
<PARAMNAME>RATE_YAW_P</PARAMNAME>
|
||||
<RANGEMIN>0.001</RANGEMIN>
|
||||
<RANGEMAX>5</RANGEMAX>
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
<FIELD>
|
||||
<NAME>I</NAME>
|
||||
<PARAMNAME>RATE_YAW_I</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>5</RANGEMAX>
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
<FIELD>
|
||||
<NAME>D</NAME>
|
||||
<PARAMNAME>RATE_YAW_D</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>5</RANGEMAX>
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
<FIELD>
|
||||
<NAME>IMAX</NAME>
|
||||
<PARAMNAME>RATE_YAW_IMAX</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>50</RANGEMAX>
|
||||
<STEP>1</STEP>
|
||||
</FIELD>
|
||||
</FIELDS>
|
||||
|
||||
<SUBHEAD>Yaw Stabilize Control:</SUBHEAD>
|
||||
<DESC>
|
||||
How fast the copter reacts to user or autopilot input.
|
||||
Higher = more aggressive control.
|
||||
Too high = slow wobbles
|
||||
</DESC>
|
||||
<FIELDS>
|
||||
<FIELD>
|
||||
<NAME>P</NAME>
|
||||
<PARAMNAME>STB_YAW_P</PARAMNAME>
|
||||
<RANGEMIN>0.001</RANGEMIN>
|
||||
<RANGEMAX>10</RANGEMAX>
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
<FIELD>
|
||||
<NAME>I</NAME>
|
||||
<PARAMNAME>STB_YAW_I</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>5</RANGEMAX>
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
<FIELD>
|
||||
<NAME>IMAX</NAME>
|
||||
<PARAMNAME>STB_YAW_IMAX</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>50</RANGEMAX>
|
||||
<STEP>1</STEP>
|
||||
</FIELD>
|
||||
</FIELDS>
|
||||
</Item>
|
||||
<!-- Loiter -->
|
||||
<Item>
|
||||
@ -140,7 +204,7 @@ How much angle is applied to make the copter accelerate to the desired speed.
|
||||
<PARAMNAME>LOITER_LON_IMAX</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>50</RANGEMAX>
|
||||
<STEP>0.1</STEP>
|
||||
<STEP>1</STEP>
|
||||
</FIELD>
|
||||
</FIELDS>
|
||||
<SUBHEAD>Loiter Speed:</SUBHEAD>
|
||||
|
@ -227,7 +227,7 @@
|
||||
<Compile Include="Attributes\PrivateAttribute.cs" />
|
||||
<Compile Include="CodeGen.cs" />
|
||||
<Compile Include="Utilities\CollectionExtensions.cs" />
|
||||
<Compile Include="Utilities\Constants\ParameterMetaDataConstants.cs" />
|
||||
<Compile Include="Utilities\ParameterMetaDataConstants.cs" />
|
||||
<Compile Include="Controls\BackstageView\BackstageView.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
|
@ -6,7 +6,6 @@ using System.IO;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using ArdupilotMega.Utilities;
|
||||
using ArdupilotMega.Utilities.Constants;
|
||||
using log4net;
|
||||
using ArdupilotMega.Controls.BackstageView;
|
||||
|
||||
|
Binary file not shown.
@ -1,4 +1,4 @@
|
||||
namespace ArdupilotMega.Utilities.Constants
|
||||
namespace ArdupilotMega.Utilities
|
||||
{
|
||||
public sealed class ParameterMetaDataConstants
|
||||
{
|
||||
@ -21,4 +21,4 @@
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
}
|
@ -7,7 +7,7 @@ using System.Net;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Windows.Forms;
|
||||
using System.Xml;
|
||||
using ArdupilotMega.Utilities.Constants;
|
||||
using ArdupilotMega.Utilities;
|
||||
using log4net;
|
||||
|
||||
namespace ArdupilotMega.Utilities
|
||||
|
@ -9,7 +9,7 @@
|
||||
<add key="UpdateLocation"
|
||||
value="http://ardupilot-mega.googlecode.com/git/Tools/ArdupilotMegaPlanner/bin/Release/"/>
|
||||
<add key="ParameterLocations"
|
||||
value="http://a432511-wip.googlecode.com/git-history/param-suffix/ArduCopter/Parameters.pde"/>
|
||||
value="http://ardupilot-mega.googlecode.com/git/ArduCopter/Parameters.pde"/>
|
||||
<add key="ParameterMetaDataXMLFileName"
|
||||
value="ParameterMetaData.xml"/>
|
||||
</appSettings>
|
||||
|
@ -101,6 +101,70 @@ Too high = slow wobbles
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
</FIELDS>
|
||||
|
||||
<SUBHEAD>Yaw Angular Rate Control:</SUBHEAD>
|
||||
<DESC>How much throttle is applied to rotate the copter at the desired speed.
|
||||
</DESC>
|
||||
<FIELDS>
|
||||
<FIELD>
|
||||
<NAME>P</NAME>
|
||||
<PARAMNAME>RATE_YAW_P</PARAMNAME>
|
||||
<RANGEMIN>0.001</RANGEMIN>
|
||||
<RANGEMAX>5</RANGEMAX>
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
<FIELD>
|
||||
<NAME>I</NAME>
|
||||
<PARAMNAME>RATE_YAW_I</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>5</RANGEMAX>
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
<FIELD>
|
||||
<NAME>D</NAME>
|
||||
<PARAMNAME>RATE_YAW_D</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>5</RANGEMAX>
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
<FIELD>
|
||||
<NAME>IMAX</NAME>
|
||||
<PARAMNAME>RATE_YAW_IMAX</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>50</RANGEMAX>
|
||||
<STEP>1</STEP>
|
||||
</FIELD>
|
||||
</FIELDS>
|
||||
|
||||
<SUBHEAD>Yaw Stabilize Control:</SUBHEAD>
|
||||
<DESC>
|
||||
How fast the copter reacts to user or autopilot input.
|
||||
Higher = more aggressive control.
|
||||
Too high = slow wobbles
|
||||
</DESC>
|
||||
<FIELDS>
|
||||
<FIELD>
|
||||
<NAME>P</NAME>
|
||||
<PARAMNAME>STB_YAW_P</PARAMNAME>
|
||||
<RANGEMIN>0.001</RANGEMIN>
|
||||
<RANGEMAX>10</RANGEMAX>
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
<FIELD>
|
||||
<NAME>I</NAME>
|
||||
<PARAMNAME>STB_YAW_I</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>5</RANGEMAX>
|
||||
<STEP>0.001</STEP>
|
||||
</FIELD>
|
||||
<FIELD>
|
||||
<NAME>IMAX</NAME>
|
||||
<PARAMNAME>STB_YAW_IMAX</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>50</RANGEMAX>
|
||||
<STEP>1</STEP>
|
||||
</FIELD>
|
||||
</FIELDS>
|
||||
</Item>
|
||||
<!-- Loiter -->
|
||||
<Item>
|
||||
@ -140,7 +204,7 @@ How much angle is applied to make the copter accelerate to the desired speed.
|
||||
<PARAMNAME>LOITER_LON_IMAX</PARAMNAME>
|
||||
<RANGEMIN>0</RANGEMIN>
|
||||
<RANGEMAX>50</RANGEMAX>
|
||||
<STEP>0.1</STEP>
|
||||
<STEP>1</STEP>
|
||||
</FIELD>
|
||||
</FIELDS>
|
||||
<SUBHEAD>Loiter Speed:</SUBHEAD>
|
||||
|
@ -1 +1 @@
|
||||
1.1.4498.32482
|
||||
1.1.4499.14296
|
Loading…
Reference in New Issue
Block a user