Difference between revisions of "Extensions.Flash.GetOwnIdentFromEcu"
Jump to navigation
Jump to search
m (Hb moved page GetOwnIdentFromEcu to Extensions.Flash.GetOwnIdentFromEcu: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:Flash]] | + | {{DISPLAYTITLE: '''GetOwnIdentFromEcu'''}}[[Category:Flash]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetOwnIdentFromEcu | Return an identification string which shall be read from an ECU | [[Term]] | [[Flash|OTX Flash extension]] | [[Own ident related terms]] | [[OutOfBoundsException]] | - }} | + | {{ClassificationActivity | GetOwnIdentFromEcu | Return an identification string which shall be read from an ECU | [[Term]] | [[Extensions.Flash|OTX Flash extension]] | [[Own ident related terms]] | [[OutOfBoundsException]] | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
The '''GetOwnIdentFromEcu''' term return an identification string which shall be read from an ECU. The environment shall store the information to access this string. | The '''GetOwnIdentFromEcu''' term return an identification string which shall be read from an ECU. The environment shall store the information to access this string. | ||
− | {{TermReturnValue| [[String]] | The identification string which shall be read from an ECU.}} | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | The identification string which shall be read from an ECU.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| FlashSession | [[FlashSession]] | [[Term]] | - | [1] | This element represents the FlashSession in which the block resides.}} | + | {{TableRowPropertie1| FlashSession | [[Extensions.Flash.FlashSession|FlashSession]] | [[Term]] | - | [1] | This element represents the FlashSession in which the block resides.}} |
− | {{TableRowPropertie2| Block | [[Integer]] | [[Term]] | - | [1] | This element represents the block number.}} | + | {{TableRowPropertie2| Block | [[Core.DataTypes.SimpleDataType.Integer|Integer]] | [[Term]] | - | [1] | This element represents the block number.}} |
− | {{TableRowPropertie1| Number | [[Integer]] | [[Term]] | - | [1] | This element represents the own identification number.}} | + | {{TableRowPropertie1| Number | [[Core.DataTypes.SimpleDataType.Integer|Integer]] | [[Term]] | - | [1] | This element represents the own identification number.}} |
|} | |} | ||
Line 36: | Line 36: | ||
== See also == | == See also == | ||
− | [[GetOwnIdent]] | + | [[Extensions.Flash.GetOwnIdent|GetOwnIdent]] |
Revision as of 08:16, 15 February 2016
Contents
Classification
Name | GetOwnIdentFromEcu |
Short Description | Return an identification string which shall be read from an ECU |
Class | Term |
Extension | OTX Flash extension |
Group | Own ident related terms |
Exceptions | OutOfBoundsException |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
StringTerm = Flash.GetOwnIdentFromEcu(FlashSessionTerm, IntegerTerm, IntegerTerm);
Description
The GetOwnIdentFromEcu term return an identification string which shall be read from an ECU. The environment shall store the information to access this string.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
String | The identification string which shall be read from an ECU. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
FlashSession | FlashSession | Term | - | [1] | This element represents the FlashSession in which the block resides. |
Block | Integer | Term | - | [1] | This element represents the block number. |
Number | Integer | Term | - | [1] | This element represents the own identification number. |
OTL Examples
DiagCom.ComChannel ComChannel1;
List<String> List1;
Flash.FlashSession FlashSession1;
Integer Integer1;
String String1;
ComChannel1 = DiagCom.GetComChannel("DiagnosticsCan_ECU_1", null, false);
List1 = Flash.GetListOfValidFlashSessions(@Directions:DOWNLOAD, ComChannel1, @Audiences:SUPPLIER);
FlashSession1 = Flash.GetFlashSession(List1[0]);
String1 = Flash.GetOwnIdentFromEcu(FlashSession1, 0, 0);