Extensions.Flash.StoreUploadData

From emotive
Jump to navigation Jump to search

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