. doing the trim of the trailing # after writing the log message.
. for LX800 scopes, trying to use a send string instead of send chars for GW command.
This commit is contained in:
@@ -111,9 +111,9 @@ namespace ASCOM.Meade.net
|
||||
|
||||
try
|
||||
{
|
||||
var result = SharedSerial.ReceiveTerminated("#").TrimEnd('#');
|
||||
var result = SharedSerial.ReceiveTerminated("#");
|
||||
traceLogger.LogMessage("SendString", $"Received {result}", false);
|
||||
return result;
|
||||
return result.TrimEnd('#');
|
||||
}
|
||||
catch (COMException ex)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user