My Marlin configs for Fabrikator Mini and CTC i3 Pro B
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

fwretract.h 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 <http://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 EXTRUDERS > 1
  41. static bool retracted_swap[EXTRUDERS]; // 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 bool retracted[EXTRUDERS]; // 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() {
  56. LOOP_L_N(i, EXTRUDERS) retracted[i] = false;
  57. }
  58. static void enable_autoretract(const bool enable) {
  59. #if ENABLED(FWRETRACT_AUTORETRACT)
  60. autoretract_enabled = enable;
  61. refresh_autoretract();
  62. #endif
  63. }
  64. static void retract(const bool retracting
  65. #if EXTRUDERS > 1
  66. , bool swapping = false
  67. #endif
  68. );
  69. };
  70. extern FWRetract fwretract;
  71. #endif // FWRETRACT