Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

magcal: note that heading is true, not magnetic #3055

Merged
merged 1 commit into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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