Browse Source

Remove skew warning that could crash the planner

pull/1/head
Scott Lahteine 7 years ago
parent
commit
5fbb2f121e
  1. 1
      Marlin/src/core/language.h
  2. 2
      Marlin/src/module/planner.cpp

1
Marlin/src/core/language.h

@ -164,7 +164,6 @@
#define MSG_PROBE_Z_OFFSET "Probe Z Offset"
#define MSG_SKEW_MIN "min_skew_factor: "
#define MSG_SKEW_MAX "max_skew_factor: "
#define MSG_SKEW_WARN "WARNING: Skew compensation disabled (outside MIN/MAX limits)"
#define MSG_FILAMENT_RUNOUT_SENSOR "filament: "
#define MSG_ERR_MATERIAL_INDEX "M145 S<index> out of range (0-1)"
#define MSG_ERR_M355_NONE "No case light"

2
Marlin/src/module/planner.cpp

@ -588,8 +588,6 @@ void Planner::calculate_volumetric_multipliers() {
rx = temprx;
ry = tempry;
}
else
SERIAL_ECHOLN(MSG_SKEW_WARN);
}
#endif

Loading…
Cancel
Save