From a781a6f955b687c9a43d9cbd8b16fbe9ffd69dcb Mon Sep 17 00:00:00 2001
From: Scott Lahteine <sourcetree@thinkyhead.com>
Date: Tue, 12 Apr 2016 20:58:27 -0700
Subject: [PATCH] Apply esenapaj 3479 and delta/scara position bugfix
---
Marlin/Marlin_main.cpp | 38 +++++++++++++++++++-------------------
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp
index 944151e901..fa280bb860 100644
--- a/Marlin/Marlin_main.cpp
+++ b/Marlin/Marlin_main.cpp
@@ -485,6 +485,20 @@ void serial_echopair_P(const char* s_P, unsigned long v) { serialprintPGM(s_P);
void gcode_M114();
+#if ENABLED(DEBUG_LEVELING_FEATURE)
+ void print_xyz(const char* prefix, const float x, const float y, const float z) {
+ SERIAL_ECHO(prefix);
+ SERIAL_ECHOPAIR(": (", x);
+ SERIAL_ECHOPAIR(", ", y);
+ SERIAL_ECHOPAIR(", ", z);
+ SERIAL_ECHOLNPGM(")");
+ }
+ void print_xyz(const char* prefix, const float xyz[]) {
+ print_xyz(prefix, xyz[X_AXIS], xyz[Y_AXIS], xyz[Z_AXIS]);
+ }
+ #define DEBUG_POS(PREFIX,VAR) do{ SERIAL_ECHOPGM(PREFIX); print_xyz(" > " STRINGIFY(VAR), VAR); }while(0)
+#endif
+
#if ENABLED(DELTA) || ENABLED(SCARA)
inline void sync_plan_position_delta() {
#if ENABLED(DEBUG_LEVELING_FEATURE)
@@ -715,11 +729,6 @@ void servo_init() {
*/
void setup() {
- #if ENABLED(DELTA) || ENABLED(SCARA)
- // Vital to init kinematic equivalent for X0 Y0 Z0
- sync_plan_position_delta();
- #endif
-
#ifdef DISABLE_JTAG
// Disable JTAG on AT90USB chips to free up pins for IO
MCUCR = 0x80;
@@ -779,6 +788,11 @@ void setup() {
tp_init(); // Initialize temperature loop
plan_init(); // Initialize planner;
+ #if ENABLED(DELTA) || ENABLED(SCARA)
+ // Vital to init kinematic equivalent for X0 Y0 Z0
+ sync_plan_position_delta();
+ #endif
+
#if ENABLED(USE_WATCHDOG)
watchdog_init();
#endif
@@ -1176,20 +1190,6 @@ XYZ_CONSTS_FROM_CONFIG(signed char, home_dir, HOME_DIR);
#endif //DUAL_X_CARRIAGE
-#if ENABLED(DEBUG_LEVELING_FEATURE)
- void print_xyz(const char* prefix, const float x, const float y, const float z) {
- SERIAL_ECHO(prefix);
- SERIAL_ECHOPAIR(": (", x);
- SERIAL_ECHOPAIR(", ", y);
- SERIAL_ECHOPAIR(", ", z);
- SERIAL_ECHOLNPGM(")");
- }
- void print_xyz(const char* prefix, const float xyz[]) {
- print_xyz(prefix, xyz[X_AXIS], xyz[Y_AXIS], xyz[Z_AXIS]);
- }
- #define DEBUG_POS(PREFIX,VAR) do{ SERIAL_ECHOPGM(PREFIX); print_xyz(" > " STRINGIFY(VAR), VAR); }while(0)
-#endif
-
static void set_axis_is_at_home(AxisEnum axis) {
#if ENABLED(DEBUG_LEVELING_FEATURE)
if (DEBUGGING(LEVELING)) {
--
GitLab