ardupilot/Tools/ArdupilotMegaPlanner/Utilities/ParameterMetaDataConstants.cs
Michael Oborne d59d26b7d2 APM Planner 1.1.75
implement new arducopter pid tuning screen
included old for crossover.
add map rotation - follow plane
modify setup screen to show diffrent things based on ap software
2012-04-25 18:10:11 +08:00

13 lines
383 B
C#

namespace ArdupilotMega.Utilities
{
public sealed class ParameterMetaDataConstants
{
public const string Delimeter = "@";
public const string Param = "Param";
public const string DisplayName = "DisplayName";
public const string Description = "Description";
public const string Units = "Units";
public const string Range = "Range";
}
}