Difference between revisions of "Extensions.Flash.GetOwnIdent"
Jump to navigation
Jump to search
(Created page with "Category:Flash == Classification == {{ClassificationActivity | GetOwnIdent | Return an identification string which is read from the download data.| Term | Flash|OTX...") |
|||
Line 3: | Line 3: | ||
{{ClassificationActivity | GetOwnIdent | Return an identification string which is read from the download data.| [[Term]] | [[Flash|OTX Flash extension]] | [[Own ident related terms]] | [[OutOfBoundsException]] | - }} | {{ClassificationActivity | GetOwnIdent | Return an identification string which is read from the download data.| [[Term]] | [[Flash|OTX Flash extension]] | [[Own ident related terms]] | [[OutOfBoundsException]] | - }} | ||
− | == | + | == OTL Syntax == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | StringTerm = Flash.GetOwnIdent(FlashSessionTerm, IntegerTerm, IntegerTerm); | |
</syntaxhighlight> | </syntaxhighlight> | ||
Line 21: | Line 21: | ||
|} | |} | ||
− | == Examples == | + | == OTL Examples == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | String | + | 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.GetOwnIdent(FlashSession1, 0, 0); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== See also == | == See also == | ||
[[GetOwnIdentFromEcu]] | [[GetOwnIdentFromEcu]] |
Revision as of 11:21, 6 February 2015
Contents
Classification
Name | GetOwnIdent |
Short Description | Return an identification string which is read from the download data. |
Class | Term |
Extension | OTX Flash extension |
Group | Own ident related terms |
Exceptions | OutOfBoundsException |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
StringTerm = Flash.GetOwnIdent(FlashSessionTerm, IntegerTerm, IntegerTerm);
Description
The GetOwnIdent term return an identification string which is read from the download data.
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 is read from the download data. |
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.GetOwnIdent(FlashSession1, 0, 0);