Added code to check for LX200GPS firmware version 4G0m which does not support the GW command.
This commit is contained in:
@@ -778,6 +778,10 @@ namespace ASCOM.Meade.net
|
||||
case TelescopeList.LX800:
|
||||
return FirmwareIsGreaterThan(TelescopeList.LX800_11i);
|
||||
case TelescopeList.LX200GPS:
|
||||
if (SharedResourcesWrapper.FirmwareVersion.Equals(TelescopeList.LX200GPS_4G0M,
|
||||
StringComparison.InvariantCultureIgnoreCase))
|
||||
return false;
|
||||
|
||||
return FirmwareIsGreaterThan(TelescopeList.LX200GPS_42G);
|
||||
case TelescopeList.RCX400:
|
||||
return FirmwareIsGreaterThan(TelescopeList.RCX400_22I);
|
||||
|
||||
Reference in New Issue
Block a user