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.

Marlin.h 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  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. #define enable_e4() NOOP
  104. #define disable_e4() NOOP
  105. #else // !MIXING_EXTRUDER
  106. #if HAS_E0_ENABLE
  107. #define enable_e0() E0_ENABLE_WRITE( E_ENABLE_ON)
  108. #define disable_e0() E0_ENABLE_WRITE(!E_ENABLE_ON)
  109. #else
  110. #define enable_e0() NOOP
  111. #define disable_e0() NOOP
  112. #endif
  113. #if E_STEPPERS > 1 && HAS_E1_ENABLE
  114. #define enable_e1() E1_ENABLE_WRITE( E_ENABLE_ON)
  115. #define disable_e1() E1_ENABLE_WRITE(!E_ENABLE_ON)
  116. #else
  117. #define enable_e1() NOOP
  118. #define disable_e1() NOOP
  119. #endif
  120. #if E_STEPPERS > 2 && HAS_E2_ENABLE
  121. #define enable_e2() E2_ENABLE_WRITE( E_ENABLE_ON)
  122. #define disable_e2() E2_ENABLE_WRITE(!E_ENABLE_ON)
  123. #else
  124. #define enable_e2() NOOP
  125. #define disable_e2() NOOP
  126. #endif
  127. #if E_STEPPERS > 3 && HAS_E3_ENABLE
  128. #define enable_e3() E3_ENABLE_WRITE( E_ENABLE_ON)
  129. #define disable_e3() E3_ENABLE_WRITE(!E_ENABLE_ON)
  130. #else
  131. #define enable_e3() NOOP
  132. #define disable_e3() NOOP
  133. #endif
  134. #if E_STEPPERS > 4 && HAS_E4_ENABLE
  135. #define enable_e4() E4_ENABLE_WRITE( E_ENABLE_ON)
  136. #define disable_e4() E4_ENABLE_WRITE(!E_ENABLE_ON)
  137. #else
  138. #define enable_e4() NOOP
  139. #define disable_e4() NOOP
  140. #endif
  141. #endif // !MIXING_EXTRUDER
  142. #if ENABLED(G38_PROBE_TARGET)
  143. extern bool G38_move, // flag to tell the interrupt handler that a G38 command is being run
  144. G38_endstop_hit; // flag from the interrupt handler to indicate if the endstop went active
  145. #endif
  146. /**
  147. * The axis order in all axis related arrays is X, Y, Z, E
  148. */
  149. #define _AXIS(AXIS) AXIS ##_AXIS
  150. void enable_all_steppers();
  151. void disable_e_steppers();
  152. void disable_all_steppers();
  153. void FlushSerialRequestResend();
  154. void ok_to_send();
  155. void kill(const char*);
  156. void quickstop_stepper();
  157. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  158. void handle_filament_runout();
  159. #endif
  160. extern uint8_t marlin_debug_flags;
  161. #define DEBUGGING(F) (marlin_debug_flags & (DEBUG_## F))
  162. extern bool Running;
  163. inline bool IsRunning() { return Running; }
  164. inline bool IsStopped() { return !Running; }
  165. 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.
  166. void enqueue_and_echo_commands_P(const char * const cmd); // Set one or more commands to be prioritized over the next Serial/SD command.
  167. void clear_command_queue();
  168. extern millis_t previous_cmd_ms;
  169. inline void refresh_cmd_timeout() { previous_cmd_ms = millis(); }
  170. #if ENABLED(FAST_PWM_FAN)
  171. void setPwmFrequency(uint8_t pin, int val);
  172. #endif
  173. /**
  174. * Feedrate scaling and conversion
  175. */
  176. extern int feedrate_percentage;
  177. #define MMM_TO_MMS(MM_M) ((MM_M)/60.0)
  178. #define MMS_TO_MMM(MM_S) ((MM_S)*60.0)
  179. #define MMS_SCALED(MM_S) ((MM_S)*feedrate_percentage*0.01)
  180. extern bool axis_relative_modes[];
  181. extern bool volumetric_enabled;
  182. extern int flow_percentage[EXTRUDERS]; // Extrusion factor for each extruder
  183. 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.
  184. extern float volumetric_multiplier[EXTRUDERS]; // reciprocal of cross-sectional area of filament (in square millimeters), stored this way to reduce computational burden in planner
  185. extern bool axis_known_position[XYZ]; // axis[n].is_known
  186. extern bool axis_homed[XYZ]; // axis[n].is_homed
  187. extern volatile bool wait_for_heatup;
  188. #if ENABLED(EMERGENCY_PARSER) || ENABLED(ULTIPANEL)
  189. extern volatile bool wait_for_user;
  190. #endif
  191. extern float current_position[NUM_AXIS];
  192. // Workspace offsets
  193. #if DISABLED(NO_WORKSPACE_OFFSETS)
  194. extern float position_shift[XYZ],
  195. home_offset[XYZ],
  196. workspace_offset[XYZ];
  197. #define LOGICAL_POSITION(POS, AXIS) ((POS) + workspace_offset[AXIS])
  198. #define RAW_POSITION(POS, AXIS) ((POS) - workspace_offset[AXIS])
  199. #else
  200. #define LOGICAL_POSITION(POS, AXIS) (POS)
  201. #define RAW_POSITION(POS, AXIS) (POS)
  202. #endif
  203. #define LOGICAL_X_POSITION(POS) LOGICAL_POSITION(POS, X_AXIS)
  204. #define LOGICAL_Y_POSITION(POS) LOGICAL_POSITION(POS, Y_AXIS)
  205. #define LOGICAL_Z_POSITION(POS) LOGICAL_POSITION(POS, Z_AXIS)
  206. #define RAW_X_POSITION(POS) RAW_POSITION(POS, X_AXIS)
  207. #define RAW_Y_POSITION(POS) RAW_POSITION(POS, Y_AXIS)
  208. #define RAW_Z_POSITION(POS) RAW_POSITION(POS, Z_AXIS)
  209. #define RAW_CURRENT_POSITION(AXIS) RAW_POSITION(current_position[AXIS], AXIS)
  210. #if HOTENDS > 1
  211. extern float hotend_offset[XYZ][HOTENDS];
  212. #endif
  213. // Software Endstops
  214. extern float soft_endstop_min[XYZ];
  215. extern float soft_endstop_max[XYZ];
  216. #if HAS_SOFTWARE_ENDSTOPS
  217. extern bool soft_endstops_enabled;
  218. void clamp_to_software_endstops(float target[XYZ]);
  219. #else
  220. #define soft_endstops_enabled false
  221. #define clamp_to_software_endstops(x) NOOP
  222. #endif
  223. #if DISABLED(NO_WORKSPACE_OFFSETS) || ENABLED(DUAL_X_CARRIAGE) || ENABLED(DELTA)
  224. void update_software_endstops(const AxisEnum axis);
  225. #endif
  226. // GCode support for external objects
  227. bool code_seen(char);
  228. int code_value_int();
  229. float code_value_temp_abs();
  230. float code_value_temp_diff();
  231. #if IS_KINEMATIC
  232. extern float delta[ABC];
  233. void inverse_kinematics(const float logical[XYZ]);
  234. #endif
  235. #if ENABLED(DELTA)
  236. extern float endstop_adj[ABC],
  237. delta_radius,
  238. delta_diagonal_rod,
  239. delta_segments_per_second,
  240. delta_diagonal_rod_trim[ABC],
  241. delta_tower_angle_trim[ABC],
  242. delta_clip_start_height;
  243. void recalc_delta_settings(float radius, float diagonal_rod);
  244. #elif IS_SCARA
  245. void forward_kinematics_SCARA(const float &a, const float &b);
  246. #endif
  247. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  248. extern int bilinear_grid_spacing[2], bilinear_start[2];
  249. extern float bed_level_grid[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
  250. float bilinear_z_offset(float logical[XYZ]);
  251. void set_bed_leveling_enabled(bool enable=true);
  252. #endif
  253. #if ENABLED(AUTO_BED_LEVELING_UBL)
  254. typedef struct { double A, B, D; } linear_fit;
  255. linear_fit* lsf_linear_fit(double x[], double y[], double z[], const int);
  256. #endif
  257. #if PLANNER_LEVELING
  258. void reset_bed_level();
  259. #endif
  260. #if ENABLED(Z_DUAL_ENDSTOPS)
  261. extern float z_endstop_adj;
  262. #endif
  263. #if HAS_BED_PROBE
  264. extern float zprobe_zoffset;
  265. #define DEPLOY_PROBE() set_probe_deployed(true)
  266. #define STOW_PROBE() set_probe_deployed(false)
  267. #endif
  268. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  269. extern MarlinBusyState busy_state;
  270. #define KEEPALIVE_STATE(n) do{ busy_state = n; }while(0)
  271. #else
  272. #define KEEPALIVE_STATE(n) NOOP
  273. #endif
  274. #if FAN_COUNT > 0
  275. extern int fanSpeeds[FAN_COUNT];
  276. #endif
  277. #if ENABLED(BARICUDA)
  278. extern int baricuda_valve_pressure;
  279. extern int baricuda_e_to_p_pressure;
  280. #endif
  281. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  282. extern bool filament_sensor; // Flag that filament sensor readings should control extrusion
  283. extern float filament_width_nominal, // Theoretical filament diameter i.e., 3.00 or 1.75
  284. filament_width_meas; // Measured filament diameter
  285. extern int8_t measurement_delay[]; // Ring buffer to delay measurement
  286. extern int filwidth_delay_index[2]; // Ring buffer indexes. Used by planner, temperature, and main code
  287. extern int meas_delay_cm; // Delay distance
  288. #endif
  289. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  290. extern FilamentChangeMenuResponse filament_change_menu_response;
  291. #endif
  292. #if ENABLED(PID_EXTRUSION_SCALING)
  293. extern int lpq_len;
  294. #endif
  295. #if ENABLED(FWRETRACT)
  296. extern bool autoretract_enabled;
  297. extern bool retracted[EXTRUDERS]; // extruder[n].retracted
  298. extern float retract_length, retract_length_swap, retract_feedrate_mm_s, retract_zlift;
  299. extern float retract_recover_length, retract_recover_length_swap, retract_recover_feedrate_mm_s;
  300. #endif
  301. // Print job timer
  302. #if ENABLED(PRINTCOUNTER)
  303. extern PrintCounter print_job_timer;
  304. #else
  305. extern Stopwatch print_job_timer;
  306. #endif
  307. // Handling multiple extruders pins
  308. extern uint8_t active_extruder;
  309. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  310. void print_heaterstates();
  311. #endif
  312. #if ENABLED(MIXING_EXTRUDER)
  313. extern float mixing_factor[MIXING_STEPPERS];
  314. #endif
  315. void calculate_volumetric_multipliers();
  316. /**
  317. * Blocking movement and shorthand functions
  318. */
  319. void do_blocking_move_to(const float &x, const float &y, const float &z, const float &fr_mm_s=0.0);
  320. void do_blocking_move_to_x(const float &x, const float &fr_mm_s=0.0);
  321. void do_blocking_move_to_z(const float &z, const float &fr_mm_s=0.0);
  322. void do_blocking_move_to_xy(const float &x, const float &y, const float &fr_mm_s=0.0);
  323. #if ENABLED(Z_PROBE_ALLEN_KEY) || ENABLED(Z_PROBE_SLED) || HAS_PROBING_PROCEDURE || HOTENDS > 1 || ENABLED(NOZZLE_CLEAN_FEATURE) || ENABLED(NOZZLE_PARK_FEATURE)
  324. bool axis_unhomed_error(const bool x, const bool y, const bool z);
  325. #endif
  326. #endif //MARLIN_H