Big text
Classification
OTL Syntax
ListTerm = DiagCom.GetAllResults(DiagServiceTerm);
Description
The GetAllResults term is a list of all the results of a diagnostic services that run back. This is necessary especially for the evaluation of the responses of several ECUs.
The list is returned in time ausfsteigender order. That is the first entry is the oldest object, last entry is newest object.
In contrast to the GetAllResultsAndClear activity, this term reads only the results of diagnostic services performed and does not clear the internal buffer, so that the results continue to be evaluated for other activities. One application for this is for example the monitoring of diagnostic communication.
Return Value
The Term returns the value, see table below.
|
|
In OTX, Terms are categorized according to its return data type!
|
Data Type |
Description
|
List |
List of result object of diagnostic services.
|
Properties
Name |
Data Type |
Class |
Default |
Cardinality |
Description
|
DiagService |
DiagService |
Term |
- |
[1] |
Diagnostics Service.
|
OTL Examples
DiagCom.ComChannel myComCannel;
DiagCom.DiagService DiagService1;
List<DiagCom.Result> List1;
myComCannel = DiagCom.GetComChannel("LL_AllEmissRelatUDSSyste", "", false);
DiagService1 = DiagCom.CreateDiagServiceByName(myComCannel, "DiagnServi_ReadDataByIdentActuaTestStatu");
DiagCom.ExecuteDiagService(DiagService1, {}, {}, false, false);
List1 = DiagCom.GetAllResults(DiagService1);
See also
GetFirstResult
ExecuteDiagService