You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Log.WriteLine("Mount: Successfully connected and configured!");
516
522
}
523
+
catch(FormatExceptionfex)
524
+
{
525
+
ScopeName=string.Empty;
526
+
ScopeHardware=string.Empty;
527
+
Log.WriteLine("Mount: Failed to connect and configure OAT! {0}",fex.Message);
528
+
MessageBox.Show("Connected to OpenAstroTracker, but protocol could not be established.\n\nIs the firmware compiled with DEBUG_LEVEL set to DEBUG_NONE?","Protocol Error",MessageBoxButton.OK,MessageBoxImage.Error);
529
+
}
517
530
catch(Exceptionex)
518
531
{
532
+
ScopeName=string.Empty;
533
+
ScopeHardware=string.Empty;
519
534
Log.WriteLine("Mount: Failed to connect and configure OAT! {0}",ex.Message);
520
-
MessageBox.Show("Error trying to connect to OpenAstroTracker."+ex.Message,"Connection Error",MessageBoxButton.OK,MessageBoxImage.Error);
535
+
MessageBox.Show("Error trying to connect to OpenAstroTracker.\n\n"+ex.Message,"Connection Error",MessageBoxButton.OK,MessageBoxImage.Error);
0 commit comments