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

Array questions

2018-02-20
2018-04-03
  • EmbeddedSalsa - 2018-02-20

    Dear all,
    1.is it possible to declare an array, with a size taken from initializer.
    In C it is:
    int a[]={1,2,3}

    How I do the same in codesys?
    Please note, I DON'T request run-time dynamic array. I only request to don't declare a size abut take it from amount of initializers, like in C.

    1. How array are passed in function blocks?

    Var input
    invar array [0..5] of int;
    end var

    What is passed only the "reference" or the copy of the whole array on the stack. If so, how do I only pass array by reference? I want to read from array inside of the block, but don't want to write something back.

    Note: Pointers are not allowed in my company.
    Thanks a lot!

     
  • Anonymous - 2018-02-22

    Originally created by: scott_cunningham

    An answer to your second question:

    There are two solutions for passing an array reference without passing the whole array while not using pointers:

    VAR_INPUT
    Β  Β History : REFERENCE TO ARRAY[0..99] OF DWORD;
    END_VAR
    
     
  • EmbeddedSalsa - 2018-02-23

    Thanks a lot, Scott!
    I would like ask Codesys (if they read) to implement Const References for that and also implement my 1. point in ST.

     
  • maniek765 - 2018-04-03

    EmbeddedSalsa hat geschrieben:
    Note: Pointers are not allowed in my company.

    Why???

     

Log in to post a comment.