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

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