Raptor:Data Logging File IO: Difference between revisions
No edit summary |
No edit summary |
||
Line 60: | Line 60: | ||
! <h5>[[Raptor:Data Logging File Sync|File Sync]]</h5> | ! <h5>[[Raptor:Data Logging File Sync|File Sync]]</h5> | ||
| <p>This block flushes all pending data writes to the flash file system.</p> | | <p>This block flushes all pending data writes to the flash file system.</p> | ||
| [[file: | | [[file:RaptorDataLoggingFileSync.png|frameless|border|File Sync block|center]] | ||
|- | |- | ||
! <h5>[[Raptor:Data Logging File Write|File Write]]</h5> | ! <h5>[[Raptor:Data Logging File Write|File Write]]</h5> | ||
| <p>This block is used to write data to a file. The block accepts uint8[] or string data types.</p> | | <p>This block is used to write data to a file. The block accepts uint8[] or string data types.</p> | ||
| [[file: | | [[file:RaptorDataLoggingFileWrite.png|frameless|border|File Write block|center]] | ||
|} | |} |
Latest revision as of 21:54, 7 July 2014
Return to the main Raptor page
Return to Data Logging Libraries page
The blocks in this subsystem are used for file I/O on an available file system, such as a USB stick.
Blocks
Block | Description | Appearance |
---|---|---|
File Close |
This block closes an open file and flushes all data written to the file system. All files should be closed before the module powers off to ensure data is not lost. |
|
File EOF |
This block is used to determine if the current file position is at the end of the file. |
|
File Exists |
This block can be used to detect if a file exists on the specified resource. |
|
File Get Free Space |
This block returns the free space on the specified resource. |
|
File Open |
This block opens a file for read and/or write. It outputs a File Handle which is used with other blocks to read, write and seek within the file. |
|
File Position |
This block is used to get the current file position measured in bytes from start of file. |
|
File Read |
This block is used to read the contents of a file. |
|
File Remove |
This block removes a file from the specified resource. |
|
File Rename |
This block is used to rename a file on a resource. It cannot be used to move a file between resources. |
|
File Seek |
This block is used to move the current position in a file where the next read or write operation will occur. |
|
File Size |
This block returns the size of the specified file in bytes. |
|
File Sync |
This block flushes all pending data writes to the flash file system. |
|
File Write |
This block is used to write data to a file. The block accepts uint8[] or string data types. |