Main Content

Create Storage Classes by Using the Custom Storage Class Designer

To control the appearance of data in the generated code, you can use built-in storage classes such as ExportToFile (see Organize Parameter Data into a Structure by Using Struct Storage Class). If the built-in storage classes do not meet your requirements, you can create your own storage classes. See Define Service Interfaces, Storage Classes, Memory Sections, and Function Templates for Software Architecture.

To define a storage class that you can apply in a model by using the Code Mappings editor, use the Embedded Coder Dictionary. Or, create the storage class in a Simulink® data class package and refer to the package from the Embedded Coder Dictionary.

A data class package contains storage class and memory section definitions that you can map to model interface elements. A data class package also can define Signal and Parameter data classes from which you can create data objects that specify values and other characteristics of signals, states, and block parameters. Using data objects, you can make model-wide changes to signal, state, and parameter characteristics by changing only the values of the objects. Data objects that you create from your package can use the storage classes that the package defines. For more information, see Data Objects.

You can use packages that are built into Simulink, such as Simulink and mpt, or you can create your own package by using the Custom Storage Class Designer.

For information about using the Custom Storage Class Designer to create memory sections, see Control Data and Function Placement in Memory by Inserting Pragmas.

Create and Apply Storage Class Defined in User-Defined Package

This example shows how to control code generated from a model by defining a storage class in a user-defined data class package and applying the storage class for data objects.

Explore Example Model

Open the model CustomStorageClasses.

open_system('CustomStorageClasses')

In this example, you export the declarations and definitions of multiple signals and parameters in the model to one declaration header file and one definition file.

Create Data Class Package

To define a storage class in a data class package, create a data class in a MATLAB namespace folder for the package.

  1. Navigate inside the +myPackage folder to the file Signal.m.

  2. Open Signal.m and edit the definition of the Signal class. Uncomment the methods section that defines the method setupCoderInfo. In the call to the function useLocalCustomeStorageClasses, replace 'packName' with 'myPackage'. The function useLocalCustomeStorageClasses allows you to apply the storage classes that myPackage defines to data objects that you create from myPackage.

    methods
        function setupCoderInfo(h)
          % Use custom storage classes from this package
          useLocalCustomStorageClasses(h, 'myPackage');
        end
      end % methods
    
  3. Save and close Signal.m.

  4. Navigate inside the +myPackage folder to the file Parameter.m.

  5. Open Parameter.m and make the same edits that you did for step 4 in the file Signal.m.

  6. Save and close Parameter.m.

For more information on how to create a data class, see Define Data Classes.

Create Storage Class in Data Class Package

Use the Custom Storage Class Designer to create or edit storage classes that a data class package defines.

  1. Check that your current folder lists MATLAB namespace folder +myPackage.

  2. Open the Custom Storage Class Designer by entering the cscdesigner command with the name of the package that you want to open. For this example, specify 'myPackage'. When specifying the namespace folder for a package in the cscdesigner command, omit the + character.

    cscdesigner('myPackage')
    
  3. In the Custom Storage Class Designer, under Custom storage class definitions, select storage class ExportToFile.

  4. For Name, specify ExportToGlobal.

  5. For Header file, select Specify. In the new field that appears, specify header file name global.h.

  6. For Definition file, select Specify. In the new field that appears, specify the definition file name global.c.

  7. Click OK. Click Yes to save your changes to package myPackage.

Apply Storage Class to Data Objects

