CodeControl.cs 399 B

123456789101112131415
  1. namespace PlcSiemens.Protocol.Common
  2. {
  3. public enum CodeControl
  4. {
  5. // Control codes
  6. Unknown = 0,
  7. ColdStart = 1, // Cold start
  8. WarmStart = 2, // Warm start
  9. Stop = 3, // Stop
  10. Compress = 4, // Compress
  11. CpyRamRom = 5, // Copy Ram to Rom
  12. InsDel = 6, // Insert in working ram the block downloaded
  13. }
  14. }