-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
very minor issue: latest rcbugfix does not have the m851 definition in configuration.h #4089
Comments
So with the version of bugfix I am testing right now (18-06-16) I cannot send m851 or receive any info using m851 but it is still a variable in the eeprom, even if I reset eeprom to defaults. My console shows However if I restore the configuration I quoted above (custom m codes) to the configuration.h in the additional features section of this version of bugfix, then this functionality returns.
_#define Z_PROBE_OFFSET_FROM_EXTRUDER 0 // Z offset: -below +above [the nozzle] is automatically utilised to position/lower the nozzle when printing begins, after homing/autolevelling. |
@DjDemonD download the latest rcbugfix that problem was fixed yesterdad, the change is deliberate to standarize the gcode, with the latest rcbugfix to ajust rhe z ofset you should send (ex: m851 z-2.0) |
It was intentional with PR #4066. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Previous RC version have included:
_// Custom M code points
define CUSTOM_M_CODES
if ENABLED(CUSTOM_M_CODES)
#if ENABLED(AUTO_BED_LEVELING_FEATURE)
#define CUSTOM_M_CODE_SET_Z_PROBE_OFFSET 851
#define Z_PROBE_OFFSET_RANGE_MIN -20
#define Z_PROBE_OFFSET_RANGE_MAX 20
#endif
endif_
In the additional features section of configuration.h.
Has it been omitted intentionally or just accidentally?
Without this m code setting z offset after measuring distance from probing point to nozzle is more difficult. I tried with m206 but whichever way I set it i.e. m206 z-2 or m206 z2 it did not move the nozzle to the bed on start of printing. Using m851 z-2 this functions perfectly.
The text was updated successfully, but these errors were encountered: