public async Task <WriteRegistersResult> WriteHoldingRegisterAsync(short value, ushort address, CancellationToken cancellationToken)
        {
            lock (_isInitializedLock)
            {
                if (_isInitialized == false)
                {
                    throw new ModbusException("This Modbus RTU Device must be Initialized first before any Requests can be Processed");
                }
            }

            if (address > MaximumAddress)
            {
                throw new ArgumentOutOfRangeException(nameof(address), "The Address is greater than the Maximum Allowed Value of '" + MaximumAddress + "'");
            }

            WriteHoldingRegisterRequest request = WriteHoldingRegisterRequest.CreateNew(this, address, value);

            ProcessRequestResult requestResult = await _channel.ProcessRequestAsync(request, _timeout, _retries, _delayBetweenMessages, cancellationToken);

            WriteHoldingRegisterResponse.Validate(request, requestResult.Response);

            return(new WriteRegistersResult
            {
                BytesSent = requestResult.BytesSent,
                PacketsSent = requestResult.PacketsSent,
                BytesReceived = requestResult.BytesReceived,
                PacketsReceived = requestResult.PacketsReceived,
                Duration = requestResult.Duration,
            });
        }
Esempio n. 2
0
        internal static void Validate(WriteHoldingRegisterRequest request, RTUResponse response)
        {
            if (response.Data.Length < 4)
            {
                throw new RTUException("The Response Data Length of '" + response.Data.Length.ToString() + "' was too short - Expecting a Length of '4'");
            }

            Memory <byte> bytes = response.Data.AsMemory();

            Span <byte> addressBytes = bytes.Slice(0, 2).Span;

            addressBytes.Reverse();

            ushort address = BitConverter.ToUInt16(addressBytes);

            if (address != request.Address)
            {
                throw new RTUException("The Response Address of '" + address.ToString() + "' did not match the Expected Address '" + request.Address.ToString() + "'");
            }

            Span <byte> valueBytes = bytes.Slice(2, 2).Span;

            valueBytes.Reverse();

            short value = BitConverter.ToInt16(valueBytes);

            if (value != request.Value)
            {
                throw new RTUException("The Response Register Value of '" + value.ToString() + "' did not match the Expected Register Value '" + request.Value.ToString() + "'");
            }
        }