2017-09-08 03:40:32 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fwretract.cpp - Implement firmware-based retraction
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if ENABLED(FWRETRACT)
|
|
|
|
|
|
|
|
#include "fwretract.h"
|
|
|
|
|
2017-09-29 13:03:28 +00:00
|
|
|
FWRetract fwretract; // Single instance - this calls the constructor
|
2017-09-08 03:40:32 +00:00
|
|
|
|
|
|
|
#include "../module/motion.h"
|
2017-09-09 04:50:46 +00:00
|
|
|
#include "../module/planner.h"
|
2017-09-29 13:03:28 +00:00
|
|
|
#include "../module/stepper.h"
|
|
|
|
|
|
|
|
// private:
|
|
|
|
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
bool FWRetract::retracted_swap[EXTRUDERS]; // Which extruders are swap-retracted
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// public:
|
2017-09-08 03:40:32 +00:00
|
|
|
|
|
|
|
bool FWRetract::autoretract_enabled, // M209 S - Autoretract switch
|
2017-09-29 13:03:28 +00:00
|
|
|
FWRetract::retracted[EXTRUDERS]; // Which extruders are currently retracted
|
2017-09-08 03:40:32 +00:00
|
|
|
float FWRetract::retract_length, // M207 S - G10 Retract length
|
|
|
|
FWRetract::retract_feedrate_mm_s, // M207 F - G10 Retract feedrate
|
|
|
|
FWRetract::retract_zlift, // M207 Z - G10 Retract hop size
|
|
|
|
FWRetract::retract_recover_length, // M208 S - G11 Recover length
|
|
|
|
FWRetract::retract_recover_feedrate_mm_s, // M208 F - G11 Recover feedrate
|
|
|
|
FWRetract::swap_retract_length, // M207 W - G10 Swap Retract length
|
|
|
|
FWRetract::swap_retract_recover_length, // M208 W - G11 Swap Recover length
|
2018-03-14 06:35:30 +00:00
|
|
|
FWRetract::swap_retract_recover_feedrate_mm_s, // M208 R - G11 Swap Recover feedrate
|
|
|
|
FWRetract::hop_amount;
|
2017-09-08 03:40:32 +00:00
|
|
|
|
|
|
|
void FWRetract::reset() {
|
|
|
|
autoretract_enabled = false;
|
|
|
|
retract_length = RETRACT_LENGTH;
|
|
|
|
retract_feedrate_mm_s = RETRACT_FEEDRATE;
|
|
|
|
retract_zlift = RETRACT_ZLIFT;
|
|
|
|
retract_recover_length = RETRACT_RECOVER_LENGTH;
|
|
|
|
retract_recover_feedrate_mm_s = RETRACT_RECOVER_FEEDRATE;
|
|
|
|
swap_retract_length = RETRACT_LENGTH_SWAP;
|
|
|
|
swap_retract_recover_length = RETRACT_RECOVER_LENGTH_SWAP;
|
|
|
|
swap_retract_recover_feedrate_mm_s = RETRACT_RECOVER_FEEDRATE_SWAP;
|
2018-03-14 06:35:30 +00:00
|
|
|
hop_amount = 0.0;
|
2017-09-29 13:03:28 +00:00
|
|
|
|
|
|
|
for (uint8_t i = 0; i < EXTRUDERS; ++i) {
|
|
|
|
retracted[i] = false;
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
retracted_swap[i] = false;
|
|
|
|
#endif
|
|
|
|
}
|
2017-09-08 03:40:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retract or recover according to firmware settings
|
|
|
|
*
|
|
|
|
* This function handles retract/recover moves for G10 and G11,
|
|
|
|
* plus auto-retract moves sent from G0/G1 when E-only moves are done.
|
|
|
|
*
|
|
|
|
* To simplify the logic, doubled retract/recover moves are ignored.
|
|
|
|
*
|
|
|
|
* Note: Z lift is done transparently to the planner. Aborting
|
|
|
|
* a print between G10 and G11 may corrupt the Z position.
|
|
|
|
*
|
|
|
|
* Note: Auto-retract will apply the set Z hop in addition to any Z hop
|
|
|
|
* included in the G-code. Use M207 Z0 to to prevent double hop.
|
|
|
|
*/
|
|
|
|
void FWRetract::retract(const bool retracting
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
, bool swapping /* =false */
|
|
|
|
#endif
|
|
|
|
) {
|
|
|
|
|
2017-10-26 21:33:19 +00:00
|
|
|
static float hop_amount = 0.0; // Total amount lifted, for use in recover
|
2017-09-08 03:40:32 +00:00
|
|
|
|
2017-10-26 21:33:19 +00:00
|
|
|
// Prevent two retracts or recovers in a row
|
2017-09-08 03:40:32 +00:00
|
|
|
if (retracted[active_extruder] == retracting) return;
|
|
|
|
|
2017-10-26 21:33:19 +00:00
|
|
|
// Prevent two swap-retract or recovers in a row
|
2017-09-29 13:03:28 +00:00
|
|
|
#if EXTRUDERS > 1
|
2017-10-26 21:33:19 +00:00
|
|
|
// Allow G10 S1 only after G10
|
|
|
|
if (swapping && retracted_swap[active_extruder] == retracting) return;
|
|
|
|
// G11 priority to recover the long retract if activated
|
2017-09-29 13:03:28 +00:00
|
|
|
if (!retracting) swapping = retracted_swap[active_extruder];
|
|
|
|
#else
|
2018-05-04 00:08:49 +00:00
|
|
|
constexpr bool swapping = false;
|
2017-09-08 03:40:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* // debugging
|
|
|
|
SERIAL_ECHOLNPAIR("retracting ", retracting);
|
|
|
|
SERIAL_ECHOLNPAIR("swapping ", swapping);
|
|
|
|
SERIAL_ECHOLNPAIR("active extruder ", active_extruder);
|
|
|
|
for (uint8_t i = 0; i < EXTRUDERS; ++i) {
|
|
|
|
SERIAL_ECHOPAIR("retracted[", i);
|
|
|
|
SERIAL_ECHOLNPAIR("] ", retracted[i]);
|
2018-05-04 00:08:49 +00:00
|
|
|
#if EXTRUDERS > 1
|
|
|
|
SERIAL_ECHOPAIR("retracted_swap[", i);
|
|
|
|
SERIAL_ECHOLNPAIR("] ", retracted_swap[i]);
|
|
|
|
#endif
|
2017-09-08 03:40:32 +00:00
|
|
|
}
|
|
|
|
SERIAL_ECHOLNPAIR("current_position[z] ", current_position[Z_AXIS]);
|
2018-04-17 21:05:25 +00:00
|
|
|
SERIAL_ECHOLNPAIR("current_position[e] ", current_position[E_AXIS]);
|
2017-09-08 03:40:32 +00:00
|
|
|
SERIAL_ECHOLNPAIR("hop_amount ", hop_amount);
|
|
|
|
//*/
|
|
|
|
|
2018-05-04 00:08:49 +00:00
|
|
|
const float old_feedrate_mm_s = feedrate_mm_s,
|
|
|
|
renormalize = RECIPROCAL(planner.e_factor[active_extruder]),
|
|
|
|
base_retract = swapping ? swap_retract_length : retract_length,
|
|
|
|
old_z = current_position[Z_AXIS],
|
|
|
|
old_e = current_position[E_AXIS];
|
2017-09-08 03:40:32 +00:00
|
|
|
|
|
|
|
// The current position will be the destination for E and Z moves
|
2017-10-21 16:42:26 +00:00
|
|
|
set_destination_from_current();
|
2017-09-08 03:40:32 +00:00
|
|
|
|
2017-10-26 21:33:19 +00:00
|
|
|
if (retracting) {
|
2017-09-08 03:40:32 +00:00
|
|
|
// Retract by moving from a faux E position back to the current E position
|
|
|
|
feedrate_mm_s = retract_feedrate_mm_s;
|
2018-05-04 00:08:49 +00:00
|
|
|
destination[E_AXIS] -= base_retract * renormalize;
|
|
|
|
prepare_move_to_destination(); // set_current_to_destination
|
2017-09-08 03:40:32 +00:00
|
|
|
|
|
|
|
// Is a Z hop set, and has the hop not yet been done?
|
2018-03-29 23:42:31 +00:00
|
|
|
if (retract_zlift > 0.01 && !hop_amount) { // Apply hop only once
|
|
|
|
hop_amount += retract_zlift; // Add to the hop total (again, only once)
|
|
|
|
destination[Z_AXIS] += retract_zlift; // Raise Z by the zlift (M207 Z) amount
|
|
|
|
feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS]; // Maximum Z feedrate
|
2018-04-17 21:05:25 +00:00
|
|
|
prepare_move_to_destination(); // Raise up, set_current_to_destination
|
2017-09-08 03:40:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// If a hop was done and Z hasn't changed, undo the Z hop
|
2017-10-26 21:33:19 +00:00
|
|
|
if (hop_amount) {
|
2018-05-30 04:41:36 +00:00
|
|
|
current_position[Z_AXIS] += hop_amount; // Restore the actual Z position
|
|
|
|
SYNC_PLAN_POSITION_KINEMATIC(); // Unspoof the position planner
|
2017-10-26 21:33:19 +00:00
|
|
|
feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS]; // Z feedrate to max
|
2018-04-17 21:05:25 +00:00
|
|
|
prepare_move_to_destination(); // Lower Z, set_current_to_destination
|
2018-03-29 23:42:31 +00:00
|
|
|
hop_amount = 0.0; // Clear the hop amount
|
2018-04-01 04:01:13 +00:00
|
|
|
}
|
2017-09-08 03:40:32 +00:00
|
|
|
|
2018-05-04 00:08:49 +00:00
|
|
|
destination[E_AXIS] += (base_retract + (swapping ? swap_retract_recover_length : retract_recover_length)) * renormalize;
|
2017-09-08 03:40:32 +00:00
|
|
|
feedrate_mm_s = swapping ? swap_retract_recover_feedrate_mm_s : retract_recover_feedrate_mm_s;
|
2018-04-17 21:05:25 +00:00
|
|
|
prepare_move_to_destination(); // Recover E, set_current_to_destination
|
2017-09-08 03:40:32 +00:00
|
|
|
}
|
|
|
|
|
2017-10-26 21:33:19 +00:00
|
|
|
feedrate_mm_s = old_feedrate_mm_s; // Restore original feedrate
|
2018-05-04 00:08:49 +00:00
|
|
|
current_position[Z_AXIS] = old_z; // Restore Z and E positions
|
|
|
|
current_position[E_AXIS] = old_e;
|
|
|
|
SYNC_PLAN_POSITION_KINEMATIC(); // As if the move never took place
|
2017-09-08 03:40:32 +00:00
|
|
|
|
2017-10-26 21:33:19 +00:00
|
|
|
retracted[active_extruder] = retracting; // Active extruder now retracted / recovered
|
2017-09-08 03:40:32 +00:00
|
|
|
|
2017-10-26 21:33:19 +00:00
|
|
|
// If swap retract/recover update the retracted_swap flag too
|
2017-09-08 03:40:32 +00:00
|
|
|
#if EXTRUDERS > 1
|
|
|
|
if (swapping) retracted_swap[active_extruder] = retracting;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* // debugging
|
|
|
|
SERIAL_ECHOLNPAIR("retracting ", retracting);
|
|
|
|
SERIAL_ECHOLNPAIR("swapping ", swapping);
|
|
|
|
SERIAL_ECHOLNPAIR("active_extruder ", active_extruder);
|
|
|
|
for (uint8_t i = 0; i < EXTRUDERS; ++i) {
|
|
|
|
SERIAL_ECHOPAIR("retracted[", i);
|
|
|
|
SERIAL_ECHOLNPAIR("] ", retracted[i]);
|
2018-05-04 00:08:49 +00:00
|
|
|
#if EXTRUDERS > 1
|
|
|
|
SERIAL_ECHOPAIR("retracted_swap[", i);
|
|
|
|
SERIAL_ECHOLNPAIR("] ", retracted_swap[i]);
|
|
|
|
#endif
|
2017-09-08 03:40:32 +00:00
|
|
|
}
|
|
|
|
SERIAL_ECHOLNPAIR("current_position[z] ", current_position[Z_AXIS]);
|
2018-04-17 21:05:25 +00:00
|
|
|
SERIAL_ECHOLNPAIR("current_position[e] ", current_position[E_AXIS]);
|
2017-09-08 03:40:32 +00:00
|
|
|
SERIAL_ECHOLNPAIR("hop_amount ", hop_amount);
|
|
|
|
//*/
|
|
|
|
|
2017-10-26 21:33:19 +00:00
|
|
|
}
|
2017-09-08 03:40:32 +00:00
|
|
|
|
|
|
|
#endif // FWRETRACT
|