diff --git a/Tools/ArdupilotMegaPlanner/Common.cs b/Tools/ArdupilotMegaPlanner/Common.cs
index 5f8e8df3ff..bb5aecd2d0 100644
--- a/Tools/ArdupilotMegaPlanner/Common.cs
+++ b/Tools/ArdupilotMegaPlanner/Common.cs
@@ -380,8 +380,8 @@ namespace ArdupilotMega
CH6_OPTFLOW_KD = 19,
CH6_NAV_I = 20,
-
- CH6_LOITER_RATE_P = 22
+ CH6_LOITER_RATE_P = 22,
+ CH6_LOITER_RATE_D = 23
}
diff --git a/Tools/ArdupilotMegaPlanner/CommsTCPSerial.cs b/Tools/ArdupilotMegaPlanner/CommsTCPSerial.cs
index aa42322d42..0331169c87 100644
--- a/Tools/ArdupilotMegaPlanner/CommsTCPSerial.cs
+++ b/Tools/ArdupilotMegaPlanner/CommsTCPSerial.cs
@@ -19,6 +19,8 @@ namespace System.IO.Ports
byte[] rbuffer = new byte[0];
int rbufferread = 0;
+ int retrys = 3;
+
public int WriteBufferSize { get; set; }
public int WriteTimeout { get; set; }
public int ReceivedBytesThreshold { get; set; }
@@ -121,6 +123,14 @@ namespace System.IO.Ports
client.Close();
}
catch { }
+
+ // this should only happen if we have established a connection in the first place
+ if (client != null && retrys > 0)
+ {
+ client.Connect(ArdupilotMega.MainV2.config["TCP_host"].ToString(), int.Parse(ArdupilotMega.MainV2.config["TCP_port"].ToString()));
+ retrys--;
+ }
+
throw new Exception("The socket/serialproxy is closed");
}
}
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.Designer.cs b/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.Designer.cs
index 5ec9e1d4f9..23aab4e460 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.Designer.cs
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.Designer.cs
@@ -30,8 +30,8 @@
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Configuration));
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
this.Params = new System.Windows.Forms.DataGridView();
this.Command = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Value = new System.Windows.Forms.DataGridViewTextBoxColumn();
@@ -236,6 +236,8 @@
this.RATE_RLL_P = new System.Windows.Forms.NumericUpDown();
this.label91 = new System.Windows.Forms.Label();
this.TabPlanner = new System.Windows.Forms.TabPage();
+ this.label33 = new System.Windows.Forms.Label();
+ this.CMB_ratesensors = new System.Windows.Forms.ComboBox();
this.label26 = new System.Windows.Forms.Label();
this.CMB_videoresolutions = new System.Windows.Forms.ComboBox();
this.label12 = new System.Windows.Forms.Label();
@@ -287,8 +289,8 @@
this.BUT_load = new ArdupilotMega.MyButton();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.BUT_compare = new ArdupilotMega.MyButton();
- this.label33 = new System.Windows.Forms.Label();
- this.CMB_ratesensors = new System.Windows.Forms.ComboBox();
+ this.myLabel3 = new ArdupilotMega.MyLabel();
+ this.myLabel4 = new ArdupilotMega.MyLabel();
((System.ComponentModel.ISupportInitialize)(this.Params)).BeginInit();
this.ConfigTabs.SuspendLayout();
this.TabAP.SuspendLayout();
@@ -409,14 +411,14 @@
this.Params.AllowUserToAddRows = false;
this.Params.AllowUserToDeleteRows = false;
resources.ApplyResources(this.Params, "Params");
- dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle3.BackColor = System.Drawing.Color.Maroon;
- dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- dataGridViewCellStyle3.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.Params.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle3;
+ dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+ dataGridViewCellStyle1.BackColor = System.Drawing.Color.Maroon;
+ dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ dataGridViewCellStyle1.ForeColor = System.Drawing.Color.White;
+ dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
+ dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
+ dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+ this.Params.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
this.Params.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.Params.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Command,
@@ -425,14 +427,14 @@
this.mavScale,
this.RawValue});
this.Params.Name = "Params";
- dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.ActiveCaption;
- dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
- dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.Params.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
+ dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+ dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.ActiveCaption;
+ dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
+ dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
+ dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
+ dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+ this.Params.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
this.Params.RowHeadersVisible = false;
this.Params.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.Params_CellValueChanged);
//
@@ -1093,6 +1095,8 @@
//
// TabAC
//
+ this.TabAC.Controls.Add(this.myLabel4);
+ this.TabAC.Controls.Add(this.myLabel3);
this.TabAC.Controls.Add(this.TUNE_LOW);
this.TabAC.Controls.Add(this.TUNE_HIGH);
this.TabAC.Controls.Add(this.myLabel2);
@@ -1765,6 +1769,25 @@
resources.ApplyResources(this.TabPlanner, "TabPlanner");
this.TabPlanner.Name = "TabPlanner";
//
+ // label33
+ //
+ resources.ApplyResources(this.label33, "label33");
+ this.label33.Name = "label33";
+ //
+ // CMB_ratesensors
+ //
+ this.CMB_ratesensors.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.CMB_ratesensors.FormattingEnabled = true;
+ this.CMB_ratesensors.Items.AddRange(new object[] {
+ resources.GetString("CMB_ratesensors.Items"),
+ resources.GetString("CMB_ratesensors.Items1"),
+ resources.GetString("CMB_ratesensors.Items2"),
+ resources.GetString("CMB_ratesensors.Items3"),
+ resources.GetString("CMB_ratesensors.Items4")});
+ resources.ApplyResources(this.CMB_ratesensors, "CMB_ratesensors");
+ this.CMB_ratesensors.Name = "CMB_ratesensors";
+ this.CMB_ratesensors.SelectedIndexChanged += new System.EventHandler(this.CMB_ratesensors_SelectedIndexChanged);
+ //
// label26
//
resources.ApplyResources(this.label26, "label26");
@@ -2136,24 +2159,17 @@
this.BUT_compare.UseVisualStyleBackColor = true;
this.BUT_compare.Click += new System.EventHandler(this.BUT_compare_Click);
//
- // label33
+ // myLabel3
//
- resources.ApplyResources(this.label33, "label33");
- this.label33.Name = "label33";
+ resources.ApplyResources(this.myLabel3, "myLabel3");
+ this.myLabel3.Name = "myLabel3";
+ this.myLabel3.resize = false;
//
- // CMB_ratesensors
+ // myLabel4
//
- this.CMB_ratesensors.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.CMB_ratesensors.FormattingEnabled = true;
- this.CMB_ratesensors.Items.AddRange(new object[] {
- resources.GetString("CMB_ratesensors.Items"),
- resources.GetString("CMB_ratesensors.Items1"),
- resources.GetString("CMB_ratesensors.Items2"),
- resources.GetString("CMB_ratesensors.Items3"),
- resources.GetString("CMB_ratesensors.Items4")});
- resources.ApplyResources(this.CMB_ratesensors, "CMB_ratesensors");
- this.CMB_ratesensors.Name = "CMB_ratesensors";
- this.CMB_ratesensors.SelectedIndexChanged += new System.EventHandler(this.CMB_ratesensors_SelectedIndexChanged);
+ resources.ApplyResources(this.myLabel4, "myLabel4");
+ this.myLabel4.Name = "myLabel4";
+ this.myLabel4.resize = false;
//
// Configuration
//
@@ -2546,5 +2562,7 @@
private System.Windows.Forms.NumericUpDown TUNE_HIGH;
private System.Windows.Forms.Label label33;
private System.Windows.Forms.ComboBox CMB_ratesensors;
+ private MyLabel myLabel4;
+ private MyLabel myLabel3;
}
}
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.cs b/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.cs
index fa70b64583..b7023440b0 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.cs
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.cs
@@ -363,7 +363,9 @@ namespace ArdupilotMega.GCSViews
thisctl.Minimum = -9000;
thisctl.Value = (decimal)(float)param[value];
thisctl.Increment = (decimal)0.001;
- if (thisctl.Name.EndsWith("_P") || thisctl.Name.EndsWith("_I") || thisctl.Name.EndsWith("_D") || thisctl.Value == 0 || thisctl.Value.ToString("0.###", new System.Globalization.CultureInfo("en-US")).Contains("."))
+ if (thisctl.Name.EndsWith("_P") || thisctl.Name.EndsWith("_I") || thisctl.Name.EndsWith("_D")
+ || thisctl.Name.EndsWith("_LOW") || thisctl.Name.EndsWith("_HIGH") || thisctl.Value == 0
+ || thisctl.Value.ToString("0.###", new System.Globalization.CultureInfo("en-US")).Contains("."))
{
thisctl.DecimalPlaces = 3;
}
@@ -373,6 +375,12 @@ namespace ArdupilotMega.GCSViews
thisctl.DecimalPlaces = 1;
}
+ if (thisctl.Name.EndsWith("_IMAX"))
+ {
+ thisctl.Maximum = 180;
+ thisctl.Minimum = -180;
+ }
+
thisctl.Enabled = true;
thisctl.BackColor = Color.FromArgb(0x43, 0x44, 0x45);
@@ -403,7 +411,7 @@ namespace ArdupilotMega.GCSViews
}
if (text.Length == 0)
{
- Console.WriteLine(name + " not found");
+ //Console.WriteLine(name + " not found");
}
}
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.resx b/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.resx
index 58f1fa790f..337222af94 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.resx
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/Configuration.resx
@@ -192,6 +192,210 @@
Top, Bottom, Left, Right
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 11
+
+
+ THR_FS_VALUE
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 50, 13
+
+
+ 12
+
+
+ FS Value
+
+
+ label5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ THR_MAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 27, 13
+
+
+ 13
+
+
+ Max
+
+
+ label6
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ THR_MIN
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 24, 13
+
+
+ 14
+
+
+ Min
+
+
+ label7
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ TRIM_THROTTLE
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 36, 13
+
+
+ 15
+
+
+ Cruise
+
+
+ label8
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox3
+
+
+ 7
+
+
+ 405, 217
+
+
+ 195, 108
+
+
+ 0
+
+
+ Throttle 0-100%
+
groupBox3
@@ -204,6 +408,210 @@
0
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 0
+
+
+ ARSPD_RATIO
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 87
+
+
+ 32, 13
+
+
+ 1
+
+
+ Ratio
+
+
+ label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 2
+
+
+ ARSPD_FBW_MAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 59
+
+
+ 53, 13
+
+
+ 3
+
+
+ FBW max
+
+
+ label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 4
+
+
+ ARSPD_FBW_MIN
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 50, 13
+
+
+ 5
+
+
+ FBW min
+
+
+ label3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ TRIM_ARSPD_CM
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 64, 13
+
+
+ 6
+
+
+ Cruise
+
+
+ label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 7
+
+
+ 406, 325
+
+
+ 195, 108
+
+
+ 1
+
+
+ Airspeed m/s
+
groupBox1
@@ -216,6 +624,162 @@
1
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ LIM_PITCH_MIN
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 51, 13
+
+
+ 10
+
+
+ Pitch Min
+
+
+ label39
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 1
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ LIM_PITCH_MAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 54, 13
+
+
+ 11
+
+
+ Pitch Max
+
+
+ label38
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 3
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ LIM_ROLL_CD
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 55, 13
+
+
+ 12
+
+
+ Bank Max
+
+
+ label37
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox2
+
+
+ 5
+
+
+ 205, 325
+
+
+ 195, 108
+
+
+ 2
+
+
+ Navigation Angles
+
groupBox2
@@ -228,6 +792,114 @@
2
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ XTRK_ANGLE_CD
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox15
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 61, 13
+
+
+ 8
+
+
+ Entry Angle
+
+
+ label79
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox15
+
+
+ 1
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ XTRK_GAIN_SC
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox15
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 52, 13
+
+
+ 9
+
+
+ Gain (cm)
+
+
+ label80
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox15
+
+
+ 3
+
+
+ 4, 325
+
+
+ 195, 108
+
+
+ 3
+
+
+ Xtrack Pids
+
groupBox15
@@ -240,6 +912,162 @@
3
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 13
+
+
+ KFF_PTCH2THR
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 36, 13
+
+
+ 14
+
+
+ P to T
+
+
+ label83
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ KFF_RDDRMIX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 61, 13
+
+
+ 15
+
+
+ Rudder Mix
+
+
+ label78
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ KFF_PTCHCOMP
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 61, 13
+
+
+ 16
+
+
+ Pitch Comp
+
+
+ label81
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox16
+
+
+ 5
+
+
+ 205, 217
+
+
+ 195, 108
+
+
+ 4
+
+
+ Other Mix's
+
groupBox16
@@ -252,6 +1080,210 @@
4
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 11
+
+
+ ENRGY2THR_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 12
+
+
+ INT_MAX
+
+
+ label73
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ ENRGY2THR_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 13
+
+
+ D
+
+
+ label74
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ ENRGY2THR_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label75
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ ENRGY2THR_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label76
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox14
+
+
+ 7
+
+
+ 4, 217
+
+
+ 195, 108
+
+
+ 5
+
+
+ Energy/Alt Pid
+
groupBox14
@@ -264,6 +1296,210 @@
5
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 0
+
+
+ ALT2PTCH_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 1
+
+
+ INT_MAX
+
+
+ label69
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 2
+
+
+ ALT2PTCH_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 3
+
+
+ D
+
+
+ label70
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 4
+
+
+ ALT2PTCH_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label71
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ ALT2PTCH_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label72
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox13
+
+
+ 7
+
+
+ 406, 109
+
+
+ 195, 108
+
+
+ 6
+
+
+ Nav Pitch Alt Pid
+
groupBox13
@@ -276,6 +1512,210 @@
6
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 0
+
+
+ ARSP2PTCH_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 1
+
+
+ INT_MAX
+
+
+ label65
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 2
+
+
+ ARSP2PTCH_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 3
+
+
+ D
+
+
+ label66
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 4
+
+
+ ARSP2PTCH_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label67
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ ARSP2PTCH_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label68
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox12
+
+
+ 7
+
+
+ 205, 109
+
+
+ 195, 108
+
+
+ 7
+
+
+ Nav Pitch AS Pid
+
groupBox12
@@ -288,6 +1728,210 @@
7
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 11
+
+
+ HDNG2RLL_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 12
+
+
+ INT_MAX
+
+
+ label61
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ HDNG2RLL_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 13
+
+
+ D
+
+
+ label62
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ HDNG2RLL_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label63
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ HDNG2RLL_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label64
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox11
+
+
+ 7
+
+
+ 4, 109
+
+
+ 195, 108
+
+
+ 8
+
+
+ Nav Roll Pid
+
groupBox11
@@ -300,6 +1944,210 @@
8
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 11
+
+
+ YW2SRV_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 12
+
+
+ INT_MAX
+
+
+ label57
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ YW2SRV_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 13
+
+
+ D
+
+
+ label58
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ YW2SRV_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label59
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ YW2SRV_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label60
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox10
+
+
+ 7
+
+
+ 406, 1
+
+
+ 195, 108
+
+
+ 9
+
+
+ Servo Yaw Pid
+
groupBox10
@@ -312,6 +2160,210 @@
9
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 11
+
+
+ PTCH2SRV_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 12
+
+
+ INT_MAX
+
+
+ label53
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ PTCH2SRV_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 13
+
+
+ D
+
+
+ label54
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ PTCH2SRV_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label55
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ PTCH2SRV_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label56
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox9
+
+
+ 7
+
+
+ 205, 1
+
+
+ 195, 108
+
+
+ 10
+
+
+ Servo Pitch Pid
+
groupBox9
@@ -324,6 +2376,210 @@
10
+
+ 111, 82
+
+
+ 78, 20
+
+
+ 11
+
+
+ RLL2SRV_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 54, 13
+
+
+ 12
+
+
+ INT_MAX
+
+
+ label49
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 1
+
+
+ 111, 59
+
+
+ 78, 20
+
+
+ 9
+
+
+ RLL2SRV_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 15, 13
+
+
+ 13
+
+
+ D
+
+
+ label50
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 3
+
+
+ 111, 36
+
+
+ 78, 20
+
+
+ 7
+
+
+ RLL2SRV_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label51
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 5
+
+
+ 111, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ RLL2SRV_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 17
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label52
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox8
+
+
+ 7
+
+
+ 4, 1
+
+
+ 195, 108
+
+
+ 11
+
+
+ Servo Roll Pid
+
groupBox8
@@ -363,6 +2619,63 @@
0
+
+ 626, 294
+
+
+ 27, 23
+
+
+ 24
+
+
+ Max
+
+
+ myLabel4
+
+
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TabAC
+
+
+ 0
+
+
+ 534, 295
+
+
+ 29, 23
+
+
+ 23
+
+
+ Min
+
+
+ myLabel3
+
+
+ ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TabAC
+
+
+ 1
+
+
+ 569, 298
+
+
+ 51, 20
+
+
+ 22
+
TUNE_LOW
@@ -373,7 +2686,16 @@
TabAC
- 0
+ 2
+
+
+ 659, 298
+
+
+ 46, 20
+
+
+ 21
TUNE_HIGH
@@ -385,7 +2707,19 @@
TabAC
- 1
+ 3
+
+
+ 534, 270
+
+
+ 53, 23
+
+
+ 20
+
+
+ Ch6 Opt
myLabel2
@@ -397,7 +2731,82 @@
TabAC
- 2
+ 4
+
+
+ CH6_NONE
+
+
+ CH6_STABILIZE_KP
+
+
+ CH6_STABILIZE_KI
+
+
+ CH6_YAW_KP
+
+
+ CH6_RATE_KP
+
+
+ CH6_RATE_KI
+
+
+ CH6_YAW_RATE_KP
+
+
+ CH6_THROTTLE_KP
+
+
+ CH6_TOP_BOTTOM_RATIO
+
+
+ CH6_RELAY
+
+
+ CH6_TRAVERSE_SPEED
+
+
+ CH6_NAV_P
+
+
+ CH6_LOITER_P
+
+
+ CH6_HELI_EXTERNAL_GYRO
+
+
+ CH6_THR_HOLD_KP
+
+
+ CH6_Z_GAIN
+
+
+ CH6_DAMP
+
+
+ CH6_OPTFLOW_KP
+
+
+ CH6_OPTFLOW_KI
+
+
+ CH6_OPTFLOW_KD
+
+
+ CH6_NAV_I
+
+
+ CH6_RATE_KD
+
+
+ 593, 270
+
+
+ 112, 21
+
+
+ 19
TUNE
@@ -409,7 +2818,19 @@
TabAC
- 3
+ 5
+
+
+ 534, 322
+
+
+ 53, 23
+
+
+ 18
+
+
+ Ch7 Opt
myLabel1
@@ -421,7 +2842,40 @@
TabAC
- 4
+ 6
+
+
+ Do Nothing
+
+
+
+
+
+
+
+
+ Simple Mode
+
+
+ RTL
+
+
+
+
+
+
+
+
+ Save WP
+
+
+ 593, 322
+
+
+ 112, 21
+
+
+ 17
CH7_OPT
@@ -433,8 +2887,212 @@
TabAC
+ 7
+
+
+ 80, 60
+
+
+ 78, 20
+
+
+ 14
+
+
+ THR_RATE_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 10, 13
+
+
+ 15
+
+
+ D
+
+
+ label29
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 1
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 65, 13
+
+
+ 16
+
+
+ IMAX
+
+
+ label14
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 2
+
+
+ 80, 83
+
+
+ 78, 20
+
+
+ 11
+
+
+ THR_RATE_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 3
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ THR_RATE_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label20
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
5
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ THR_RATE_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label25
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 7
+
+
+ 6, 260
+
+
+ 170, 110
+
+
+ 16
+
+
+ Throttle Rate
+
groupBox5
@@ -445,7 +3103,22 @@
TabAC
- 6
+ 8
+
+
+ True
+
+
+ 3, 240
+
+
+ 154, 17
+
+
+ 13
+
+
+ Lock Pitch and Roll Values
CHK_lockrollpitch
@@ -457,8 +3130,260 @@
TabAC
+ 9
+
+
+ 80, 60
+
+
+ 78, 20
+
+
+ 18
+
+
+ NAV_LAT_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 10, 13
+
+
+ 19
+
+
+ D
+
+
+ label27
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 1
+
+
+ 80, 107
+
+
+ 78, 20
+
+
+ 16
+
+
+ WP_SPEED_MAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 110
+
+
+ 54, 13
+
+
+ 17
+
+
+ m/s
+
+
+ label9
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 3
+
+
+ 80, 84
+
+
+ 78, 20
+
+
+ 11
+
+
+ NAV_LAT_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 87
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label13
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 5
+
+
+ 80, 37
+
+
+ 78, 20
+
+
7
+
+ NAV_LAT_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label15
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 7
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ NAV_LAT_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 8
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label16
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 9
+
+
+ 534, 126
+
+
+ 170, 131
+
+
+ 0
+
+
+ Nav WP
+
groupBox4
@@ -469,7 +3394,67 @@
TabAC
- 8
+ 10
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ XTRK_GAIN_SC1
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox6
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 38, 13
+
+
+ 15
+
+
+ Gain
+
+
+ label18
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox6
+
+
+ 1
+
+
+ 358, 260
+
+
+ 170, 43
+
+
+ 2
+
+
+ Crosstrack Correction
groupBox6
@@ -481,7 +3466,163 @@
TabAC
- 9
+ 11
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 11
+
+
+ THR_ALT_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox7
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label19
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox7
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ THR_ALT_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox7
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label21
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox7
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ THR_ALT_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox7
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label22
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox7
+
+
+ 5
+
+
+ 182, 260
+
+
+ 170, 110
+
+
+ 3
+
+
+ Altitude Hold
groupBox7
@@ -493,7 +3634,163 @@
TabAC
- 10
+ 12
+
+
+ 80, 61
+
+
+ 78, 20
+
+
+ 11
+
+
+ HLD_LAT_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox19
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 64
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label28
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox19
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ HLD_LAT_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox19
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label30
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox19
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ HLD_LAT_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox19
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label31
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox19
+
+
+ 5
+
+
+ 531, 6
+
+
+ 170, 95
+
+
+ 6
+
+
+ Loiter
groupBox19
@@ -505,8 +3802,164 @@
TabAC
+ 13
+
+
+ 80, 63
+
+
+ 78, 20
+
+
11
+
+ STB_YAW_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox20
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label32
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox20
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ STB_YAW_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox20
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label34
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox20
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ STB_YAW_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox20
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label35
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox20
+
+
+ 5
+
+
+ 358, 6
+
+
+ 170, 95
+
+
+ 7
+
+
+ Stabilize Yaw
+
groupBox20
@@ -517,8 +3970,212 @@
TabAC
+ 14
+
+
+ 80, 88
+
+
+ 78, 20
+
+
+ 16
+
+
+ STAB_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 91
+
+
+ 65, 13
+
+
+ 17
+
+
+ Stabilize D
+
+
+ lblSTAB_D
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 1
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 11
+
+
+ STB_PIT_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
12
+
+ IMAX
+
+
+ label36
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 3
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ STB_PIT_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label41
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 5
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ STB_PIT_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label42
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox21
+
+
+ 7
+
+
+ 182, 6
+
+
+ 170, 114
+
+
+ 8
+
+
+ Stabilize Pitch
+
groupBox21
@@ -529,7 +4186,163 @@
TabAC
- 13
+ 15
+
+
+ 80, 63
+
+
+ 78, 20
+
+
+ 11
+
+
+ STB_RLL_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 66
+
+
+ 65, 13
+
+
+ 12
+
+
+ IMAX
+
+
+ label43
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 1
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 7
+
+
+ STB_RLL_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 14
+
+
+ I
+
+
+ label45
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 3
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 5
+
+
+ STB_RLL_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 15
+
+
+ P
+
+
+ label46
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox22
+
+
+ 5
+
+
+ 6, 6
+
+
+ 170, 95
+
+
+ 9
+
+
+ Stabilize Roll
groupBox22
@@ -541,7 +4354,211 @@
TabAC
- 14
+ 16
+
+
+ 80, 60
+
+
+ 78, 20
+
+
+ 8
+
+
+ RATE_YAW_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 10, 13
+
+
+ 9
+
+
+ D
+
+
+ label10
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 1
+
+
+ 80, 84
+
+
+ 78, 20
+
+
+ 0
+
+
+ RATE_YAW_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 87
+
+
+ 65, 13
+
+
+ 1
+
+
+ IMAX
+
+
+ label47
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 3
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 4
+
+
+ RATE_YAW_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label77
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 5
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ RATE_YAW_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label82
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox23
+
+
+ 7
+
+
+ 358, 126
+
+
+ 170, 108
+
+
+ 10
+
+
+ Rate Yaw
groupBox23
@@ -553,7 +4570,211 @@
TabAC
- 15
+ 17
+
+
+ 80, 60
+
+
+ 78, 20
+
+
+ 10
+
+
+ RATE_PIT_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 10, 13
+
+
+ 11
+
+
+ D
+
+
+ label11
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 1
+
+
+ 80, 83
+
+
+ 78, 20
+
+
+ 0
+
+
+ RATE_PIT_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 65, 13
+
+
+ 1
+
+
+ IMAX
+
+
+ label84
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 3
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 4
+
+
+ RATE_PIT_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label86
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 5
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ RATE_PIT_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label87
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
+ 7
+
+
+ 182, 126
+
+
+ 170, 108
+
+
+ 11
+
+
+ Rate Pitch
groupBox24
@@ -565,7 +4786,211 @@
TabAC
- 16
+ 18
+
+
+ 80, 60
+
+
+ 78, 20
+
+
+ 12
+
+
+ RATE_RLL_D
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 0
+
+
+ NoControl
+
+
+ 6, 63
+
+
+ 10, 13
+
+
+ 13
+
+
+ D
+
+
+ label17
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 1
+
+
+ 80, 83
+
+
+ 78, 20
+
+
+ 0
+
+
+ RATE_RLL_IMAX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 2
+
+
+ NoControl
+
+
+ 6, 86
+
+
+ 68, 13
+
+
+ 1
+
+
+ IMAX
+
+
+ label88
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 3
+
+
+ 80, 37
+
+
+ 78, 20
+
+
+ 4
+
+
+ RATE_RLL_I
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 4
+
+
+ NoControl
+
+
+ 6, 40
+
+
+ 10, 13
+
+
+ 5
+
+
+ I
+
+
+ label90
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 5
+
+
+ 80, 13
+
+
+ 78, 20
+
+
+ 6
+
+
+ RATE_RLL_P
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 6
+
+
+ NoControl
+
+
+ 6, 16
+
+
+ 14, 13
+
+
+ 7
+
+
+ P
+
+
+ label91
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox25
+
+
+ 7
+
+
+ 6, 126
+
+
+ 170, 108
+
+
+ 12
+
+
+ Rate Roll
groupBox25
@@ -577,7 +5002,7 @@
TabAC
- 17
+ 19
4, 22
@@ -744,9 +5169,6 @@
4
-
- 17, 17
-
NoControl
@@ -762,6 +5184,9 @@
GDI+ (old type)
+
+ 17, 17
+
OpenGL = Disabled
GDI+ = Enabled
@@ -1907,6711 +6332,6 @@ GDI+ = Enabled
2
-
- THR_FS_VALUE
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 0
-
-
- label5
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 1
-
-
- THR_MAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 2
-
-
- label6
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 3
-
-
- THR_MIN
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 4
-
-
- label7
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 5
-
-
- TRIM_THROTTLE
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 6
-
-
- label8
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 7
-
-
- 405, 217
-
-
- 195, 108
-
-
- 0
-
-
- Throttle 0-100%
-
-
- groupBox3
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 0
-
-
- 111, 82
-
-
- 78, 20
-
-
- 11
-
-
- THR_FS_VALUE
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 0
-
-
- NoControl
-
-
- 6, 86
-
-
- 50, 13
-
-
- 12
-
-
- FS Value
-
-
- label5
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 1
-
-
- 111, 59
-
-
- 78, 20
-
-
- 9
-
-
- THR_MAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 2
-
-
- NoControl
-
-
- 6, 63
-
-
- 27, 13
-
-
- 13
-
-
- Max
-
-
- label6
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 3
-
-
- 111, 36
-
-
- 78, 20
-
-
- 7
-
-
- THR_MIN
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 24, 13
-
-
- 14
-
-
- Min
-
-
- label7
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 5
-
-
- 111, 13
-
-
- 78, 20
-
-
- 5
-
-
- TRIM_THROTTLE
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 6
-
-
- NoControl
-
-
- 6, 17
-
-
- 36, 13
-
-
- 15
-
-
- Cruise
-
-
- label8
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 7
-
-
- ARSPD_RATIO
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 0
-
-
- label1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 1
-
-
- ARSPD_FBW_MAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 2
-
-
- label2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 3
-
-
- ARSPD_FBW_MIN
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 4
-
-
- label3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 5
-
-
- TRIM_ARSPD_CM
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 6
-
-
- label4
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 7
-
-
- 406, 325
-
-
- 195, 108
-
-
- 1
-
-
- Airspeed m/s
-
-
- groupBox1
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 1
-
-
- 111, 82
-
-
- 78, 20
-
-
- 0
-
-
- ARSPD_RATIO
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 0
-
-
- NoControl
-
-
- 6, 87
-
-
- 32, 13
-
-
- 1
-
-
- Ratio
-
-
- label1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 1
-
-
- 111, 59
-
-
- 78, 20
-
-
- 2
-
-
- ARSPD_FBW_MAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 2
-
-
- NoControl
-
-
- 6, 59
-
-
- 53, 13
-
-
- 3
-
-
- FBW max
-
-
- label2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 3
-
-
- 111, 36
-
-
- 78, 20
-
-
- 4
-
-
- ARSPD_FBW_MIN
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 50, 13
-
-
- 5
-
-
- FBW min
-
-
- label3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 5
-
-
- 111, 13
-
-
- 78, 20
-
-
- 5
-
-
- TRIM_ARSPD_CM
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 6
-
-
- NoControl
-
-
- 6, 17
-
-
- 64, 13
-
-
- 6
-
-
- Cruise
-
-
- label4
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 7
-
-
- LIM_PITCH_MIN
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 0
-
-
- label39
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 1
-
-
- LIM_PITCH_MAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 2
-
-
- label38
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 3
-
-
- LIM_ROLL_CD
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 4
-
-
- label37
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 5
-
-
- 205, 325
-
-
- 195, 108
-
-
- 2
-
-
- Navigation Angles
-
-
- groupBox2
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 2
-
-
- 111, 59
-
-
- 78, 20
-
-
- 9
-
-
- LIM_PITCH_MIN
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 0
-
-
- NoControl
-
-
- 6, 63
-
-
- 51, 13
-
-
- 10
-
-
- Pitch Min
-
-
- label39
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 1
-
-
- 111, 36
-
-
- 78, 20
-
-
- 7
-
-
- LIM_PITCH_MAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 2
-
-
- NoControl
-
-
- 6, 40
-
-
- 54, 13
-
-
- 11
-
-
- Pitch Max
-
-
- label38
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 3
-
-
- 111, 13
-
-
- 78, 20
-
-
- 5
-
-
- LIM_ROLL_CD
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 4
-
-
- NoControl
-
-
- 6, 17
-
-
- 55, 13
-
-
- 12
-
-
- Bank Max
-
-
- label37
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox2
-
-
- 5
-
-
- XTRK_ANGLE_CD
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox15
-
-
- 0
-
-
- label79
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox15
-
-
- 1
-
-
- XTRK_GAIN_SC
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox15
-
-
- 2
-
-
- label80
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox15
-
-
- 3
-
-
- 4, 325
-
-
- 195, 108
-
-
- 3
-
-
- Xtrack Pids
-
-
- groupBox15
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 3
-
-
- 111, 36
-
-
- 78, 20
-
-
- 7
-
-
- XTRK_ANGLE_CD
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox15
-
-
- 0
-
-
- NoControl
-
-
- 6, 40
-
-
- 61, 13
-
-
- 8
-
-
- Entry Angle
-
-
- label79
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox15
-
-
- 1
-
-
- 111, 13
-
-
- 78, 20
-
-
- 5
-
-
- XTRK_GAIN_SC
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox15
-
-
- 2
-
-
- NoControl
-
-
- 6, 17
-
-
- 52, 13
-
-
- 9
-
-
- Gain (cm)
-
-
- label80
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox15
-
-
- 3
-
-
- KFF_PTCH2THR
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 0
-
-
- label83
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 1
-
-
- KFF_RDDRMIX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 2
-
-
- label78
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 3
-
-
- KFF_PTCHCOMP
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 4
-
-
- label81
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 5
-
-
- 205, 217
-
-
- 195, 108
-
-
- 4
-
-
- Other Mix's
-
-
- groupBox16
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 4
-
-
- 111, 13
-
-
- 78, 20
-
-
- 13
-
-
- KFF_PTCH2THR
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 0
-
-
- NoControl
-
-
- 6, 17
-
-
- 36, 13
-
-
- 14
-
-
- P to T
-
-
- label83
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 1
-
-
- 111, 59
-
-
- 78, 20
-
-
- 9
-
-
- KFF_RDDRMIX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 2
-
-
- NoControl
-
-
- 6, 63
-
-
- 61, 13
-
-
- 15
-
-
- Rudder Mix
-
-
- label78
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 3
-
-
- 111, 36
-
-
- 78, 20
-
-
- 7
-
-
- KFF_PTCHCOMP
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 61, 13
-
-
- 16
-
-
- Pitch Comp
-
-
- label81
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
-
-
- 5
-
-
- ENRGY2THR_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 0
-
-
- label73
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 1
-
-
- ENRGY2THR_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 2
-
-
- label74
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 3
-
-
- ENRGY2THR_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 4
-
-
- label75
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 5
-
-
- ENRGY2THR_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 6
-
-
- label76
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 7
-
-
- 4, 217
-
-
- 195, 108
-
-
- 5
-
-
- Energy/Alt Pid
-
-
- groupBox14
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 5
-
-
- 111, 82
-
-
- 78, 20
-
-
- 11
-
-
- ENRGY2THR_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 0
-
-
- NoControl
-
-
- 6, 86
-
-
- 54, 13
-
-
- 12
-
-
- INT_MAX
-
-
- label73
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 1
-
-
- 111, 59
-
-
- 78, 20
-
-
- 9
-
-
- ENRGY2THR_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 2
-
-
- NoControl
-
-
- 6, 63
-
-
- 15, 13
-
-
- 13
-
-
- D
-
-
- label74
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 3
-
-
- 111, 36
-
-
- 78, 20
-
-
- 7
-
-
- ENRGY2THR_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label75
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 5
-
-
- 111, 13
-
-
- 78, 20
-
-
- 5
-
-
- ENRGY2THR_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 6
-
-
- NoControl
-
-
- 6, 17
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label76
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox14
-
-
- 7
-
-
- ALT2PTCH_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 0
-
-
- label69
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 1
-
-
- ALT2PTCH_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 2
-
-
- label70
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 3
-
-
- ALT2PTCH_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 4
-
-
- label71
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 5
-
-
- ALT2PTCH_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 6
-
-
- label72
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 7
-
-
- 406, 109
-
-
- 195, 108
-
-
- 6
-
-
- Nav Pitch Alt Pid
-
-
- groupBox13
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 6
-
-
- 111, 82
-
-
- 78, 20
-
-
- 0
-
-
- ALT2PTCH_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 0
-
-
- NoControl
-
-
- 6, 86
-
-
- 54, 13
-
-
- 1
-
-
- INT_MAX
-
-
- label69
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 1
-
-
- 111, 59
-
-
- 78, 20
-
-
- 2
-
-
- ALT2PTCH_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 2
-
-
- NoControl
-
-
- 6, 63
-
-
- 15, 13
-
-
- 3
-
-
- D
-
-
- label70
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 3
-
-
- 111, 36
-
-
- 78, 20
-
-
- 4
-
-
- ALT2PTCH_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 5
-
-
- I
-
-
- label71
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 5
-
-
- 111, 13
-
-
- 78, 20
-
-
- 6
-
-
- ALT2PTCH_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 6
-
-
- NoControl
-
-
- 6, 17
-
-
- 14, 13
-
-
- 7
-
-
- P
-
-
- label72
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox13
-
-
- 7
-
-
- ARSP2PTCH_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 0
-
-
- label65
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 1
-
-
- ARSP2PTCH_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 2
-
-
- label66
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 3
-
-
- ARSP2PTCH_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 4
-
-
- label67
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 5
-
-
- ARSP2PTCH_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 6
-
-
- label68
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 7
-
-
- 205, 109
-
-
- 195, 108
-
-
- 7
-
-
- Nav Pitch AS Pid
-
-
- groupBox12
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 7
-
-
- 111, 82
-
-
- 78, 20
-
-
- 0
-
-
- ARSP2PTCH_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 0
-
-
- NoControl
-
-
- 6, 86
-
-
- 54, 13
-
-
- 1
-
-
- INT_MAX
-
-
- label65
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 1
-
-
- 111, 59
-
-
- 78, 20
-
-
- 2
-
-
- ARSP2PTCH_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 2
-
-
- NoControl
-
-
- 6, 63
-
-
- 15, 13
-
-
- 3
-
-
- D
-
-
- label66
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 3
-
-
- 111, 36
-
-
- 78, 20
-
-
- 4
-
-
- ARSP2PTCH_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 5
-
-
- I
-
-
- label67
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 5
-
-
- 111, 13
-
-
- 78, 20
-
-
- 6
-
-
- ARSP2PTCH_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 6
-
-
- NoControl
-
-
- 6, 17
-
-
- 14, 13
-
-
- 7
-
-
- P
-
-
- label68
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox12
-
-
- 7
-
-
- HDNG2RLL_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 0
-
-
- label61
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 1
-
-
- HDNG2RLL_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 2
-
-
- label62
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 3
-
-
- HDNG2RLL_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 4
-
-
- label63
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 5
-
-
- HDNG2RLL_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 6
-
-
- label64
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 7
-
-
- 4, 109
-
-
- 195, 108
-
-
- 8
-
-
- Nav Roll Pid
-
-
- groupBox11
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 8
-
-
- 111, 82
-
-
- 78, 20
-
-
- 11
-
-
- HDNG2RLL_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 0
-
-
- NoControl
-
-
- 6, 86
-
-
- 54, 13
-
-
- 12
-
-
- INT_MAX
-
-
- label61
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 1
-
-
- 111, 59
-
-
- 78, 20
-
-
- 9
-
-
- HDNG2RLL_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 2
-
-
- NoControl
-
-
- 6, 63
-
-
- 15, 13
-
-
- 13
-
-
- D
-
-
- label62
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 3
-
-
- 111, 36
-
-
- 78, 20
-
-
- 7
-
-
- HDNG2RLL_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label63
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 5
-
-
- 111, 13
-
-
- 78, 20
-
-
- 5
-
-
- HDNG2RLL_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 6
-
-
- NoControl
-
-
- 6, 17
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label64
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox11
-
-
- 7
-
-
- YW2SRV_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 0
-
-
- label57
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 1
-
-
- YW2SRV_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 2
-
-
- label58
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 3
-
-
- YW2SRV_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 4
-
-
- label59
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 5
-
-
- YW2SRV_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 6
-
-
- label60
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 7
-
-
- 406, 1
-
-
- 195, 108
-
-
- 9
-
-
- Servo Yaw Pid
-
-
- groupBox10
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 9
-
-
- 111, 82
-
-
- 78, 20
-
-
- 11
-
-
- YW2SRV_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 0
-
-
- NoControl
-
-
- 6, 86
-
-
- 54, 13
-
-
- 12
-
-
- INT_MAX
-
-
- label57
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 1
-
-
- 111, 59
-
-
- 78, 20
-
-
- 9
-
-
- YW2SRV_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 2
-
-
- NoControl
-
-
- 6, 63
-
-
- 15, 13
-
-
- 13
-
-
- D
-
-
- label58
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 3
-
-
- 111, 36
-
-
- 78, 20
-
-
- 7
-
-
- YW2SRV_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label59
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 5
-
-
- 111, 13
-
-
- 78, 20
-
-
- 5
-
-
- YW2SRV_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 6
-
-
- NoControl
-
-
- 6, 17
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label60
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox10
-
-
- 7
-
-
- PTCH2SRV_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 0
-
-
- label53
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 1
-
-
- PTCH2SRV_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 2
-
-
- label54
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 3
-
-
- PTCH2SRV_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 4
-
-
- label55
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 5
-
-
- PTCH2SRV_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 6
-
-
- label56
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 7
-
-
- 205, 1
-
-
- 195, 108
-
-
- 10
-
-
- Servo Pitch Pid
-
-
- groupBox9
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 10
-
-
- 111, 82
-
-
- 78, 20
-
-
- 11
-
-
- PTCH2SRV_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 0
-
-
- NoControl
-
-
- 6, 86
-
-
- 54, 13
-
-
- 12
-
-
- INT_MAX
-
-
- label53
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 1
-
-
- 111, 59
-
-
- 78, 20
-
-
- 9
-
-
- PTCH2SRV_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 2
-
-
- NoControl
-
-
- 6, 63
-
-
- 15, 13
-
-
- 13
-
-
- D
-
-
- label54
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 3
-
-
- 111, 36
-
-
- 78, 20
-
-
- 7
-
-
- PTCH2SRV_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label55
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 5
-
-
- 111, 13
-
-
- 78, 20
-
-
- 5
-
-
- PTCH2SRV_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 6
-
-
- NoControl
-
-
- 6, 17
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label56
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox9
-
-
- 7
-
-
- RLL2SRV_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 0
-
-
- label49
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 1
-
-
- RLL2SRV_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 2
-
-
- label50
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 3
-
-
- RLL2SRV_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 4
-
-
- label51
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 5
-
-
- RLL2SRV_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 6
-
-
- label52
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 7
-
-
- 4, 1
-
-
- 195, 108
-
-
- 11
-
-
- Servo Roll Pid
-
-
- groupBox8
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAP
-
-
- 11
-
-
- 111, 82
-
-
- 78, 20
-
-
- 11
-
-
- RLL2SRV_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 0
-
-
- NoControl
-
-
- 6, 86
-
-
- 54, 13
-
-
- 12
-
-
- INT_MAX
-
-
- label49
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 1
-
-
- 111, 59
-
-
- 78, 20
-
-
- 9
-
-
- RLL2SRV_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 2
-
-
- NoControl
-
-
- 6, 63
-
-
- 15, 13
-
-
- 13
-
-
- D
-
-
- label50
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 3
-
-
- 111, 36
-
-
- 78, 20
-
-
- 7
-
-
- RLL2SRV_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label51
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 5
-
-
- 111, 13
-
-
- 78, 20
-
-
- 5
-
-
- RLL2SRV_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 6
-
-
- NoControl
-
-
- 6, 17
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label52
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox8
-
-
- 7
-
-
- 543, 297
-
-
- 78, 20
-
-
- 22
-
-
- TUNE_LOW
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 0
-
-
- 627, 296
-
-
- 78, 20
-
-
- 21
-
-
- TUNE_HIGH
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 1
-
-
- 534, 270
-
-
- 53, 23
-
-
- 20
-
-
- Ch6 Opt
-
-
- myLabel2
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- TabAC
-
-
- 2
-
-
- CH6_NONE
-
-
- CH6_STABILIZE_KP
-
-
- CH6_STABILIZE_KI
-
-
- CH6_YAW_KP
-
-
- CH6_RATE_KP
-
-
- CH6_RATE_KI
-
-
- CH6_YAW_RATE_KP
-
-
- CH6_THROTTLE_KP
-
-
- CH6_TOP_BOTTOM_RATIO
-
-
- CH6_RELAY
-
-
- CH6_TRAVERSE_SPEED
-
-
- CH6_NAV_P
-
-
- CH6_LOITER_P
-
-
- CH6_HELI_EXTERNAL_GYRO
-
-
- CH6_THR_HOLD_KP
-
-
- CH6_Z_GAIN
-
-
- CH6_DAMP
-
-
- CH6_OPTFLOW_KP
-
-
- CH6_OPTFLOW_KI
-
-
- CH6_OPTFLOW_KD
-
-
- CH6_NAV_I
-
-
- CH6_RATE_KD
-
-
- 593, 270
-
-
- 112, 21
-
-
- 19
-
-
- TUNE
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 3
-
-
- 534, 322
-
-
- 53, 23
-
-
- 18
-
-
- Ch7 Opt
-
-
- myLabel1
-
-
- ArdupilotMega.MyLabel, ArdupilotMegaPlanner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- TabAC
-
-
- 4
-
-
- Do Nothing
-
-
-
-
-
-
-
-
- Simple Mode
-
-
- RTL
-
-
-
-
-
-
-
-
- Save WP
-
-
- 593, 322
-
-
- 112, 21
-
-
- 17
-
-
- CH7_OPT
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 5
-
-
- THR_RATE_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 0
-
-
- label29
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 1
-
-
- label14
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 2
-
-
- THR_RATE_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 3
-
-
- THR_RATE_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 4
-
-
- label20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 5
-
-
- THR_RATE_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 6
-
-
- label25
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 7
-
-
- 6, 260
-
-
- 170, 110
-
-
- 16
-
-
- Throttle Rate
-
-
- groupBox5
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 6
-
-
- 80, 60
-
-
- 78, 20
-
-
- 14
-
-
- THR_RATE_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 0
-
-
- NoControl
-
-
- 6, 63
-
-
- 10, 13
-
-
- 15
-
-
- D
-
-
- label29
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 1
-
-
- NoControl
-
-
- 6, 86
-
-
- 65, 13
-
-
- 16
-
-
- IMAX
-
-
- label14
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 2
-
-
- 80, 83
-
-
- 78, 20
-
-
- 11
-
-
- THR_RATE_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 3
-
-
- 80, 37
-
-
- 78, 20
-
-
- 7
-
-
- THR_RATE_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 5
-
-
- 80, 13
-
-
- 78, 20
-
-
- 5
-
-
- THR_RATE_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 6
-
-
- NoControl
-
-
- 6, 16
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label25
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 7
-
-
- True
-
-
- 3, 240
-
-
- 154, 17
-
-
- 13
-
-
- Lock Pitch and Roll Values
-
-
- CHK_lockrollpitch
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 7
-
-
- NAV_LAT_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 0
-
-
- label27
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 1
-
-
- WP_SPEED_MAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 2
-
-
- label9
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 3
-
-
- NAV_LAT_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 4
-
-
- label13
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 5
-
-
- NAV_LAT_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 6
-
-
- label15
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 7
-
-
- NAV_LAT_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 8
-
-
- label16
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 9
-
-
- 534, 126
-
-
- 170, 131
-
-
- 0
-
-
- Nav WP
-
-
- groupBox4
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 8
-
-
- 80, 60
-
-
- 78, 20
-
-
- 18
-
-
- NAV_LAT_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 0
-
-
- NoControl
-
-
- 6, 63
-
-
- 10, 13
-
-
- 19
-
-
- D
-
-
- label27
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 1
-
-
- 80, 107
-
-
- 78, 20
-
-
- 16
-
-
- WP_SPEED_MAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 2
-
-
- NoControl
-
-
- 6, 110
-
-
- 54, 13
-
-
- 17
-
-
- m/s
-
-
- label9
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 3
-
-
- 80, 84
-
-
- 78, 20
-
-
- 11
-
-
- NAV_LAT_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 4
-
-
- NoControl
-
-
- 6, 87
-
-
- 65, 13
-
-
- 12
-
-
- IMAX
-
-
- label13
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 5
-
-
- 80, 37
-
-
- 78, 20
-
-
- 7
-
-
- NAV_LAT_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 6
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label15
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 7
-
-
- 80, 13
-
-
- 78, 20
-
-
- 5
-
-
- NAV_LAT_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 8
-
-
- NoControl
-
-
- 6, 16
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label16
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 9
-
-
- XTRK_GAIN_SC1
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox6
-
-
- 0
-
-
- label18
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox6
-
-
- 1
-
-
- 358, 260
-
-
- 170, 43
-
-
- 2
-
-
- Crosstrack Correction
-
-
- groupBox6
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 9
-
-
- 80, 13
-
-
- 78, 20
-
-
- 5
-
-
- XTRK_GAIN_SC1
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox6
-
-
- 0
-
-
- NoControl
-
-
- 6, 16
-
-
- 38, 13
-
-
- 15
-
-
- Gain
-
-
- label18
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox6
-
-
- 1
-
-
- THR_ALT_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 0
-
-
- label19
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 1
-
-
- THR_ALT_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 2
-
-
- label21
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 3
-
-
- THR_ALT_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 4
-
-
- label22
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 5
-
-
- 182, 260
-
-
- 170, 110
-
-
- 3
-
-
- Altitude Hold
-
-
- groupBox7
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 10
-
-
- 80, 63
-
-
- 78, 20
-
-
- 11
-
-
- THR_ALT_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 0
-
-
- NoControl
-
-
- 6, 66
-
-
- 65, 13
-
-
- 12
-
-
- IMAX
-
-
- label19
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 1
-
-
- 80, 37
-
-
- 78, 20
-
-
- 7
-
-
- THR_ALT_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 2
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label21
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 3
-
-
- 80, 13
-
-
- 78, 20
-
-
- 5
-
-
- THR_ALT_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 4
-
-
- NoControl
-
-
- 6, 16
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label22
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox7
-
-
- 5
-
-
- HLD_LAT_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 0
-
-
- label28
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 1
-
-
- HLD_LAT_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 2
-
-
- label30
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 3
-
-
- HLD_LAT_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 4
-
-
- label31
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 5
-
-
- 531, 6
-
-
- 170, 95
-
-
- 6
-
-
- Loiter
-
-
- groupBox19
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 11
-
-
- 80, 61
-
-
- 78, 20
-
-
- 11
-
-
- HLD_LAT_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 0
-
-
- NoControl
-
-
- 6, 64
-
-
- 65, 13
-
-
- 12
-
-
- IMAX
-
-
- label28
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 1
-
-
- 80, 37
-
-
- 78, 20
-
-
- 7
-
-
- HLD_LAT_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 2
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label30
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 3
-
-
- 80, 13
-
-
- 78, 20
-
-
- 5
-
-
- HLD_LAT_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 4
-
-
- NoControl
-
-
- 6, 16
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label31
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox19
-
-
- 5
-
-
- STB_YAW_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 0
-
-
- label32
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 1
-
-
- STB_YAW_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 2
-
-
- label34
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 3
-
-
- STB_YAW_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 4
-
-
- label35
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 5
-
-
- 358, 6
-
-
- 170, 95
-
-
- 7
-
-
- Stabilize Yaw
-
-
- groupBox20
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 12
-
-
- 80, 63
-
-
- 78, 20
-
-
- 11
-
-
- STB_YAW_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 0
-
-
- NoControl
-
-
- 6, 66
-
-
- 65, 13
-
-
- 12
-
-
- IMAX
-
-
- label32
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 1
-
-
- 80, 37
-
-
- 78, 20
-
-
- 7
-
-
- STB_YAW_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 2
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label34
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 3
-
-
- 80, 13
-
-
- 78, 20
-
-
- 5
-
-
- STB_YAW_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 4
-
-
- NoControl
-
-
- 6, 16
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label35
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox20
-
-
- 5
-
-
- STAB_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 0
-
-
- lblSTAB_D
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 1
-
-
- STB_PIT_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 2
-
-
- label36
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 3
-
-
- STB_PIT_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 4
-
-
- label41
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 5
-
-
- STB_PIT_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 6
-
-
- label42
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 7
-
-
- 182, 6
-
-
- 170, 114
-
-
- 8
-
-
- Stabilize Pitch
-
-
- groupBox21
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 13
-
-
- 80, 88
-
-
- 78, 20
-
-
- 16
-
-
- STAB_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 0
-
-
- NoControl
-
-
- 6, 91
-
-
- 65, 13
-
-
- 17
-
-
- Stabilize D
-
-
- lblSTAB_D
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 1
-
-
- 80, 63
-
-
- 78, 20
-
-
- 11
-
-
- STB_PIT_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 2
-
-
- NoControl
-
-
- 6, 66
-
-
- 65, 13
-
-
- 12
-
-
- IMAX
-
-
- label36
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 3
-
-
- 80, 37
-
-
- 78, 20
-
-
- 7
-
-
- STB_PIT_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label41
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 5
-
-
- 80, 13
-
-
- 78, 20
-
-
- 5
-
-
- STB_PIT_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 6
-
-
- NoControl
-
-
- 6, 16
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label42
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox21
-
-
- 7
-
-
- STB_RLL_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 0
-
-
- label43
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 1
-
-
- STB_RLL_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 2
-
-
- label45
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 3
-
-
- STB_RLL_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 4
-
-
- label46
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 5
-
-
- 6, 6
-
-
- 170, 95
-
-
- 9
-
-
- Stabilize Roll
-
-
- groupBox22
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 14
-
-
- 80, 63
-
-
- 78, 20
-
-
- 11
-
-
- STB_RLL_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 0
-
-
- NoControl
-
-
- 6, 66
-
-
- 65, 13
-
-
- 12
-
-
- IMAX
-
-
- label43
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 1
-
-
- 80, 37
-
-
- 78, 20
-
-
- 7
-
-
- STB_RLL_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 2
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 14
-
-
- I
-
-
- label45
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 3
-
-
- 80, 13
-
-
- 78, 20
-
-
- 5
-
-
- STB_RLL_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 4
-
-
- NoControl
-
-
- 6, 16
-
-
- 14, 13
-
-
- 15
-
-
- P
-
-
- label46
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox22
-
-
- 5
-
-
- RATE_YAW_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 0
-
-
- label10
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 1
-
-
- RATE_YAW_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 2
-
-
- label47
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 3
-
-
- RATE_YAW_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 4
-
-
- label77
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 5
-
-
- RATE_YAW_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 6
-
-
- label82
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 7
-
-
- 358, 126
-
-
- 170, 108
-
-
- 10
-
-
- Rate Yaw
-
-
- groupBox23
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 15
-
-
- 80, 60
-
-
- 78, 20
-
-
- 8
-
-
- RATE_YAW_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 0
-
-
- NoControl
-
-
- 6, 63
-
-
- 10, 13
-
-
- 9
-
-
- D
-
-
- label10
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 1
-
-
- 80, 84
-
-
- 78, 20
-
-
- 0
-
-
- RATE_YAW_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 2
-
-
- NoControl
-
-
- 6, 87
-
-
- 65, 13
-
-
- 1
-
-
- IMAX
-
-
- label47
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 3
-
-
- 80, 37
-
-
- 78, 20
-
-
- 4
-
-
- RATE_YAW_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 5
-
-
- I
-
-
- label77
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 5
-
-
- 80, 13
-
-
- 78, 20
-
-
- 6
-
-
- RATE_YAW_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 6
-
-
- NoControl
-
-
- 6, 16
-
-
- 14, 13
-
-
- 7
-
-
- P
-
-
- label82
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox23
-
-
- 7
-
-
- RATE_PIT_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 0
-
-
- label11
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 1
-
-
- RATE_PIT_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 2
-
-
- label84
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 3
-
-
- RATE_PIT_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 4
-
-
- label86
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 5
-
-
- RATE_PIT_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 6
-
-
- label87
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 7
-
-
- 182, 126
-
-
- 170, 108
-
-
- 11
-
-
- Rate Pitch
-
-
- groupBox24
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 16
-
-
- 80, 60
-
-
- 78, 20
-
-
- 10
-
-
- RATE_PIT_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 0
-
-
- NoControl
-
-
- 6, 63
-
-
- 10, 13
-
-
- 11
-
-
- D
-
-
- label11
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 1
-
-
- 80, 83
-
-
- 78, 20
-
-
- 0
-
-
- RATE_PIT_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 2
-
-
- NoControl
-
-
- 6, 86
-
-
- 65, 13
-
-
- 1
-
-
- IMAX
-
-
- label84
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 3
-
-
- 80, 37
-
-
- 78, 20
-
-
- 4
-
-
- RATE_PIT_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 5
-
-
- I
-
-
- label86
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 5
-
-
- 80, 13
-
-
- 78, 20
-
-
- 6
-
-
- RATE_PIT_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 6
-
-
- NoControl
-
-
- 6, 16
-
-
- 14, 13
-
-
- 7
-
-
- P
-
-
- label87
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox24
-
-
- 7
-
-
- RATE_RLL_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 0
-
-
- label17
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 1
-
-
- RATE_RLL_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 2
-
-
- label88
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 3
-
-
- RATE_RLL_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 4
-
-
- label90
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 5
-
-
- RATE_RLL_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 6
-
-
- label91
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 7
-
-
- 6, 126
-
-
- 170, 108
-
-
- 12
-
-
- Rate Roll
-
-
- groupBox25
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabAC
-
-
- 17
-
-
- 80, 60
-
-
- 78, 20
-
-
- 12
-
-
- RATE_RLL_D
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 0
-
-
- NoControl
-
-
- 6, 63
-
-
- 10, 13
-
-
- 13
-
-
- D
-
-
- label17
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 1
-
-
- 80, 83
-
-
- 78, 20
-
-
- 0
-
-
- RATE_RLL_IMAX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 2
-
-
- NoControl
-
-
- 6, 86
-
-
- 68, 13
-
-
- 1
-
-
- IMAX
-
-
- label88
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 3
-
-
- 80, 37
-
-
- 78, 20
-
-
- 4
-
-
- RATE_RLL_I
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 4
-
-
- NoControl
-
-
- 6, 40
-
-
- 10, 13
-
-
- 5
-
-
- I
-
-
- label90
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 5
-
-
- 80, 13
-
-
- 78, 20
-
-
- 6
-
-
- RATE_RLL_P
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 6
-
-
- NoControl
-
-
- 6, 16
-
-
- 14, 13
-
-
- 7
-
-
- P
-
-
- label91
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox25
-
-
- 7
-
0, 0
@@ -8765,9 +6485,6 @@ GDI+ = Enabled
5
-
- 17, 17
-
Bottom, Left
diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs
index 36679c0fc0..fc46ee040c 100644
--- a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs
+++ b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs
@@ -74,6 +74,8 @@ namespace ArdupilotMega.GCSViews
public static hud.HUD myhud = null;
public static GMapControl mymap = null;
+ bool playingLog = false;
+
public static PointLatLngAlt GuidedModeWP = new PointLatLngAlt();
@@ -360,6 +362,11 @@ namespace ArdupilotMega.GCSViews
if (MainV2.comPort.logreadmode)
MainV2.comPort.logreadmode = false;
updatePlayPauseButton(false);
+
+ if (!playingLog && MainV2.comPort.logplaybackfile != null)
+ {
+ continue;
+ }
}
@@ -1025,10 +1032,11 @@ namespace ArdupilotMega.GCSViews
{
MainV2.comPort.logreadmode = false;
ZedGraphTimer.Stop();
+ playingLog = false;
}
else
{
- BUT_clear_track_Click(sender, e);
+ // BUT_clear_track_Click(sender, e);
MainV2.comPort.logreadmode = true;
list1.Clear();
list2.Clear();
@@ -1045,6 +1053,7 @@ namespace ArdupilotMega.GCSViews
zg1.GraphPane.XAxis.Scale.Min = 0;
zg1.GraphPane.XAxis.Scale.Max = 1;
ZedGraphTimer.Start();
+ playingLog = true;
}
}
diff --git a/Tools/ArdupilotMegaPlanner/Joystick.cs b/Tools/ArdupilotMegaPlanner/Joystick.cs
index a79db6ede6..c32136330a 100644
--- a/Tools/ArdupilotMegaPlanner/Joystick.cs
+++ b/Tools/ArdupilotMegaPlanner/Joystick.cs
@@ -320,6 +320,15 @@ namespace ArdupilotMega
if (getJoystickAxis(4) != Joystick.joystickaxis.None)
MainV2.cs.rcoverridech4 = pickchannel(4, JoyChannels[4].axis, JoyChannels[4].reverse, JoyChannels[4].expo);//(ushort)(((int)state.X / 65.535) + 1000);
+ if (getJoystickAxis(5) != Joystick.joystickaxis.None)
+ MainV2.cs.rcoverridech5 = pickchannel(5, JoyChannels[5].axis, JoyChannels[5].reverse, JoyChannels[5].expo);
+ if (getJoystickAxis(6) != Joystick.joystickaxis.None)
+ MainV2.cs.rcoverridech6 = pickchannel(6, JoyChannels[6].axis, JoyChannels[6].reverse, JoyChannels[6].expo);
+ if (getJoystickAxis(7) != Joystick.joystickaxis.None)
+ MainV2.cs.rcoverridech7 = pickchannel(7, JoyChannels[7].axis, JoyChannels[7].reverse, JoyChannels[7].expo);
+ if (getJoystickAxis(8) != Joystick.joystickaxis.None)
+ MainV2.cs.rcoverridech8 = pickchannel(8, JoyChannels[8].axis, JoyChannels[8].reverse, JoyChannels[8].expo);
+
foreach (JoyButton but in JoyButtons)
{
if (but.buttonno != -1 && getButtonState(but.buttonno))
diff --git a/Tools/ArdupilotMegaPlanner/Log.cs b/Tools/ArdupilotMegaPlanner/Log.cs
index 5e9717d3e5..f414925ac0 100644
--- a/Tools/ArdupilotMegaPlanner/Log.cs
+++ b/Tools/ArdupilotMegaPlanner/Log.cs
@@ -785,7 +785,7 @@ namespace ArdupilotMega
System.Threading.Thread.Sleep(500);
comPort.Write("erase\r");
System.Threading.Thread.Sleep(100);
- TXT_seriallog.AppendText("!!Allow 30 seconds for erase\n");
+ TXT_seriallog.AppendText("!!Allow 30-90 seconds for erase\n");
status = serialstatus.Done;
CHK_logs.Items.Clear();
}
diff --git a/Tools/ArdupilotMegaPlanner/MagCalib.cs b/Tools/ArdupilotMegaPlanner/MagCalib.cs
index e205c7b7ba..8e88536308 100644
--- a/Tools/ArdupilotMegaPlanner/MagCalib.cs
+++ b/Tools/ArdupilotMegaPlanner/MagCalib.cs
@@ -227,7 +227,7 @@ namespace ArdupilotMega
/// offsets
public static void SaveOffsets(double[] ofs)
{
- if (MainV2.comPort.param.ContainsKey("COMPASS_OFS_X"))
+ if (MainV2.comPort.param.ContainsKey("COMPASS_OFS_X") && MainV2.comPort.BaseStream.IsOpen)
{
try
{
diff --git a/Tools/ArdupilotMegaPlanner/MainV2.cs b/Tools/ArdupilotMegaPlanner/MainV2.cs
index 320eaf9ec2..8fc86cf6a3 100644
--- a/Tools/ArdupilotMegaPlanner/MainV2.cs
+++ b/Tools/ArdupilotMegaPlanner/MainV2.cs
@@ -547,7 +547,7 @@ namespace ArdupilotMega
try
{
Directory.CreateDirectory(Path.GetDirectoryName(Application.ExecutablePath) + Path.DirectorySeparatorChar + @"logs");
- comPort.logfile = new BinaryWriter(File.Open(Path.GetDirectoryName(Application.ExecutablePath) + Path.DirectorySeparatorChar + @"logs" + Path.DirectorySeparatorChar + DateTime.Now.ToString("yyyy-MM-dd hh-mm-ss") + ".tlog", FileMode.CreateNew, FileAccess.ReadWrite, FileShare.Read));
+ comPort.logfile = new BinaryWriter(File.Open(Path.GetDirectoryName(Application.ExecutablePath) + Path.DirectorySeparatorChar + @"logs" + Path.DirectorySeparatorChar + DateTime.Now.ToString("yyyy-MM-dd HH-mm-ss") + ".tlog", FileMode.CreateNew, FileAccess.ReadWrite, FileShare.Read));
}
catch { CustomMessageBox.Show("Failed to create log - wont log this session"); } // soft fail
@@ -863,11 +863,13 @@ namespace ArdupilotMega
}
}
+ DateTime connectButtonUpdate = DateTime.Now;
+
private void updateConnectIcon()
{
- DateTime menuupdate = DateTime.Now;
+
- if ((DateTime.Now - menuupdate).Milliseconds > 500)
+ if ((DateTime.Now - connectButtonUpdate).Milliseconds > 500)
{
// Console.WriteLine(DateTime.Now.Millisecond);
if (comPort.BaseStream.IsOpen)
@@ -896,7 +898,7 @@ namespace ArdupilotMega
});
}
}
- menuupdate = DateTime.Now;
+ connectButtonUpdate = DateTime.Now;
}
}
diff --git a/Tools/ArdupilotMegaPlanner/Properties/AssemblyInfo.cs b/Tools/ArdupilotMegaPlanner/Properties/AssemblyInfo.cs
index 556a38e668..e99d7dd1d3 100644
--- a/Tools/ArdupilotMegaPlanner/Properties/AssemblyInfo.cs
+++ b/Tools/ArdupilotMegaPlanner/Properties/AssemblyInfo.cs
@@ -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.1.54")]
+[assembly: AssemblyFileVersion("1.1.55")]
[assembly: NeutralResourcesLanguageAttribute("")]
diff --git a/Tools/ArdupilotMegaPlanner/Setup/Setup.cs b/Tools/ArdupilotMegaPlanner/Setup/Setup.cs
index f10943bfd3..0b71ca9ea9 100644
--- a/Tools/ArdupilotMegaPlanner/Setup/Setup.cs
+++ b/Tools/ArdupilotMegaPlanner/Setup/Setup.cs
@@ -453,15 +453,17 @@ namespace ArdupilotMega.Setup
CMB_batmontype.SelectedIndex = getIndex(CMB_batmontype,(int)float.Parse(MainV2.comPort.param["BATT_MONITOR"].ToString()));
}
- if (TXT_ampspervolt.Text == "13.6612")
+ // ignore language re . vs ,
+
+ if (TXT_ampspervolt.Text == (13.6612).ToString())
{
CMB_batmonsensortype.SelectedIndex = 1;
}
- else if (TXT_ampspervolt.Text == "27.3224")
+ else if (TXT_ampspervolt.Text == (27.3224).ToString())
{
CMB_batmonsensortype.SelectedIndex = 2;
}
- else if (TXT_ampspervolt.Text == "54.64481")
+ else if (TXT_ampspervolt.Text == (54.64481).ToString())
{
CMB_batmonsensortype.SelectedIndex = 3;
}
@@ -1682,6 +1684,12 @@ namespace ArdupilotMega.Setup
MainV2.cs.ratesensors = backupratesens;
+ if (data.Count < 10)
+ {
+ CustomMessageBox.Show("Log does not contain enough data");
+ return;
+ }
+
double[] ans = MagCalib.LeastSq(data);
MagCalib.SaveOffsets(ans);
diff --git a/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.pdb b/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.pdb
index 1026981e5b..10a92a6c02 100644
Binary files a/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.pdb and b/Tools/ArdupilotMegaPlanner/bin/Release/ArdupilotMegaPlanner.pdb differ
diff --git a/Tools/ArdupilotMegaPlanner/temp.Designer.cs b/Tools/ArdupilotMegaPlanner/temp.Designer.cs
index 4e844073f1..ec582ef476 100644
--- a/Tools/ArdupilotMegaPlanner/temp.Designer.cs
+++ b/Tools/ArdupilotMegaPlanner/temp.Designer.cs
@@ -47,6 +47,7 @@
this.BUT_georefimage = new ArdupilotMega.MyButton();
this.BUT_follow_me = new ArdupilotMega.MyButton();
this.BUT_ant_track = new ArdupilotMega.MyButton();
+ this.BUT_magcalib = new ArdupilotMega.MyButton();
this.SuspendLayout();
//
// button1
@@ -234,11 +235,21 @@
this.BUT_ant_track.UseVisualStyleBackColor = true;
this.BUT_ant_track.Click += new System.EventHandler(this.BUT_ant_track_Click);
//
+ // BUT_magcalib
+ //
+ this.BUT_magcalib.Location = new System.Drawing.Point(161, 164);
+ this.BUT_magcalib.Name = "BUT_magcalib";
+ this.BUT_magcalib.Size = new System.Drawing.Size(96, 23);
+ this.BUT_magcalib.TabIndex = 19;
+ this.BUT_magcalib.Text = "Mag Calib";
+ this.BUT_magcalib.Click += new System.EventHandler(this.BUT_magcalib_Click);
+ //
// temp
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(731, 281);
+ this.Controls.Add(this.BUT_magcalib);
this.Controls.Add(this.BUT_ant_track);
this.Controls.Add(this.BUT_follow_me);
this.Controls.Add(this.BUT_georefimage);
@@ -287,6 +298,7 @@
private MyButton BUT_georefimage;
private MyButton BUT_follow_me;
private MyButton BUT_ant_track;
+ private MyButton BUT_magcalib;
//private SharpVectors.Renderers.Forms.SvgPictureBox svgPictureBox1;
}
diff --git a/Tools/ArdupilotMegaPlanner/temp.cs b/Tools/ArdupilotMegaPlanner/temp.cs
index a6a6bbbaae..fd5c9c8c08 100644
--- a/Tools/ArdupilotMegaPlanner/temp.cs
+++ b/Tools/ArdupilotMegaPlanner/temp.cs
@@ -886,5 +886,10 @@ namespace ArdupilotMega
{
new Antenna.Tracker().Show();
}
+
+ private void BUT_magcalib_Click(object sender, EventArgs e)
+ {
+ MagCalib.ProcessLog();
+ }
}
}