To apply the storage class that you define in a data class package to data objects, create the data objects from your package and configure the objects to use the storage class.

  1. Create data objects to represent some of the signals and parameters in the example model. Create the data objects by using the package myPackage.

    % Signals
    tempalarm = myPackage.Signal;
    pressurealarm = myPackage.Signal;
    O2alarm = myPackage.Signal;
    rpmalarm = myPackage.Signal;
    
    % Parameters
    templimit = myPackage.Parameter(202);
    pressurelimit = myPackage.Parameter(45.2);
    O2limit = myPackage.Parameter(0.96);
    rpmlimit = myPackage.Parameter(7400);
    
  2. Set the storage class of each object to ExportToGlobal.

    % Signals 
    tempalarm.CoderInfo.StorageClass = 'Custom';
    tempalarm.CoderInfo.CustomStorageClass = 'ExportToGlobal';
    pressurealarm.CoderInfo.StorageClass = 'Custom';
    pressurealarm.CoderInfo.CustomStorageClass = 'ExportToGlobal';
    O2alarm.CoderInfo.StorageClass = 'Custom';
    O2alarm.CoderInfo.CustomStorageClass = 'ExportToGlobal';
    rpmalarm.CoderInfo.StorageClass = 'Custom';
    rpmalarm.CoderInfo.CustomStorageClass = 'ExportToGlobal';
    
    % Parameters
    templimit.CoderInfo.StorageClass = 'Custom';
    templimit.CoderInfo.CustomStorageClass = 'ExportToGlobal';
    pressurelimit.CoderInfo.StorageClass = 'Custom';
    pressurelimit.CoderInfo.CustomStorageClass = 'ExportToGlobal';
    O2limit.CoderInfo.StorageClass = 'Custom';
    O2limit.CoderInfo.CustomStorageClass = 'ExportToGlobal';
    rpmlimit.CoderInfo.StorageClass = 'Custom';
    rpmlimit.CoderInfo.CustomStorageClass = 'ExportToGlobal';
    
  3. For each signal for which you created an object and specified the ExportToGlobal storage class, select the property Signal name must resolve to Simulink signal object.

    % Signal tempalarm
    portHandles = get_param('CustomStorageClasses/RelOp1','PortHandles');
    outputPortHandle = portHandles.Outport;
    set_param(outputPortHandle,'MustResolveToSignalObject','on')
    
    % Signal pressurealarm
    portHandles = get_param('CustomStorageClasses/RelOp2','PortHandles');
    outputPortHandle = portHandles.Outport;
    set_param(outputPortHandle,'MustResolveToSignalObject','on')
    
    % Signal O2alarm
    portHandles = get_param('CustomStorageClasses/RelOp3','PortHandles');
    outputPortHandle = portHandles.Outport;
    set_param(outputPortHandle,'MustResolveToSignalObject','on')
    
    % Signal rpmalarm
    portHandles = get_param('CustomStorageClasses/RelOp4','PortHandles');
    outputPortHandle = portHandles.Outport;
    set_param(outputPortHandle,'MustResolveToSignalObject','on')
  4. Execute an update diagram to set the values of the parameters for which you created an object and specified the ExportToGlobal storage class.

Generate and Inspect Code

Generate code for the example model.

  1. In the model window, open the Embedded Coder app.

  2. Generate code for the example model.

    slbuild('CustomStorageClasses')
    
  3. In the Code view, view the generated header file global.h. The file contains the extern declarations for the model signals and parameters that are configured to use the ExportToGlobal storage class.

    /* Declaration for custom storage class: ExportToGlobal */
    extern boolean_T O2alarm;
    extern real_T O2limit;
    extern boolean_T pressurealarm;
    extern real_T pressurelimit;
    extern boolean_T rpmalarm;
    extern real_T rpmlimit;
    extern boolean_T tempalarm;
    extern real_T templimit;
    
  4. View the generated file global.c. The file contains the definitions of the model signals and parameters that are configured to use the ExportToGlobal storage class.

    /* Definition for custome storage class: ExportToGlobal */
    boolean_T O2alarm;
    real_T O2limit = 0.96;
    boolean_T pressurealarm;
    real_T pressurelimit = 45.2;
    boolean_T rpmalarm;
    real_T rpmlimit = 7400.0;
    boolean_T tempalarm;
    real_T templimit = 202.0;
    

Modify a Built-In Storage Class

You cannot directly modify a built-in storage class, such as ExportToFile from the Simulink package, but you can create a copy, and then modify the copy. When you create a new package with no csc_registration.m file, and then open the Custom Storage Class Designer for the first time, Simulink copies the definitions of the built-in storage classes into the package. Then, in the Custom Storage Class Designer, you can modify the copied definitions. Alternatively, to keep the built-in storage classes available in your package, copy one of them by clicking Copy, then modify the resulting copy.

Control Data Representation by Configuring Storage Class Properties

The Custom Storage Class Designer is a tool for creating and managing storage classes and memory sections. To open the Custom Storage Class Designer for a specific package, for example, mypkg, at the command prompt, use the cscdesigner function:

cscdesigner('mypkg')

The MATLAB® namespace folder that contains a package begins with a +. When you use the function cscdesigner, omit the + from the package name.

To control the effect that a storage class has on data in a model, specify properties of the storage class in the Custom Storage Class Designer. To determine how to generate a particular kind of data in generated code, use the information in this table.

Kind of Data in Generated CodeTechnique
StructureSet Type to FlatStructure. See Generate Structured Data.
MacroSet Data initialization to Macro and clear For signals. See Generate a Macro.
PointerSet Data access to Pointer and Data scope to Auto, Imported, or Instance specific. Your external code must define the pointer variable.
static data (file-scoped data)Set Data scope to File.
const or volatile dataSet Memory section to a memory section that specifies const, volatile, or both. For example, use one of the built-in memory sections MemConst, MemVolatile, or MemConstVolatile. To create your own memory section, see Control Data and Function Placement in Memory by Inserting Pragmas.
Calls to external functions to read and write to dataSee Call Custom Accessor Functions or Macros Instead of Reading and Writing to Variables.

Allow Users of Storage Class to Specify Property Value

For some properties of a storage class, such as Data scope, instead of specifying a value in the Custom Storage Class Designer, you can allow users of the storage class to specify the value. You can create a single, flexible storage class instead of multiple storage classes that vary only by a few property values.

For example, suppose you create a storage class that yields a global variable in the generated code. You can configure the storage class so that a user can set the Data scope property to Exported for a signal in a model and set the property to Imported for a different signal.

In the Custom Storage Class Designer, for each property that you want to configure in this way, set the property value to Instance specific. Then, when a user applies the storage class to a data item, the property appears to the user as a custom attribute for that data item. For information about instance-specific custom attributes, see Storage Class Properties.

Generate a Macro

To create a storage class that yields a macro in the generate code, set Data initialization to Macro and clear For signals.

