Skip to content

Commit

Permalink
Merge pull request #6071 from Roxy-3D/RCBugFix
Browse files Browse the repository at this point in the history
Allow FWRETRACT with UBL Enabled
  • Loading branch information
Roxy-3D authored Mar 19, 2017
2 parents 06c31da + 76c270f commit b3c4f71
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Marlin/G26_Mesh_Validation_Tool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,10 @@
Random_Deviation = 0.0,
Layer_Height = LAYER_HEIGHT;

bool retracted = false; // We keep track of the state of the nozzle to know if it
// is currently retracted or not. This allows us to be
// less careful because mis-matched retractions and un-retractions
// won't leave us in a bad state.
bool G26_retracted = false; // We keep track of the state of the nozzle to know if it
// is currently retracted or not. This allows us to be
// less careful because mis-matched retractions and un-retractions
// won't leave us in a bad state.
#if ENABLED(ULTRA_LCD)
void lcd_setstatus(const char* message, bool persist);
#endif
Expand Down Expand Up @@ -673,18 +673,18 @@
}

void retract_filament() {
if (!retracted) { // Only retract if we are not already retracted!
retracted = true;
if (!G26_retracted) { // Only retract if we are not already retracted!
G26_retracted = true;
if (G26_Debug_flag) SERIAL_ECHOLNPGM(" Decided to do retract.");
move_to(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], -1.0 * Retraction_Multiplier);
if (G26_Debug_flag) SERIAL_ECHOLNPGM(" Retraction done.");
}
}

void un_retract_filament() {
if (retracted) { // Only un-retract if we are retracted.
if (G26_retracted) { // Only un-retract if we are retracted.
move_to(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], 1.2 * Retraction_Multiplier);
retracted = false;
G26_retracted = false;
if (G26_Debug_flag) SERIAL_ECHOLNPGM(" unretract done.");
}
}
Expand Down

0 comments on commit b3c4f71

Please sign in to comment.