You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello Robin,
In the EDS file generation the array/record entries are not correct if the array/record is larger then 9 entries.
I've solved this by changing the line:
writer.WriteLine(string.Format("[{0:X}sub{1}]", index,subindex));
to:
writer.WriteLine(string.Format("[{0:X}sub{1:X}]", index,subindex));
('write'-routine in eds.cs).
br. Hendrik.
The text was updated successfully, but these errors were encountered:
Hello Robin,
In the EDS file generation the array/record entries are not correct if the array/record is larger then 9 entries.
I've solved this by changing the line:
writer.WriteLine(string.Format("[{0:X}sub{1}]", index,subindex));
to:
writer.WriteLine(string.Format("[{0:X}sub{1:X}]", index,subindex));
('write'-routine in eds.cs).
br. Hendrik.
The text was updated successfully, but these errors were encountered: