MPIRecorderRecord / MEIRecorderRecord

MPIRecorderRecord

 

typedef union {
    MPIRecorderRecordPoint	point[MPIRecorderADDRESS_COUNT_MAX];
} MPIRecorderRecord;
Description
  point An array of recorded values corresponding to the XMP addresses stored in MPIRecorderConfig.address[].

 

MEIRecorderRecord

 

 typedef union {
    MEIRecorderRecordAxis	axis[MEIXmpMAX_Axes];
    MEIRecorderRecordFilter	filter[MEIXmpMAX_Filters];
    MPIRecorderRecord		dummy;	/* ensure proper sizing */
} MEIRecorderRecord;
Description
  axis An array of MEIRecorderRecordAxis records.
  filter An array of MEIRecorderRecordFilter records.
  dummy A dummy structure that ensures that MEIRecorderRecord has the proper size.
See Also