Book a Demo

Author Topic: Loopnode - implementation of  For loop  (Read 2636 times)

HansChandra

  • EA Novice
  • *
  • Posts: 12
  • Karma: +0/-0
    • View Profile
Loopnode - implementation of  For loop
« on: March 20, 2013, 07:03:56 am »
Hi,
I am attempting to implement a "for loop" using a Loopnode Structured activity. As a test I am trying out the following basic for loop segment

                      for ( i = 0; i < 6; i++ )
                      {
                         //stuff                      
                      }

I created an action in the Setup with i=o; Test had i<6 as the test condition and I had a function call invocation action in the Body section.   I just cannot figure out where to assign the various action pins that the LoopNode calls for.  I tried to replicate exactly what was in the help pages. When I execute it (simulation), the entire Loopnode is skipped.

Any help is much appreciated. If someone could share an example that works I would be grateful.

Thanks.

HansChandra

  • EA Novice
  • *
  • Posts: 12
  • Karma: +0/-0
    • View Profile
Re: Loopnode - implementation of  For loop
« Reply #1 on: March 22, 2013, 02:31:17 am »
Just recd the following from EA Support:

We can confirm that LoopNodes are not currently supported in simulation and code generation.  Unfortunately we cannot provide any timeframe for when this may be implemented.

I guess I am stuck with implementing for loops the traditional way. :(

Hans.