Browse Source

Drop unused G26 function

Scott Lahteine 5 years ago
parent
commit
1a1375964f
1 changed files with 0 additions and 6 deletions
  1. 0
    6
      Marlin/src/gcode/bedlevel/G26.cpp

+ 0
- 6
Marlin/src/gcode/bedlevel/G26.cpp View File

@@ -486,12 +486,6 @@ inline bool prime_nozzle() {
486 486
   return G26_OK;
487 487
 }
488 488
 
489
-float valid_trig_angle(float d) {
490
-  while (d > 360.0) d -= 360.0;
491
-  while (d < 0.0) d += 360.0;
492
-  return d;
493
-}
494
-
495 489
 /**
496 490
  * G26: Mesh Validation Pattern generation.
497 491
  *

Loading…
Cancel
Save