MPIRecorderConfig / MEIRecorderConfig

MPIRecorderConfig

 

typedef struct MPIRecorderConfig {
    long	period;		/* collect 1 record every `period` milliseconds */
    long	fullCount;	/* >0 => record count to trigger full buffer */

    long	addressCount;	/* number of data point addresses in address[] */
    void	*address[MPIRecorderADDRESS_COUNT_MAX];
} MPIRecorderConfig;
Description
  period The number of milliseconds between successive recordings. A value of zero means the recorder will record data every sample.
  fullCount If fullCount>0, then the recorder will generate a "recorder full" event when this fullCount number or records are in the recorder buffer.
  addressCount The number of XMP memory addresses in address[].
  *address[] An array of XMP memory addresses the recorder will record.

 

MEIRecorderConfig  

 

typedef MPIEmpty	MEIRecorderConfig;
Description
  RecorderConfig is currently not supported and is reserved for future use.
     
See Also mpiRecorderConfigGet | mpiRecorderConfigSet