mpiMotorEventNotifySet

Declaration
long mpiMotorEventNotifySet(MPIMotor     motor,
                            MPIEventMask eventMask,
                            void         *external) 
Required Header stdmpi.h
Description

MotorEventNotifySet requests host notification of the event(s) that are generated by motor and specified by eventMask, and also specified by the implementation-specific location pointed to by external (if external is not NULL).

The event notification information in external is in addition to the event notification information in eventmask, i.e, the event notification information in eventmask and in external is not the same information. Note that eventmask or external can be NULL (but not both NULL).

Event notification is enabled for event types specified in eventMask, a bit mask of MPIEventMask bits associated with the desired MPIEventType values. Event notification is disabled for event types that are not specified in eventMask. The MPIEventMask bits must be set of cleared using the MPIEventMask macros.

The mask of event types generated by a Motor object consists of bits from MPIEventMaskMOTION and MPIEventMaskAXIS.

XMP Only

external either points to a structure of type MEIEventNotifyData{} or is NULL. The MEIEventNotifyData{} structure is an array of firmware addresses, whose contents are placed into the MEIEventStatusInfo{} structure (of all events generated by this object).

To Then
enable host notification of all events set eventmask to MPIEventMaskALL
disable host notification of all events set eventmask to MPIEventTypeNONE
Return Values
MPIMessageOK if MotorEventNotifySet successfully requests host notification of the event(s) that are specified by eventMask and generated by motor
See Also MPIEventType | MEIEventNotifyData | MEIEventStatusInfo
mpiMotorEventNotifyGet