11 lines
340 B
C#
11 lines
340 B
C#
namespace InnovEnergy.Lib.Protocols.Modbus.Protocol.Frames;
|
|
|
|
|
|
// https://modbus.org/docs/Modbus_Application_Protocol_V1_1b3.pdf
|
|
|
|
public static class Constants
|
|
{
|
|
public const UInt16 MaxCoils = 0x07B0; // page 29
|
|
public const UInt16 MaxRegs = 0x007B; // page 30
|
|
public const UInt16 MaxDiscreteInputs = 2000;
|
|
} |