Activity for gordonkeller360

  • gordonkeller360 gordonkeller360 posted a comment on discussion Engineering πŸ‡¬πŸ‡§

    Hi -- curious to know the same thing! Lots of "The objects are equal" randomly popping up... my solution (for now) is simply to commit the actual changes and then execute the rollback (git clean + checkout) on all that are giving me the issue in question. Does anyone know if this repairable?

  • gordonkeller360 gordonkeller360 posted a comment on discussion 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!

  • gordonkeller360 gordonkeller360 posted a comment on discussion Engineering πŸ‡¬πŸ‡§

    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...

1