Patch broken M404

This commit is contained in:
Scott Lahteine 2016-03-29 20:43:41 -07:00
parent 1a79b13b7a
commit 507aef055f

View File

@ -5443,15 +5443,13 @@ inline void gcode_M400() { st_synchronize(); }
* M404: Display or set the nominal filament width (3mm, 1.75mm ) W<3.0> * M404: Display or set the nominal filament width (3mm, 1.75mm ) W<3.0>
*/ */
inline void gcode_M404() { inline void gcode_M404() {
#if HAS_FILWIDTH if (code_seen('W')) {
if (code_seen('W')) { filament_width_nominal = code_value();
filament_width_nominal = code_value(); }
} else {
else { SERIAL_PROTOCOLPGM("Filament dia (nominal mm):");
SERIAL_PROTOCOLPGM("Filament dia (nominal mm):"); SERIAL_PROTOCOLLN(filament_width_nominal);
SERIAL_PROTOCOLLN(filament_width_nominal); }
}
#endif
} }
/** /**