Skip to content

Commit

Permalink
magcal: note that heading is true, not magnetic
Browse files Browse the repository at this point in the history
some users were putting in a magnetic heading
  • Loading branch information
tridge authored and meee1 committed Feb 15, 2023
1 parent 32738c0 commit 7850bd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GCSViews/ConfigurationView/ConfigHWCompass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ private void ShowRelevantFields()
private void but_largemagcal_Click(object sender, EventArgs e)
{
double value = 0;
if (InputBox.Show("MagCal Yaw", "Enter current heading in degrees\nNOTE: gps lock is required", ref value) == DialogResult.OK)
if (InputBox.Show("MagCal Yaw", "Enter current heading in degrees\nNOTE: gps lock is required. Heading is true, not magnetic", ref value) == DialogResult.OK)
{
try
{
Expand Down
2 changes: 1 addition & 1 deletion GCSViews/ConfigurationView/ConfigHWCompass2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ private void myDataGridView1_RowPostPaint(object sender, DataGridViewRowPostPain
private void but_largemagcal_Click(object sender, EventArgs e)
{
double value = 0;
if (InputBox.Show("MagCal Yaw", "Enter current heading in degrees\nNOTE: gps lock is required", ref value) == DialogResult.OK)
if (InputBox.Show("MagCal Yaw", "Enter current heading in degrees\nNOTE: gps lock is required. Heading is true, not magnetic", ref value) == DialogResult.OK)
{
try
{
Expand Down

0 comments on commit 7850bd8

Please sign in to comment.