setInport

Configure root-level inports for code generation

    Description

    example

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

    Examples

    collapse all

    In the model code mappings for model myConfigModel, set the storage class for root-level Inport block In1 to ExportedGlobal.

    cm = coder.mapping.api.get('myConfigModel');
    setInport(cm,'In1','StorageClass','ExportedGlobal');
    

    In the model code mappings for model myConfigModel, set the storage class for root-level inports throughout the model to Model default.

    cm = coder.mapping.api.get('myConfigModel');
    inBlockHandles  = find(cm,'Inports')
    setInport(cm,inBlockHandles,'StorageClass','Model default');
    

    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 inport to configure. To specify multiple inports, use a cell array.

    Example: 'In1'

    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 Inport 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 Inport Blocks for C Code Generation.

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

    Data Types: char | string

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