Difference between revisions of "MC-Basic:RECORD"

From SoftMC-Wiki
Jump to: navigation, search
(gap limited to 64, explained meaning of negative value of number of points)
(corrected syntax non-wiki characters)
Line 5: Line 5:
  
 
|SYNTAX=
 
|SYNTAX=
RECORD ''<record file name> <number of points> ''{Gap = ''<record gap>''} {RingBuffer = ''<ON ?'"`UNIQ--nowiki-00000001-QINU`"'? OFF>''}  RecData = <''expression''>{, <''expression''>}*
+
RECORD <''record file name''> <''number of points''> {Gap = <''record gap''>} {RingBuffer = <''ON{{!}}OFF''>}  RecData = <''expression''>{, <''expression''>}
  
 
|AVAILABILITY=
 
|AVAILABILITY=

Revision as of 07:35, 10 May 2020

Language: English  • 中文(简体)‎

This command is used to arm (not trigger) data recording. Data are recorded into the specified file, which is then retrieved for viewing. The record file must always have the extension REC. The recorded data file is stored on RAM drive, so the file is lost after power off.

You must specify the <number of points> to be recorded, where one point is a set of data recorded at a given instant in time. The recorder may be stopped before the specified number of points have been recorded (using RECORDOFF).

Negative value of <number of points> means <RingBuffer=On> and converted to positive number.

Optional <RingBuffer> allows continuous recording until recorder is either paused or stopped. In that case only last <number of points> records are kept.

The time between successive samples of the data is given by <record gap>, which specifies the number of EtherCAT cycles between samples. A maximum of six expressions may be recorded.

NOTE-Info.svgNOTE
Data are recorded in realtime, so complex expressions add to the system load.

Recording of expressions containing strings, points or structures may result in an overlap error, due to memory allocation processes. RECORD only defines the data to be recorded.

The actual recording process is triggered by RECORDON.
NOTE-Info.svgNOTE
setting negative value for number of points will result in activating continuous recording. Same as setting RingBuffer to ON.

Syntax

RECORD <record file name> <number of points> {Gap = <record gap>} {RingBuffer = <ON|OFF>}  RecData = <expression>{, <expression>}

Availability

All versions

Type

<record file name>: File specification, including file name and extension.

<number of points>: Long

<ring buffer>: 1/0

<record gap>: Long

<expression>: Long, Double

Range

<record file name>: Any filename extension must be REC.

<number of points>: -MaxLong to MaxLong

<record gap>: 1 to 64

Scope

Task or Terminal

Limitations

The record file is stored on the RAM drive, so size is limited. Recording stops if there is no space available on the RAM drive. A RECORDCLOSE command must be issued before a second RECORD command is issued.

Local variables can not be recorded .

Examples

?'"`UNIQ--pre-00000002-QINU`"'?

?'"`UNIQ--pre-00000003-QINU`"'?

See Also