| Products & Services | Solutions | Academia | Support | User Community | Company |
| Download Product Updates | | | Get Pricing | | | Trial Software |
| Documentation → Real-Time Workshop Embedded Coder |
| Contents | Index |
| Learn more about Real-Time Workshop Embedded Coder |
When you select the Create code generation report option for an ERT-based model, a Code Interface Report section is automatically included in the generated HTML report. The Code Interface Report section provides documentation of the generated code interface, including model entry point functions and interface data, for consumers of the generated code. The information in the report can help facilitate code review and code integration.
The code interface report includes the following subsections
Entry Point Functions — interface information about each model entry point function, including model_initialize, model_step, and (if applicable) model_terminate
Inports and Outports — interface information about each model inport and outport
Interface Parameters — interface information about tunable parameters that are associated with the model
Data Stores — interface information about global data stores and data stores with non-auto storage that are associated with the model
For limitations that apply to code interface reports, see Code Interface Report Limitations
Note This section uses the following demo models for illustration purposes:
|
To generate a code interface report for your model, perform the following steps.
Open your model, go to the Real-Time Workshop pane of the Configuration Parameters dialog box, and select ert.tlc or an ERT-based System target file, if one is not already selected.
Go to the Real-Time Workshop > Report pane of the Configuration Parameters dialog box and select the option Create code generation report, if it is not already selected. The rtwdemo_basicsc, rtwdemo_mrmtbb, and rtwdemo_fcnprotoctrl demo models used in this section select every Report pane option by default, but selecting Create code generation report alone is sufficient to generate a Code Interface Report section in the HTML report.
Alternatively, you can programmatically select the option by issuing the following MATLAB command:
set_param(bdroot, 'GenerateReport', 'on')
If the Report pane option Code-to-model is selected, the generated report will contain hyperlinks to the model. You should leave this value selected unless you plan to use the report outside the MATLAB environment.
Build the model. If you selected the Report pane option Launch report automatically, the code generation report opens automatically after the build process completes. (Otherwise, you can launch it manually from within the model build directory.)
To display the code interface report for your model, go to the Contents pane of the HTML report and click the Code Interface Report link. For example, here is the generated code interface report for the demo model rtwdemo_basicsc (with the ExportedGlobal Storage Class button selected in the demo model window).

For help navigating the content of the code interface report subsections, see Navigating Code Interface Report Subsections. For help interpreting the content of the code interface report subsections, see the sections beginning with Interpreting the Entry Point Functions Subsection.
To help you navigate code interface descriptions, the code interface report provides collapse/expand tokens and hyperlinks, as follows:
For any lengthy subsection, the report provides [-] and [+] symbols that allow you to collapse or expand that section. In the example in the previous section, the symbols are provided for the Inports and Interface Parameters sections.
Several forms of hyperlink navigation are provided in the code interface report. For example,
The Table of Contents located at the top of the code interface report provides links to each subsection.
You can click on each function name to go to its declaration in model.c.
You can click on each function's header file name to go to the header file source listing.
If you selected the Report pane option Code-to-model for your model, you can click hyperlinks for any of the following to go to the corresponding location in the model display:
Function argument
Function return value
Inport
Outport
Interface parameter (if the parameter source is a block)
Data store (if the data store source is a Data Store Memory block)
For general backward and forward navigation within the HTML code generation report, use the Back and Forward buttons above the Contents section in the upper left corner of the report.
The Entry Point Functions subsection of the code interface report provides the following interface information about each model entry point function, including model_initialize, model_step, and (if applicable) model_terminate.
| Field | Description |
|---|---|
| Function: | Lists the function name. You can click on the function name to go to its declaration in model.c. |
| Prototype | Displays the function prototype, including the function return value, name, and arguments. |
| Description | Provides a text description of the function's purpose in the application. |
| Timing | Describes the timing characteristics of the function, such as how many times the function is called, or if it is called periodically, at what time interval. For a multirate timing example, see the rtwdemo_mrmtbb report excerpt below. |
| Arguments | If the function has arguments, displays the number, name, data type, and Simulink description for each argument. If you selected the Report pane option Code-to-model for your model, you can click the hyperlink in the description to go to the block corresponding to the argument in the model display. For argument examples, see the rtwdemo_fcnprotoctrl report excerpt below. |
| Return value | If the function has a return value, displays the return value data type and Simulink description. If you selected the Report pane option Code-to-model for your model, you can click the hyperlink in the description to go to the block corresponding to the return value in the model display. For a return value example, see the rtwdemo_fcnprotoctrl report excerpt below. |
| Header file | Lists the name of the header file for the function. You can click on the header file name to go to the header file source listing. |
For example, here is the Entry Point Functions subsection for the demo model rtwdemo_basicsc.

