Paciente8159 / uCNC

µCNC - Universal CNC firmware for microcontrollers
https://github.com/Paciente8159/uCNC/wiki
GNU General Public License v3.0
265 stars 60 forks source link

Change homing alarm failure type #689

Closed patryk3211 closed 1 month ago

patryk3211 commented 1 month ago

There seems to be a mistake in the alarm triggered after homing axis pull off fails, instead of firing EXEC_ALARM_HOMING_FAIL_PULLOFF, EXEC_ALARM_HOMING_FAIL_APPROACH gets sent and confusion ensues. This small pull request addresses this issue. After a quick check, the definition of EXEC_ALARM_HOMING_FAIL_PULLOFF didn't seem to be used anywhere in the project which is why I believe this is a simple typo.

Paciente8159 commented 1 month ago

You are correct. It should be EXEC_ALARM_HOMING_FAIL_PULLOFF. Thanks for the fix.