Added an error code for laser mode when VARIABLE_SPINDLE is disabled.

- When trying to enable laser mode with $32=1 and VARIABLE_SPINDLE is
disabled, the error code shown was improperly stating it was a homing
failure. Added an new error code specifically for the laser mode being
disabled without VARIABLE_SPINDLE.
This commit is contained in:
Sonny Jeon 2017-03-24 20:18:54 -06:00
parent 43561abaf7
commit 775acac601
6 changed files with 33 additions and 2 deletions

View file

@ -15,6 +15,7 @@ Error Code in v1.1+ ,Error Message in v1.0-, Error Description
14,Line length exceeded,Build info or startup line exceeded EEPROM line length limit. Line not stored.
15,Travel exceeded,Jog target exceeds machine travel. Jog command has been ignored.
16,Invalid jog command,Jog command has no '=' or contains prohibited g-code.
17,Setting disabled,Laser mode requires PWM output.
20,Unsupported command,Unsupported or invalid g-code command found in block.
21,Modal group violation,More than one g-code command from same modal group found in block.
22,Undefined feed rate,Feed rate has not yet been set or is undefined.

1 Error Code in v1.1+ Error Message in v1.0- Error Description
15 14 Line length exceeded Build info or startup line exceeded EEPROM line length limit. Line not stored.
16 15 Travel exceeded Jog target exceeds machine travel. Jog command has been ignored.
17 16 Invalid jog command Jog command has no '=' or contains prohibited g-code.
18 17 Setting disabled Laser mode requires PWM output.
19 20 Unsupported command Unsupported or invalid g-code command found in block.
20 21 Modal group violation More than one g-code command from same modal group found in block.
21 22 Undefined feed rate Feed rate has not yet been set or is undefined.