setOutport

Configure root-level outport for code generation

    Description

    example

    setOutport(myCodeMappingObj,outport,Name,Value) configures specified root-level Outport blocks for code generation. Use this function to map specified root-level outports to the storage class and storage class property settings that the code generator uses to produce C code for the outports.

    Examples

    collapse all

    In the model code mappings for model myConfigModel, set the storage class for root-level outport Out1 to ExportedGlobal.

    cm = coder.mapping.api.get('myConfigModel');
    setOutport(cm,'Out1','StorageClass','ExportedGlobal');
    

    In the model code mappings for model myConfigModel, set the storage class for root Outport blocks throughout the model to Model default .

    cm = coder.mapping.api.get('myConfigModel');
    outBlockHandles = find(cm,'Outports')
    setOutport(cm,outBlockHandles,'StorageClass','Model default');
    

    In the model code mappings for model myConfigModel, set the storage class for root-level outport Out1 to ExportToFile . Set the code identifier to output1, the definition file to exOutSys.c, and the header file to exOutSys.h.

    cm = coder.mapping.api.get('myConfigModel');
    setOutport(cm,'Out1','StorageClass','ExportToFile',...
       'Identifier','output1','DefinitionFile','exOutSys.c',...
       'HeaderFile','exOutSys.h');
    

    Input Arguments

    collapse all

    Code mapping object (model code mappings) returned by a call to function coder.mapping.api.get.

    Example: myCM

    Name, path, or handle of root-level outport to configure. To specify multiple outports, use a cell array.

    Example: 'Out1'

    Data Types: char | string | cell

    Name-Value Pair Arguments

    Example: 'StorageClass' 'ExportedGlobal'

    Specify comma-separated pairs of Name,Value arguments. Name is the argument name and Value is the corresponding value. Name must appear inside quotes. You can specify several name and value pair arguments as Name1,Value1,…,NameN,ValueN. The order of the name and value pair arguments does not matter.

    Storage class to set for the specified root Outport block. The name of a predefined storage class or storage class that is defined in the Embedded Coder Dictionary associated with the model. See Configure Root-Level Outport Blocks for C Code Generation.

    Name for the variable that represents the outport in the generated code.

    Data Types: char | string

    File name for a C source file that contains definitions for global data read by data elements and external code. Applies to storage classes ExportToFile and Volatile.

    Data Types: char | string

    Name of a get function that a data element calls in the generated code. Applies to storage class GetSet.

    Data Types: char | string

    File name for a C header file that contains declarations for global data read by data elements and external code. Applies to storage classes ExportToFile, GetSet, ImportFromFile, and Volatile.

    Data Types: char | string

    Name of the model that owns global data used by other models in the same model hierarchy. The code generated for the model that owns the data includes the global data definition. Applies to storage classes ExportToFile and Volatile.

    Data Types: char | string

    When model configuration parameter Array layout is set to Row-major, a flag that indicates whether to preserve dimensions of a data element represented in generated code as a multidimensional array. Applies to storage classes ExportToFile, ImportFromFile, Localizable, and Volatile.

    Data Types: logical

    Name of a set function that a data element calls in the generated code. Applies to storage class GetSet.

    Data Types: char | string

    Name that the code generator uses to identify the structure for a data element in the generated code. Applies to storage classes Bitfield and Struct.

    Data Types: char | string

    Storage class property defined in the Embedded Coder Dictionary. Values that you can specify vary depending on the storage class definition.

    Introduced in R2020b
    Для просмотра документации необходимо авторизоваться на сайте