My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Marlin.h 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 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. #ifndef MARLIN_H
  23. #define MARLIN_H
  24. #include <math.h>
  25. #include <stdio.h>
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include <inttypes.h>
  29. #include <util/delay.h>
  30. #include <avr/pgmspace.h>
  31. #include <avr/eeprom.h>
  32. #include <avr/interrupt.h>
  33. #include "MarlinConfig.h"
  34. #include "enum.h"
  35. #include "types.h"
  36. #include "fastio.h"
  37. #include "utility.h"
  38. #include "serial.h"
  39. #if ENABLED(PRINTCOUNTER)
  40. #include "printcounter.h"
  41. #else
  42. #include "stopwatch.h"
  43. #endif
  44. void idle(
  45. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  46. bool no_stepper_sleep = false // pass true to keep steppers from disabling on timeout
  47. #endif
  48. );
  49. void manage_inactivity(bool ignore_stepper_queue = false);
  50. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  51. extern bool extruder_duplication_enabled;
  52. #endif
  53. #if HAS_X2_ENABLE
  54. #define enable_x() do{ X_ENABLE_WRITE( X_ENABLE_ON); X2_ENABLE_WRITE( X_ENABLE_ON); }while(0)
  55. #define disable_x() do{ X_ENABLE_WRITE(!X_ENABLE_ON); X2_ENABLE_WRITE(!X_ENABLE_ON); axis_known_position[X_AXIS] = false; }while(0)
  56. #elif HAS_X_ENABLE
  57. #define enable_x() X_ENABLE_WRITE( X_ENABLE_ON)
  58. #define disable_x() do{ X_ENABLE_WRITE(!X_ENABLE_ON); axis_known_position[X_AXIS] = false; }while(0)
  59. #else
  60. #define enable_x() NOOP
  61. #define disable_x() NOOP
  62. #endif
  63. #if HAS_Y2_ENABLE
  64. #define enable_y() do{ Y_ENABLE_WRITE( Y_ENABLE_ON); Y2_ENABLE_WRITE(Y_ENABLE_ON); }while(0)
  65. #define disable_y() do{ Y_ENABLE_WRITE(!Y_ENABLE_ON); Y2_ENABLE_WRITE(!Y_ENABLE_ON); axis_known_position[Y_AXIS] = false; }while(0)
  66. #elif HAS_Y_ENABLE
  67. #define enable_y() Y_ENABLE_WRITE( Y_ENABLE_ON)
  68. #define disable_y() do{ Y_ENABLE_WRITE(!Y_ENABLE_ON); axis_known_position[Y_AXIS] = false; }while(0)
  69. #else
  70. #define enable_y() NOOP
  71. #define disable_y() NOOP
  72. #endif
  73. #if HAS_Z2_ENABLE
  74. #define enable_z() do{ Z_ENABLE_WRITE( Z_ENABLE_ON); Z2_ENABLE_WRITE(Z_ENABLE_ON); }while(0)
  75. #define disable_z() do{ Z_ENABLE_WRITE(!Z_ENABLE_ON); Z2_ENABLE_WRITE(!Z_ENABLE_ON); axis_known_position[Z_AXIS] = false; }while(0)
  76. #elif HAS_Z_ENABLE
  77. #define enable_z() Z_ENABLE_WRITE( Z_ENABLE_ON)
  78. #define disable_z() do{ Z_ENABLE_WRITE(!Z_ENABLE_ON); axis_known_position[Z_AXIS] = false; }while(0)
  79. #else
  80. #define enable_z() NOOP
  81. #define disable_z() NOOP
  82. #endif
  83. #if ENABLED(MIXING_EXTRUDER)
  84. /**
  85. * Mixing steppers synchronize their enable (and direction) together
  86. */
  87. #if MIXING_STEPPERS > 3
  88. #define enable_e0() { E0_ENABLE_WRITE( E_ENABLE_ON); E1_ENABLE_WRITE( E_ENABLE_ON); E2_ENABLE_WRITE( E_ENABLE_ON); E3_ENABLE_WRITE( E_ENABLE_ON); }
  89. #define disable_e0() { E0_ENABLE_WRITE(!E_ENABLE_ON); E1_ENABLE_WRITE(!E_ENABLE_ON); E2_ENABLE_WRITE(!E_ENABLE_ON); E3_ENABLE_WRITE(!E_ENABLE_ON); }
  90. #elif MIXING_STEPPERS > 2
  91. #define enable_e0() { E0_ENABLE_WRITE( E_ENABLE_ON); E1_ENABLE_WRITE( E_ENABLE_ON); E2_ENABLE_WRITE( E_ENABLE_ON); }
  92. #define disable_e0() { E0_ENABLE_WRITE(!E_ENABLE_ON); E1_ENABLE_WRITE(!E_ENABLE_ON); E2_ENABLE_WRITE(!E_ENABLE_ON); }
  93. #else
  94. #define enable_e0() { E0_ENABLE_WRITE( E_ENABLE_ON); E1_ENABLE_WRITE( E_ENABLE_ON); }
  95. #define disable_e0() { E0_ENABLE_WRITE(!E_ENABLE_ON); E1_ENABLE_WRITE(!E_ENABLE_ON); }
  96. #endif
  97. #define enable_e1() NOOP
  98. #define disable_e1() NOOP
  99. #define enable_e2() NOOP
  100. #define disable_e2() NOOP
  101. #define enable_e3() NOOP
  102. #define disable_e3() NOOP
  103. #else // !MIXING_EXTRUDER
  104. #if HAS_E0_ENABLE
  105. #define enable_e0() E0_ENABLE_WRITE( E_ENABLE_ON)
  106. #define disable_e0() E0_ENABLE_WRITE(!E_ENABLE_ON)
  107. #else
  108. #define enable_e0() NOOP
  109. #define disable_e0() NOOP
  110. #endif
  111. #if E_STEPPERS > 1 && HAS_E1_ENABLE
  112. #define enable_e1() E1_ENABLE_WRITE( E_ENABLE_ON)
  113. #define disable_e1() E1_ENABLE_WRITE(!E_ENABLE_ON)
  114. #else
  115. #define enable_e1() NOOP
  116. #define disable_e1() NOOP
  117. #endif
  118. #if E_STEPPERS > 2 && HAS_E2_ENABLE
  119. #define enable_e2() E2_ENABLE_WRITE( E_ENABLE_ON)
  120. #define disable_e2() E2_ENABLE_WRITE(!E_ENABLE_ON)
  121. #else
  122. #define enable_e2() NOOP
  123. #define disable_e2() NOOP
  124. #endif
  125. #if E_STEPPERS > 3 && HAS_E3_ENABLE
  126. #define enable_e3() E3_ENABLE_WRITE( E_ENABLE_ON)
  127. #define disable_e3() E3_ENABLE_WRITE(!E_ENABLE_ON)
  128. #else
  129. #define enable_e3() NOOP
  130. #define disable_e3() NOOP
  131. #endif
  132. #endif // !MIXING_EXTRUDER
  133. #if ENABLED(G38_PROBE_TARGET)
  134. extern bool G38_move, // flag to tell the interrupt handler that a G38 command is being run
  135. G38_endstop_hit; // flag from the interrupt handler to indicate if the endstop went active
  136. #endif
  137. /**
  138. * The axis order in all axis related arrays is X, Y, Z, E
  139. */
  140. #define _AXIS(AXIS) AXIS ##_AXIS
  141. void enable_all_steppers();
  142. void disable_e_steppers();
  143. void disable_all_steppers();
  144. void FlushSerialRequestResend();
  145. void ok_to_send();
  146. void kill(const char*);
  147. void quickstop_stepper();
  148. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  149. void handle_filament_runout();
  150. #endif
  151. extern uint8_t marlin_debug_flags;
  152. #define DEBUGGING(F) (marlin_debug_flags & (DEBUG_## F))
  153. extern bool Running;
  154. inline bool IsRunning() { return Running; }
  155. inline bool IsStopped() { return !Running; }
  156. bool enqueue_and_echo_command(const char* cmd, bool say_ok=false); // Add a single command to the end of the buffer. Return false on failure.
  157. void enqueue_and_echo_commands_P(const char * const cmd); // Set one or more commands to be prioritized over the next Serial/SD command.
  158. void clear_command_queue();
  159. extern millis_t previous_cmd_ms;
  160. inline void refresh_cmd_timeout() { previous_cmd_ms = millis(); }
  161. #if ENABLED(FAST_PWM_FAN)
  162. void setPwmFrequency(uint8_t pin, int val);
  163. #endif
  164. /**
  165. * Feedrate scaling and conversion
  166. */
  167. extern int feedrate_percentage;
  168. #define MMM_TO_MMS(MM_M) ((MM_M)/60.0)
  169. #define MMS_TO_MMM(MM_S) ((MM_S)*60.0)
  170. #define MMS_SCALED(MM_S) ((MM_S)*feedrate_percentage*0.01)
  171. extern bool axis_relative_modes[];
  172. extern bool volumetric_enabled;
  173. extern int flow_percentage[EXTRUDERS]; // Extrusion factor for each extruder
  174. extern float filament_size[EXTRUDERS]; // cross-sectional area of filament (in millimeters), typically around 1.75 or 2.85, 0 disables the volumetric calculations for the extruder.
  175. extern float volumetric_multiplier[EXTRUDERS]; // reciprocal of cross-sectional area of filament (in square millimeters), stored this way to reduce computational burden in planner
  176. extern bool axis_known_position[XYZ]; // axis[n].is_known
  177. extern bool axis_homed[XYZ]; // axis[n].is_homed
  178. extern volatile bool wait_for_heatup;
  179. #if ENABLED(EMERGENCY_PARSER) || ENABLED(ULTIPANEL)
  180. extern volatile bool wait_for_user;
  181. #endif
  182. extern float current_position[NUM_AXIS];
  183. // Workspace offsets
  184. #if DISABLED(NO_WORKSPACE_OFFSETS)
  185. extern float position_shift[XYZ],
  186. home_offset[XYZ],
  187. workspace_offset[XYZ];
  188. #define LOGICAL_POSITION(POS, AXIS) ((POS) + workspace_offset[AXIS])
  189. #define RAW_POSITION(POS, AXIS) ((POS) - workspace_offset[AXIS])
  190. #else
  191. #define LOGICAL_POSITION(POS, AXIS) (POS)
  192. #define RAW_POSITION(POS, AXIS) (POS)
  193. #endif
  194. #define LOGICAL_X_POSITION(POS) LOGICAL_POSITION(POS, X_AXIS)
  195. #define LOGICAL_Y_POSITION(POS) LOGICAL_POSITION(POS, Y_AXIS)
  196. #define LOGICAL_Z_POSITION(POS) LOGICAL_POSITION(POS, Z_AXIS)
  197. #define RAW_X_POSITION(POS) RAW_POSITION(POS, X_AXIS)
  198. #define RAW_Y_POSITION(POS) RAW_POSITION(POS, Y_AXIS)
  199. #define RAW_Z_POSITION(POS) RAW_POSITION(POS, Z_AXIS)
  200. #define RAW_CURRENT_POSITION(AXIS) RAW_POSITION(current_position[AXIS], AXIS)
  201. #if HOTENDS > 1
  202. extern float hotend_offset[XYZ][HOTENDS];
  203. #endif
  204. // Software Endstops
  205. extern float soft_endstop_min[XYZ];
  206. extern float soft_endstop_max[XYZ];
  207. #if HAS_SOFTWARE_ENDSTOPS
  208. extern bool soft_endstops_enabled;
  209. void clamp_to_software_endstops(float target[XYZ]);
  210. #else
  211. #define soft_endstops_enabled false
  212. #define clamp_to_software_endstops(x) NOOP
  213. #endif
  214. #if DISABLED(NO_WORKSPACE_OFFSETS) || ENABLED(DUAL_X_CARRIAGE) || ENABLED(DELTA)
  215. void update_software_endstops(const AxisEnum axis);
  216. #endif
  217. // GCode support for external objects
  218. bool code_seen(char);
  219. int code_value_int();
  220. float code_value_temp_abs();
  221. float code_value_temp_diff();
  222. #if IS_KINEMATIC
  223. extern float delta[ABC];
  224. void inverse_kinematics(const float logical[XYZ]);
  225. #endif
  226. #if ENABLED(DELTA)
  227. extern float endstop_adj[ABC],
  228. delta_radius,
  229. delta_diagonal_rod,
  230. delta_segments_per_second,
  231. delta_diagonal_rod_trim[ABC],
  232. delta_tower_angle_trim[ABC],
  233. delta_clip_start_height;
  234. void recalc_delta_settings(float radius, float diagonal_rod);
  235. #elif IS_SCARA
  236. void forward_kinematics_SCARA(const float &a, const float &b);
  237. #endif
  238. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  239. extern int bilinear_grid_spacing[2], bilinear_start[2];
  240. extern float bed_level_grid[ABL_GRID_MAX_POINTS_X][ABL_GRID_MAX_POINTS_Y];
  241. float bilinear_z_offset(float logical[XYZ]);
  242. void set_bed_leveling_enabled(bool enable=true);
  243. #endif
  244. #if PLANNER_LEVELING
  245. void reset_bed_level();
  246. #endif
  247. #if ENABLED(Z_DUAL_ENDSTOPS)
  248. extern float z_endstop_adj;
  249. #endif
  250. #if HAS_BED_PROBE
  251. extern float zprobe_zoffset;
  252. #endif
  253. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  254. extern MarlinBusyState busy_state;
  255. #define KEEPALIVE_STATE(n) do{ busy_state = n; }while(0)
  256. #else
  257. #define KEEPALIVE_STATE(n) NOOP
  258. #endif
  259. #if FAN_COUNT > 0
  260. extern int fanSpeeds[FAN_COUNT];
  261. #endif
  262. #if ENABLED(BARICUDA)
  263. extern int baricuda_valve_pressure;
  264. extern int baricuda_e_to_p_pressure;
  265. #endif
  266. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  267. extern bool filament_sensor; // Flag that filament sensor readings should control extrusion
  268. extern float filament_width_nominal, // Theoretical filament diameter i.e., 3.00 or 1.75
  269. filament_width_meas; // Measured filament diameter
  270. extern int8_t measurement_delay[]; // Ring buffer to delay measurement
  271. extern int filwidth_delay_index[2]; // Ring buffer indexes. Used by planner, temperature, and main code
  272. extern int meas_delay_cm; // Delay distance
  273. #endif
  274. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  275. extern FilamentChangeMenuResponse filament_change_menu_response;
  276. #endif
  277. #if ENABLED(PID_EXTRUSION_SCALING)
  278. extern int lpq_len;
  279. #endif
  280. #if ENABLED(FWRETRACT)
  281. extern bool autoretract_enabled;
  282. extern bool retracted[EXTRUDERS]; // extruder[n].retracted
  283. extern float retract_length, retract_length_swap, retract_feedrate_mm_s, retract_zlift;
  284. extern float retract_recover_length, retract_recover_length_swap, retract_recover_feedrate_mm_s;
  285. #endif
  286. // Print job timer
  287. #if ENABLED(PRINTCOUNTER)
  288. extern PrintCounter print_job_timer;
  289. #else
  290. extern Stopwatch print_job_timer;
  291. #endif
  292. // Handling multiple extruders pins
  293. extern uint8_t active_extruder;
  294. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  295. void print_heaterstates();
  296. #endif
  297. #if ENABLED(MIXING_EXTRUDER)
  298. extern float mixing_factor[MIXING_STEPPERS];
  299. #endif
  300. void calculate_volumetric_multipliers();
  301. /**
  302. * Blocking movement and shorthand functions
  303. */
  304. void do_blocking_move_to(const float &x, const float &y, const float &z, const float &fr_mm_s=0.0);
  305. void do_blocking_move_to_x(const float &x, const float &fr_mm_s=0.0);
  306. void do_blocking_move_to_z(const float &z, const float &fr_mm_s=0.0);
  307. void do_blocking_move_to_xy(const float &x, const float &y, const float &fr_mm_s=0.0);
  308. #if ENABLED(Z_PROBE_ALLEN_KEY) || ENABLED(Z_PROBE_SLED) || HAS_PROBING_PROCEDURE || HOTENDS > 1 || ENABLED(NOZZLE_CLEAN_FEATURE) || ENABLED(NOZZLE_PARK_FEATURE)
  309. bool axis_unhomed_error(const bool x, const bool y, const bool z);
  310. #endif
  311. #endif //MARLIN_H