8#include "Arp/System/Rsc/Services/IRscSerializable.hpp"
9#include "Arp/System/Rsc/Services/RscReader.hpp"
10#include "Arp/System/Rsc/Services/RscString.hxx"
11#include "Arp/System/Rsc/Services/RscWriter.hpp"
15namespace Arp {
namespace Io {
namespace ProfinetStack {
namespace Controller {
namespace Services
60 writer.
Write(this->Id);
61 writer.
Write(this->DeviceName);
62 writer.
Write(this->Slot);
63 writer.
Write(this->Subslot);
64 writer.
Write(this->Index);
65 writer.
Write(this->Length);
70 reader.
Read(this->Id);
71 reader.
Read(this->DeviceName);
72 reader.
Read(this->Slot);
73 reader.
Read(this->Subslot);
74 reader.
Read(this->Index);
75 reader.
Read(this->Length);
78 static constexpr size_t GetFieldCount(
void)
Parameter to address a module. Use either the Node ID or the address consisting the station name,...
Definition: RecordParam.hpp:26
void Serialize(RscWriter &writer) const override
Serializes the datatype. All fields of the datatype have to be serialized in use of RscWriter.
Definition: RecordParam.hpp:58
uint16 Index
Index of the object
Definition: RecordParam.hpp:51
void Deserialize(RscReader &reader) override
Deserializes the datatype. All fields of the datatype have to be deserialized in use of RscReader.
Definition: RecordParam.hpp:68
uint16 Id
Node ID of the submodule
Definition: RecordParam.hpp:31
RscString< 512 > DeviceName
Station name of the PROFINET device
Definition: RecordParam.hpp:36
uint16 Subslot
Subslot number of a submodule
Definition: RecordParam.hpp:46
uint16 Length
Length of data record
Definition: RecordParam.hpp:56
uint16 Slot
Slot number of a module
Definition: RecordParam.hpp:41
Marshalls structure or class data types. Serialize and Deserialize have to marshal fields in the same...
Definition: IRscSerializable.hpp:20
Reads data from Rsc
Definition: RscReader.hpp:27
T Read(void)
Reads an element of T from Rsc. With data tagging enabled RscType of T is validated.
Definition: RscReader.hpp:166
Writes data to Rsc.
Definition: RscWriter.hpp:32
void Write(const T &value)
Writes an element of T from Rsc. Datatag and format is determined deducted by type of T.
Definition: RscWriter.hpp:178
std::uint16_t uint16
The Arp unsigned integer type of 2 byte size.
Definition: PrimitiveTypes.hpp:32
Namespace for classes and interfaces for the Remote Service Call implementation
Root namespace for the PLCnext API