Classification
OTL Syntax
Flash.SetFlashSession(FlashJobVariable, FlashSessionTerm);
Description
This action shall set the flash session to be programmed when the FlashJob is executed. Only one session can be set at a time. If this action is used multiple times, the later call shall overwrite the session set by a previous call.
Properties
Name |
Data Type |
Class |
Default |
Cardinality |
Description
|
FlashJob |
FlashJob |
Variable |
- |
[1] |
Represents the FlashJob where the session shall be set.
|
FlashSession |
FlashSession |
Term |
- |
[1] |
Represents the FlashSession to be programmed by the FlashJob.
|
OTL Examples
/// Local Declarations
DiagCom.ComChannel ComChannel1;
Flash.FlashSession FlashSession1;
Flash.FlashJob FlashJob1;
/// Flow
ComChannel1 = DiagCom.GetComChannel("SCHEINWERFER", NULL, false);
FlashSession1 = Flash.GetFlashSession("_7PP907357F_7520");
FlashJob1 = Flash.CreateFlashJob(ComChannel1, FlashSession1);
Flash.SetFlashSession(FlashJob1, FlashSession1);
See also
GetDownloadData
StoreUploadData