Suggestion for change to implementation of baby-steps
-
@deckingman said in Suggestion for change to implementation of baby-steps:
For info, I just tried this out on my machine. It seems to work as you say with one exception. When I input M290 S5, I only get an offset of 1mm. I'm guessing that there is a 1mm limit on baby stepping?
Thanks for running this test. There is indeed a limit of 1mm in any babystepping command, unless you use the R0 parameter to specify an absolute babystepping offset.
Do you home Z using a homing switch or a Z probe? It might make a difference.
-
@dc42 said in Suggestion for change to implementation of baby-steps:
Do you home Z using a homing switch or a Z probe? It might make a difference.
That depends on your definition. Essentially it's a switch connected to the nozzle mount which can move in Z, so the nozzle is the probe. But because the switch has an LED in series, I have to use it as an analogue switch. I get a reading of about 524 when it isn't triggered and 1000 when it is.
Here is relevant line from my config.g
G31 P700 X0 Y0 Z-0.4Edit. Ohh and M558 P1 X0 Y0 Z1 F180 T6000 I0 (so yes, a P1 type probe).
-
conditions here are that this is a moving bed with a switch at Z-max.
That's not happening at all. When you home, the firmware automatically sets the Z position to the max. If baby-stepping is still on, your bed will indeed be at the correct max position. If you then G1 Z0, you will indeed position the bed at Z0. Then you reset baby-steps, and the bed tries to move opposite to the baby-steps. If it was positive baby-steps, the bed will crash into the nozzle. If it was negative baby-steps, the bed will move away from the nozzle.
-
Just trying to get my head around this but wondering if you home to Z max, then do M290 S5, the bed would be constrained by the axis limit as defined in M208 which would prevent it from actually moving any further? But the baby-stepping offset might behave as if the bed had moved?
So maybe the problem exists only if you home to Z max?
-
@gnydick said in Suggestion for change to implementation of baby-steps:
conditions here are that this is a moving bed with a switch at Z-max.
That's not happening at all. When you home, the firmware automatically sets the Z position to the max. If baby-stepping is still on, your bed will indeed be at the correct max position. If you then G1 Z0, you will indeed position the bed at Z0. Then you reset baby-steps, and the bed tries to move opposite to the baby-steps. If it was positive baby-steps, the bed will crash into the nozzle. If it was negative baby-steps, the bed will move away from the nozzle.
Please share your homing files.
-
homex
; homex.g ; called to home the X axis ; ; generated by RepRapFirmware Configuration Tool v2 on Fri Feb 08 2019 11:10:07 GMT-0800 (Pacific Standard Time) G91 ; relative positioning G1 Y50 S1 ; avoid pulley in corner ;G1 Z-5 F6000 S2 ; lift Z relative to current position G1 S1 X293 F1800 ; move quickly to X axis endstop and stop there (first pass) G1 X-5 F6000 ; go back a few mm G1 S1 X293 F360 ; move slowly to X axis endstop once more (second pass) ;G1 Z5 F6000 S2 ; lower Z again G90 ; absolute positioning G92 X275
homey
M913 X40 Y40 ; reduce current ; generated by RepRapFirmware Configuration Tool v2 on Fri Feb 08 2019 11:05:47 GMT-0800 (Pacific Standard Time) G91 ; relative positioning ;G1 Z-5 F6000 S2 ; lift Z relative to current position G1 S1 Y365 F1800 ; move quickly to Y axis endstop and stop there (first pass) G1 Y-5 F6000 ; go back a few mm G1 S1 Y365 F360 ; move slowly to Y axis endstop once more (second pass) ;G1 Z5 F6000 S2 ; lower Z again G90 ; absolute positioning M913 X100 Y100 ; restore current
homez
G91 G1 Z400 S1 F1500 G1 Z-5 G1 Z10 S1 F100 G90
-
@gnydick, thanks. I've just tested homing to max Z with 5mm of baby stepping applied. Specifically, I did this (from bottom to top):
20/03/2019, 15:36:50 M114
X:0.000 Y:0.000 Z:195.000 E0:0.0 E1:0.0 E2:0.0 E3:0.0 E4:0.0 E5:0.0 E6:0.0 Count 0 0 40000 Machine 0.000 0.000 200.000
20/03/2019, 15:35:28 G1 S1 Z400
20/03/2019, 15:35:13 G91
20/03/2019, 15:35:05 M208 Z200
20/03/2019, 15:34:34 M574 Z2 S1
20/03/2019, 15:34:14 M290
Baby stepping offset is 5.000mm
20/03/2019, 15:34:12 M290 Z1
20/03/2019, 15:34:12 M290 Z1
20/03/2019, 15:34:11 M290 Z1
20/03/2019, 15:34:10 M290 Z1
20/03/2019, 15:34:07 M290 Z1
20/03/2019, 15:33:51 G92 X0 Y0So I applied +5mm of baby stepping, then I homed to max Z, which I had set to 200 in M208. After this the Z coordinate reported by both DWC and M114 was 195, as expected (i.e. user position +195, plus 5mm baby stepping, gives a machine position of +200).
All this is exactly as expected. When I originally implemented baby stepping, I reset it to zero when you homed Z. but at the request of several users, I changed it to persist across homing. It is still reset to zero at power up.
If you want to reset baby stepping during homing, or at the end of each print, you can do that by adding command M290 R0 Z0 in one or more of homez.g, homeall.g, stop.g and cancel.g.
You might with to do a similar test to mine, i.e. apply +5mm bay stepping, then home Z to max. You said that you have Z max set to 300mm, so you should find the that displayed Z coordinate after homing Z is 295. If you then command the nozzle to Z0, it should be 5mm above the bed.
-
@dc42 i see what you're saying. I just did that little experiment right now, but in practice it hasn't worked that way. I don't know if having printed changes the internal flow somehow.
-
Having printed should not change anything, assuming that the print file didn't have any M290 commands in it.
-
@dc42 I did some experimenting, and it looks like it depends on whether you baby step + or -. If you baby step - then the homing routine breaks like I explained.
-
I also just reconfigured my machine. It now Z homes at zero. I had positive baby-stepping of .2. Then I homed the machine, which includes a final move to Z75. The display read Z74.80. I reset baby-steps and the bed moved, but the DWC still showed Z74.80.
So, this is all getting confusing, which is what leads me back to my original suggestion. NONE of this behavioral heuristics would be necessary if the Z value was always where it physically is and never a virtual coordinate.
-
I've just found a bug in the current baby stepping code. When using relative babystepping (the default), sometimes it will babystep more than the amount you asked for. I wonder whether this might explain your earlier observations?
-
@gnydick said in Suggestion for change to implementation of baby-steps:
So, this is all getting confusing, which is what leads me back to my original suggestion. NONE of this behavioral heuristics would be necessary if the Z value was always where it physically is and never a virtual coordinate.
I'm not going to change it, because it would be very confusing if you send a G1 command to send the head to one set of coordinates and it goes to different coordinates, and because the physical coordinates also include the effects of workplace coordinate offsets, tool offsets, bed compensation, axis skew compensation, and firmware-controlled retraction Z-hop. But I think there is a case to be made for DWC showing both user coordinates and machine coordinates.
Btw the next 2.03beta will have the option to do instant (live) babystepping on the most common machine architectures.
-
@dc42 I think that will be confusing as well.
Let's take a step back and look at it again...
Baby-stepping, in it's current implementation
- Causes an inconsistent representation of the coordinates
- Sometimes it effects the displayed coordinate and sometimes it doesn't.
- Regardless of the representation, if the bed is against the nozzle and there was positive baby stepping applied, a baby-step reset will cause a crash and some sort of damage, especially in the case of build surface coatings like PEI and a hot nozzle.
- The M564 setting will not influence whether or not the bed/nozzle will crash.
Goals
- We don't want to confuse the user
- We don't want to cause bed crashing
- We don't want to cause movement beyond the maximum of the Z axis
- This is a machine, not software, it should be dumb and just do what we tell it to do predictably.
Objective of Baby-Stepping
- Be able to adjust the z height so that the bed-nozzle distance is correct for the foreseeable future
- that could be until it needs recalibration some days, weeks, or months away
- it could be the next print
- common scenario when you're trying to work the kinks out of an in development machine, like I've been doing since last June.
- could be because your filament is particularly difficult to print and you need to keep an eye on it
- could be bad slicer settings
- etc.
How do these goals and objectives mesh together?
- The representation should always inform the user correctly. That doesn't mean the Z value is the same as the physical position or the adjusted position. There are two paths for that
- The representation changes as you baby-step, and if you apply baby-stepping positive, e.g., you're Z will never be zero until baby-stepping is reset. To me, honestly, that wouldn't be confusing; I'd home the machine, bring the nozzle to the bed and see
Z: 0.20
, especially if the baby-stepping is represented next to it. That would be cake. And if it's negative, the same.
- The representation changes as you baby-step, and if you apply baby-stepping positive, e.g., you're Z will never be zero until baby-stepping is reset. To me, honestly, that wouldn't be confusing; I'd home the machine, bring the nozzle to the bed and see
- The representation never changes and the firmware obfuscates everything under the covers. Which is a lot of cases to handle. Here are just some of them.
- If you baby-step positive and you home to the low end and you're now at nozzle-meets-bed position, then the screen will read
Z: 0.00
and resetting baby-steps will not go past the configuredpast 0 config
as it knows that this should be treated like Z:0 and modifies all movements accordingly. - If you baby-step negative and you home to the high end, the same thing has to happen, but in reverse. It should know that you're at your axis maximum and not move the bed.
- You've just finished a print, and have baby-stepped, and you're not happy and want to probe the mesh, but, you forget to reset the baby-steps. How should it be implemented in firmware? Do you consider the baby-steps to be part of the probe offset, or not?
- If you baby-step positive and you home to the low end and you're now at nozzle-meets-bed position, then the screen will read
There's no way to know how to implement all of the scenarios because each machine is different, and each person's thoughts on how things should work are different. There should be no room for interpretation.
You see how option #2 starts you down a rabbit hole? We are currently in that rabbit hole, which I don't think is tenable. I think there're too many scenarios that conflict with each other that can't be reconciled with heuristics or state machines.
My vote would be for #1. Nothing is obfuscated from the user. When they're calibrating, tuning, building, tweaking, printing, etc., if they know how the printer works, which is a requirement at this point, then with the display in front of them, they'll know if they need to reset baby-steps, or move the bed||nozzle away from the other before resetting to avoid damage, because it's in front of their face.
An ounce of added complexity to the display will save tons of frustration. The absolutely correct value for Z is a vector of sorts. [ position, offset ]. If that's what was represented, there would be no confusion what-so-ever.
This obviously becomes less important if there is a permanently deployed Z height sensor, because then you can avoid problems, but we don't all have that. That's how Prusa can get away with NOT showing the physical position and/or offset amount. All Prusa's have a probe and re-home before every print and the Z-offset value is just applied for all moves.
- Causes an inconsistent representation of the coordinates
-
@dc42 I still think this is worth talking about.
The current implementation only works well if your printer is very well behaved and calibrated, and you add baby step maintenance commands to your homing scripts.
Also consider the following scenario.
I start a print and notice it's not pressing the filament down and I baby step down. The printer thinks it's at 0.2 but it's obviously not, it's at 0.5 or 0.6 in actuality.
This simple scenario completely breaks your vision of wanting the printer to go to the position you tell it, not a physically different position.
Baby stepping should be a permanent adjustment. Look at it this way. Let's say I have a shitty printer that doesn't always home well. Maybe it's temperature fluctuations and expanding material moving the sensor, who knows.
It would be incredibly useful to be able to baby step to fix the offset, and then just be able to forget it until the barometer moves again.
Don't even display it. It's an adjustment that's no different from moving the sensor.
This is how the Marlin firmware does it and it's SO much simpler. I never, ever have to think about it other than when I need to adjust. For example, switching from PLA to PETG, I like dialing back the squish a little bit.
-
I don't think making babystepping permanent would suit all users, but we could make it optional. One way would be to have M500 P290 write config-override.g including the current babystepping value (just like M500 P31 writes config-override.g including the current G31 parameters). Would that help you? You could put the M500 P290 command in stop.g if you wanted.
-
@gnydick said in Suggestion for change to implementation of baby-steps:
Don't even display it. It's an adjustment that's no different from moving the sensor.
I also see it this way.
-
Personally, I would not be happy if baby stepping was permanent. In a perfect world, you set the offset between the point where the probe triggers and the point where the nozzle is just touching the bed. Then when you set the first layer height to be say 0.3mm, that is what you get. But we don't live in a perfect world and sometimes (but not always) people found that they needed to occasionally adjust the first layer height but didn't want to keep re-setting the probe offset. That is the reason why baby stepping was introduced in the first place - to enable people to occasionally adjust the first layer on a per print basis.
So if you make baby stepping permanent (or even carry it over to the next print), then it becomes just another way to set the probe offset, and you lose the ability to make small adjustments on a per-print basis (because whatever change you make will be carried over to the next print and no longer be applied solely to the current print). Which is the whole reason for having baby-stepping. Worse than that, to see what the probe offset really is set to, users will have to look first at their configuration file to find the offset value, than look elsewhere to find the (permanent) baby stepping value and add or subtract one from the other.
A printer that doesn't home reliably or consistently surely needs the ability to be able to make adjustments on a per-print basis. So I really don't see why such a printer is being held up as an example of why baby-stepping needs to be permanent. If the Z height needs to be adjusted by the same amount across multiple prints, then change the probe offset. That's what it's for and we don't need another mechanism to change it - especially when we would have to look in two different places for two different values.
-
@deckingman yes, exactly. I would be fine if that's what it did, update the probe Z delta. That's a good way to think about it.
-
@dc42 it still doesn't solve the fact that the end user has to remember if baby-stepping is in effect. As I've described, sometimes it offsets the Z value, sometimes it doesn't. There just isn't a single behavior to it. And the bed crashing problem.
bs+, bs+,........, bs+, then you home to Z0 and say to yourself, OH, i fixed my probe Z-height, I can reset baby-steps -- CRASH. It's just not a good setting to expose to people as a runtime setting.
Like @deckingman said, it's the same thing as just fixing your z height offset. That's how Marlin does it.
If implemented as an internal offset...
- For good, stable printers, you'll rarely, if ever need bs, except maybe switching between filament types
- For a printer in development that isn't always reliable, it lets you tweak something in a completely safe way, because you'll never "reset" baby-steps, you'll just "jog the dial".
Think of bs'ing as a relative thing, rather than something that changes the Z value, it's just an internal compensation. I'll give you an example of another real world system like this.
Older cars with distributor caps. They have a firing order, and amount of delay that you can calibrate. An 8 cylinder engine has the leads at 45 degrees apart. If you dial up the delay, or advance it, you're still firing 45 degrees apart, you're still firing in the correct firing order, the cap just needed calibrating.