Personal Data

Username:
gordonkeller360
Joined:
2026-01-05 21:32:29.095000

Projects

  • No projects to display.

User Activity

  • Posted a comment on discussion Forge 🇬🇧 on CODESYS Forge

    Hi -- Did you have any luck porting this over to RTE? I have a similar situation, where I am using CAA SerialCom and it works fine with Control Win, but I can't open the port when using in RTE. Any advice helps. Thanks!

  • Posted a comment on discussion Engineering 🇬🇧 on CODESYS Forge

    I have a program which sequentially places byte representations of characters from a string into an array. FUNCTION_BLOCK MoveBytesFromString VAR_IN_OUT abRxBuf: ARRAY [0..79] OF BYTE; END_VAR VAR testString : STRING := '$0A$R$L$TTesting,123...$94$86$0A'; iCount: DINT; END_VAR ---------------------------------------------------------------------------------------- // clear the buffer MEM.MemFill(ADR(abRxBuf), 80, 0); FOR iCount := 0 TO LEN(testString) - 1 DO // account for undesired null terminator...

View All