When you set Data initialization to Macro, Definition file has no meaning. To prevent users of the storage class from specifying a meaningless definition file, in the Custom Storage Class Designer, set Definition file to Specify and leave the text box empty.

  • To define the macro in a header file (#define), specify the name of the header file with the Header file property.

  • To provide the macro definition as a compiler option or compiler flag, set Data access to Imported and Header file to Specify. Leave the Header file text box empty. Then, the generated code does not define the macro and does not include (#include) a header file.

    To specify the compiler option or flag, use the Custom Code model configuration parameter Defines. See Code Generation Pane: Custom Code: Additional Build Information: Defines.

Generate Structured Data

To create a storage class that aggregates data items into a flat structure (similar to the built-in storage class Struct), set Type to FlatStructure. The Structure Attributes tab appears.

  • To control the name of the global structure variable that appears in the generated code, use the Struct name property and text box.

  • If you set Struct name to Instance specific, users of the storage class specify the name of the structure variable. In this case, the code generator derives the name of the structure type from the name of the variable.

    To more precisely control the name and other characteristics of the structure type, set Struct name to Specify. Control the type characteristics by using the additional properties that appear.

  • To generate a structure with bit fields (similar to the built-in storage class BitField), select Bit-pack booleans. Data items of type Boolean, fixed-point, or integer appear in the generated code as bit fields of the structure.

Control Assignment of Initial Value in Generated Code

  • To use the default code generator initialization strategy, set Data initialization to the default value, Auto.

    • The generated code statically initializes parameter data with an assignment statement at the top of a .c or .cpp source file, outside of any function.

    • The generated code dynamically initializes signal and state data as part of the initialization function of the model (named model_initialize by default).

  • To statically initialize the data, set Data initialization to Static.

  • To dynamically initialize the data, set Data initialization to Dynamic.

  • To prevent the generated code from initializing the data, set Data initialization to None. When your external code initializes the data, use this setting to prevent the generated code from overwriting your initialization. This setting does not apply to data that you specify in an Initialize Function block.

Call Custom Accessor Functions or Macros Instead of Reading and Writing to Variables

Using the built-in storage class GetSet, you can generate code that calls your external, custom functions instead of directly interacting with variables. For general information about GetSet, see Access Data Through Functions with Storage Class GetSet.

To create a similar storage class, set Type to AccessFunction.

  • Specify the names of the external functions.

    • To apply the same get or set function naming scheme to data items that use the storage class, set Get function and Set function to Specify. Then, in the text boxes, specify the function naming scheme, for example, get_myData_$N. Use the token $N in a naming scheme to represent the name of each data item. If you do not use the token, each data item uses the same specified get or set function name, so the model generates an error when you generate code.

    • To specify a different get or set function name for each data item, set Get function or Set function to Instance specific. Later, when you create a data item and apply the storage class, specify the function name by configuring the custom attributes of the data item.

  • Specify the name of the header file that declares the get and set functions with the Header file property. In this case, Definition file has no meaning. To prevent users of the storage class from specifying a meaningless definition file, set Definition file to Specify and leave the text box empty.

  • If you implement the get mechanism for scalar or array data as a macro instead of a function, you can generate code that omits parentheses when reading that data. On the Access Function Attributes tab, select Get data through macro (omit parentheses).

Generate Code That Uses Data From External Code

When your external code defines data, to avoid generating a duplicate definition, you must configure the generated code to read and write to the existing data. In the Custom Storage Class Designer, set Data scope to Imported. The code generator does not generate a definition for the global variable or macro.

  • If your code defines a pointer variable, to generate code that interacts with the pointer, set Data access to Pointer.

  • If you generate structured data by setting Type to FlatStructure, your code must define the structure type and the global structure variable.

  • If your code initializes state or signal data, you can prevent the generated code from overwriting your initialization by setting Data initialization to None. See Prevent Duplicate Initialization Code for Global Variables

Generate Code Comments with Data Definitions and Declarations

To customize the comments that appear in the generated code, on the Comments tab, set Comment rules to Specify. To specify a comment that appears with the declaration of each data item, use the Declaration comment box. To specify a comment that appears with the definition, use the Definition comment box.

For structured data (you set Type to FlatStructure), to specify a comment that appears with the structure type definition, use the Type comment box.

Avoid Errors During Code Generation by Validating Storage Class Configuration

As you configure a storage class in the Custom Storage Class Designer, to check for possible errors in the configuration, click Validate.

For example, validating the storage class warns you if you accidentally set Data initialization to Macro with For signals selected. A signal cannot appear in the generated code as a macro.

Make Storage Classes Available Outside the Current Folder

To use a storage class that you create, you must make the defining package available. Set your current folder to the namespace folder that contains the package or add the folder containing the package namespace folder to the MATLAB path (see What Is the MATLAB Search Path?). Adding the package namespace folder to the MATLAB path enables you to use the storage classes no matter where you set your current folder.

Make Storage Classes Available in the Code Mappings Editor

To use package-based storage classes in the Code Mappings editor, configure the Embedded Coder Dictionary to refer to the package as explained in Refer to Code Generation Definitions in a Package.

Share Storage Class Between Packages

When you create a package, you can refer to a storage class defined in another package such as the built-in package Simulink or a different package that you created. Then, the defining package and referencing packages can use the storage class. When you want to make a change to the storage class, you make the change only once, in the defining package.

To configure a package to refer to a storage class that another package defines:

  1. In the Custom Storage Class Designer, select the Custom Storage Class tab.

  2. Use Select Package to select the referencing package. The package must be writable.

  3. In the Custom storage class definitions pane, select the existing definition below which you want to insert the reference.

  4. Click New Reference.

    A new reference with a default name and properties appears below the previously selected definition. The new reference is selected and a Reference tab appears that shows the initial properties.

  5. Use Name to specify a name for the new reference. The name must be unique in the importing package, but can duplicate the name in the source package. The name cannot be a TLC keyword.

  6. Set Refer to custom storage class in package to specify the package that contains the storage class that you want to reference.

  7. Set Custom storage class to reference to specify the storage class to be referenced.

  8. Click OK or Apply. To save the changes permanently, click Save.

Control Appearance of Storage Class Drop-Down List

When you apply a storage class to a data item, you select the storage class from a drop-down list.

  • To control the order of the custom storage classes in the list, in the Custom Storage Class Designer, use the Up and Down buttons. The order of the storage classes in drop-down lists matches the order that you specify in the Custom Storage Class Designer.

  • To prevent a user of a storage class from applying the storage class to parameter data or to signal and state data, use the For parameters and For signals check boxes. When you clear one of these properties, for the corresponding kind of data, the storage class does not appear in the drop-down list.

    For example, if your storage class yields a macro in the generated code because you set Data initialization to Macro, to prevent users from applying the storage class to signal data, clear For signals.

Protect Custom Storage Class Definitions

When you click Save in the Custom Storage Class Designer, the Designer saves memory section and storage class definitions into the csc_registration.m file in the package namespace folder. To determine the location of this file, in the Custom Storage Class Designer, inspect the value of Filename.

You can prevent changes to the storage class definitions of an entire package by converting the csc_registration.m file from a MATLAB file to a P-file. Use the pcode function.

A best practice is to keep csc_registration.m and csc_registration.p in your package namespace folder. That way, if you modify the storage classes by using the Designer, you can delete csc_registration.p and later regenerate it after you finish the modifications. Because the P-coded version of the file takes precedence, when both files exist in the package, the storage classes are protected and you cannot modify them in the Custom Storage Class Designer.

Further Customize Generated Code by Writing TLC Code

If creating your own storage class by manipulating the properties in the Custom Storage Class Designer does not meet your requirements, you can finely control the generated code by writing TLC code for your storage class. Use an advanced mode of the Custom Storage Class Designer and, for the storage class, set Type to Other. See Finely Control Data Representation by Writing TLC Code for a Storage Class.

Related Topics