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 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  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. #define FORCE_INLINE __attribute__((always_inline)) inline
  25. /**
  26. * Compiler warning on unused variable.
  27. */
  28. #define UNUSED(x) (void) (x)
  29. #include <math.h>
  30. #include <stdio.h>
  31. #include <stdlib.h>
  32. #include <string.h>
  33. #include <inttypes.h>
  34. #include <util/delay.h>
  35. #include <avr/pgmspace.h>
  36. #include <avr/eeprom.h>
  37. #include <avr/interrupt.h>
  38. #include "fastio.h"
  39. #include "Configuration.h"
  40. #include "pins.h"
  41. #include "utility.h"
  42. #ifndef SANITYCHECK_H
  43. #error "Your Configuration.h and Configuration_adv.h files are outdated!"
  44. #endif
  45. #include "Arduino.h"
  46. typedef unsigned long millis_t;
  47. #ifdef USBCON
  48. #include "HardwareSerial.h"
  49. #endif
  50. #include "MarlinSerial.h"
  51. #include "WString.h"
  52. #if ENABLED(PRINTCOUNTER)
  53. #include "printcounter.h"
  54. #else
  55. #include "stopwatch.h"
  56. #endif
  57. #ifdef USBCON
  58. #if ENABLED(BLUETOOTH)
  59. #define MYSERIAL bluetoothSerial
  60. #else
  61. #define MYSERIAL Serial
  62. #endif // BLUETOOTH
  63. #else
  64. #define MYSERIAL customizedSerial
  65. #endif
  66. #define SERIAL_CHAR(x) MYSERIAL.write(x)
  67. #define SERIAL_EOL SERIAL_CHAR('\n')
  68. #define SERIAL_PROTOCOLCHAR(x) SERIAL_CHAR(x)
  69. #define SERIAL_PROTOCOL(x) MYSERIAL.print(x)
  70. #define SERIAL_PROTOCOL_F(x,y) MYSERIAL.print(x,y)
  71. #define SERIAL_PROTOCOLPGM(x) serialprintPGM(PSTR(x))
  72. #define SERIAL_PROTOCOLLN(x) do{ MYSERIAL.print(x); SERIAL_EOL; }while(0)
  73. #define SERIAL_PROTOCOLLNPGM(x) do{ serialprintPGM(PSTR(x "\n")); }while(0)
  74. #define SERIAL_PROTOCOLPAIR(name, value) SERIAL_ECHOPAIR(name, value)
  75. extern const char errormagic[] PROGMEM;
  76. extern const char echomagic[] PROGMEM;
  77. #define SERIAL_ERROR_START serialprintPGM(errormagic)
  78. #define SERIAL_ERROR(x) SERIAL_PROTOCOL(x)
  79. #define SERIAL_ERRORPGM(x) SERIAL_PROTOCOLPGM(x)
  80. #define SERIAL_ERRORLN(x) SERIAL_PROTOCOLLN(x)
  81. #define SERIAL_ERRORLNPGM(x) SERIAL_PROTOCOLLNPGM(x)
  82. #define SERIAL_ECHO_START serialprintPGM(echomagic)
  83. #define SERIAL_ECHO(x) SERIAL_PROTOCOL(x)
  84. #define SERIAL_ECHOPGM(x) SERIAL_PROTOCOLPGM(x)
  85. #define SERIAL_ECHOLN(x) SERIAL_PROTOCOLLN(x)
  86. #define SERIAL_ECHOLNPGM(x) SERIAL_PROTOCOLLNPGM(x)
  87. #define SERIAL_ECHOPAIR(name,value) (serial_echopair_P(PSTR(name),(value)))
  88. void serial_echopair_P(const char* s_P, char v);
  89. void serial_echopair_P(const char* s_P, int v);
  90. void serial_echopair_P(const char* s_P, long v);
  91. void serial_echopair_P(const char* s_P, float v);
  92. void serial_echopair_P(const char* s_P, double v);
  93. void serial_echopair_P(const char* s_P, unsigned long v);
  94. FORCE_INLINE void serial_echopair_P(const char* s_P, bool v) { serial_echopair_P(s_P, (int)v); }
  95. FORCE_INLINE void serial_echopair_P(const char* s_P, void *v) { serial_echopair_P(s_P, (unsigned long)v); }
  96. // Things to write to serial from Program memory. Saves 400 to 2k of RAM.
  97. FORCE_INLINE void serialprintPGM(const char* str) {
  98. char ch;
  99. while ((ch = pgm_read_byte(str))) {
  100. MYSERIAL.write(ch);
  101. str++;
  102. }
  103. }
  104. void idle(
  105. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  106. bool no_stepper_sleep = false // pass true to keep steppers from disabling on timeout
  107. #endif
  108. );
  109. void manage_inactivity(bool ignore_stepper_queue = false);
  110. #if ENABLED(DUAL_X_CARRIAGE)
  111. extern bool extruder_duplication_enabled;
  112. #endif
  113. #if HAS_X2_ENABLE
  114. #define enable_x() do{ X_ENABLE_WRITE( X_ENABLE_ON); X2_ENABLE_WRITE( X_ENABLE_ON); }while(0)
  115. #define disable_x() do{ X_ENABLE_WRITE(!X_ENABLE_ON); X2_ENABLE_WRITE(!X_ENABLE_ON); axis_known_position[X_AXIS] = false; }while(0)
  116. #elif HAS_X_ENABLE
  117. #define enable_x() X_ENABLE_WRITE( X_ENABLE_ON)
  118. #define disable_x() do{ X_ENABLE_WRITE(!X_ENABLE_ON); axis_known_position[X_AXIS] = false; }while(0)
  119. #else
  120. #define enable_x() NOOP
  121. #define disable_x() NOOP
  122. #endif
  123. #if HAS_Y2_ENABLE
  124. #define enable_y() do{ Y_ENABLE_WRITE( Y_ENABLE_ON); Y2_ENABLE_WRITE(Y_ENABLE_ON); }while(0)
  125. #define disable_y() do{ Y_ENABLE_WRITE(!Y_ENABLE_ON); Y2_ENABLE_WRITE(!Y_ENABLE_ON); axis_known_position[Y_AXIS] = false; }while(0)
  126. #elif HAS_Y_ENABLE
  127. #define enable_y() Y_ENABLE_WRITE( Y_ENABLE_ON)
  128. #define disable_y() do{ Y_ENABLE_WRITE(!Y_ENABLE_ON); axis_known_position[Y_AXIS] = false; }while(0)
  129. #else
  130. #define enable_y() NOOP
  131. #define disable_y() NOOP
  132. #endif
  133. #if HAS_Z2_ENABLE
  134. #define enable_z() do{ Z_ENABLE_WRITE( Z_ENABLE_ON); Z2_ENABLE_WRITE(Z_ENABLE_ON); }while(0)
  135. #define disable_z() do{ Z_ENABLE_WRITE(!Z_ENABLE_ON); Z2_ENABLE_WRITE(!Z_ENABLE_ON); axis_known_position[Z_AXIS] = false; }while(0)
  136. #elif HAS_Z_ENABLE
  137. #define enable_z() Z_ENABLE_WRITE( Z_ENABLE_ON)
  138. #define disable_z() do{ Z_ENABLE_WRITE(!Z_ENABLE_ON); axis_known_position[Z_AXIS] = false; }while(0)
  139. #else
  140. #define enable_z() NOOP
  141. #define disable_z() NOOP
  142. #endif
  143. #if ENABLED(MIXING_EXTRUDER)
  144. /**
  145. * Mixing steppers synchronize their enable (and direction) together
  146. */
  147. #if MIXING_STEPPERS > 3
  148. #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); }
  149. #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); }
  150. #elif MIXING_STEPPERS > 2
  151. #define enable_e0() { E0_ENABLE_WRITE( E_ENABLE_ON); E1_ENABLE_WRITE( E_ENABLE_ON); E2_ENABLE_WRITE( E_ENABLE_ON); }
  152. #define disable_e0() { E0_ENABLE_WRITE(!E_ENABLE_ON); E1_ENABLE_WRITE(!E_ENABLE_ON); E2_ENABLE_WRITE(!E_ENABLE_ON); }
  153. #else
  154. #define enable_e0() { E0_ENABLE_WRITE( E_ENABLE_ON); E1_ENABLE_WRITE( E_ENABLE_ON); }
  155. #define disable_e0() { E0_ENABLE_WRITE(!E_ENABLE_ON); E1_ENABLE_WRITE(!E_ENABLE_ON); }
  156. #endif
  157. #define enable_e1() NOOP
  158. #define disable_e1() NOOP
  159. #define enable_e2() NOOP
  160. #define disable_e2() NOOP
  161. #define enable_e3() NOOP
  162. #define disable_e3() NOOP
  163. #else // !MIXING_EXTRUDER
  164. #if HAS_E0_ENABLE
  165. #define enable_e0() E0_ENABLE_WRITE( E_ENABLE_ON)
  166. #define disable_e0() E0_ENABLE_WRITE(!E_ENABLE_ON)
  167. #else
  168. #define enable_e0() NOOP
  169. #define disable_e0() NOOP
  170. #endif
  171. #if E_STEPPERS > 1 && HAS_E1_ENABLE
  172. #define enable_e1() E1_ENABLE_WRITE( E_ENABLE_ON)
  173. #define disable_e1() E1_ENABLE_WRITE(!E_ENABLE_ON)
  174. #else
  175. #define enable_e1() NOOP
  176. #define disable_e1() NOOP
  177. #endif
  178. #if E_STEPPERS > 2 && HAS_E2_ENABLE
  179. #define enable_e2() E2_ENABLE_WRITE( E_ENABLE_ON)
  180. #define disable_e2() E2_ENABLE_WRITE(!E_ENABLE_ON)
  181. #else
  182. #define enable_e2() NOOP
  183. #define disable_e2() NOOP
  184. #endif
  185. #if E_STEPPERS > 3 && HAS_E3_ENABLE
  186. #define enable_e3() E3_ENABLE_WRITE( E_ENABLE_ON)
  187. #define disable_e3() E3_ENABLE_WRITE(!E_ENABLE_ON)
  188. #else
  189. #define enable_e3() NOOP
  190. #define disable_e3() NOOP
  191. #endif
  192. #endif // !MIXING_EXTRUDER
  193. /**
  194. * The axis order in all axis related arrays is X, Y, Z, E
  195. */
  196. #define NUM_AXIS 4
  197. /**
  198. * Axis indices as enumerated constants
  199. *
  200. * A_AXIS and B_AXIS are used by COREXY printers
  201. * X_HEAD and Y_HEAD is used for systems that don't have a 1:1 relationship between X_AXIS and X Head movement, like CoreXY bots.
  202. */
  203. enum AxisEnum {NO_AXIS = -1, X_AXIS = 0, A_AXIS = 0, Y_AXIS = 1, B_AXIS = 1, Z_AXIS = 2, C_AXIS = 2, E_AXIS = 3, X_HEAD = 4, Y_HEAD = 5, Z_HEAD = 5};
  204. #define _AXIS(AXIS) AXIS ##_AXIS
  205. typedef enum { LINEARUNIT_MM = 0, LINEARUNIT_INCH = 1 } LinearUnit;
  206. typedef enum { TEMPUNIT_C = 0, TEMPUNIT_K = 1, TEMPUNIT_F = 2 } TempUnit;
  207. void enable_all_steppers();
  208. void disable_all_steppers();
  209. void FlushSerialRequestResend();
  210. void ok_to_send();
  211. void reset_bed_level();
  212. void kill(const char*);
  213. void quickstop_stepper();
  214. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  215. void handle_filament_runout();
  216. #endif
  217. /**
  218. * Debug flags - not yet widely applied
  219. */
  220. enum DebugFlags {
  221. DEBUG_NONE = 0,
  222. DEBUG_ECHO = _BV(0), ///< Echo commands in order as they are processed
  223. DEBUG_INFO = _BV(1), ///< Print messages for code that has debug output
  224. DEBUG_ERRORS = _BV(2), ///< Not implemented
  225. DEBUG_DRYRUN = _BV(3), ///< Ignore temperature setting and E movement commands
  226. DEBUG_COMMUNICATION = _BV(4), ///< Not implemented
  227. DEBUG_LEVELING = _BV(5) ///< Print detailed output for homing and leveling
  228. };
  229. extern uint8_t marlin_debug_flags;
  230. #define DEBUGGING(F) (marlin_debug_flags & (DEBUG_## F))
  231. extern bool Running;
  232. inline bool IsRunning() { return Running; }
  233. inline bool IsStopped() { return !Running; }
  234. bool enqueue_and_echo_command(const char* cmd, bool say_ok=false); //put a single ASCII command at the end of the current buffer or return false when it is full
  235. void enqueue_and_echo_command_now(const char* cmd); // enqueue now, only return when the command has been enqueued
  236. void enqueue_and_echo_commands_P(const char* cmd); //put one or many ASCII commands at the end of the current buffer, read from flash
  237. void clear_command_queue();
  238. void clamp_to_software_endstops(float target[3]);
  239. extern millis_t previous_cmd_ms;
  240. inline void refresh_cmd_timeout() { previous_cmd_ms = millis(); }
  241. #if ENABLED(FAST_PWM_FAN)
  242. void setPwmFrequency(uint8_t pin, int val);
  243. #endif
  244. #ifndef CRITICAL_SECTION_START
  245. #define CRITICAL_SECTION_START unsigned char _sreg = SREG; cli();
  246. #define CRITICAL_SECTION_END SREG = _sreg;
  247. #endif
  248. /**
  249. * Feedrate scaling and conversion
  250. */
  251. extern int feedrate_percentage;
  252. #define MMM_TO_MMS(MM_M) ((MM_M)/60.0)
  253. #define MMS_TO_MMM(MM_S) ((MM_S)*60.0)
  254. #define MMM_SCALED(MM_M) ((MM_M)*feedrate_percentage/100.0)
  255. #define MMS_SCALED(MM_S) MMM_SCALED(MM_S)
  256. #define MMM_TO_MMS_SCALED(MM_M) (MMS_SCALED(MMM_TO_MMS(MM_M)))
  257. extern bool axis_relative_modes[];
  258. extern bool volumetric_enabled;
  259. extern int extruder_multiplier[EXTRUDERS]; // sets extrude multiply factor (in percent) for each extruder individually
  260. 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.
  261. extern float volumetric_multiplier[EXTRUDERS]; // reciprocal of cross-sectional area of filament (in square millimeters), stored this way to reduce computational burden in planner
  262. extern float current_position[NUM_AXIS];
  263. extern float home_offset[3]; // axis[n].home_offset
  264. extern float sw_endstop_min[3]; // axis[n].sw_endstop_min
  265. extern float sw_endstop_max[3]; // axis[n].sw_endstop_max
  266. extern bool axis_known_position[3]; // axis[n].is_known
  267. extern bool axis_homed[3]; // axis[n].is_homed
  268. extern volatile bool wait_for_heatup;
  269. // GCode support for external objects
  270. bool code_seen(char);
  271. int code_value_int();
  272. float code_value_temp_abs();
  273. float code_value_temp_diff();
  274. #if ENABLED(DELTA)
  275. extern float delta[3];
  276. extern float endstop_adj[3]; // axis[n].endstop_adj
  277. extern float delta_radius;
  278. extern float delta_diagonal_rod;
  279. extern float delta_segments_per_second;
  280. extern float delta_diagonal_rod_trim_tower_1;
  281. extern float delta_diagonal_rod_trim_tower_2;
  282. extern float delta_diagonal_rod_trim_tower_3;
  283. void calculate_delta(float cartesian[3]);
  284. void recalc_delta_settings(float radius, float diagonal_rod);
  285. float delta_safe_distance_from_top();
  286. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  287. extern int delta_grid_spacing[2];
  288. void adjust_delta(float cartesian[3]);
  289. #endif
  290. #elif ENABLED(SCARA)
  291. extern float axis_scaling[3]; // Build size scaling
  292. void calculate_delta(float cartesian[3]);
  293. void calculate_SCARA_forward_Transform(float f_scara[3]);
  294. #endif
  295. #if ENABLED(Z_DUAL_ENDSTOPS)
  296. extern float z_endstop_adj;
  297. #endif
  298. #if HAS_BED_PROBE
  299. extern float zprobe_zoffset;
  300. #endif
  301. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  302. extern uint8_t host_keepalive_interval;
  303. #endif
  304. #if FAN_COUNT > 0
  305. extern int fanSpeeds[FAN_COUNT];
  306. #endif
  307. #if ENABLED(BARICUDA)
  308. extern int baricuda_valve_pressure;
  309. extern int baricuda_e_to_p_pressure;
  310. #endif
  311. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  312. extern float filament_width_nominal; //holds the theoretical filament diameter i.e., 3.00 or 1.75
  313. extern bool filament_sensor; //indicates that filament sensor readings should control extrusion
  314. extern float filament_width_meas; //holds the filament diameter as accurately measured
  315. extern int8_t measurement_delay[]; //ring buffer to delay measurement
  316. extern int filwidth_delay_index1, filwidth_delay_index2; //ring buffer index. used by planner, temperature, and main code
  317. extern int meas_delay_cm; //delay distance
  318. #endif
  319. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  320. enum FilamentChangeMenuResponse {
  321. FILAMENT_CHANGE_RESPONSE_WAIT_FOR,
  322. FILAMENT_CHANGE_RESPONSE_EXTRUDE_MORE,
  323. FILAMENT_CHANGE_RESPONSE_RESUME_PRINT
  324. };
  325. extern FilamentChangeMenuResponse filament_change_menu_response;
  326. #endif
  327. #if ENABLED(PID_ADD_EXTRUSION_RATE)
  328. extern int lpq_len;
  329. #endif
  330. #if ENABLED(FWRETRACT)
  331. extern bool autoretract_enabled;
  332. extern bool retracted[EXTRUDERS]; // extruder[n].retracted
  333. extern float retract_length, retract_length_swap, retract_feedrate_mm_s, retract_zlift;
  334. extern float retract_recover_length, retract_recover_length_swap, retract_recover_feedrate_mm_s;
  335. #endif
  336. // Print job timer
  337. #if ENABLED(PRINTCOUNTER)
  338. extern PrintCounter print_job_timer;
  339. #else
  340. extern Stopwatch print_job_timer;
  341. #endif
  342. // Handling multiple extruders pins
  343. extern uint8_t active_extruder;
  344. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  345. void print_heaterstates();
  346. #endif
  347. #if ENABLED(MIXING_EXTRUDER)
  348. extern float mixing_factor[MIXING_STEPPERS];
  349. #endif
  350. void calculate_volumetric_multipliers();
  351. // Buzzer
  352. #if HAS_BUZZER
  353. #if ENABLED(SPEAKER)
  354. #include "speaker.h"
  355. extern Speaker buzzer;
  356. #else
  357. #include "buzzer.h"
  358. extern Buzzer buzzer;
  359. #endif
  360. #endif
  361. #endif //MARLIN_H