Setup
Ender 3, 4.2.7 board, Micro Swiss DD Kit with all metal hot end, CR Touch, right mounted on Petsfang blokhead fan shroud.
Your Firmware Builder exposes ASSISTED_TRAMMING
and ASSISTED_TRAMMING_WIZARD
but does not expose NOZZLE_TO_PROBE_OFFSET
or BED_TRAMMING_INSET_LFRB
.
The resulting firmware has incorrect values for these, which results in Marlin refusing to probe Front-Left or Back-Left because it’s out of range of the probe. NOZZLE_TO_PROBE_OFFSET
Probe offsets can be set in the LCD menus but BED_TRAMMING_INSET_LFRB
cannot AFAIK, which means they need to be set in the firmware builder. In my case I needed
#define NOZZLE_TO_PROBE_OFFSET { 49.5, 1, -2.11 }
and #define BED_TRAMMING_INSET_LFRB { 49.5, 49.5, 49.5, 49.5 }
in order to set #define TRAMMING_POINT_XY { { 49.5, 30 }, { 205, 30 }, { 205, 205 }, { 49.5, 205 } }
so that the firmware would probe the correct points during the assisted tramming operation.
As is now, the Assisted Trimming as generated by your Firmware Builder will not be usable to most people. It generated "TRAMMING_POINT_XY": "{ { 20, 20 }, { 180, 20 }, { 180, 180 }, { 20, 180 } }",
so as you can see, the 20 value is far below the minimum 49.5mm on the x axis I would need. to probe all four points.
There are two options I can think of:
1- Expose NOZZLE_TO_PROBE_OFFSET
in the UI and calculate the values for BED_TRAMMING_INSET_LFRB
and TRAMMING_POINT_XY
by subtracting the NOZZLE_TO_PROBE_OFFSET
x value from the X_BED_SIZE
value (and the same for the y values)
2- Expose NOZZLE_TO_PROBE_OFFSET
, BED_TRAMMING_INSET_LFRB
and TRAMMING_POINT_XY
to let the user decide. You’d have to do some validation to make sure the user wasn’t entering invalid values, but the advantage of this is that the user may want to get their four tramming points in as identical of a position as possible, so they may want to set #define TRAMMING_POINT_XY { { 49.5, 49.5 }, { 185.5, 49.5 }, { 185.5, 185.5 }, { 49.5, 185.5 } }
(all points equal distance from the corners) or in my case, get the tramming points as close to the bed leveling screws as possible with only the front left and back left being slightly right of the bed leveling screws.