My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Marlin.h 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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. #ifndef SANITYCHECK_H
  42. #error Your Configuration.h and Configuration_adv.h files are outdated!
  43. #endif
  44. #include "Arduino.h"
  45. typedef unsigned long millis_t;
  46. // Arduino < 1.0.0 does not define this, so we need to do it ourselves
  47. #ifndef analogInputToDigitalPin
  48. #define analogInputToDigitalPin(p) ((p) + 0xA0)
  49. #endif
  50. #ifdef USBCON
  51. #include "HardwareSerial.h"
  52. #endif
  53. #include "MarlinSerial.h"
  54. #include "WString.h"
  55. #ifdef USBCON
  56. #if ENABLED(BLUETOOTH)
  57. #define MYSERIAL bluetoothSerial
  58. #else
  59. #define MYSERIAL Serial
  60. #endif // BLUETOOTH
  61. #else
  62. #define MYSERIAL customizedSerial
  63. #endif
  64. #define SERIAL_CHAR(x) MYSERIAL.write(x)
  65. #define SERIAL_EOL SERIAL_CHAR('\n')
  66. #define SERIAL_PROTOCOLCHAR(x) SERIAL_CHAR(x)
  67. #define SERIAL_PROTOCOL(x) MYSERIAL.print(x)
  68. #define SERIAL_PROTOCOL_F(x,y) MYSERIAL.print(x,y)
  69. #define SERIAL_PROTOCOLPGM(x) serialprintPGM(PSTR(x))
  70. #define SERIAL_PROTOCOLLN(x) do{ MYSERIAL.print(x); SERIAL_EOL; }while(0)
  71. #define SERIAL_PROTOCOLLNPGM(x) do{ serialprintPGM(PSTR(x)); SERIAL_EOL; }while(0)
  72. extern const char errormagic[] PROGMEM;
  73. extern const char echomagic[] PROGMEM;
  74. #define SERIAL_ERROR_START serialprintPGM(errormagic)
  75. #define SERIAL_ERROR(x) SERIAL_PROTOCOL(x)
  76. #define SERIAL_ERRORPGM(x) SERIAL_PROTOCOLPGM(x)
  77. #define SERIAL_ERRORLN(x) SERIAL_PROTOCOLLN(x)
  78. #define SERIAL_ERRORLNPGM(x) SERIAL_PROTOCOLLNPGM(x)
  79. #define SERIAL_ECHO_START serialprintPGM(echomagic)
  80. #define SERIAL_ECHO(x) SERIAL_PROTOCOL(x)
  81. #define SERIAL_ECHOPGM(x) SERIAL_PROTOCOLPGM(x)
  82. #define SERIAL_ECHOLN(x) SERIAL_PROTOCOLLN(x)
  83. #define SERIAL_ECHOLNPGM(x) SERIAL_PROTOCOLLNPGM(x)
  84. #define SERIAL_ECHOPAIR(name,value) do{ serial_echopair_P(PSTR(name),(value)); }while(0)
  85. void serial_echopair_P(const char* s_P, int v);
  86. void serial_echopair_P(const char* s_P, long v);
  87. void serial_echopair_P(const char* s_P, float v);
  88. void serial_echopair_P(const char* s_P, double v);
  89. void serial_echopair_P(const char* s_P, unsigned long v);
  90. // Things to write to serial from Program memory. Saves 400 to 2k of RAM.
  91. FORCE_INLINE void serialprintPGM(const char* str) {
  92. char ch;
  93. while ((ch = pgm_read_byte(str))) {
  94. MYSERIAL.write(ch);
  95. str++;
  96. }
  97. }
  98. void idle(
  99. #if ENABLED(FILAMENTCHANGEENABLE)
  100. bool no_stepper_sleep=false // pass true to keep steppers from disabling on timeout
  101. #endif
  102. );
  103. void manage_inactivity(bool ignore_stepper_queue = false);
  104. #if ENABLED(DUAL_X_CARRIAGE) && HAS_X_ENABLE && HAS_X2_ENABLE
  105. #define enable_x() do { X_ENABLE_WRITE( X_ENABLE_ON); X2_ENABLE_WRITE( X_ENABLE_ON); } while (0)
  106. #define disable_x() do { X_ENABLE_WRITE(!X_ENABLE_ON); X2_ENABLE_WRITE(!X_ENABLE_ON); axis_known_position[X_AXIS] = false; } while (0)
  107. #elif HAS_X_ENABLE
  108. #define enable_x() X_ENABLE_WRITE( X_ENABLE_ON)
  109. #define disable_x() { X_ENABLE_WRITE(!X_ENABLE_ON); axis_known_position[X_AXIS] = false; }
  110. #else
  111. #define enable_x() ;
  112. #define disable_x() ;
  113. #endif
  114. #if HAS_Y_ENABLE
  115. #if ENABLED(Y_DUAL_STEPPER_DRIVERS)
  116. #define enable_y() { Y_ENABLE_WRITE( Y_ENABLE_ON); Y2_ENABLE_WRITE(Y_ENABLE_ON); }
  117. #define disable_y() { Y_ENABLE_WRITE(!Y_ENABLE_ON); Y2_ENABLE_WRITE(!Y_ENABLE_ON); axis_known_position[Y_AXIS] = false; }
  118. #else
  119. #define enable_y() Y_ENABLE_WRITE( Y_ENABLE_ON)
  120. #define disable_y() { Y_ENABLE_WRITE(!Y_ENABLE_ON); axis_known_position[Y_AXIS] = false; }
  121. #endif
  122. #else
  123. #define enable_y() ;
  124. #define disable_y() ;
  125. #endif
  126. #if HAS_Z_ENABLE
  127. #if ENABLED(Z_DUAL_STEPPER_DRIVERS)
  128. #define enable_z() { Z_ENABLE_WRITE( Z_ENABLE_ON); Z2_ENABLE_WRITE(Z_ENABLE_ON); }
  129. #define disable_z() { Z_ENABLE_WRITE(!Z_ENABLE_ON); Z2_ENABLE_WRITE(!Z_ENABLE_ON); axis_known_position[Z_AXIS] = false; }
  130. #else
  131. #define enable_z() Z_ENABLE_WRITE( Z_ENABLE_ON)
  132. #define disable_z() { Z_ENABLE_WRITE(!Z_ENABLE_ON); axis_known_position[Z_AXIS] = false; }
  133. #endif
  134. #else
  135. #define enable_z() ;
  136. #define disable_z() ;
  137. #endif
  138. #if HAS_E0_ENABLE
  139. #define enable_e0() E0_ENABLE_WRITE( E_ENABLE_ON)
  140. #define disable_e0() E0_ENABLE_WRITE(!E_ENABLE_ON)
  141. #else
  142. #define enable_e0() /* nothing */
  143. #define disable_e0() /* nothing */
  144. #endif
  145. #if (EXTRUDERS > 1) && HAS_E1_ENABLE
  146. #define enable_e1() E1_ENABLE_WRITE( E_ENABLE_ON)
  147. #define disable_e1() E1_ENABLE_WRITE(!E_ENABLE_ON)
  148. #else
  149. #define enable_e1() /* nothing */
  150. #define disable_e1() /* nothing */
  151. #endif
  152. #if (EXTRUDERS > 2) && HAS_E2_ENABLE
  153. #define enable_e2() E2_ENABLE_WRITE( E_ENABLE_ON)
  154. #define disable_e2() E2_ENABLE_WRITE(!E_ENABLE_ON)
  155. #else
  156. #define enable_e2() /* nothing */
  157. #define disable_e2() /* nothing */
  158. #endif
  159. #if (EXTRUDERS > 3) && HAS_E3_ENABLE
  160. #define enable_e3() E3_ENABLE_WRITE( E_ENABLE_ON)
  161. #define disable_e3() E3_ENABLE_WRITE(!E_ENABLE_ON)
  162. #else
  163. #define enable_e3() /* nothing */
  164. #define disable_e3() /* nothing */
  165. #endif
  166. /**
  167. * The axis order in all axis related arrays is X, Y, Z, E
  168. */
  169. #define NUM_AXIS 4
  170. /**
  171. * Axis indices as enumerated constants
  172. *
  173. * A_AXIS and B_AXIS are used by COREXY printers
  174. * 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.
  175. */
  176. enum AxisEnum {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};
  177. enum EndstopEnum {X_MIN = 0, Y_MIN = 1, Z_MIN = 2, Z_MIN_PROBE = 3, X_MAX = 4, Y_MAX = 5, Z_MAX = 6, Z2_MIN = 7, Z2_MAX = 8};
  178. void enable_all_steppers();
  179. void disable_all_steppers();
  180. void FlushSerialRequestResend();
  181. void ok_to_send();
  182. void reset_bed_level();
  183. void prepare_move();
  184. void kill(const char*);
  185. void Stop();
  186. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  187. void filrunout();
  188. #endif
  189. /**
  190. * Debug flags - not yet widely applied
  191. */
  192. enum DebugFlags {
  193. DEBUG_ECHO = _BV(0),
  194. DEBUG_INFO = _BV(1),
  195. DEBUG_ERRORS = _BV(2),
  196. DEBUG_DRYRUN = _BV(3),
  197. DEBUG_COMMUNICATION = _BV(4),
  198. DEBUG_LEVELING = _BV(5)
  199. };
  200. extern uint8_t marlin_debug_flags;
  201. extern bool Running;
  202. inline bool IsRunning() { return Running; }
  203. inline bool IsStopped() { return !Running; }
  204. 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
  205. void enqueue_and_echo_command_now(const char* cmd); // enqueue now, only return when the command has been enqueued
  206. 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
  207. void prepare_arc_move(char isclockwise);
  208. void clamp_to_software_endstops(float target[3]);
  209. extern millis_t previous_cmd_ms;
  210. inline void refresh_cmd_timeout() { previous_cmd_ms = millis(); }
  211. #if ENABLED(FAST_PWM_FAN)
  212. void setPwmFrequency(uint8_t pin, int val);
  213. #endif
  214. #ifndef CRITICAL_SECTION_START
  215. #define CRITICAL_SECTION_START unsigned char _sreg = SREG; cli();
  216. #define CRITICAL_SECTION_END SREG = _sreg;
  217. #endif
  218. extern bool axis_relative_modes[];
  219. extern int feedrate_multiplier;
  220. extern bool volumetric_enabled;
  221. extern int extruder_multiplier[EXTRUDERS]; // sets extrude multiply factor (in percent) for each extruder individually
  222. 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.
  223. extern float volumetric_multiplier[EXTRUDERS]; // reciprocal of cross-sectional area of filament (in square millimeters), stored this way to reduce computational burden in planner
  224. extern float current_position[NUM_AXIS];
  225. extern float home_offset[3]; // axis[n].home_offset
  226. extern float min_pos[3]; // axis[n].min_pos
  227. extern float max_pos[3]; // axis[n].max_pos
  228. extern bool axis_known_position[3]; // axis[n].is_known
  229. extern bool axis_homed[3]; // axis[n].is_homed
  230. #if ENABLED(DELTA)
  231. #ifndef DELTA_RADIUS_TRIM_TOWER_1
  232. #define DELTA_RADIUS_TRIM_TOWER_1 0.0
  233. #endif
  234. #ifndef DELTA_RADIUS_TRIM_TOWER_2
  235. #define DELTA_RADIUS_TRIM_TOWER_2 0.0
  236. #endif
  237. #ifndef DELTA_RADIUS_TRIM_TOWER_3
  238. #define DELTA_RADIUS_TRIM_TOWER_3 0.0
  239. #endif
  240. #ifndef DELTA_DIAGONAL_ROD_TRIM_TOWER_1
  241. #define DELTA_DIAGONAL_ROD_TRIM_TOWER_1 0.0
  242. #endif
  243. #ifndef DELTA_DIAGONAL_ROD_TRIM_TOWER_2
  244. #define DELTA_DIAGONAL_ROD_TRIM_TOWER_2 0.0
  245. #endif
  246. #ifndef DELTA_DIAGONAL_ROD_TRIM_TOWER_3
  247. #define DELTA_DIAGONAL_ROD_TRIM_TOWER_3 0.0
  248. #endif
  249. extern float delta[3];
  250. extern float endstop_adj[3]; // axis[n].endstop_adj
  251. extern float delta_radius;
  252. extern float delta_diagonal_rod;
  253. extern float delta_segments_per_second;
  254. extern float delta_diagonal_rod_trim_tower_1;
  255. extern float delta_diagonal_rod_trim_tower_2;
  256. extern float delta_diagonal_rod_trim_tower_3;
  257. void calculate_delta(float cartesian[3]);
  258. void recalc_delta_settings(float radius, float diagonal_rod);
  259. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  260. extern int delta_grid_spacing[2];
  261. void adjust_delta(float cartesian[3]);
  262. #endif
  263. #elif ENABLED(SCARA)
  264. extern float axis_scaling[3]; // Build size scaling
  265. void calculate_delta(float cartesian[3]);
  266. void calculate_SCARA_forward_Transform(float f_scara[3]);
  267. #endif
  268. #if ENABLED(Z_DUAL_ENDSTOPS)
  269. extern float z_endstop_adj;
  270. #endif
  271. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  272. extern float zprobe_zoffset;
  273. #endif
  274. #if ENABLED(PREVENT_DANGEROUS_EXTRUDE)
  275. extern float extrude_min_temp;
  276. #endif
  277. #if FAN_COUNT > 0
  278. extern int fanSpeeds[FAN_COUNT];
  279. #endif
  280. #if ENABLED(BARICUDA)
  281. extern int ValvePressure;
  282. extern int EtoPPressure;
  283. #endif
  284. #if ENABLED(FILAMENT_SENSOR)
  285. extern float filament_width_nominal; //holds the theoretical filament diameter i.e., 3.00 or 1.75
  286. extern bool filament_sensor; //indicates that filament sensor readings should control extrusion
  287. extern float filament_width_meas; //holds the filament diameter as accurately measured
  288. extern signed char measurement_delay[]; //ring buffer to delay measurement
  289. extern int delay_index1, delay_index2; //ring buffer index. used by planner, temperature, and main code
  290. extern float delay_dist; //delay distance counter
  291. extern int meas_delay_cm; //delay distance
  292. #endif
  293. #if ENABLED(PID_ADD_EXTRUSION_RATE)
  294. extern int lpq_len;
  295. #endif
  296. #if ENABLED(FWRETRACT)
  297. extern bool autoretract_enabled;
  298. extern bool retracted[EXTRUDERS]; // extruder[n].retracted
  299. extern float retract_length, retract_length_swap, retract_feedrate, retract_zlift;
  300. extern float retract_recover_length, retract_recover_length_swap, retract_recover_feedrate;
  301. #endif
  302. extern millis_t print_job_start_ms;
  303. extern millis_t print_job_stop_ms;
  304. // Handling multiple extruders pins
  305. extern uint8_t active_extruder;
  306. #if ENABLED(DIGIPOT_I2C)
  307. extern void digipot_i2c_set_current(int channel, float current);
  308. extern void digipot_i2c_init();
  309. #endif
  310. #if HAS_TEMP_0 || HAS_TEMP_BED || ENABLED(HEATER_0_USES_MAX6675)
  311. void print_heaterstates();
  312. #endif
  313. extern void calculate_volumetric_multipliers();
  314. // Print job timer related functions
  315. millis_t print_job_timer();
  316. bool print_job_start(millis_t t = 0);
  317. bool print_job_stop(bool force = false);
  318. #endif //MARLIN_H