Skip to content

Commit

Permalink
feat: Implement clock write support
Browse files Browse the repository at this point in the history
  • Loading branch information
mycroes committed Sep 4, 2023
1 parent 10315b4 commit cb24e9a
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 17 deletions.
60 changes: 45 additions & 15 deletions S7.Net/Plc.Clock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ partial class Plc
{
private const byte SzlFunctionGroupTimers = 0x07;
private const byte SzlSubFunctionReadClock = 0x01;
private const byte SzlSubFunctionWriteClock = 0x02;
private const byte TransportSizeOctetString = 0x09;
private const int PduErrOffset = 20;
private const int UserDataResultOffset = PduErrOffset + 2;

private static byte[] BuildClockReadRequest()
{
Expand All @@ -25,29 +29,55 @@ private static byte[] BuildClockReadRequest()

private static DateTime ParseClockReadResponse(byte[] message)
{
const int pduErrOffset = 20;
const int dtResultOffset = pduErrOffset + 2;
const int dtLenOffset = dtResultOffset + 2;
const int dtValueOffset = dtLenOffset + 4;
const int udLenOffset = UserDataResultOffset + 2;
const int udValueOffset = udLenOffset + 4;

var pduErr = Word.FromByteArray(message.Skip(pduErrOffset).Take(2).ToArray());
if (pduErr != 0)
AssertPduResult(message);
AssertUserDataResult(message, 0xff);

var len = Word.FromByteArray(message.Skip(udLenOffset).Take(2).ToArray());
if (len != Types.DateTime.Length)
{
throw new Exception($"Response from PLC indicates error 0x{pduErr:X4}.");
throw new Exception($"Unexpected response length {len}, expected {Types.DateTime.Length}.");
}

var dtResult = message[dtResultOffset];
if (dtResult != 0xff)
return Types.DateTime.FromByteArray(message.Skip(udValueOffset).Take(Types.DateTime.Length).ToArray());
}

private static byte[] BuildClockWriteRequest(DateTime value)
{
var stream = new MemoryStream();

WriteUserDataRequest(stream, SzlFunctionGroupTimers, SzlSubFunctionWriteClock, 14);
stream.Write(new byte[] { 0xff, TransportSizeOctetString, 0x00, Types.DateTime.Length });
stream.Write(new byte[] { 0x00, 0x19 }); // Start of actual DateTime value, DateTime.ToByteArray is broken
stream.Write(Types.DateTime.ToByteArray(value));

stream.SetLength(stream.Position);
return stream.ToArray();
}

private static void ParseClockWriteResponse(byte[] message)
{
AssertPduResult(message);
AssertUserDataResult(message, 0x0a);
}

private static void AssertPduResult(byte[] message)
{
var pduErr = Word.FromByteArray(message.Skip(PduErrOffset).Take(2).ToArray());
if (pduErr != 0)
{
throw new Exception($"Response from PLC indicates error 0x{dtResult:X2}.");
throw new Exception($"Response from PLC indicates error 0x{pduErr:X4}.");
}
}

var len = Word.FromByteArray(message.Skip(dtLenOffset).Take(2).ToArray());
if (len != Types.DateTime.Length)
private static void AssertUserDataResult(byte[] message, byte expected)
{
var dtResult = message[UserDataResultOffset];
if (dtResult != expected)
{
throw new Exception($"Unexpected response length {len}, expected {Types.DateTime.Length}.");
throw new Exception($"Response from PLC was 0x{dtResult:X2}, expected 0x{expected:X2}.");
}

return Types.DateTime.FromByteArray(message.Skip(dtValueOffset).Take(Types.DateTime.Length).ToArray());
}
}
5 changes: 4 additions & 1 deletion S7.Net/PlcAsynchronous.cs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,10 @@ public async Task<List<DataItem>> ReadMultipleVarsAsync(List<DataItem> dataItems
/// <returns>A task that represents the asynchronous operation.</returns>
public async Task WriteClockAsync(System.DateTime value, CancellationToken cancellationToken = default)
{
throw new NotImplementedException();
var request = BuildClockWriteRequest(value);
var response = await RequestTsduAsync(request, cancellationToken);

ParseClockWriteResponse(response);
}

/// <summary>
Expand Down
5 changes: 4 additions & 1 deletion S7.Net/PlcSynchronous.cs
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,10 @@ public System.DateTime ReadClock()
/// <param name="value">The date and time to set the PLC clock to.</param>
public void WriteClock(System.DateTime value)
{
throw new NotImplementedException();
var request = BuildClockWriteRequest(value);
var response = RequestTsdu(request);

ParseClockWriteResponse(response);
}

/// <summary>
Expand Down

0 comments on commit cb24e9a

Please sign in to comment.