!MSO                Set event when motor speed is equal or over a 32-bit value or the value of a fixed variable

Syntax                        

!MSO value32

! if MotorSpeedOver value32

!MSO VAR32

! if MotorSpeedOver VAR32

 

OperandsVAR32: fixed variable

value32: 32-bit fixed immediate value

PlaceTMLOnline

Binary code

MSO

DescriptionSets the event condition when the motor speed is equal or over the 32-bit value or the value of the specified fixed variable. After you have programmed an event, you can do the following actions:
Change the motion mode and/or the parameters when the event occurs, with command UPD!
Stop the motion when the event occurs, with command STOP!
Wait for the programmed event to occur, with command WAIT!

The programmed event is automatically erased when the event occurs or if the timeout for the WAIT! command expires.

Remark: After setting UPD! or STOP! you need to wait until the programmed event occurs using WAIT!, otherwise, the program will continue with the next instructions that may override the event monitoring.

 

ExecutionActivates the monitoring of the event when motor speed >= value32, respectively VAR32. This operation erases a previous programmed event that has occurred.

 

Example        

//Motor is accelerating. Stop motion when motor

//speed > 600 rpm

//Position feedback: 500 lines encoder (2000 counts/rev)

!MSO 20; //Set event: when motor speed is > 600 rpm

STOP!;//Stop the motion when the event occurs

WAIT!;//Wait until the event occurs