Welcome to our new forum
All users of the legacy CODESYS Forums, please create a new account at account.codesys.com. But make sure to use the same E-Mail address as in the old Forum. Then your posts will be matched. Close

how detect unused inputs in functional blocks?

diegovitor
2016-08-29
2016-08-29
  • diegovitor - 2016-08-29

    Hi, I'm developing a functional block that has a fixed number of inputs. I just need to know internally what these inputs are being used, because the user can configure a smaller number of inputs and leave the other inactive.

     
  • rickj - 2016-08-29

    The easiest way is to define the parameter to have an invalid initial value and then test for that the first time the block is executed.

    A little more involved method is to define the parameter as REFERENCE TO {type} and then on the first execution use the __ISVALIDREF() macro (not certain about spelling as I'm away from my codesys workstation) to determine if the input is connected to anything.

     

Log in to post a comment.