MPIGeneric32

Declaration

typedef union MPIGeneric32 {
	float          f;
	int32_t           i32;
	uint32_t  ui32;
} MPIGeneric32;

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

Description

MPIGeneric32 is a generic data type that is a union of possible 32-bit data types. It is useful when data recorded on the controller is reported back in generic terms. This includes the data recorder and controller-based events.

f Single precision floating-point number.
i32 Signed 32-bit integer value.
ui32 Unsigned 32-bit integer value.

See Also

MPIEventData