Browse Source

Drop unused G26 function

pull/1/head
Scott Lahteine 5 years ago
parent
commit
1a1375964f
  1. 6
      Marlin/src/gcode/bedlevel/G26.cpp

6
Marlin/src/gcode/bedlevel/G26.cpp

@ -486,12 +486,6 @@ inline bool prime_nozzle() {
return G26_OK;
}
float valid_trig_angle(float d) {
while (d > 360.0) d -= 360.0;
while (d < 0.0) d += 360.0;
return d;
}
/**
* G26: Mesh Validation Pattern generation.
*

Loading…
Cancel
Save