Discussion

FORUM LATEST POST # TOPICS
General Discussion

Forum about anything you want to talk about.

No posts yet 0

Recent Activities

    CODESYS Forge

  • hhermsen modified a comment on discussion Engineering πŸ‡¬πŸ‡§

    I pinpointed down 4 possible causes for this compiler error: Bare/empty statements (;) standing alone inside an IF/CASE branch β€” just removed two instances. The optimizer that tries to inline/replace expression statements may choke when a statement has no actual assignment to extract. A VAR_IN_OUT parameter used directly as a FOR loop's own control variable (FOR X := X TO Y DO) General deep-nesting complexity β€” every one of my decode routines has the same shape (IF busy THEN ... FOR loop containing...

  • hhermsen modified a comment on discussion Engineering πŸ‡¬πŸ‡§

    I pinpointed down 4 possible causes for this compiler error: Bare/empty statements (;) standing alone inside an IF/CASE branch β€” just removed two instances. The optimizer that tries to inline/replace expression statements may choke when a statement has no actual assignment to extract. A VAR_IN_OUT parameter used directly as a FOR loop's own control variable (FOR X := X TO Y DO) General deep-nesting complexity β€” every one of my decode routines has the same shape (IF busy THEN ... FOR loop containing...

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

    I pinpointed down 4 possible causes for this compiler error: Bare/empty statements (;) standing alone inside an IF/CASE branch β€” just removed two instances. The optimizer that tries to inline/replace expression statements may choke when a statement has no actual assignment to extract. A VAR_IN_OUT parameter used directly as a FOR loop's own control variable (FOR X := X TO Y DO) General deep-nesting complexity β€” every one of my decode routines has the same shape (IF busy THEN ... FOR loop containing...

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

    Internal compiler error in SP22.x (expLValue null) β€” SP21 unaffected β€” need help isolating root cause I'm hitting the same internal compiler crash reported here. Same exact stack trace (AssignmentStatementReplacer β†’ CreateAssignmentExpression β†’ ArgumentNullException: Value cannot be null. Parameter name: expLValue), but in my case triggered by a self-written library, not a Visualization object β€” so this looks like a general SP22.x codegen regression rather than something tied to one specific language...

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

    Now I understand. I always thought this was not supported. I might test it later. Thanks.

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

    you need just out of this windows rte cx package the internal EthercatMaster device description

  • erik.gerrits posted a comment on discussion Visualization πŸ‡¬πŸ‡§

    I ran into this issue as well. Here is the fix: Good example: CASE iBitmap OF 0 : sName := 'ImagePool.image0'; 1 : sName := 'ImagePool.image1'; END_CASE Bad example (this will only work on the target device, WebVisu will show a blank rectangle): CASE iBitmap OF 0 : sName := '/home/cds-apps/PlcLogic/visu/image0.png'; 1 : sName := '/home/cds-apps/PlcLogic/visu/image1.png'; END_CASE

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

    I installed Linux ARM SL and it recognizes the RJ45 ethernet ports, but I cannot get it to recognize the internal port for the IO cards.

  • ttvs posted a comment on discussion Runtime πŸ‡¬πŸ‡§

    Hello, Is it possible to check if PLC application is running or stopped from linux shell? I am using codesys control for linux arm64sl. Tried accessing the plc shell, but get auth errors. Also, when starting/stopping the program via plc shell from codesys IDE it doesnt report that information to log

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

    Control RTE is for Windows. @arj3090 specified Linux.