mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
Fix multiple poller situational problems
This commit is contained in:
@@ -32,7 +32,7 @@ Console.WriteLine($"{filePath}");
|
||||
|
||||
StringBuilder markdownBuilder = new StringBuilder();
|
||||
|
||||
var plcNames = Enum.GetNames<PlcType>().OrderBy(x => x).ToArray();
|
||||
var plcNames = Enum.GetNames<PlcType>().Where(x => x != PlcType.Unknown.ToString()).OrderBy(x => x).ToArray();
|
||||
|
||||
void WritePlcTypeTable(string[] names) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user