Combined the skip prompts and set date time code, to just one check box.

This commit is contained in:
2021-04-24 13:16:08 +01:00
parent 6ac80c408c
commit eaeae4d66b
8 changed files with 111 additions and 168 deletions
-4
View File
@@ -158,7 +158,6 @@ namespace ASCOM.Meade.net
private const string StopBitsName = "Stop Bits";
private const string HandShakeName = "Hand Shake";
private const string ParityName = "Parity";
private const string SkipPromptsName = "Skip date prompts on connect";
private const string SendDateTimeName = "Send Date and time on connect";
public static void WriteProfile(ProfileProperties profileProperties)
@@ -184,7 +183,6 @@ namespace ASCOM.Meade.net
driverProfile.WriteValue(DriverId, DynamicBreakingName, profileProperties.DynamicBreaking.ToString());
driverProfile.WriteValue(DriverId, SiteElevationName, profileProperties.SiteElevation.ToString(CultureInfo.InvariantCulture));
driverProfile.WriteValue(DriverId, SettleTimeName, profileProperties.SettleTime.ToString());
driverProfile.WriteValue(DriverId, SkipPromptsName, profileProperties.SkipPrompts.ToString());
driverProfile.WriteValue(DriverId, SendDateTimeName, profileProperties.SendDateTime.ToString());
}
}
@@ -207,7 +205,6 @@ namespace ASCOM.Meade.net
private const string HandShakeDefault = "None";
private const string ParityDefault = "None";
private const string SendDateTimeDefault = "false";
private const string SkipPromptsDefault = "false";
public static ProfileProperties ReadProfile()
{
@@ -234,7 +231,6 @@ namespace ASCOM.Meade.net
profileProperties.Speed = Convert.ToInt32(driverProfile.GetValue(DriverId, SpeedName, string.Empty, SpeedDefault));
profileProperties.Parity = driverProfile.GetValue(DriverId, ParityName, string.Empty, ParityDefault);
profileProperties.SendDateTime = Convert.ToBoolean(driverProfile.GetValue(DriverId, SendDateTimeName, string.Empty, SendDateTimeDefault));
profileProperties.SkipPrompts = Convert.ToBoolean(driverProfile.GetValue(DriverId, SkipPromptsName, string.Empty, SkipPromptsDefault));
}
return profileProperties;