Difference between revisions of "Extensions.Flash.StoreUploadData"

From emotive
Jump to navigation Jump to search
(Created page with "Category:Flash == Classification == {{ClassificationActivity | StoreUploadData | Requests a OTX runtime to store data in a data storage | Action| DiagCom|OTX DiagCom...")
 
Line 1: Line 1:
 
[[Category:Flash]]
 
[[Category:Flash]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | StoreUploadData | Requests a OTX runtime to store data in a data storage | [[Action]]| [[DiagCom|OTX DiagCom extension]] | [[Flash related actions]] | [[InvalidReferenceException]] <br/> [[UnsupportedFormatException]] | - }}
+
{{ClassificationActivity | StoreUploadData | Requests a OTX runtime to store data in a data storage | [[Action]]| [[Flash|OTX Flash extension]] | [[Flash related actions]] | [[InvalidReferenceException]] <br/> [[UnsupportedFormatException]] | - }}
  
 
== Pseudo-Code Syntax ==
 
== Pseudo-Code Syntax ==

Revision as of 02:12, 1 August 2014

Classification

Name StoreUploadData
Short Description Requests a OTX runtime to store data in a data storage
Class Action
Extension OTX Flash extension
Group Flash related actions
Exceptions InvalidReferenceException
UnsupportedFormatException
Checker Rules -
Standard Compliant Yes

Pseudo-Code Syntax

StoreUploadData(Boolean append, ByteField data, String target, Numeric address, FlashFileFormat format);

Description

A StoreUploadData activity requests a OTX runtime data in a data storage to store.

Properties

Name Data Type Class Default Cardinality Description
Append Boolean Value FALSE [1] The Boolean value of this attribute specifies whether data is appended to existing data (true) or not (false). If not, the storage is cleaned before write access.
Format FlashFileFormat Value @FlashFileFormat:BINARY [1] This attribute defines the format of the file. FlashFileFormat == {INTEL|SREC|BINARY}.
Data ByteField Term - [1] This element provides the data to be stored.
Target String Term - [1] The element comprises a data store. If the target is a URI, which describes a file, the data is stored in this file.
Address Integer Term - [1] This element is used to store address information in the memory.

Examples

StoreUploadData(false, byteField, "uri", 123, @FlashFileFormat:BINARY);

See also

GetDownloadData
SetFlashSession