User Tools

Site Tools


eeros_architecture:sequencer:subsequence

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
eeros_architecture:sequencer:subsequence [2015/10/31 09:04] – [Simple Example] grafeeros_architecture:sequencer:subsequence [2015/10/31 09:05] (current) – external edit 127.0.0.1
Line 47: Line 47:
 </code> </code>
 In our main program we declare a sequencer for the main sequence. The same sequencer will also handle the subsequence. Sequence A and B do not run concurrently.  In our main program we declare a sequencer for the main sequence. The same sequencer will also handle the subsequence. Sequence A and B do not run concurrently. 
-sequenceB+<code cpp> 
 +int main() { 
 +  Sequencer sequencer; 
 +  SequenceA seqA("Seq A", &sequencer, robot); 
 +  sequencerA.start(&seqA); 
 +  sequencerA.join(); 
 +}; 
 +</code>
 The following figure shows the flow of action. The following figure shows the flow of action.
 {{ :eeros_architecture:sequencer:subsequenceblocking.png?400 |}} {{ :eeros_architecture:sequencer:subsequenceblocking.png?400 |}}
eeros_architecture/sequencer/subsequence.1446278641.txt.gz · Last modified: 2015/10/31 09:04 (external edit)