You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
namespace ArdupilotMega.Utilities
|
|
|
|
{
|
|
|
|
public sealed class ParameterMetaDataConstants
|
|
|
|
{
|
|
|
|
#region Markers
|
|
|
|
|
|
|
|
public const string ParamDelimeter = "@";
|
|
|
|
public const string PathDelimeter = ",";
|
|
|
|
public const string Param = "Param";
|
|
|
|
public const string Group = "Group";
|
|
|
|
public const string Path = "Path";
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Meta Keys
|
|
|
|
|
|
|
|
public const string DisplayName = "DisplayName";
|
|
|
|
public const string Description = "Description";
|
|
|
|
public const string Units = "Units";
|
|
|
|
public const string Range = "Range";
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|