My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fwretract.h 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * fwretract.h - Define firmware-based retraction interface
  25. */
  26. #include "../inc/MarlinConfigPre.h"
  27. typedef struct {
  28. float retract_length; // M207 S - G10 Retract length
  29. feedRate_t retract_feedrate_mm_s; // M207 F - G10 Retract feedrate
  30. float retract_zraise, // M207 Z - G10 Retract hop size
  31. retract_recover_extra; // M208 S - G11 Recover length
  32. feedRate_t retract_recover_feedrate_mm_s; // M208 F - G11 Recover feedrate
  33. float swap_retract_length, // M207 W - G10 Swap Retract length
  34. swap_retract_recover_extra; // M208 W - G11 Swap Recover length
  35. feedRate_t swap_retract_recover_feedrate_mm_s; // M208 R - G11 Swap Recover feedrate
  36. } fwretract_settings_t;
  37. #if ENABLED(FWRETRACT)
  38. class FWRetract {
  39. private:
  40. #if HAS_MULTI_EXTRUDER
  41. static Flags<EXTRUDERS> retracted_swap; // Which extruders are swap-retracted
  42. #endif
  43. public:
  44. static fwretract_settings_t settings;
  45. #if ENABLED(FWRETRACT_AUTORETRACT)
  46. static bool autoretract_enabled; // M209 S - Autoretract switch
  47. #else
  48. static constexpr bool autoretract_enabled = false;
  49. #endif
  50. static Flags<EXTRUDERS> retracted; // Which extruders are currently retracted
  51. static float current_retract[EXTRUDERS], // Retract value used by planner
  52. current_hop; // Hop value used by planner
  53. FWRetract() { reset(); }
  54. static void reset();
  55. static void refresh_autoretract() { retracted.reset(); }
  56. static void enable_autoretract(const bool enable) {
  57. #if ENABLED(FWRETRACT_AUTORETRACT)
  58. autoretract_enabled = enable;
  59. refresh_autoretract();
  60. #endif
  61. }
  62. static void retract(const bool retracting E_OPTARG(bool swapping=false));
  63. static void M207_report();
  64. static void M207();
  65. static void M208_report();
  66. static void M208();
  67. #if ENABLED(FWRETRACT_AUTORETRACT)
  68. static void M209_report();
  69. static void M209();
  70. #endif
  71. };
  72. extern FWRetract fwretract;
  73. #endif // FWRETRACT