To illustrate how timing information might be listed for a multirate model, here are the Entry Point Functions and Inports subsections for the demo model rtwdemo_mrmtbb. This multirate, discrete-time, multitasking model contains Inport blocks 1 and 2, which specify 1-second and 2-second sample times, respectively. The sample times are constrained to the specified times by the Periodic sample time constraint option on the Solver pane of the Configuration Parameters dialog box.

To illustrate how function arguments and return values are displayed in the report, here is the Entry Point Functions description of the model step function for the demo model rtwdemo_fcnprotoctrl.

The Inports and Outports subsections of the code interface report provide the following interface information about each inport and outport in the model.
| Field | Description |
|---|---|
| Block Name | Displays the Simulink block name of the inport or outport. If you selected the Report pane option Code-to-model for your model, you can click on each inport or outport Block Name value to go to its location in the model display. |
| Code Identifier | Lists the identifier associated with the inport or outport data in the generated code, as follows:
|
| Data Type | Lists the data type of the inport or outport. |
| Dimension | Lists the dimensions of the inport or outport (for example, 1 or [4, 5]). |
For example, here are the Inports and Outports subsections for the demo model rtwdemo_basicsc.

The Interface Parameters subsection of the code interface report provides the following interface information about tunable parameters that are associated with the model.
| Field | Description |
|---|---|
| Parameter Source | Lists the source of the parameter value, as follows:
|
| Code Identifier | Lists the identifier associated with the tunable parameter data in the generated code, as follows:
|
| Data Type | Lists the data type of the tunable parameter. |
| Dimension | Lists the dimensions of the tunable parameter (for example, 1 or [4, 5, 6]). |
For example, here is the Interface Parameters subsection for the demo model rtwdemo_basicsc (with the ExportedGlobal Storage Class button selected in the demo model window).

The Data Stores subsection of the code interface report provides the following interface information about global data stores and data stores with non-auto storage that are associated with the model.
| Field | Description |
|---|---|
| Data Store Source | Lists the source of the data store memory, as follows:
|
| Code Identifier | Lists the identifier associated with the data store data in the generated code, as follows:
|
| Data Type | Lists the data type of the data store. |
| Dimension | Lists the dimensions of the data store (for example, 1 or [1, 2]). |
For example, here is the Data Stores subsection for the demo model rtwdemo_basicsc (with the ExportedGlobal Storage Class button selected in the demo model window).

The following limitations apply to code interface section of the HTML code generation reports.
The code interface report does not support the GRT interface with an ERT target or the C++ (Encapsulated) language option. For these configurations, the code interface report will not be generated and will not appear in the HTML code generation report Contents pane.
The code interface report supports data resolved with most custom storage classes (CSCs), except when the CSC properties are set in any of the following ways:
The CSC property Type is set to FlatStructure. For example, the BitField and Struct CSCs in the Simulink package have Type set to FlatStructure and are not supported by the code interface report.
The CSC property Type is set to Other. For example, the GetSet CSC in the Simulink package has Type set to Other and is not supported by the code interface report.
The CSC property Data access is set to Pointer, indicating that imported symbols are declared as pointer variables rather than simple variables. This property is accessible only when the CSC property Data scope is set to Imported or Instance-specific.
In these cases, the report displays empty Data Type and Dimension fields.
For outports, the code interface report cannot describe the associated memory (data type and dimensions) if the memory is optimized. In these cases, the report displays empty Data Type and Dimension fields.
The code interface report does not support data type replacement using the Real-Time Workshop > Data Type Replacement pane of the Configuration Parameters dialog box. The data types listed in the report will link to built-in data types rather than their specified replacement data types.
![]() | Generating an HTML Code Generation Report | Optimizing Generated Code | ![]() |

Learn more about Simulink through this collection of videos, articles, technical literature and the Getting Started with Simulink Guide.
| © 1984-2009- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |