Selaa lähdekoodia

Rename feature to G38_PROBE_TARGET

Scott Lahteine 7 vuotta sitten
vanhempi
commit
919fe3e4b8
5 muutettua tiedostoa jossa 15 lisäystä ja 14 poistoa
  1. 3
    3
      Marlin/Configuration_adv.h
  2. 1
    1
      Marlin/Marlin.h
  3. 7
    6
      Marlin/Marlin_main.cpp
  4. 3
    3
      Marlin/SanityCheck.h
  5. 1
    1
      Marlin/endstops.cpp

+ 3
- 3
Marlin/Configuration_adv.h Näytä tiedosto

@@ -532,9 +532,9 @@
532 532
 // Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
533 533
 //#define BEZIER_CURVE_SUPPORT
534 534
 
535
-// G38 Probe Target
536
-//#define G38_2_3
537
-#if ENABLED(G38_2_3)
535
+// G38.2 and G38.3 Probe Target
536
+//#define G38_PROBE_TARGET
537
+#if ENABLED(G38_PROBE_TARGET)
538 538
   #define G38_MINIMUM_MOVE 0.0275 // minimum distance in mm that will produce a move (determined using the print statement in check_move)
539 539
 #endif
540 540
 

+ 1
- 1
Marlin/Marlin.h Näytä tiedosto

@@ -209,7 +209,7 @@ void manage_inactivity(bool ignore_stepper_queue = false);
209 209
 
210 210
 #endif // !MIXING_EXTRUDER
211 211
 
212
-#if ENABLED(G38_2_3)
212
+#if ENABLED(G38_PROBE_TARGET)
213 213
   extern bool G38_move,        // flag to tell the interrupt handler that a G38 command is being run
214 214
               G38_endstop_hit; // flag from the interrupt handler to indicate if the endstop went active
215 215
 #endif

+ 7
- 6
Marlin/Marlin_main.cpp Näytä tiedosto

@@ -277,7 +277,7 @@
277 277
   TWIBus i2c;
278 278
 #endif
279 279
 
280
-#if ENABLED(G38_2_3)
280
+#if ENABLED(G38_PROBE_TARGET)
281 281
   bool G38_move = false,
282 282
        G38_endstop_hit = false;
283 283
 #endif
@@ -2331,6 +2331,7 @@ static void clean_up_after_endstop_or_probe_move() {
2331 2331
 
2332 2332
 #endif // AUTO_BED_LEVELING_BILINEAR
2333 2333
 
2334
+
2334 2335
 /**
2335 2336
  * Home an individual linear axis
2336 2337
  */
@@ -4166,7 +4167,7 @@ inline void gcode_G28() {
4166 4167
 
4167 4168
 #endif // HAS_BED_PROBE
4168 4169
 
4169
-#if ENABLED(G38_2_3)
4170
+#if ENABLED(G38_PROBE_TARGET)
4170 4171
 
4171 4172
   static bool G38_run_probe() {
4172 4173
 
@@ -4252,7 +4253,7 @@ inline void gcode_G28() {
4252 4253
     clean_up_after_endstop_or_probe_move();
4253 4254
   }
4254 4255
 
4255
-#endif // G38_2_3
4256
+#endif // G38_PROBE_TARGET
4256 4257
 
4257 4258
 /**
4258 4259
  * G92: Set current position to given X Y Z E
@@ -7376,7 +7377,7 @@ void process_next_command() {
7376 7377
   while (*cmd_ptr == ' ') cmd_ptr++;
7377 7378
 
7378 7379
   // Allow for decimal point in command
7379
-  #if ENABLED(G38_2_3)
7380
+  #if ENABLED(G38_PROBE_TARGET)
7380 7381
     uint8_t subcode = 0;
7381 7382
   #endif
7382 7383
 
@@ -7393,7 +7394,7 @@ void process_next_command() {
7393 7394
   } while (NUMERIC(*cmd_ptr));
7394 7395
 
7395 7396
   // Allow for decimal point in command
7396
-  #if ENABLED(G38_2_3)
7397
+  #if ENABLED(G38_PROBE_TARGET)
7397 7398
     if (*cmd_ptr == '.') {
7398 7399
       cmd_ptr++;
7399 7400
       while (NUMERIC(*cmd_ptr))
@@ -7501,7 +7502,7 @@ void process_next_command() {
7501 7502
         #endif // Z_PROBE_SLED
7502 7503
       #endif // HAS_BED_PROBE
7503 7504
 
7504
-      #if ENABLED(G38_2_3)
7505
+      #if ENABLED(G38_PROBE_TARGET)
7505 7506
         case 38: // G38.2 & G38.3
7506 7507
           if (subcode == 2 || subcode == 3)
7507 7508
             gcode_G38(subcode == 2);

+ 3
- 3
Marlin/SanityCheck.h Näytä tiedosto

@@ -854,11 +854,11 @@
854 854
 /**
855 855
  * G38 Probe Target
856 856
  */
857
-#if ENABLED(G38_2_3)
857
+#if ENABLED(G38_PROBE_TARGET)
858 858
   #if !HAS_BED_PROBE
859
-    #error "G38_2_3 requires a bed probe."
859
+    #error "G38_PROBE_TARGET requires a bed probe."
860 860
   #elif !IS_CARTESIAN
861
-    #error "G38_2_3 requires a Cartesian machine."
861
+    #error "G38_PROBE_TARGET requires a Cartesian machine."
862 862
   #endif
863 863
 #endif
864 864
 

+ 1
- 1
Marlin/endstops.cpp Näytä tiedosto

@@ -252,7 +252,7 @@ void Endstops::update() {
252 252
       } \
253 253
     } while(0)
254 254
 
255
-  #if ENABLED(G38_2_3) && PIN_EXISTS(Z_MIN)  // If G38 command then check Z_MIN for every axis and every direction  
255
+  #if ENABLED(G38_PROBE_TARGET) && PIN_EXISTS(Z_MIN)  // If G38 command then check Z_MIN for every axis and every direction  
256 256
 
257 257
     #define UPDATE_ENDSTOP(AXIS,MINMAX) do { \
258 258
         _UPDATE_ENDSTOP(AXIS,MINMAX,NOOP); \

Loading…
Peruuta
Tallenna