Browse Source

DELTA_TOWER_ANGLE_TRIM only needs AB

pull/1/head
Scott Lahteine 7 years ago
committed by teemuatlut
parent
commit
baf3b91460
  1. 6
      Marlin/Conditionals_post.h
  2. 2
      Marlin/configuration_store.cpp
  3. 2
      Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h
  4. 2
      Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h
  5. 2
      Marlin/example_configurations/delta/generic/Configuration.h
  6. 2
      Marlin/example_configurations/delta/kossel_mini/Configuration.h
  7. 2
      Marlin/example_configurations/delta/kossel_pro/Configuration.h
  8. 2
      Marlin/example_configurations/delta/kossel_xl/Configuration.h

6
Marlin/Conditionals_post.h

@ -698,13 +698,13 @@
#define DELTA_ENDSTOP_ADJ { 0.0, 0.0, 0.0 }
#endif
#ifndef DELTA_TOWER_ANGLE_TRIM
#define DELTA_TOWER_ANGLE_TRIM {0.0, 0.0, 0.0}
#define DELTA_TOWER_ANGLE_TRIM { 0.0, 0.0 } // C always 0.0
#endif
#ifndef DELTA_RADIUS_TRIM_TOWER
#define DELTA_RADIUS_TRIM_TOWER {0.0, 0.0, 0.0}
#define DELTA_RADIUS_TRIM_TOWER { 0.0, 0.0, 0.0 }
#endif
#ifndef DELTA_DIAGONAL_ROD_TRIM_TOWER
#define DELTA_DIAGONAL_ROD_TRIM_TOWER {0.0, 0.0, 0.0}
#define DELTA_DIAGONAL_ROD_TRIM_TOWER { 0.0, 0.0, 0.0 }
#endif
#endif

2
Marlin/configuration_store.cpp

@ -1066,7 +1066,7 @@ void MarlinSettings::reset() {
#if ENABLED(DELTA)
const float adj[ABC] = DELTA_ENDSTOP_ADJ,
dta[ABC] = DELTA_TOWER_ANGLE_TRIM;
dta[2] = DELTA_TOWER_ANGLE_TRIM;
COPY(endstop_adj, adj);
delta_radius = DELTA_RADIUS;
delta_diagonal_rod = DELTA_DIAGONAL_ROD;

2
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h

@ -491,7 +491,7 @@
// Trim adjustments for individual towers
// tower angle corrections for X and Y tower / rotate XYZ so Z tower angle = 0
// measured in degrees anticlockwise looking from above the printer
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00, 0.00 } // get these from auto calibrate
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00 } // get these from auto calibrate
// delta radius and diaginal rod adjustments measured in mm
//#define DELTA_RADIUS_TRIM_TOWER {0.0, 0.0, 0.0}

2
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h

@ -489,7 +489,7 @@
// Trim adjustments for individual towers
// tower angle corrections for X and Y tower / rotate XYZ so Z tower angle = 0
// measured in degrees anticlockwise looking from above the printer
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00, 0.00 } // get these from auto calibrate
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00 } // get these from auto calibrate
// delta radius and diaginal rod adjustments measured in mm
//#define DELTA_RADIUS_TRIM_TOWER {0.0, 0.0, 0.0}

2
Marlin/example_configurations/delta/generic/Configuration.h

@ -476,7 +476,7 @@
// Trim adjustments for individual towers
// tower angle corrections for X and Y tower / rotate XYZ so Z tower angle = 0
// measured in degrees anticlockwise looking from above the printer
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00, 0.00 } // get these from auto calibrate
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00 } // get these from auto calibrate
// delta radius and diaginal rod adjustments measured in mm
//#define DELTA_RADIUS_TRIM_TOWER {0.0, 0.0, 0.0}

2
Marlin/example_configurations/delta/kossel_mini/Configuration.h

@ -478,7 +478,7 @@
// Trim adjustments for individual towers
// tower angle corrections for X and Y tower / rotate XYZ so Z tower angle = 0
// measured in degrees anticlockwise looking from above the printer
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00, 0.00 } // get these from auto calibrate
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00 } // get these from auto calibrate
// delta radius and diaginal rod adjustments measured in mm
//#define DELTA_RADIUS_TRIM_TOWER {0.0, 0.0, 0.0}

2
Marlin/example_configurations/delta/kossel_pro/Configuration.h

@ -465,7 +465,7 @@
// Trim adjustments for individual towers
// tower angle corrections for X and Y tower / rotate XYZ so Z tower angle = 0
// measured in degrees anticlockwise looking from above the printer
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00, 0.00 } // get these from auto calibrate
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00 } // get these from auto calibrate
// delta radius and diaginal rod adjustments measured in mm
//#define DELTA_RADIUS_TRIM_TOWER {0.0, 0.0, 0.0}

2
Marlin/example_configurations/delta/kossel_xl/Configuration.h

@ -483,7 +483,7 @@
// Trim adjustments for individual towers
// tower angle corrections for X and Y tower / rotate XYZ so Z tower angle = 0
// measured in degrees anticlockwise looking from above the printer
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00, 0.00 } // get these from auto calibrate
#define DELTA_TOWER_ANGLE_TRIM { 0.00, 0.00 } // get these from auto calibrate
// delta radius and diaginal rod adjustments measured in mm
//#define DELTA_RADIUS_TRIM_TOWER {0.0, 0.0, 0.0}

Loading…
Cancel
Save