Difference between revisions of "Extensions.DiagCom.GetFirstResult"
Jump to navigation
Jump to search
m (Hb moved page GetFirstResult to Extensions.DiagCom.GetFirstResult: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:DiagCom]] | + | {{DISPLAYTITLE:OTX '''GetFirstResult'''}}[[Category:DiagCom]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetFirstResult | The first result of a diagnostic services performed | [[Term]] | [[DiagCom|OTX DiagCom extension]] | [[Result related terms]] | [[OutOfBoundsException]] | - }} | + | {{ClassificationActivity | GetFirstResult | The first result of a diagnostic services performed | [[Term]] | [[Extensions.DiagCom|OTX DiagCom extension]] | [[Result related terms]] | [[OutOfBoundsException]] | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
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. | 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. | ||
− | {{TermReturnValue| [[Result]] | Result object of diagnostic services.}} | + | {{TermReturnValue| [[Extensions.DiagCom.Result|Result]] | Result object of diagnostic services.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie2| DiagService | [[DiagService]] | [[Term]] | - | [1] | Diagnostics Service.}} | + | {{TableRowPropertie2| DiagService | [[Core.DataTypes.ComplexDataType.DiagService|DiagService]] | [[Term]] | - | [1] | Diagnostics Service.}} |
|} | |} | ||
Line 35: | Line 35: | ||
== See also == | == See also == | ||
− | [[GetAllResults]] <br/> | + | [[Extensions.DiagCom.GetAllResults|GetAllResults]] <br/> |
− | [[ExecuteDiagService]] | + | [[Extensions.DiagCom.ExecuteDiagService|ExecuteDiagService]] |
Revision as of 02:06, 15 February 2016
Contents
Classification
Name | GetFirstResult |
Short Description | The first result of a diagnostic services performed |
Class | Term |
Extension | OTX DiagCom extension |
Group | Result related terms |
Exceptions | OutOfBoundsException |
Checker Rules | - |
Standard Compliant | Yes |
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);