Jakub Bartkowiak
Jakub Bartkowiak
Correct, this is a design flaw made by the original authors. I totally agree that this is not intuitive, even though under the covers indeed the index is always sent....
Hi @psicus78, no I haven't worked with schedule objects before. Can you check if yu cand write anything to them using YABE app from which this codebase is derived from?...
3.2MB isn't much, this could be easily caused by extra resources allocated by the CLR. But if you want to check to make sure, you could try to dump memory...
Maybe do a similar test on different Linux machine with more resources? Or compare to a test without Mono by simply using .NET 5?
Hi @mwitt1337, would you be able to provide me wireshark dump with the request and response (only those packets needed) which is triggering the error? This would be the easiest...
Thanks @mwitt1337 I will look into this.
@mRy0 Thanks for your contribution! Would it be possible that you open a pull request against v2 branch too? But first I can review this pull so we can merge...
@gowtham31 for sure this line is incorrect: ```csharp if (bacnet_client.ReadPropertyRequest(..., out Value) == false) ``` just remove ``` == false```. Does this help? If not, does the answer in wireshark...
@MahajanHarsh can you share your code provide a wireshark dump of the relevant request and response?
The library doesn't create any threads, it only reacts to external calls and I/O operations. If you have high CPU load then most likely you need to introduce throttling to...