disable auto retract by default

This should make it safe to enable FWRETRACT by default, with
autoretract (which should now be fixed) only enabled by M209. FWRETRACT
should probably now default to enabled (to make G10/G11 and M207-209
available, without changing functionality when they are not used), but
I’ll save that for another pull request/discussion.
This commit is contained in:
whosawhatsis 2014-02-16 19:04:54 -08:00
parent 99f0e44864
commit c43838bb1e

View file

@ -231,7 +231,7 @@ int EtoPPressure=0;
#endif
#ifdef FWRETRACT
bool autoretract_enabled=true;
bool autoretract_enabled=false;
bool retracted=false;
float retract_length = RETRACT_LENGTH;
float retract_feedrate = RETRACT_FEEDRATE;