Merge pull request #8636 from thinkyhead/bf1_ubl_uses_LSL
[1.1.x] Use custom segment length for UBL Cartesian
This commit is contained in:
commit
71a4c04dd5
3 changed files with 13 additions and 16 deletions
|
|
@ -569,6 +569,7 @@ void Planner::calculate_volumetric_multipliers() {
|
|||
#if PLANNER_LEVELING
|
||||
/**
|
||||
* rx, ry, rz - Cartesian positions in mm
|
||||
* Leveled XYZ on completion
|
||||
*/
|
||||
void Planner::apply_leveling(float &rx, float &ry, float &rz) {
|
||||
|
||||
|
|
@ -611,7 +612,7 @@ void Planner::calculate_volumetric_multipliers() {
|
|||
#endif
|
||||
|
||||
rz += (
|
||||
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
||||
#if ENABLED(AUTO_BED_LEVELING_UBL) // UBL_DELTA
|
||||
ubl.get_z_correction(rx, ry) * fade_scaling_factor
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
mbl.get_z(rx, ry
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue