Procházet zdrojové kódy

Update UBL's Delta Probable locations

This is a non-intuitive change.   @oldmcg says in this post https://github.com/MarlinFirmware/Marlin/issues/7572#issuecomment-340641207 that using DELTA_PRINTABLE_RADIUS is better than DELTA_PROBABLE_RADIUS for setting the probe limits.   This is because the automatic probe code checks all locations for being reachable by the probe prior to doing the probe.
Roxy-3D před 6 roky
rodič
revize
9729528d13
No account linked to committer's email address
1 změnil soubory, kde provedl 4 přidání a 4 odebrání
  1. 4
    4
      Marlin/src/inc/Conditionals_post.h

+ 4
- 4
Marlin/src/inc/Conditionals_post.h Zobrazit soubor

@@ -958,10 +958,10 @@
958 958
   // Probing points may be verified at compile time within the radius
959 959
   // using static_assert(HYPOT2(X2-X1,Y2-Y1)<=sq(DELTA_PRINTABLE_RADIUS),"bad probe point!")
960 960
   // so that may be added to SanityCheck.h in the future.
961
-  #define MIN_PROBE_X (X_CENTER - (DELTA_PROBEABLE_RADIUS))
962
-  #define MIN_PROBE_Y (Y_CENTER - (DELTA_PROBEABLE_RADIUS))
963
-  #define MAX_PROBE_X (X_CENTER +  DELTA_PROBEABLE_RADIUS)
964
-  #define MAX_PROBE_Y (Y_CENTER +  DELTA_PROBEABLE_RADIUS)
961
+  #define MIN_PROBE_X (X_CENTER - DELTA_PRINTABLE_RADIUS)
962
+  #define MIN_PROBE_Y (Y_CENTER - DELTA_PRINTABLE_RADIUS)
963
+  #define MAX_PROBE_X (X_CENTER + DELTA_PRINTABLE_RADIUS)
964
+  #define MAX_PROBE_Y (Y_CENTER + DELTA_PRINTABLE_RADIUS)
965 965
 #elif IS_SCARA
966 966
   #define SCARA_PRINTABLE_RADIUS (SCARA_LINKAGE_1 + SCARA_LINKAGE_2)
967 967
   #define MIN_PROBE_X (X_CENTER - (SCARA_PRINTABLE_RADIUS))

Loading…
Zrušit
Uložit