Fanuc Alarm 137: M-CODE & MOVE CMD IN SAME BLK

Fanuc Alarm 137: M-CODE & MOVE CMD IN SAME BLK

Fanus Control Model: 0 (0-M, 0-T, 0-i)

Description

An M-code (which is a machine function such as spindle on/off or coolant control) and a ‘Move Command’ (such as X, Y, or Z axis movement) have been combined in a way that is prohibited by Fanuc parameters or the specific machine design.

How to Fix Alarm

Check the specific block of the program where the alarm occurred. Separate the M-code from the movement command and write it on a new line.

Incorrect: G01 X100.0 Z-50.0 F0.2 M08 ;

Correct: G01 X100.0 Z-50.0 F0.2 ; M08 ;

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *