-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Z offset xy_offset_probing in config.ini ignored. #1440
Comments
ok So I looked at ProbeOffsetControl.c and see that it homes first in probeOffsetEnable(bool skipZOffset). I added mustStoreCmd("G1 X147 Y144\n"); into the code to get mine to zoffset in the center. Obviously this is only right for me but I suppose that could be a init setting in config.ini, ie position to zoffset if not at xy-offset_probing position. |
There are several issues related to config.INI. Check the other tickets from yesterday and the PR section. |
Thanks, I searched but missed that. I spent hours trying to set my z offset height getting nowhere, I finally got it when I set z offset to zero and saved and then readjusted for my actual value. I am not convinced the else clause is correct. |
the current version simply homes and moves the nozzle to probing Z0 (this means Z offset is subtracted). unfortunately in one of the last merged PR, parsing of xy_offset_probing was wrongly removed from config.ini |
OK Thanks for the update, I thought it was moving z to the previously set Z but realise now it was going to actual z0. |
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. |
TFT35_V2.0.26
When using the Bed Levelling Zoffset button with XY_Offset_Probing set to 0 in config.ini the result was the same as when set to 1. I tried to find out why and could not find an entry to set the infoSetting variable in config.c.
I added the following code to config.c and this appears to fix the problem.
case C_INDEX_XY_OFFSET_PROBING: SET_VALID_INT_VALUE(infoSettings.xy_offset_probing, 0 ,2); break;
I also noted that when setting Zoffset once Zoffset has been enabled the value goes to 0, whuich does not make much sense to me should it not stay at the current set value until I change it?
I also don't like the fact that it homes first when enabled, I have front left as home but set zoffset in center of bed.
I will investigate these issues before raising as bugs, unless someone comments
.
I am also finding that setting baudrate in config.ini does not work, I need to go to the connection screen to set it manually. Not worked out why yet.
The text was updated successfully, but these errors were encountered: