ReadWriteErrorCode.cs 353 B

123456789101112131415
  1. 
  2. namespace S7.Net.Protocol
  3. {
  4. internal enum ReadWriteErrorCode : byte
  5. {
  6. Reserved = 0x00,
  7. HardwareFault = 0x01,
  8. AccessingObjectNotAllowed = 0x03,
  9. AddressOutOfRange = 0x05,
  10. DataTypeNotSupported = 0x06,
  11. DataTypeInconsistent = 0x07,
  12. ObjectDoesNotExist = 0x0a,
  13. Success = 0xff
  14. }
  15. }