MPIControlFileType

Definition

typedef enum MPIControlFileType {
	MPIControlFileTypeINVALID = -1,


	MPIControlFileTypeFIRMWARE,
	MPIControlFileTypeMAP,
	MPIControlFileTypeFPGA,
         MPIControlFileTypeMWMAP,


	MPIControlFileTypeLAST,
	MPIControlFileTypeFIRST = MPIControlFileTypeINVALID + 1
} MPIControlFileType;

 

Required Header: stdmpi.h
Change History: Added in 04.00.

Description

MPIControlFileType defines various types of files used by Controller functions.

MPIControlFileTypeFIRMWARE A controller firmware file. The extension for files of this type is .bin.
MPIControlFileTypeMAP A controller firmware map file. The extension for files of this type is .map.
MPIControlFileTypeFPGA A controller FPGA file. The extension for files of this type is .fpg.
MPIControlFileTypeMWMAP A controller firmware MechaWare map file. Note the extension for files of this type is .mwmap.

Sample Code

returnValue = 
    mpiControlDefaultFile(control,
      MPIControlFileTypeFIRMWARE,
      filenameBuffer,
      512,
      &requiredSize);

See Also

mpiControlDefaultFile