getFunction
Get AUTOSAR mapping information for Simulink entry-point function
Syntax
Description
returns the name of the AUTOSAR runnable arRunnableName
= getFunction(slMap
,slEntryPointFunction
)arRunnableName
mapped
to Simulink® entry-point function slEntryPointFunction
.
[
returns the names of function and internal data software address methods
(arRunnableName
,arRunnableSwAddrMethod
,arInternalDataSwAddrMethod
] = getFunction(slMap
,slEntryPointFunction
)SwAddrMethod
s) defined for the mapped AUTOSAR runnable. If a
SwAddrMethod
is not defined, the function returns
'<None>'
.
Examples
Get AUTOSAR Runnable Name for Simulink Entry-Point Function
Get the name of the AUTOSAR runnable mapped to a Simulink entry-point function in the example model
autosar_swc
. The model has an initialize entry-point
function named Runnable_Init
and periodic entry-point
functions named Runnable_1s
and
Runnable_2s
.
hModel = 'autosar_swc'; openExample(hModel); slMap=autosar.api.getSimulinkMapping(hModel); arRunnableName=getFunction(slMap,'Initialize')
arRunnableName = 'Runnable_Init'
Get AUTOSAR SwAddrMethod
Names for Simulink Entry-Point Function
Get AUTOSAR SwAddrMethod
names for a
Simulink entry-point function in the example model
autosar_swc_counter
. The model has a single-tasking
periodic entry-point function.
hModel = 'autosar_swc_counter'; openExample(hModel); % Add SwAddrMethods myCODE and myVAR to the AUTOSAR component arProps = autosar.api.getAUTOSARProperties(hModel); addPackageableElement(arProps,'SwAddrMethod',... '/Company/Powertrain/DataTypes/SwAddrMethods','myCODE',... 'SectionType','Code') swAddrPaths = find(arProps,[],'SwAddrMethod','PathType','FullyQualified',... 'SectionType','Code') addPackageableElement(arProps,'SwAddrMethod',... '/Company/Powertrain/DataTypes/SwAddrMethods','myVAR',... 'SectionType','Var') swAddrPaths = find(arProps,[],'SwAddrMethod','PathType','FullyQualified',... 'SectionType','Var') % Set code generation parameter for runnable internal data SwAddrMethods set_param(hModel,'GroupInternalDataByFunction','on') % Map periodic function and internal data to myCODE and myVAR SwAddrMethods slMap = autosar.api.getSimulinkMapping(hModel); mapFunction(slMap,'Periodic','Runnable_Step',... 'SwAddrMethod','myCODE','SwAddrMethodForInternalData','myVAR') % Return AUTOSAR mapping information for periodic function [arRunnableName,arRunnableSwAddrMethod,arInternalDataSwAddrMethod] = ... getFunction(slMap,'Periodic')
swAddrPaths = 1×2 cell array {'/Company/Powertrain/DataTypes/SwAddrMethods/CODE'} {'/Company/Powertrain/DataTypes/SwAddrMethods/myCODE'} swAddrPaths = 1×2 cell array {'/Company/Powertrain/DataTypes/SwAddrMethods/VAR'} {'/Company/Powertrain/DataTypes/SwAddrMethods/myVAR'} arRunnableName = 'Runnable_Step' arRunnableSwAddrMethod = 'myCODE' arInternalDataSwAddrMethod = 'myVAR'
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
slEntryPointFunction
— Simulink entry-point function
character vector | string scalar
Simulink entry-point function for which to return AUTOSAR mapping information. The value format is based on the function type.
Function Type | Value |
---|---|
Initialize | 'Initialize' . |
Reset | 'Reset: ,
where
is the name of a reset function in the model. |
Terminate | 'Terminate' . |
Single-tasking periodic | 'Periodic' . |
Periodic (implicit task) | 'Periodic: ,
where
is the corresponding period annotation, as displayed in the
Timing Legend. For example,
'Periodic:D1' . |
Partition (explicit task) | 'Partition: ,
where
is the partition name, as displayed in the Schedule Editor.
For example, 'Partition:P1' . |
Exported |
|
Simulink function in client-server configuration | 'SimulinkFunction: ,
where
is the name of a global Simulink function in the model. For example,
'SimulinkFunction:readData' in the
example model in Configure AUTOSAR Server. |
Example: 'Periodic:D1'
Output Arguments
arRunnableName
— Name of AUTOSAR runnable
character vector
Variable that returns the name of the AUTOSAR runnable mapped to the specified Simulink entry-point function object.
Example: arRunnableName
arRunnableSwAddrMethod
— Name of function SwAddrMethod
character vector
Variable that returns the name of the SwAddrMethod
defined for the AUTOSAR runnable function.
Example: arRunnableSwAddrMethod
arInternalDataSwAddrMethod
— Name of internal data SwAddrMethod
character vector
Variable that returns the name of the SwAddrMethod
defined for the AUTOSAR runnable internal data.
Example: arInternalDataSwAddrMethod
Version History
Introduced in R2013b
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 (한국어)