mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-12 10:58:30 -04:00
d59d26b7d2
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
13 lines
383 B
C#
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";
|
|
}
|
|
}
|