Added missing raw byte array writing reading

- added ability to change run/prog mode
This commit is contained in:
Felix Weiß
2022-06-21 14:15:07 +02:00
parent 2499ea3a60
commit 614426207c
9 changed files with 236 additions and 80 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace MewtocolNet {
/// <summary>
/// CPU type of the PLC
/// </summary>
public enum OPMode {
/// <summary>
/// PLC run mode
/// </summary>
Run,
/// <summary>
/// PLC programming mode
/// </summary>
Prog,
}
}