Browse Source

Remove trailing whitespace

Scott Lahteine 7 years ago
parent
commit
b93be716cf

+ 1
- 1
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h View File

@@ -452,7 +452,7 @@
452 452
 
453 453
   // set the radius for the calibration probe points - max 0.8 * DELTA_PRINTABLE_RADIUS if DELTA_AUTO_CALIBRATION enabled
454 454
   #define DELTA_CALIBRATION_RADIUS (DELTA_PRINTABLE_RADIUS - 17) // mm
455
-  
455
+
456 456
   // G33 Delta Auto-Calibration (Enable EEPROM_SETTINGS to store results)
457 457
   #define DELTA_AUTO_CALIBRATION
458 458
   #if ENABLED(DELTA_AUTO_CALIBRATION)

+ 1
- 1
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h View File

@@ -459,7 +459,7 @@
459 459
 
460 460
   // set the radius for the calibration probe points - max 0.8 * DELTA_PRINTABLE_RADIUS if DELTA_AUTO_CALIBRATION enabled
461 461
   #define DELTA_CALIBRATION_RADIUS (DELTA_PRINTABLE_RADIUS - 17) // mm
462
-  
462
+
463 463
   // G33 Delta Auto-Calibration (Enable EEPROM_SETTINGS to store results)
464 464
   //#define DELTA_AUTO_CALIBRATION
465 465
   #if ENABLED(DELTA_AUTO_CALIBRATION)

+ 1
- 1
Marlin/example_configurations/delta/generic/Configuration.h View File

@@ -448,7 +448,7 @@
448 448
 
449 449
   // set the radius for the calibration probe points - max 0.8 * DELTA_PRINTABLE_RADIUS if DELTA_AUTO_CALIBRATION enabled
450 450
   #define DELTA_CALIBRATION_RADIUS (DELTA_PRINTABLE_RADIUS - 28) // mm
451
-  
451
+
452 452
   // G33 Delta Auto-Calibration (Enable EEPROM_SETTINGS to store results)
453 453
   //#define DELTA_AUTO_CALIBRATION
454 454
   #if ENABLED(DELTA_AUTO_CALIBRATION)

+ 1
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration.h View File

@@ -448,7 +448,7 @@
448 448
 
449 449
   // set the radius for the calibration probe points - max 0.8 * DELTA_PRINTABLE_RADIUS if DELTA_AUTO_CALIBRATION enabled
450 450
   #define DELTA_CALIBRATION_RADIUS (DELTA_PRINTABLE_RADIUS - 18) // mm
451
-  
451
+
452 452
   // G33 Delta Auto-Calibration (Enable EEPROM_SETTINGS to store results)
453 453
   //#define DELTA_AUTO_CALIBRATION
454 454
   #if ENABLED(DELTA_AUTO_CALIBRATION)

+ 1
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration.h View File

@@ -435,7 +435,7 @@
435 435
 
436 436
   // set the radius for the calibration probe points - max 0.8 * DELTA_PRINTABLE_RADIUS if DELTA_AUTO_CALIBRATION enabled
437 437
   #define DELTA_CALIBRATION_RADIUS (DELTA_PRINTABLE_RADIUS - 25.4) // mm
438
-  
438
+
439 439
   // G33 Delta Auto-Calibration (Enable EEPROM_SETTINGS to store results)
440 440
   //#define DELTA_AUTO_CALIBRATION
441 441
   #if ENABLED(DELTA_AUTO_CALIBRATION)

+ 1
- 1
Marlin/example_configurations/delta/kossel_xl/Configuration.h View File

@@ -453,7 +453,7 @@
453 453
 
454 454
   // set the radius for the calibration probe points - max 0.8 * DELTA_PRINTABLE_RADIUS if DELTA_AUTO_CALIBRATION enabled
455 455
   #define DELTA_CALIBRATION_RADIUS (DELTA_PRINTABLE_RADIUS - 28) // mm
456
-  
456
+
457 457
   // G33 Delta Auto-Calibration (Enable EEPROM_SETTINGS to store results)
458 458
   //#define DELTA_AUTO_CALIBRATION
459 459
   #if ENABLED(DELTA_AUTO_CALIBRATION)

+ 2
- 2
Marlin/ubl_motion.cpp View File

@@ -274,7 +274,7 @@
274 274
         if (y != start[Y_AXIS]) {
275 275
           if (!inf_normalized_flag) {
276 276
 
277
-            //on_axis_distance = y - start[Y_AXIS];                               
277
+            //on_axis_distance = y - start[Y_AXIS];
278 278
             on_axis_distance = use_x_dist ? x - start[X_AXIS] : y - start[Y_AXIS];
279 279
 
280 280
             //on_axis_distance = use_x_dist ? next_mesh_line_x - start[X_AXIS] : y - start[Y_AXIS];
@@ -283,7 +283,7 @@
283 283
             //on_axis_distance = use_x_dist ? next_mesh_line_x - start[X_AXIS] : y - start[Y_AXIS];
284 284
             //on_axis_distance = use_x_dist ? x - start[X_AXIS] : next_mesh_line_y - start[Y_AXIS];
285 285
 
286
-            e_position = start[E_AXIS] + on_axis_distance * e_normalized_dist;  
286
+            e_position = start[E_AXIS] + on_axis_distance * e_normalized_dist;
287 287
             z_position = start[Z_AXIS] + on_axis_distance * z_normalized_dist;
288 288
           }
289 289
           else {

Loading…
Cancel
Save