mapSignal
Map Simulink block signal to AUTOSAR variable
Description
mapSignal(
maps the named or test-pointed Simulink® block signal associated with outport port handle
slMap
,slPortHandle
,arVarType
)slPortHandle
to an AUTOSAR variable of type
arVarType
for AUTOSAR run-time calibration. AUTOSAR
variable types include ArTypedPerInstanceMemory
and
StaticMemory
.
mapSignal(
specifies additional properties for an AUTOSAR
slMap
,slPortHandle
,arVarType
,Name,Value
)ArTypedPerInstanceMemory
or StaticMemory
variable by using one or more Name,Value
pair arguments.
Examples
Set AUTOSAR Mapping Information for Simulink Block Signals
Set AUTOSAR mapping and property information for the
Simulink block signals for blocks RelOpt
and
Sum
in example model
autosar_swc_counter
.
hModel = 'autosar_swc_counter'; openExample(hModel); slMap = autosar.api.getSimulinkMapping(hModel); portHandles = get_param('autosar_swc_counter/RelOpt','portHandles'); outportHandle = portHandles.Outport; mapSignal(slMap,outportHandle,'StaticMemory') arMappedTo = getSignal(slMap,outportHandle) arValue = getSignal(slMap,outportHandle,'SwCalibrationAccess') portHandles = get_param('autosar_swc_counter/Sum','portHandles'); outportHandle = portHandles.Outport; mapSignal(slMap,outportHandle,'ArTypedPerInstanceMemory',... 'SwCalibrationAccess','ReadWrite') arMappedTo = getSignal(slMap,outportHandle) arValue = getSignal(slMap,outportHandle,'SwCalibrationAccess')
arMappedTo = 'StaticMemory' arValue = 'ReadOnly' arMappedTo = 'ArTypedPerInstanceMemory' arValue = 'ReadWrite'
Input Arguments
slMap
— Simulink to AUTOSAR mapping information for a model
handle
Simulink to AUTOSAR mapping information for a model, previously
returned by
.
slMap
=
autosar.api.getSimulinkMapping(model
)
is a handle,
character vector, or string scalar representing the model name.model
Example: slMap
slPortHandle
— Simulink outport port handle for a block signal
handle
Outport port handle for a named or test-pointed Simulink block signal to set AUTOSAR mapping information for. Use
MATLAB® commands to construct the outport port handle. For example,
for a Relational Operator block named RelOpt
:
portHandles = get_param('autosar_swc_counter/RelOpt','portHandles'); outportHandle = portHandles.Outport;
Example: outportHandle
arVarType
— Type of AUTOSAR variable
character vector | string scalar
Type of AUTOSAR variable to map the specified Simulink block signal to. Valid AUTOSAR variable types include
ArTypedPerInstanceMemory
,
StaticMemory
, and Auto
. To accept
software mapping defaults, specify Auto
.
Example: 'StaticMemory'
Name-Value Arguments
Specify optional pairs of arguments as
Name1=Value1,...,NameN=ValueN
, where Name
is
the argument name and Value
is the corresponding value.
Name-value arguments must appear after other arguments, but the order of the
pairs does not matter.
Before R2021a, use commas to separate each name and value, and enclose
Name
in quotes.
Example: 'SwCalibrationAccess','ReadWrite'
specifies read-write
access to the variable for run-time calibration.
DisplayFormat
— Calibration display format
character vector | string scalar
Specify display format for the AUTOSAR variable. AUTOSAR display format specifications control the width and precision display for calibration and measurement data. For more information, see Configure DisplayFormat.
Example: 'DisplayFormat','%2.6f'
IsVolatile
— C volatile
type qualifier flag (StaticMemory
only)
character vector | string scalar
Specify whether to include C type qualifier
volatile
in generated code for the AUTOSAR
variable.
Example: 'IsVolatile','true'
Qualifier
— C AdditionalNativeTypeQualifier
flag (StaticMemory
only)
character vector | string scalar
Optionally specify an AUTOSAR additional native type qualifier to include in generated code for the AUTOSAR variable.
Example: 'Qualifier','test_qualifier'
ShortName
— Variable short name
character vector | string scalar
Specify a short name for the AUTOSAR variable. If unspecified, ARXML export generates a short name, which can differ from the signal name.
Example: 'ShortName','SM_equal_to_count'
SwAddrMethod
— Name of variable SwAddrMethod
character vector | string scalar
Specify a SwAddrMethod
name that is valid for the
AUTOSAR variable. Code generation uses the
SwAddrMethod
name to group AUTOSAR variables in a
memory section for access by calibration and measurement tools. For a
list of valid SwAddrMethod
values for the variable,
see the Code Mappings editor, Signals/States tab.
For more information, see Configure SwAddrMethod.
Example: 'SwAddrMethod','VAR'
SwCalibrationAccess
— Calibration access mode
character vector | string scalar
Specify how calibration and measurement tools can access the AUTOSAR
variable. Valid access values include
ReadOnly
,
ReadWrite
, and
NotAccessible
. For more information, see
Configure SwCalibrationAccess.
Example: 'SwCalibrationAccess','ReadWrite'
LongName
— Measurement long name
character vector | string scalar
Specify a headline for the AUTOSAR variable.
Example: 'LongName','Position of Engine
Throttle'
Version History
Introduced in R2018b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)