Actually I think I know where I went wrong. Thanks for your help!
Oh! The file I downloaded was a compiled library though?
Hi aliazzz! Could you walk me through how to remove the library reference? I don't see an option to delete the library
Hey guys! I've been struggling with this too. To defeat the Tcp_Read/Write error, I cleared my Tx and Rx (send and receive) buffers every cycle. I guess this makes sense, since overwriting a larger message with a small one without clearing first would be...messy. I have large sized arrays (65,500 bytes), so I had to use the following method to zero out all my arrays without hitting a watchdog timer exception: Mem.MemFill(pMemoryBlock:= ADR(arrRx),uiLength := SIZEOF(arrRx),byFillValue := 0); Mem.MemFill(pMemoryBlock:=...