StaticConst.cs 494 B

12345678910111213
  1. namespace PlcSiemens.O
  2. {
  3. public static class StaticConst
  4. {
  5. public const byte IsoTcpVersion = 0x03;// RFC 1006
  6. public const int IsoTcpPort = 102;// RFC 1006
  7. public const int IsoInvalidHandle = 0;
  8. public const int MaxTsapLength = 16;// Max Lenght for Src and Dst TSAP
  9. public const int MaxIsoFragments = 64; // Max fragments
  10. public const int IsoPayloadSize = 4096;// Iso telegram Buffer size
  11. public const int NoError = 0;
  12. }
  13. }