User Tools

Site Tools


eeros_architecture:control_system:custom_blocks

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
eeros_architecture:control_system:custom_blocks [2021/07/08 19:36] – [How Many Inputs and Outputs?] ursgrafeeros_architecture:control_system:custom_blocks [2021/07/08 19:37] (current) – [How Many Inputs and Outputs?] ursgraf
Line 3: Line 3:
  
 ==== How Many Inputs and Outputs? ==== ==== How Many Inputs and Outputs? ====
-You should design your block as an extension of ''Blockio''. Choose the template parameters so that you get the desired number of input and output signals together with their types.  +You should design your block as an extension of ''Blockio''. Choose the template parameters so that you get the desired number of input and output signals together with their types. If signals carry different types, you have will have to define the necessary inputs and outputs as fields of your new block class. 
- +
-For all other cases your block will have to define the necessary inputs and outputs as fields of your new block class. +
  
 As a example we take a look at a new block  As a example we take a look at a new block 
 <code cpp> <code cpp>
 template < typename T = double >  // make it available for many types template < typename T = double >  // make it available for many types
-class MyBlock : public Blockio<1,2,T,T> {+class MyBlock : public Blockio<1,2,T,T> // has 1 input, 2 outputs
  public:  public:
   MyBlock() { ... }   // constructor   MyBlock() { ... }   // constructor
eeros_architecture/control_system/custom_blocks.txt · Last modified: 2021/07/08 19:37 by ursgraf