CodeControl.cs 398 B

1234567891011121314
  1. namespace PLC.Siemens.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. }