Kyle Hayes

Results 356 comments of Kyle Hayes

Based on the code, I think you will need to set the size of the tag. There is a check that looks to see what the maximum size is and...

In the output log from tag_rw2, I see the following warning: ``` 2024-03-06 10:28:39.657 thread(1) tag(0) WARN ab_tag_create:408 A path is required for this PLC type. 2024-03-06 10:28:39.657 thread(1) tag(0)...

There are two possible responses from the native lib when you try to do a read or write while an operation is already in flight. If you use the async/non-blocking...

Is that overall algorithm racy? Thread 1 starts an operation and does await. Thread 2 tries and gets PLCTAG_ERR_BUSY from the native lib. Thread 1's op completes. Thread 2 checks...

If you are going to consistently read the tags, perhaps it would be better to set them up as [automatically read tags](https://github.com/libplctag/libplctag/wiki/Tag-String-Attributes#optional-generic-auto-sync-attributes). Then you do not need to lock or...

Thanks for the interest in the library. I've been under the weather for a while. Let me look through these. I am interested in seeing them broken out. Definitely I...

If the write test above works, then I can see if I can modify the generic PLC code to increase the size of the tag buffer in memory if there...

Thanks for the logs. It looks like there is a check in my code somewhere that is still failing. I'll have to try to recreate this here to figure out...

Ah, OK. It looks like you need to set `str_max_capacity` as well. If that is not set then the code checks for the existing string length. I would start with...

Hi, there hasn't been any movement on that feature yet. I left AWS a little while ago for health reasons (among others) so I don't have any direct contact with...