mirror of https://github.com/ArduPilot/ardupilot
50 lines
1.0 KiB
C#
50 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ArdupilotMega.GCSViews.ConfigurationView
|
|
{
|
|
public partial class ConfigHardwareOptions : UserControl
|
|
{
|
|
public ConfigHardwareOptions()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void CHK_enableoptflow_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void TXT_declination_Validated(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void CHK_enableairspeed_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void CHK_enablesonar_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void CHK_enablecompass_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|