Classification
OTL Syntax
ResultTerm = DiagCom.GetFirstResult(DiagServiceTerm);
Description
The GetFirstResult term returns the first result of a diagnostic services performed. This is necessary especially for the evaluation of the responses of several ECUs.
Return Value
The Term returns the value, see table below.
|
|
In OTX, Terms are categorized according to its return data type!
|
Data Type |
Description
|
Result |
Result object of diagnostic services.
|
Properties
Name |
Data Type |
Class |
Default |
Cardinality |
Description
|
DiagService |
DiagService |
Term |
- |
[1] |
Diagnostics Service.
|
Examples
DiagCom.ComChannel myComCannel;
DiagCom.DiagService DiagService1;
DiagCom.Result Result1;
myComCannel = DiagCom.GetComChannel("LL_AllEmissRelatUDSSyste", "", false);
DiagService1 = DiagCom.CreateDiagServiceByName(myComCannel, "DiagnServi_ReadDataByIdentActuaTestStatu");
DiagCom.SetRepetitionTime(DiagService1, 50);
DiagCom.StartRepeatedExecution(DiagService1);
DiagCom.ExecuteDiagService(DiagService1, {}, {}, false, false);
DiagCom.StopRepeatedExecution(DiagService1);
Result1 = DiagCom.GetFirstResult(DiagService1);
See also
GetAllResults
ExecuteDiagService