Main Content

getFunctionCaller

Get AUTOSAR mapping information for Simulink function-caller block

Description

example

[arPortName,arOperationName] = getFunctionCaller(slMap,slFcnName) returns the value of the AUTOSAR client port arPortName and AUTOSAR operation arOperationName mapped to the Simulink® function caller block for Simulink function slFcnName.

Examples

collapse all

Get AUTOSAR mapping information for a function-caller block in a model in which AUTOSAR client function invocation is being modeled. The model has a function-caller block for Simulink® function readData.

hModel = 'mControllerWithInterface_client';
open_system(hModel);
slMapC = autosar.api.getSimulinkMapping(hModel);
mapFunctionCaller(slMapC,'readData','cPort','readData');
[arPort,arOp] = getFunctionCaller(slMapC,'readData')
arPort = 
'cPort'
arOp = 
'readData'

Input Arguments

collapse all

Simulink to AUTOSAR mapping information for a model, previously returned by slMap = autosar.api.getSimulinkMapping(model). model is a handle, character vector, or string scalar representing the model name.

Example: slMap

Name of the Simulink function for the function-caller block for which to return AUTOSAR mapping information.

Example: 'readData'

Output Arguments

collapse all

Variable that returns the name of the AUTOSAR client port mapped to the specified function-caller block.

Example: arPort

Variable that returns the name of the AUTOSAR operation mapped to the specified function-caller block.

Example: arOp

Version History

Introduced in R2014b