Classification
Pseudo-Code Syntax
DiagService CreateDiagServiceBySemantic(ComChannel myComChannel, String semantic);
Description
The CreateDiagServiceBySemantic term creates a handle to a diagnostic service, which can be used for further parameterization or for direct ship, see Diagnostic Runtime System. The diagnostic service is a Semantic Attribute selected.
Return Value
The Term returns the value, see table below.
|
|
In OTX, Terms are categorized according to its return data type!
|
Data Type |
Description
|
DiagService |
Generated Diagnostics Service.
|
Properties
Name |
Data Type |
Class |
Default |
Cardinality |
Description
|
ComChannel |
ComChannel |
Term |
- |
[1] |
Communication Channel.
|
Semantic |
String |
Term |
- |
[1] |
Semantic attribute to classify the diagnostic services (eg: "DEFAULT_FAULTREAD" or "IDENTIFICATION").
|
Examples
ComChannel myComCannel = GetComChannel("LL_AirbaUDS", "", false);
DiagService result = CreateDiagServiceBySemantic(myComCannel, "DEFAULT_FAULTREAD");
See also
GetDiagServiceListBySemantic
GetDiagServiceFromResult
GetDiagServiceFromException
GetDiagServiceName
ExecuteDiagService
GetComChannel