My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Marlin.h 11KB

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