Skip to content

Commit

Permalink
Update ConfigSerialInjectGPS.cs
Browse files Browse the repository at this point in the history
Fix Septentrio config error while connected to ublox and changing away from the config RTK/GPS screen.
  • Loading branch information
EosBandi authored and meee1 committed Oct 30, 2024
1 parent 3b40162 commit cb1ed6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GCSViews/ConfigurationView/ConfigSerialInjectGPS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1480,7 +1480,7 @@ private async void cmb_septentriortcmamount_SelectedIndexChanged(object sender,

try
{
if (comPort.IsOpen)
if (comPort.IsOpen && comboBoxConfigType.Text == "Septentrio")
{
await UpdateSeptentrioRTCMSettings();
}
Expand Down Expand Up @@ -1580,4 +1580,4 @@ private async void chk_septentrioconstellation_Click(object sender, EventArgs e)
await UpdateSeptentrioRTCMSettings();
}
}
}
}

0 comments on commit cb1ed6d

Please sign in to comment.