Data and Function Configuration

Configure code generation for data and functions to facilitate software integration

To generate code for rapid prototyping, configure the representation of model data elements for code generation. You configure model data elements by mapping them to code definitions (storage classes) that are predefined by the product.

For an introduction, see C Code Generation Configuration for Model Interface Elements.

Objects

coder.mapping.api.CodeMappingModel data and function interface configuration for C code generation

Functions

expand all

model_initializeGenerated C/C++ entry-point function that contains initialization code for a Simulink model
model_resetGenerated C/C++ entry-point function that contains reset code for a Simulink model
model_stepGenerated C/C++ entry-point function that contains execution code for each step in a Simulink model
model_terminateGenerated C/C++ entry-point function that contains termination code for a Simulink model

Create and Find Code Mappings

coder.mapping.api.getGet code mappings for model
coder.mapping.utils.createCreate code mappings object for configuring data and function interface for C code generation
findGet model elements for the category of model code mappings

Default Configurations

getDataDefaultGet default storage class or storage class property setting for model data category
setDataDefaultSet default storage class and storage class property values for model data category

Root-Level Inport and Outport Configuration

getInportGet code configuration from code mappings for root-level inport
getOutportGet code configuration from code mappings for root-level outport
setInportConfigure root-level inports for code generation
setOutportConfigure root-level outport for code generation

Parameter Configuration

getModelParameterGet code configuration from code mappings for model parameters
setModelParameterConfigure model parameter for code generation

Signal, State, and Data Store Configuration

addSignalAdd block output signal to model code mappings
getDataStoreGet code configuration from code mappings for local or shared local data store
getSignalGet code configuration from code mappings for block output signal
getStateGet code configuration from code mappings for block state
removeSignalRemove block output signal from model code mappings
setDataStoreConfigure local or shared local data store for code generation
setSignalConfigure block signal data for code generation
setStateConfigure block states for code generation

Tools

Code Mappings EditorAssociate model elements with code definitions

Topics

Configuration Fundamentals

C Code Generation Configuration for Model Interface Elements

Control the representation of model data elements and functions in generated C code.

Code Definition and Mapping Limitations and Considerations

Restrictions, constraints, and considerations that apply to code definitions and code mappings.

Manage Multiple Code Mappings for a Model

Design models that are platform-neutral and ready to deploy to different run-time environments.

Migration of Model Data Configurations to Code Mappings

How Simulink® migrates code definitions for models created before release R2020b to code mappings and related information to consider.

Data Configuration

Choose Data Configuration Approach

Make decisions about the design data used by your model based on your code generation requirements.

Configure Root-Level Inport Blocks for C Code Generation

Set the storage class and other relevant code generation properties for root-level Inport blocks.

Configure Root-Level Outport Blocks for C Code Generation

Set the storage class and other relevant code generation properties for root-level Outport blocks.

Configure Signal Data for C Code Generation

Set the storage class and other relevant code generation properties for signal data.

Configure Parameters for C Code Generation

Set the storage class and other relevant code generation properties for parameters.

Configure Block States for C Code Generation

Set the storage class and other relevant code generation properties for block states.

Configure Data Stores for C Code Generation

Set the storage class and other relevant code generation properties for data stores.

Choose Storage Class for Controlling Data Representation in Generated Code

Choose a storage class to apply to data elements in a model, such as signals, states, and block parameters.

Function Configuration

Configure C Code Generation for Model Entry-Point Functions

Learn about generated C entry-point functions, configuration options, and how to interface with them.

Control Data and Function Interface in Generated Code

Control how generated code exchanges data with a calling environment.

Rapid Prototyping Model Functions

Generate rapid prototyping code.

Generate Reentrant Code from Top Models

Generate reusable, reentrant code from top models.

Featured Examples