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.

stepper.cpp 38KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281
  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. /**
  23. * stepper.cpp - A singleton object to execute motion plans using stepper motors
  24. * Marlin Firmware
  25. *
  26. * Derived from Grbl
  27. * Copyright (c) 2009-2011 Simen Svale Skogsrud
  28. *
  29. * Grbl is free software: you can redistribute it and/or modify
  30. * it under the terms of the GNU General Public License as published by
  31. * the Free Software Foundation, either version 3 of the License, or
  32. * (at your option) any later version.
  33. *
  34. * Grbl is distributed in the hope that it will be useful,
  35. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  36. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  37. * GNU General Public License for more details.
  38. *
  39. * You should have received a copy of the GNU General Public License
  40. * along with Grbl. If not, see <http://www.gnu.org/licenses/>.
  41. */
  42. /* The timer calculations of this module informed by the 'RepRap cartesian firmware' by Zack Smith
  43. and Philipp Tiefenbacher. */
  44. #include "Marlin.h"
  45. #include "stepper.h"
  46. #include "endstops.h"
  47. #include "planner.h"
  48. #include "temperature.h"
  49. #include "ultralcd.h"
  50. #include "language.h"
  51. #include "cardreader.h"
  52. #include "speed_lookuptable.h"
  53. #if HAS_DIGIPOTSS
  54. #include <SPI.h>
  55. #endif
  56. Stepper stepper; // Singleton
  57. // public:
  58. block_t* Stepper::current_block = NULL; // A pointer to the block currently being traced
  59. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  60. bool Stepper::abort_on_endstop_hit = false;
  61. #endif
  62. #if ENABLED(Z_DUAL_ENDSTOPS)
  63. bool Stepper::performing_homing = false;
  64. #endif
  65. // private:
  66. unsigned char Stepper::last_direction_bits = 0; // The next stepping-bits to be output
  67. unsigned int Stepper::cleaning_buffer_counter = 0;
  68. #if ENABLED(Z_DUAL_ENDSTOPS)
  69. bool Stepper::locked_z_motor = false;
  70. bool Stepper::locked_z2_motor = false;
  71. #endif
  72. long Stepper::counter_X = 0,
  73. Stepper::counter_Y = 0,
  74. Stepper::counter_Z = 0,
  75. Stepper::counter_E = 0;
  76. volatile uint32_t Stepper::step_events_completed = 0; // The number of step events executed in the current block
  77. #if ENABLED(ADVANCE) || ENABLED(LIN_ADVANCE)
  78. unsigned char Stepper::old_OCR0A;
  79. volatile unsigned char Stepper::eISR_Rate = 200; // Keep the ISR at a low rate until needed
  80. #if ENABLED(LIN_ADVANCE)
  81. volatile int Stepper::e_steps[E_STEPPERS];
  82. int Stepper::extruder_advance_k = LIN_ADVANCE_K,
  83. Stepper::final_estep_rate,
  84. Stepper::current_estep_rate[E_STEPPERS],
  85. Stepper::current_adv_steps[E_STEPPERS];
  86. #else
  87. long Stepper::e_steps[E_STEPPERS],
  88. Stepper::final_advance = 0,
  89. Stepper::old_advance = 0,
  90. Stepper::advance_rate,
  91. Stepper::advance;
  92. #endif
  93. #endif
  94. long Stepper::acceleration_time, Stepper::deceleration_time;
  95. volatile long Stepper::count_position[NUM_AXIS] = { 0 };
  96. volatile signed char Stepper::count_direction[NUM_AXIS] = { 1, 1, 1, 1 };
  97. #if ENABLED(MIXING_EXTRUDER)
  98. long Stepper::counter_M[MIXING_STEPPERS];
  99. #endif
  100. unsigned short Stepper::acc_step_rate; // needed for deceleration start point
  101. uint8_t Stepper::step_loops, Stepper::step_loops_nominal;
  102. unsigned short Stepper::OCR1A_nominal;
  103. volatile long Stepper::endstops_trigsteps[XYZ];
  104. #if ENABLED(X_DUAL_STEPPER_DRIVERS)
  105. #define X_APPLY_DIR(v,Q) do{ X_DIR_WRITE(v); X2_DIR_WRITE((v) != INVERT_X2_VS_X_DIR); }while(0)
  106. #define X_APPLY_STEP(v,Q) do{ X_STEP_WRITE(v); X2_STEP_WRITE(v); }while(0)
  107. #elif ENABLED(DUAL_X_CARRIAGE)
  108. #define X_APPLY_DIR(v,ALWAYS) \
  109. if (extruder_duplication_enabled || ALWAYS) { \
  110. X_DIR_WRITE(v); \
  111. X2_DIR_WRITE(v); \
  112. } \
  113. else { \
  114. if (current_block->active_extruder) X2_DIR_WRITE(v); else X_DIR_WRITE(v); \
  115. }
  116. #define X_APPLY_STEP(v,ALWAYS) \
  117. if (extruder_duplication_enabled || ALWAYS) { \
  118. X_STEP_WRITE(v); \
  119. X2_STEP_WRITE(v); \
  120. } \
  121. else { \
  122. if (current_block->active_extruder != 0) X2_STEP_WRITE(v); else X_STEP_WRITE(v); \
  123. }
  124. #else
  125. #define X_APPLY_DIR(v,Q) X_DIR_WRITE(v)
  126. #define X_APPLY_STEP(v,Q) X_STEP_WRITE(v)
  127. #endif
  128. #if ENABLED(Y_DUAL_STEPPER_DRIVERS)
  129. #define Y_APPLY_DIR(v,Q) do{ Y_DIR_WRITE(v); Y2_DIR_WRITE((v) != INVERT_Y2_VS_Y_DIR); }while(0)
  130. #define Y_APPLY_STEP(v,Q) do{ Y_STEP_WRITE(v); Y2_STEP_WRITE(v); }while(0)
  131. #else
  132. #define Y_APPLY_DIR(v,Q) Y_DIR_WRITE(v)
  133. #define Y_APPLY_STEP(v,Q) Y_STEP_WRITE(v)
  134. #endif
  135. #if ENABLED(Z_DUAL_STEPPER_DRIVERS)
  136. #define Z_APPLY_DIR(v,Q) do{ Z_DIR_WRITE(v); Z2_DIR_WRITE(v); }while(0)
  137. #if ENABLED(Z_DUAL_ENDSTOPS)
  138. #define Z_APPLY_STEP(v,Q) \
  139. if (performing_homing) { \
  140. if (Z_HOME_DIR > 0) {\
  141. if (!(TEST(endstops.old_endstop_bits, Z_MAX) && (count_direction[Z_AXIS] > 0)) && !locked_z_motor) Z_STEP_WRITE(v); \
  142. if (!(TEST(endstops.old_endstop_bits, Z2_MAX) && (count_direction[Z_AXIS] > 0)) && !locked_z2_motor) Z2_STEP_WRITE(v); \
  143. } \
  144. else { \
  145. if (!(TEST(endstops.old_endstop_bits, Z_MIN) && (count_direction[Z_AXIS] < 0)) && !locked_z_motor) Z_STEP_WRITE(v); \
  146. if (!(TEST(endstops.old_endstop_bits, Z2_MIN) && (count_direction[Z_AXIS] < 0)) && !locked_z2_motor) Z2_STEP_WRITE(v); \
  147. } \
  148. } \
  149. else { \
  150. Z_STEP_WRITE(v); \
  151. Z2_STEP_WRITE(v); \
  152. }
  153. #else
  154. #define Z_APPLY_STEP(v,Q) do{ Z_STEP_WRITE(v); Z2_STEP_WRITE(v); }while(0)
  155. #endif
  156. #else
  157. #define Z_APPLY_DIR(v,Q) Z_DIR_WRITE(v)
  158. #define Z_APPLY_STEP(v,Q) Z_STEP_WRITE(v)
  159. #endif
  160. #if DISABLED(MIXING_EXTRUDER)
  161. #define E_APPLY_STEP(v,Q) E_STEP_WRITE(v)
  162. #endif
  163. // intRes = longIn1 * longIn2 >> 24
  164. // uses:
  165. // r26 to store 0
  166. // r27 to store bits 16-23 of the 48bit result. The top bit is used to round the two byte result.
  167. // note that the lower two bytes and the upper byte of the 48bit result are not calculated.
  168. // this can cause the result to be out by one as the lower bytes may cause carries into the upper ones.
  169. // B0 A0 are bits 24-39 and are the returned value
  170. // C1 B1 A1 is longIn1
  171. // D2 C2 B2 A2 is longIn2
  172. //
  173. #define MultiU24X32toH16(intRes, longIn1, longIn2) \
  174. asm volatile ( \
  175. "clr r26 \n\t" \
  176. "mul %A1, %B2 \n\t" \
  177. "mov r27, r1 \n\t" \
  178. "mul %B1, %C2 \n\t" \
  179. "movw %A0, r0 \n\t" \
  180. "mul %C1, %C2 \n\t" \
  181. "add %B0, r0 \n\t" \
  182. "mul %C1, %B2 \n\t" \
  183. "add %A0, r0 \n\t" \
  184. "adc %B0, r1 \n\t" \
  185. "mul %A1, %C2 \n\t" \
  186. "add r27, r0 \n\t" \
  187. "adc %A0, r1 \n\t" \
  188. "adc %B0, r26 \n\t" \
  189. "mul %B1, %B2 \n\t" \
  190. "add r27, r0 \n\t" \
  191. "adc %A0, r1 \n\t" \
  192. "adc %B0, r26 \n\t" \
  193. "mul %C1, %A2 \n\t" \
  194. "add r27, r0 \n\t" \
  195. "adc %A0, r1 \n\t" \
  196. "adc %B0, r26 \n\t" \
  197. "mul %B1, %A2 \n\t" \
  198. "add r27, r1 \n\t" \
  199. "adc %A0, r26 \n\t" \
  200. "adc %B0, r26 \n\t" \
  201. "lsr r27 \n\t" \
  202. "adc %A0, r26 \n\t" \
  203. "adc %B0, r26 \n\t" \
  204. "mul %D2, %A1 \n\t" \
  205. "add %A0, r0 \n\t" \
  206. "adc %B0, r1 \n\t" \
  207. "mul %D2, %B1 \n\t" \
  208. "add %B0, r0 \n\t" \
  209. "clr r1 \n\t" \
  210. : \
  211. "=&r" (intRes) \
  212. : \
  213. "d" (longIn1), \
  214. "d" (longIn2) \
  215. : \
  216. "r26" , "r27" \
  217. )
  218. // Some useful constants
  219. #define ENABLE_STEPPER_DRIVER_INTERRUPT() SBI(TIMSK1, OCIE1A)
  220. #define DISABLE_STEPPER_DRIVER_INTERRUPT() CBI(TIMSK1, OCIE1A)
  221. /**
  222. * __________________________
  223. * /| |\ _________________ ^
  224. * / | | \ /| |\ |
  225. * / | | \ / | | \ s
  226. * / | | | | | \ p
  227. * / | | | | | \ e
  228. * +-----+------------------------+---+--+---------------+----+ e
  229. * | BLOCK 1 | BLOCK 2 | d
  230. *
  231. * time ----->
  232. *
  233. * The trapezoid is the shape the speed curve over time. It starts at block->initial_rate, accelerates
  234. * first block->accelerate_until step_events_completed, then keeps going at constant speed until
  235. * step_events_completed reaches block->decelerate_after after which it decelerates until the trapezoid generator is reset.
  236. * The slope of acceleration is calculated using v = u + at where t is the accumulated timer values of the steps so far.
  237. */
  238. void Stepper::wake_up() {
  239. // TCNT1 = 0;
  240. ENABLE_STEPPER_DRIVER_INTERRUPT();
  241. }
  242. /**
  243. * Set the stepper direction of each axis
  244. *
  245. * COREXY: X_AXIS=A_AXIS and Y_AXIS=B_AXIS
  246. * COREXZ: X_AXIS=A_AXIS and Z_AXIS=C_AXIS
  247. * COREYZ: Y_AXIS=B_AXIS and Z_AXIS=C_AXIS
  248. */
  249. void Stepper::set_directions() {
  250. #define SET_STEP_DIR(AXIS) \
  251. if (motor_direction(AXIS ##_AXIS)) { \
  252. AXIS ##_APPLY_DIR(INVERT_## AXIS ##_DIR, false); \
  253. count_direction[AXIS ##_AXIS] = -1; \
  254. } \
  255. else { \
  256. AXIS ##_APPLY_DIR(!INVERT_## AXIS ##_DIR, false); \
  257. count_direction[AXIS ##_AXIS] = 1; \
  258. }
  259. #if HAS_X_DIR
  260. SET_STEP_DIR(X); // A
  261. #endif
  262. #if HAS_Y_DIR
  263. SET_STEP_DIR(Y); // B
  264. #endif
  265. #if HAS_Z_DIR
  266. SET_STEP_DIR(Z); // C
  267. #endif
  268. #if DISABLED(ADVANCE)
  269. if (motor_direction(E_AXIS)) {
  270. REV_E_DIR();
  271. count_direction[E_AXIS] = -1;
  272. }
  273. else {
  274. NORM_E_DIR();
  275. count_direction[E_AXIS] = 1;
  276. }
  277. #endif //!ADVANCE
  278. }
  279. // "The Stepper Driver Interrupt" - This timer interrupt is the workhorse.
  280. // It pops blocks from the block_buffer and executes them by pulsing the stepper pins appropriately.
  281. ISR(TIMER1_COMPA_vect) { Stepper::isr(); }
  282. void Stepper::isr() {
  283. if (cleaning_buffer_counter) {
  284. current_block = NULL;
  285. planner.discard_current_block();
  286. #ifdef SD_FINISHED_RELEASECOMMAND
  287. if ((cleaning_buffer_counter == 1) && (SD_FINISHED_STEPPERRELEASE)) enqueue_and_echo_commands_P(PSTR(SD_FINISHED_RELEASECOMMAND));
  288. #endif
  289. cleaning_buffer_counter--;
  290. OCR1A = 200;
  291. return;
  292. }
  293. // If there is no current block, attempt to pop one from the buffer
  294. if (!current_block) {
  295. // Anything in the buffer?
  296. current_block = planner.get_current_block();
  297. if (current_block) {
  298. current_block->busy = true;
  299. trapezoid_generator_reset();
  300. // Initialize Bresenham counters to 1/2 the ceiling
  301. counter_X = counter_Y = counter_Z = counter_E = -(current_block->step_event_count >> 1);
  302. #if ENABLED(MIXING_EXTRUDER)
  303. MIXING_STEPPERS_LOOP(i)
  304. counter_M[i] = -(current_block->mix_event_count[i] >> 1);
  305. #endif
  306. step_events_completed = 0;
  307. #if ENABLED(Z_LATE_ENABLE)
  308. if (current_block->steps[Z_AXIS] > 0) {
  309. enable_z();
  310. OCR1A = 2000; //1ms wait
  311. return;
  312. }
  313. #endif
  314. // #if ENABLED(ADVANCE)
  315. // e_steps[TOOL_E_INDEX] = 0;
  316. // #endif
  317. }
  318. else {
  319. OCR1A = 2000; // 1kHz.
  320. }
  321. }
  322. if (current_block) {
  323. // Update endstops state, if enabled
  324. if (endstops.enabled
  325. #if HAS_BED_PROBE
  326. || endstops.z_probe_enabled
  327. #endif
  328. ) endstops.update();
  329. // Take multiple steps per interrupt (For high speed moves)
  330. bool all_steps_done = false;
  331. for (int8_t i = 0; i < step_loops; i++) {
  332. #ifndef USBCON
  333. customizedSerial.checkRx(); // Check for serial chars.
  334. #endif
  335. #if ENABLED(LIN_ADVANCE)
  336. counter_E += current_block->steps[E_AXIS];
  337. if (counter_E > 0) {
  338. counter_E -= current_block->step_event_count;
  339. #if DISABLED(MIXING_EXTRUDER)
  340. // Don't step E here for mixing extruder
  341. count_position[E_AXIS] += count_direction[E_AXIS];
  342. e_steps[TOOL_E_INDEX] += motor_direction(E_AXIS) ? -1 : 1;
  343. #endif
  344. }
  345. #if ENABLED(MIXING_EXTRUDER)
  346. // Step mixing steppers proportionally
  347. long dir = motor_direction(E_AXIS) ? -1 : 1;
  348. MIXING_STEPPERS_LOOP(j) {
  349. counter_m[j] += current_block->steps[E_AXIS];
  350. if (counter_m[j] > 0) {
  351. counter_m[j] -= current_block->mix_event_count[j];
  352. e_steps[j] += dir;
  353. }
  354. }
  355. #endif
  356. if (current_block->use_advance_lead) {
  357. int delta_adv_steps = (((long)extruder_advance_k * current_estep_rate[TOOL_E_INDEX]) >> 9) - current_adv_steps[TOOL_E_INDEX];
  358. #if ENABLED(MIXING_EXTRUDER)
  359. // Mixing extruders apply advance lead proportionally
  360. MIXING_STEPPERS_LOOP(j) {
  361. int steps = delta_adv_steps * current_block->step_event_count / current_block->mix_event_count[j];
  362. e_steps[j] += steps;
  363. current_adv_steps[j] += steps;
  364. }
  365. #else
  366. // For most extruders, advance the single E stepper
  367. e_steps[TOOL_E_INDEX] += delta_adv_steps;
  368. current_adv_steps[TOOL_E_INDEX] += delta_adv_steps;
  369. #endif
  370. }
  371. #elif ENABLED(ADVANCE)
  372. // Always count the unified E axis
  373. counter_E += current_block->steps[E_AXIS];
  374. if (counter_E > 0) {
  375. counter_E -= current_block->step_event_count;
  376. #if DISABLED(MIXING_EXTRUDER)
  377. // Don't step E here for mixing extruder
  378. e_steps[TOOL_E_INDEX] += motor_direction(E_AXIS) ? -1 : 1;
  379. #endif
  380. }
  381. #if ENABLED(MIXING_EXTRUDER)
  382. // Step mixing steppers proportionally
  383. long dir = motor_direction(E_AXIS) ? -1 : 1;
  384. MIXING_STEPPERS_LOOP(j) {
  385. counter_m[j] += current_block->steps[E_AXIS];
  386. if (counter_m[j] > 0) {
  387. counter_m[j] -= current_block->mix_event_count[j];
  388. e_steps[j] += dir;
  389. }
  390. }
  391. #endif // MIXING_EXTRUDER
  392. #endif // ADVANCE or LIN_ADVANCE
  393. #define _COUNTER(AXIS) counter_## AXIS
  394. #define _APPLY_STEP(AXIS) AXIS ##_APPLY_STEP
  395. #define _INVERT_STEP_PIN(AXIS) INVERT_## AXIS ##_STEP_PIN
  396. #define PULSE_START(AXIS) \
  397. _COUNTER(AXIS) += current_block->steps[_AXIS(AXIS)]; \
  398. if (_COUNTER(AXIS) > 0) { _APPLY_STEP(AXIS)(!_INVERT_STEP_PIN(AXIS),0); }
  399. #define PULSE_STOP(AXIS) \
  400. if (_COUNTER(AXIS) > 0) { \
  401. _COUNTER(AXIS) -= current_block->step_event_count; \
  402. count_position[_AXIS(AXIS)] += count_direction[_AXIS(AXIS)]; \
  403. _APPLY_STEP(AXIS)(_INVERT_STEP_PIN(AXIS),0); \
  404. }
  405. #if MINIMUM_STEPPER_PULSE > 0
  406. static uint32_t pulse_start;
  407. pulse_start = TCNT0;
  408. #endif
  409. #if HAS_X_STEP
  410. PULSE_START(X);
  411. #endif
  412. #if HAS_Y_STEP
  413. PULSE_START(Y);
  414. #endif
  415. #if HAS_Z_STEP
  416. PULSE_START(Z);
  417. #endif
  418. #if DISABLED(ADVANCE) && DISABLED(LIN_ADVANCE)
  419. #if ENABLED(MIXING_EXTRUDER)
  420. // Keep updating the single E axis
  421. counter_E += current_block->steps[E_AXIS];
  422. // Tick the counters used for this mix
  423. MIXING_STEPPERS_LOOP(j) {
  424. // Step mixing steppers (proportionally)
  425. counter_M[j] += current_block->steps[E_AXIS];
  426. // Step when the counter goes over zero
  427. if (counter_M[j] > 0) En_STEP_WRITE(j, !INVERT_E_STEP_PIN);
  428. }
  429. #else // !MIXING_EXTRUDER
  430. PULSE_START(E);
  431. #endif
  432. #endif // !ADVANCE && !LIN_ADVANCE
  433. #if MINIMUM_STEPPER_PULSE > 0
  434. #define CYCLES_EATEN_BY_CODE 10
  435. while ((uint32_t)(TCNT0 - pulse_start) < (MINIMUM_STEPPER_PULSE * (F_CPU / 1000000UL)) - CYCLES_EATEN_BY_CODE) { /* nada */ }
  436. #endif
  437. #if HAS_X_STEP
  438. PULSE_STOP(X);
  439. #endif
  440. #if HAS_Y_STEP
  441. PULSE_STOP(Y);
  442. #endif
  443. #if HAS_Z_STEP
  444. PULSE_STOP(Z);
  445. #endif
  446. #if DISABLED(ADVANCE) && DISABLED(LIN_ADVANCE)
  447. #if ENABLED(MIXING_EXTRUDER)
  448. // Always step the single E axis
  449. if (counter_E > 0) {
  450. counter_E -= current_block->step_event_count;
  451. count_position[E_AXIS] += count_direction[E_AXIS];
  452. }
  453. MIXING_STEPPERS_LOOP(j) {
  454. if (counter_M[j] > 0) {
  455. counter_M[j] -= current_block->mix_event_count[j];
  456. En_STEP_WRITE(j, INVERT_E_STEP_PIN);
  457. }
  458. }
  459. #else // !MIXING_EXTRUDER
  460. PULSE_STOP(E);
  461. #endif
  462. #endif // !ADVANCE && !LIN_ADVANCE
  463. if (++step_events_completed >= current_block->step_event_count) {
  464. all_steps_done = true;
  465. break;
  466. }
  467. }
  468. #if ENABLED(ADVANCE) || ENABLED(LIN_ADVANCE)
  469. // If we have esteps to execute, fire the next ISR "now"
  470. if (e_steps[TOOL_E_INDEX]) OCR0A = TCNT0 + 2;
  471. #endif
  472. // Calculate new timer value
  473. uint16_t timer, step_rate;
  474. if (step_events_completed <= (uint32_t)current_block->accelerate_until) {
  475. MultiU24X32toH16(acc_step_rate, acceleration_time, current_block->acceleration_rate);
  476. acc_step_rate += current_block->initial_rate;
  477. // upper limit
  478. NOMORE(acc_step_rate, current_block->nominal_rate);
  479. // step_rate to timer interval
  480. timer = calc_timer(acc_step_rate);
  481. OCR1A = timer;
  482. acceleration_time += timer;
  483. #if ENABLED(LIN_ADVANCE)
  484. if (current_block->use_advance_lead)
  485. current_estep_rate[TOOL_E_INDEX] = ((uint32_t)acc_step_rate * current_block->e_speed_multiplier8) >> 8;
  486. if (current_block->use_advance_lead) {
  487. #if ENABLED(MIXING_EXTRUDER)
  488. MIXING_STEPPERS_LOOP(j)
  489. current_estep_rate[j] = ((uint32_t)acc_step_rate * current_block->e_speed_multiplier8 * current_block->step_event_count / current_block->mix_event_count[j]) >> 8;
  490. #else
  491. current_estep_rate[TOOL_E_INDEX] = ((uint32_t)acc_step_rate * current_block->e_speed_multiplier8) >> 8;
  492. #endif
  493. }
  494. #elif ENABLED(ADVANCE)
  495. advance += advance_rate * step_loops;
  496. //NOLESS(advance, current_block->advance);
  497. long advance_whole = advance >> 8,
  498. advance_factor = advance_whole - old_advance;
  499. // Do E steps + advance steps
  500. #if ENABLED(MIXING_EXTRUDER)
  501. // ...for mixing steppers proportionally
  502. MIXING_STEPPERS_LOOP(j)
  503. e_steps[j] += advance_factor * current_block->step_event_count / current_block->mix_event_count[j];
  504. #else
  505. // ...for the active extruder
  506. e_steps[TOOL_E_INDEX] += advance_factor;
  507. #endif
  508. old_advance = advance_whole;
  509. #endif // ADVANCE or LIN_ADVANCE
  510. #if ENABLED(ADVANCE) || ENABLED(LIN_ADVANCE)
  511. eISR_Rate = (timer >> 2) * step_loops / abs(e_steps[TOOL_E_INDEX]);
  512. #endif
  513. }
  514. else if (step_events_completed > (uint32_t)current_block->decelerate_after) {
  515. MultiU24X32toH16(step_rate, deceleration_time, current_block->acceleration_rate);
  516. if (step_rate <= acc_step_rate) { // Still decelerating?
  517. step_rate = acc_step_rate - step_rate;
  518. NOLESS(step_rate, current_block->final_rate);
  519. }
  520. else
  521. step_rate = current_block->final_rate;
  522. // step_rate to timer interval
  523. timer = calc_timer(step_rate);
  524. OCR1A = timer;
  525. deceleration_time += timer;
  526. #if ENABLED(LIN_ADVANCE)
  527. if (current_block->use_advance_lead) {
  528. #if ENABLED(MIXING_EXTRUDER)
  529. MIXING_STEPPERS_LOOP(j)
  530. current_estep_rate[j] = ((uint32_t)step_rate * current_block->e_speed_multiplier8 * current_block->step_event_count / current_block->mix_event_count[j]) >> 8;
  531. #else
  532. current_estep_rate[TOOL_E_INDEX] = ((uint32_t)step_rate * current_block->e_speed_multiplier8) >> 8;
  533. #endif
  534. }
  535. #elif ENABLED(ADVANCE)
  536. advance -= advance_rate * step_loops;
  537. NOLESS(advance, final_advance);
  538. // Do E steps + advance steps
  539. long advance_whole = advance >> 8,
  540. advance_factor = advance_whole - old_advance;
  541. #if ENABLED(MIXING_EXTRUDER)
  542. MIXING_STEPPERS_LOOP(j)
  543. e_steps[j] += advance_factor * current_block->step_event_count / current_block->mix_event_count[j];
  544. #else
  545. e_steps[TOOL_E_INDEX] += advance_factor;
  546. #endif
  547. old_advance = advance_whole;
  548. #endif // ADVANCE or LIN_ADVANCE
  549. #if ENABLED(ADVANCE) || ENABLED(LIN_ADVANCE)
  550. eISR_Rate = (timer >> 2) * step_loops / abs(e_steps[TOOL_E_INDEX]);
  551. #endif
  552. }
  553. else {
  554. #if ENABLED(LIN_ADVANCE)
  555. if (current_block->use_advance_lead)
  556. current_estep_rate[TOOL_E_INDEX] = final_estep_rate;
  557. eISR_Rate = (OCR1A_nominal >> 2) * step_loops_nominal / abs(e_steps[TOOL_E_INDEX]);
  558. #endif
  559. OCR1A = OCR1A_nominal;
  560. // ensure we're running at the correct step rate, even if we just came off an acceleration
  561. step_loops = step_loops_nominal;
  562. }
  563. OCR1A = (OCR1A < (TCNT1 + 16)) ? (TCNT1 + 16) : OCR1A;
  564. // If current block is finished, reset pointer
  565. if (all_steps_done) {
  566. current_block = NULL;
  567. planner.discard_current_block();
  568. }
  569. }
  570. }
  571. #if ENABLED(ADVANCE) || ENABLED(LIN_ADVANCE)
  572. // Timer interrupt for E. e_steps is set in the main routine;
  573. // Timer 0 is shared with millies
  574. ISR(TIMER0_COMPA_vect) { Stepper::advance_isr(); }
  575. void Stepper::advance_isr() {
  576. old_OCR0A += eISR_Rate;
  577. OCR0A = old_OCR0A;
  578. #define STEP_E_ONCE(INDEX) \
  579. if (e_steps[INDEX] != 0) { \
  580. E## INDEX ##_STEP_WRITE(INVERT_E_STEP_PIN); \
  581. if (e_steps[INDEX] < 0) { \
  582. E## INDEX ##_DIR_WRITE(INVERT_E## INDEX ##_DIR); \
  583. e_steps[INDEX]++; \
  584. } \
  585. else { \
  586. E## INDEX ##_DIR_WRITE(!INVERT_E## INDEX ##_DIR); \
  587. e_steps[INDEX]--; \
  588. } \
  589. E## INDEX ##_STEP_WRITE(!INVERT_E_STEP_PIN); \
  590. }
  591. // Step all E steppers that have steps
  592. for (uint8_t i = 0; i < step_loops; i++) {
  593. STEP_E_ONCE(0);
  594. #if E_STEPPERS > 1
  595. STEP_E_ONCE(1);
  596. #if E_STEPPERS > 2
  597. STEP_E_ONCE(2);
  598. #if E_STEPPERS > 3
  599. STEP_E_ONCE(3);
  600. #endif
  601. #endif
  602. #endif
  603. }
  604. }
  605. #endif // ADVANCE or LIN_ADVANCE
  606. void Stepper::init() {
  607. digipot_init(); //Initialize Digipot Motor Current
  608. microstep_init(); //Initialize Microstepping Pins
  609. // initialise TMC Steppers
  610. #if ENABLED(HAVE_TMCDRIVER)
  611. tmc_init();
  612. #endif
  613. // initialise L6470 Steppers
  614. #if ENABLED(HAVE_L6470DRIVER)
  615. L6470_init();
  616. #endif
  617. // Initialize Dir Pins
  618. #if HAS_X_DIR
  619. X_DIR_INIT;
  620. #endif
  621. #if HAS_X2_DIR
  622. X2_DIR_INIT;
  623. #endif
  624. #if HAS_Y_DIR
  625. Y_DIR_INIT;
  626. #if ENABLED(Y_DUAL_STEPPER_DRIVERS) && HAS_Y2_DIR
  627. Y2_DIR_INIT;
  628. #endif
  629. #endif
  630. #if HAS_Z_DIR
  631. Z_DIR_INIT;
  632. #if ENABLED(Z_DUAL_STEPPER_DRIVERS) && HAS_Z2_DIR
  633. Z2_DIR_INIT;
  634. #endif
  635. #endif
  636. #if HAS_E0_DIR
  637. E0_DIR_INIT;
  638. #endif
  639. #if HAS_E1_DIR
  640. E1_DIR_INIT;
  641. #endif
  642. #if HAS_E2_DIR
  643. E2_DIR_INIT;
  644. #endif
  645. #if HAS_E3_DIR
  646. E3_DIR_INIT;
  647. #endif
  648. //Initialize Enable Pins - steppers default to disabled.
  649. #if HAS_X_ENABLE
  650. X_ENABLE_INIT;
  651. if (!X_ENABLE_ON) X_ENABLE_WRITE(HIGH);
  652. #if ENABLED(DUAL_X_CARRIAGE) && HAS_X2_ENABLE
  653. X2_ENABLE_INIT;
  654. if (!X_ENABLE_ON) X2_ENABLE_WRITE(HIGH);
  655. #endif
  656. #endif
  657. #if HAS_Y_ENABLE
  658. Y_ENABLE_INIT;
  659. if (!Y_ENABLE_ON) Y_ENABLE_WRITE(HIGH);
  660. #if ENABLED(Y_DUAL_STEPPER_DRIVERS) && HAS_Y2_ENABLE
  661. Y2_ENABLE_INIT;
  662. if (!Y_ENABLE_ON) Y2_ENABLE_WRITE(HIGH);
  663. #endif
  664. #endif
  665. #if HAS_Z_ENABLE
  666. Z_ENABLE_INIT;
  667. if (!Z_ENABLE_ON) Z_ENABLE_WRITE(HIGH);
  668. #if ENABLED(Z_DUAL_STEPPER_DRIVERS) && HAS_Z2_ENABLE
  669. Z2_ENABLE_INIT;
  670. if (!Z_ENABLE_ON) Z2_ENABLE_WRITE(HIGH);
  671. #endif
  672. #endif
  673. #if HAS_E0_ENABLE
  674. E0_ENABLE_INIT;
  675. if (!E_ENABLE_ON) E0_ENABLE_WRITE(HIGH);
  676. #endif
  677. #if HAS_E1_ENABLE
  678. E1_ENABLE_INIT;
  679. if (!E_ENABLE_ON) E1_ENABLE_WRITE(HIGH);
  680. #endif
  681. #if HAS_E2_ENABLE
  682. E2_ENABLE_INIT;
  683. if (!E_ENABLE_ON) E2_ENABLE_WRITE(HIGH);
  684. #endif
  685. #if HAS_E3_ENABLE
  686. E3_ENABLE_INIT;
  687. if (!E_ENABLE_ON) E3_ENABLE_WRITE(HIGH);
  688. #endif
  689. //
  690. // Init endstops and pullups here
  691. //
  692. endstops.init();
  693. #define _STEP_INIT(AXIS) AXIS ##_STEP_INIT
  694. #define _WRITE_STEP(AXIS, HIGHLOW) AXIS ##_STEP_WRITE(HIGHLOW)
  695. #define _DISABLE(axis) disable_## axis()
  696. #define AXIS_INIT(axis, AXIS, PIN) \
  697. _STEP_INIT(AXIS); \
  698. _WRITE_STEP(AXIS, _INVERT_STEP_PIN(PIN)); \
  699. _DISABLE(axis)
  700. #define E_AXIS_INIT(NUM) AXIS_INIT(e## NUM, E## NUM, E)
  701. // Initialize Step Pins
  702. #if HAS_X_STEP
  703. #if ENABLED(X_DUAL_STEPPER_DRIVERS) || ENABLED(DUAL_X_CARRIAGE)
  704. X2_STEP_INIT;
  705. X2_STEP_WRITE(INVERT_X_STEP_PIN);
  706. #endif
  707. AXIS_INIT(x, X, X);
  708. #endif
  709. #if HAS_Y_STEP
  710. #if ENABLED(Y_DUAL_STEPPER_DRIVERS)
  711. Y2_STEP_INIT;
  712. Y2_STEP_WRITE(INVERT_Y_STEP_PIN);
  713. #endif
  714. AXIS_INIT(y, Y, Y);
  715. #endif
  716. #if HAS_Z_STEP
  717. #if ENABLED(Z_DUAL_STEPPER_DRIVERS)
  718. Z2_STEP_INIT;
  719. Z2_STEP_WRITE(INVERT_Z_STEP_PIN);
  720. #endif
  721. AXIS_INIT(z, Z, Z);
  722. #endif
  723. #if HAS_E0_STEP
  724. E_AXIS_INIT(0);
  725. #endif
  726. #if HAS_E1_STEP
  727. E_AXIS_INIT(1);
  728. #endif
  729. #if HAS_E2_STEP
  730. E_AXIS_INIT(2);
  731. #endif
  732. #if HAS_E3_STEP
  733. E_AXIS_INIT(3);
  734. #endif
  735. // waveform generation = 0100 = CTC
  736. CBI(TCCR1B, WGM13);
  737. SBI(TCCR1B, WGM12);
  738. CBI(TCCR1A, WGM11);
  739. CBI(TCCR1A, WGM10);
  740. // output mode = 00 (disconnected)
  741. TCCR1A &= ~(3 << COM1A0);
  742. TCCR1A &= ~(3 << COM1B0);
  743. // Set the timer pre-scaler
  744. // Generally we use a divider of 8, resulting in a 2MHz timer
  745. // frequency on a 16MHz MCU. If you are going to change this, be
  746. // sure to regenerate speed_lookuptable.h with
  747. // create_speed_lookuptable.py
  748. TCCR1B = (TCCR1B & ~(0x07 << CS10)) | (2 << CS10);
  749. OCR1A = 0x4000;
  750. TCNT1 = 0;
  751. ENABLE_STEPPER_DRIVER_INTERRUPT();
  752. #if ENABLED(ADVANCE) || ENABLED(LIN_ADVANCE)
  753. for (int i = 0; i < E_STEPPERS; i++) {
  754. e_steps[i] = 0;
  755. #if ENABLED(LIN_ADVANCE)
  756. current_adv_steps[i] = 0;
  757. #endif
  758. }
  759. #if defined(TCCR0A) && defined(WGM01)
  760. CBI(TCCR0A, WGM01);
  761. CBI(TCCR0A, WGM00);
  762. #endif
  763. SBI(TIMSK0, OCIE0A);
  764. #endif // ADVANCE or LIN_ADVANCE
  765. endstops.enable(true); // Start with endstops active. After homing they can be disabled
  766. sei();
  767. set_directions(); // Init directions to last_direction_bits = 0
  768. }
  769. /**
  770. * Block until all buffered steps are executed
  771. */
  772. void Stepper::synchronize() { while (planner.blocks_queued()) idle(); }
  773. /**
  774. * Set the stepper positions directly in steps
  775. *
  776. * The input is based on the typical per-axis XYZ steps.
  777. * For CORE machines XYZ needs to be translated to ABC.
  778. *
  779. * This allows get_axis_position_mm to correctly
  780. * derive the current XYZ position later on.
  781. */
  782. void Stepper::set_position(const long& x, const long& y, const long& z, const long& e) {
  783. CRITICAL_SECTION_START;
  784. #if ENABLED(COREXY)
  785. // corexy positioning
  786. // these equations follow the form of the dA and dB equations on http://www.corexy.com/theory.html
  787. count_position[A_AXIS] = x + y;
  788. count_position[B_AXIS] = x - y;
  789. count_position[Z_AXIS] = z;
  790. #elif ENABLED(COREXZ)
  791. // corexz planning
  792. count_position[A_AXIS] = x + z;
  793. count_position[Y_AXIS] = y;
  794. count_position[C_AXIS] = x - z;
  795. #elif ENABLED(COREYZ)
  796. // coreyz planning
  797. count_position[X_AXIS] = x;
  798. count_position[B_AXIS] = y + z;
  799. count_position[C_AXIS] = y - z;
  800. #else
  801. // default non-h-bot planning
  802. count_position[X_AXIS] = x;
  803. count_position[Y_AXIS] = y;
  804. count_position[Z_AXIS] = z;
  805. #endif
  806. count_position[E_AXIS] = e;
  807. CRITICAL_SECTION_END;
  808. }
  809. void Stepper::set_e_position(const long& e) {
  810. CRITICAL_SECTION_START;
  811. count_position[E_AXIS] = e;
  812. CRITICAL_SECTION_END;
  813. }
  814. /**
  815. * Get a stepper's position in steps.
  816. */
  817. long Stepper::position(AxisEnum axis) {
  818. CRITICAL_SECTION_START;
  819. long count_pos = count_position[axis];
  820. CRITICAL_SECTION_END;
  821. return count_pos;
  822. }
  823. /**
  824. * Get an axis position according to stepper position(s)
  825. * For CORE machines apply translation from ABC to XYZ.
  826. */
  827. float Stepper::get_axis_position_mm(AxisEnum axis) {
  828. float axis_steps;
  829. #if ENABLED(COREXY) || ENABLED(COREXZ) || ENABLED(COREYZ)
  830. // Requesting one of the "core" axes?
  831. if (axis == CORE_AXIS_1 || axis == CORE_AXIS_2) {
  832. CRITICAL_SECTION_START;
  833. long pos1 = count_position[CORE_AXIS_1],
  834. pos2 = count_position[CORE_AXIS_2];
  835. CRITICAL_SECTION_END;
  836. // ((a1+a2)+(a1-a2))/2 -> (a1+a2+a1-a2)/2 -> (a1+a1)/2 -> a1
  837. // ((a1+a2)-(a1-a2))/2 -> (a1+a2-a1+a2)/2 -> (a2+a2)/2 -> a2
  838. axis_steps = (pos1 + ((axis == CORE_AXIS_1) ? pos2 : -pos2)) * 0.5f;
  839. }
  840. else
  841. axis_steps = position(axis);
  842. #else
  843. axis_steps = position(axis);
  844. #endif
  845. return axis_steps * planner.steps_to_mm[axis];
  846. }
  847. void Stepper::finish_and_disable() {
  848. synchronize();
  849. disable_all_steppers();
  850. }
  851. void Stepper::quick_stop() {
  852. cleaning_buffer_counter = 5000;
  853. DISABLE_STEPPER_DRIVER_INTERRUPT();
  854. while (planner.blocks_queued()) planner.discard_current_block();
  855. current_block = NULL;
  856. ENABLE_STEPPER_DRIVER_INTERRUPT();
  857. }
  858. void Stepper::endstop_triggered(AxisEnum axis) {
  859. #if ENABLED(COREXY) || ENABLED(COREXZ) || ENABLED(COREYZ)
  860. float axis_pos = count_position[axis];
  861. if (axis == CORE_AXIS_1)
  862. axis_pos = (axis_pos + count_position[CORE_AXIS_2]) * 0.5;
  863. else if (axis == CORE_AXIS_2)
  864. axis_pos = (count_position[CORE_AXIS_1] - axis_pos) * 0.5;
  865. endstops_trigsteps[axis] = axis_pos;
  866. #else // !COREXY && !COREXZ && !COREYZ
  867. endstops_trigsteps[axis] = count_position[axis];
  868. #endif // !COREXY && !COREXZ && !COREYZ
  869. kill_current_block();
  870. }
  871. void Stepper::report_positions() {
  872. CRITICAL_SECTION_START;
  873. long xpos = count_position[X_AXIS],
  874. ypos = count_position[Y_AXIS],
  875. zpos = count_position[Z_AXIS];
  876. CRITICAL_SECTION_END;
  877. #if ENABLED(COREXY) || ENABLED(COREXZ)
  878. SERIAL_PROTOCOLPGM(MSG_COUNT_A);
  879. #else
  880. SERIAL_PROTOCOLPGM(MSG_COUNT_X);
  881. #endif
  882. SERIAL_PROTOCOL(xpos);
  883. #if ENABLED(COREXY) || ENABLED(COREYZ)
  884. SERIAL_PROTOCOLPGM(" B:");
  885. #else
  886. SERIAL_PROTOCOLPGM(" Y:");
  887. #endif
  888. SERIAL_PROTOCOL(ypos);
  889. #if ENABLED(COREXZ) || ENABLED(COREYZ)
  890. SERIAL_PROTOCOLPGM(" C:");
  891. #else
  892. SERIAL_PROTOCOLPGM(" Z:");
  893. #endif
  894. SERIAL_PROTOCOL(zpos);
  895. SERIAL_EOL;
  896. }
  897. #if ENABLED(BABYSTEPPING)
  898. // MUST ONLY BE CALLED BY AN ISR,
  899. // No other ISR should ever interrupt this!
  900. void Stepper::babystep(const uint8_t axis, const bool direction) {
  901. #define _ENABLE(axis) enable_## axis()
  902. #define _READ_DIR(AXIS) AXIS ##_DIR_READ
  903. #define _INVERT_DIR(AXIS) INVERT_## AXIS ##_DIR
  904. #define _APPLY_DIR(AXIS, INVERT) AXIS ##_APPLY_DIR(INVERT, true)
  905. #define BABYSTEP_AXIS(axis, AXIS, INVERT) { \
  906. _ENABLE(axis); \
  907. uint8_t old_pin = _READ_DIR(AXIS); \
  908. _APPLY_DIR(AXIS, _INVERT_DIR(AXIS)^direction^INVERT); \
  909. _APPLY_STEP(AXIS)(!_INVERT_STEP_PIN(AXIS), true); \
  910. delayMicroseconds(2); \
  911. _APPLY_STEP(AXIS)(_INVERT_STEP_PIN(AXIS), true); \
  912. _APPLY_DIR(AXIS, old_pin); \
  913. }
  914. switch (axis) {
  915. case X_AXIS:
  916. BABYSTEP_AXIS(x, X, false);
  917. break;
  918. case Y_AXIS:
  919. BABYSTEP_AXIS(y, Y, false);
  920. break;
  921. case Z_AXIS: {
  922. #if DISABLED(DELTA)
  923. BABYSTEP_AXIS(z, Z, BABYSTEP_INVERT_Z);
  924. #else // DELTA
  925. bool z_direction = direction ^ BABYSTEP_INVERT_Z;
  926. enable_x();
  927. enable_y();
  928. enable_z();
  929. uint8_t old_x_dir_pin = X_DIR_READ,
  930. old_y_dir_pin = Y_DIR_READ,
  931. old_z_dir_pin = Z_DIR_READ;
  932. //setup new step
  933. X_DIR_WRITE(INVERT_X_DIR ^ z_direction);
  934. Y_DIR_WRITE(INVERT_Y_DIR ^ z_direction);
  935. Z_DIR_WRITE(INVERT_Z_DIR ^ z_direction);
  936. //perform step
  937. X_STEP_WRITE(!INVERT_X_STEP_PIN);
  938. Y_STEP_WRITE(!INVERT_Y_STEP_PIN);
  939. Z_STEP_WRITE(!INVERT_Z_STEP_PIN);
  940. delayMicroseconds(2);
  941. X_STEP_WRITE(INVERT_X_STEP_PIN);
  942. Y_STEP_WRITE(INVERT_Y_STEP_PIN);
  943. Z_STEP_WRITE(INVERT_Z_STEP_PIN);
  944. //get old pin state back.
  945. X_DIR_WRITE(old_x_dir_pin);
  946. Y_DIR_WRITE(old_y_dir_pin);
  947. Z_DIR_WRITE(old_z_dir_pin);
  948. #endif
  949. } break;
  950. default: break;
  951. }
  952. }
  953. #endif //BABYSTEPPING
  954. /**
  955. * Software-controlled Stepper Motor Current
  956. */
  957. #if HAS_DIGIPOTSS
  958. // From Arduino DigitalPotControl example
  959. void Stepper::digitalPotWrite(int address, int value) {
  960. digitalWrite(DIGIPOTSS_PIN, LOW); // take the SS pin low to select the chip
  961. SPI.transfer(address); // send in the address and value via SPI:
  962. SPI.transfer(value);
  963. digitalWrite(DIGIPOTSS_PIN, HIGH); // take the SS pin high to de-select the chip:
  964. //delay(10);
  965. }
  966. #endif //HAS_DIGIPOTSS
  967. void Stepper::digipot_init() {
  968. #if HAS_DIGIPOTSS
  969. const uint8_t digipot_motor_current[] = DIGIPOT_MOTOR_CURRENT;
  970. SPI.begin();
  971. pinMode(DIGIPOTSS_PIN, OUTPUT);
  972. for (uint8_t i = 0; i < COUNT(digipot_motor_current); i++) {
  973. //digitalPotWrite(digipot_ch[i], digipot_motor_current[i]);
  974. digipot_current(i, digipot_motor_current[i]);
  975. }
  976. #endif
  977. #if HAS_MOTOR_CURRENT_PWM
  978. #if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
  979. pinMode(MOTOR_CURRENT_PWM_XY_PIN, OUTPUT);
  980. digipot_current(0, motor_current_setting[0]);
  981. #endif
  982. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
  983. pinMode(MOTOR_CURRENT_PWM_Z_PIN, OUTPUT);
  984. digipot_current(1, motor_current_setting[1]);
  985. #endif
  986. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
  987. pinMode(MOTOR_CURRENT_PWM_E_PIN, OUTPUT);
  988. digipot_current(2, motor_current_setting[2]);
  989. #endif
  990. //Set timer5 to 31khz so the PWM of the motor power is as constant as possible. (removes a buzzing noise)
  991. TCCR5B = (TCCR5B & ~(_BV(CS50) | _BV(CS51) | _BV(CS52))) | _BV(CS50);
  992. #endif
  993. }
  994. void Stepper::digipot_current(uint8_t driver, int current) {
  995. #if HAS_DIGIPOTSS
  996. const uint8_t digipot_ch[] = DIGIPOT_CHANNELS;
  997. digitalPotWrite(digipot_ch[driver], current);
  998. #elif HAS_MOTOR_CURRENT_PWM
  999. #define _WRITE_CURRENT_PWM(P) analogWrite(P, 255L * current / (MOTOR_CURRENT_PWM_RANGE))
  1000. switch (driver) {
  1001. #if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
  1002. case 0: _WRITE_CURRENT_PWM(MOTOR_CURRENT_PWM_XY_PIN); break;
  1003. #endif
  1004. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
  1005. case 1: _WRITE_CURRENT_PWM(MOTOR_CURRENT_PWM_Z_PIN); break;
  1006. #endif
  1007. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
  1008. case 2: _WRITE_CURRENT_PWM(MOTOR_CURRENT_PWM_E_PIN); break;
  1009. #endif
  1010. }
  1011. #else
  1012. UNUSED(driver);
  1013. UNUSED(current);
  1014. #endif
  1015. }
  1016. void Stepper::microstep_init() {
  1017. #if HAS_MICROSTEPS_E1
  1018. pinMode(E1_MS1_PIN, OUTPUT);
  1019. pinMode(E1_MS2_PIN, OUTPUT);
  1020. #endif
  1021. #if HAS_MICROSTEPS
  1022. pinMode(X_MS1_PIN, OUTPUT);
  1023. pinMode(X_MS2_PIN, OUTPUT);
  1024. pinMode(Y_MS1_PIN, OUTPUT);
  1025. pinMode(Y_MS2_PIN, OUTPUT);
  1026. pinMode(Z_MS1_PIN, OUTPUT);
  1027. pinMode(Z_MS2_PIN, OUTPUT);
  1028. pinMode(E0_MS1_PIN, OUTPUT);
  1029. pinMode(E0_MS2_PIN, OUTPUT);
  1030. const uint8_t microstep_modes[] = MICROSTEP_MODES;
  1031. for (uint16_t i = 0; i < COUNT(microstep_modes); i++)
  1032. microstep_mode(i, microstep_modes[i]);
  1033. #endif
  1034. }
  1035. /**
  1036. * Software-controlled Microstepping
  1037. */
  1038. void Stepper::microstep_ms(uint8_t driver, int8_t ms1, int8_t ms2) {
  1039. if (ms1 >= 0) switch (driver) {
  1040. case 0: digitalWrite(X_MS1_PIN, ms1); break;
  1041. case 1: digitalWrite(Y_MS1_PIN, ms1); break;
  1042. case 2: digitalWrite(Z_MS1_PIN, ms1); break;
  1043. case 3: digitalWrite(E0_MS1_PIN, ms1); break;
  1044. #if HAS_MICROSTEPS_E1
  1045. case 4: digitalWrite(E1_MS1_PIN, ms1); break;
  1046. #endif
  1047. }
  1048. if (ms2 >= 0) switch (driver) {
  1049. case 0: digitalWrite(X_MS2_PIN, ms2); break;
  1050. case 1: digitalWrite(Y_MS2_PIN, ms2); break;
  1051. case 2: digitalWrite(Z_MS2_PIN, ms2); break;
  1052. case 3: digitalWrite(E0_MS2_PIN, ms2); break;
  1053. #if PIN_EXISTS(E1_MS2)
  1054. case 4: digitalWrite(E1_MS2_PIN, ms2); break;
  1055. #endif
  1056. }
  1057. }
  1058. void Stepper::microstep_mode(uint8_t driver, uint8_t stepping_mode) {
  1059. switch (stepping_mode) {
  1060. case 1: microstep_ms(driver, MICROSTEP1); break;
  1061. case 2: microstep_ms(driver, MICROSTEP2); break;
  1062. case 4: microstep_ms(driver, MICROSTEP4); break;
  1063. case 8: microstep_ms(driver, MICROSTEP8); break;
  1064. case 16: microstep_ms(driver, MICROSTEP16); break;
  1065. }
  1066. }
  1067. void Stepper::microstep_readings() {
  1068. SERIAL_PROTOCOLLNPGM("MS1,MS2 Pins");
  1069. SERIAL_PROTOCOLPGM("X: ");
  1070. SERIAL_PROTOCOL(digitalRead(X_MS1_PIN));
  1071. SERIAL_PROTOCOLLN(digitalRead(X_MS2_PIN));
  1072. SERIAL_PROTOCOLPGM("Y: ");
  1073. SERIAL_PROTOCOL(digitalRead(Y_MS1_PIN));
  1074. SERIAL_PROTOCOLLN(digitalRead(Y_MS2_PIN));
  1075. SERIAL_PROTOCOLPGM("Z: ");
  1076. SERIAL_PROTOCOL(digitalRead(Z_MS1_PIN));
  1077. SERIAL_PROTOCOLLN(digitalRead(Z_MS2_PIN));
  1078. SERIAL_PROTOCOLPGM("E0: ");
  1079. SERIAL_PROTOCOL(digitalRead(E0_MS1_PIN));
  1080. SERIAL_PROTOCOLLN(digitalRead(E0_MS2_PIN));
  1081. #if HAS_MICROSTEPS_E1
  1082. SERIAL_PROTOCOLPGM("E1: ");
  1083. SERIAL_PROTOCOL(digitalRead(E1_MS1_PIN));
  1084. SERIAL_PROTOCOLLN(digitalRead(E1_MS2_PIN));
  1085. #endif
  1086. }
  1087. #if ENABLED(LIN_ADVANCE)
  1088. void Stepper::advance_M905(const float &k) {
  1089. if (k >= 0) extruder_advance_k = k;
  1090. SERIAL_ECHO_START;
  1091. SERIAL_ECHOPAIR("Advance factor: ", extruder_advance_k);
  1092. SERIAL_EOL;
  1093. }
  1094. #endif // LIN_ADVANCE