This example shows you how to configure a model for reentrant, multi-instance code generation. Multiple programs can use reentrant code simultaneously. When you configure a model for reentrancy, the execution (step) entry-point function uses root-level input and output arguments instead of global data structures. After examining the configuration settings, generate and review the generated code.
Open the model rtwdemo_reusable
. The model contains two root Inport blocks and a root Outport block.
model='rtwdemo_reusable';
open_system(model);
Save a copy of the model to a writable location.
currentDir=pwd; [~,cgDir] = rtwdemodir();
1. Open the Embedded Coder app.
2. Open the Model Configuration Parameters dialog box.
3. Model configuration parameter System target file is set to ert.tlc
. Although you can generate reentrant code for a model configured with System target file set to grt.tlc
, ERT and ERT-based system target files provide more control over how the code passes root-level I/O.
4. Open the Code Generation > Interface pane and explore relevant model configuration parameter settings.
Code interface packaging is set to Reusable function
. This parameter setting instructs the code generator to produce reusable, multi-instance code.
Setting of Reusable function
displays parameter Multi-instance code error diagnostic. That parameter is set to Error
, indicating that the code generator abort if the model violates requirements for generating multi-instance code.
Pass root-level I/O as is set to Part of model data structure
. This setting packages root-level model input and output into the real-time model data structure (rtModel
), which is an optimized data structure that replaces SimStruct
as the top-level data structure for a model.
Remove error status field in real-time model data structure is selected. This parameter setting reduces memory usage by omitting the error status field from the generated real-time model data structure.
rtwbuild(model);
### Starting build procedure for: rtwdemo_reusable ### Successful completion of build procedure for: rtwdemo_reusable Build Summary Top model targets built: Model Action Rebuild Reason ================================================================================================= rtwdemo_reusable Code generated and compiled Code generation information file does not exist. 1 of 1 models built (0 models already up to date) Build duration: 0h 0m 9.2411s
ert_main.c
is an example main program (execution framework) for the model. This code controls model code execution by calling the entry-point function rtwdemo_reusable_step
. Use this file as a starting point for coding your execution framework.
rtwdemo_reusable.c
contains entry points for the code that implements the model algorithm. This file includes the rate scheduling code.
rtwdemo_reusable.h
declare model data structures and a public interface to the model entry points and data structures.
rtwtypes.h
defines data types, structures, and macros that the generated code requires.
Open and review the Code Interface Report. Use the information in that report to write the interface code for your execution framework.
1. Include the generated header file by adding directive #include rtwdemo_reusable.h
.
2. Write input data to the generated code for model Inport blocks.
3. Call the generated entry-point functions.
4. Read data from the generated code for the model Outport block.
Input ports:
<Root>/In1
of data real_T
with dimension of 1
<Root>/In2
of data real_T
with dimension of 1
Entry-point functions:
Initialization entry-point function, void rtwdemo_reusable_initialize(RT_MODEL *const rtM)
. At startup, call this function once.
Output and update (step) entry-point function, void rtwdemo_reusable_step(RT_MODEL *const rtM)
. Call this function periodically at the fastest rate in the model. For this model, call the function every second. To achieve real-time execution, attach this function to a timer.
Output port:
<Root>/Out1
of data type real_T
with dimension of 1
Examine the |rtwdemo_reusable_step| function code in |rtwdemo_reusable.c|.
cfile = fullfile(cgDir,'rtwdemo_reusable_ert_rtw','rtwdemo_reusable.c'); rtwdemodbtype(cfile,'/* Model step function', '/* Model initialize function ', 1, 0);
/* Model step function */ void rtwdemo_reusable_step(RT_MODEL *const rtM) { D_Work *rtDWork = rtM->dwork; ExternalInputs *rtU = (ExternalInputs *) rtM->inputs; ExternalOutputs *rtY = (ExternalOutputs *) rtM->outputs; /* Outport: '<Root>/Out1' incorporates: * UnitDelay: '<Root>/Delay' */ rtY->Out1 = rtDWork->Delay_DSTATE; /* Gain: '<Root>/Gain' incorporates: * Inport: '<Root>/In1' * Inport: '<Root>/In2' * Sum: '<Root>/Sum' * UnitDelay: '<Root>/Delay' */ rtDWork->Delay_DSTATE = (rtU->In1 + rtU->In2) * rtP.k1; }
The code generator passes model data to the rtwdemo_reusable_step
function as part of the real-time model data structure. Try different settings for model configuration parameters Code interface packaging and Pass root-level I/O and regenerate code. Observe how the function prototype changes.
Close the model and the code generation report.
bdclose(model) rtwdemoclean; cd(currentDir)