stepper.cpp 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474
  1. /*
  2. stepper.c - stepper motor driver: executes motion plans using stepper motors
  3. Part of Grbl
  4. Copyright (c) 2009-2011 Simen Svale Skogsrud
  5. Grbl is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. Grbl is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with Grbl. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. /* The timer calculations of this module informed by the 'RepRap cartesian firmware' by Zack Smith
  17. and Philipp Tiefenbacher. */
  18. #include "Marlin.h"
  19. #include "stepper.h"
  20. #include "planner.h"
  21. #include "temperature.h"
  22. #include "ultralcd.h"
  23. #include "language.h"
  24. #include "cardreader.h"
  25. #include "speed_lookuptable.h"
  26. #if defined(DIGIPOTSS_PIN) && DIGIPOTSS_PIN > -1
  27. #include <SPI.h>
  28. #endif
  29. #ifdef TMC2130
  30. #include "tmc2130.h"
  31. #endif //TMC2130
  32. #ifdef PAT9125
  33. #include "fsensor.h"
  34. int fsensor_counter = 0; //counter for e-steps
  35. #endif //PAT9125
  36. //===========================================================================
  37. //=============================public variables ============================
  38. //===========================================================================
  39. block_t *current_block; // A pointer to the block currently being traced
  40. bool x_min_endstop = false;
  41. bool x_max_endstop = false;
  42. bool y_min_endstop = false;
  43. bool y_max_endstop = false;
  44. bool z_min_endstop = false;
  45. bool z_max_endstop = false;
  46. //===========================================================================
  47. //=============================private variables ============================
  48. //===========================================================================
  49. //static makes it inpossible to be called from outside of this file by extern.!
  50. // Variables used by The Stepper Driver Interrupt
  51. static unsigned char out_bits; // The next stepping-bits to be output
  52. static int32_t counter_x, // Counter variables for the bresenham line tracer
  53. counter_y,
  54. counter_z,
  55. counter_e;
  56. volatile uint32_t step_events_completed; // The number of step events executed in the current block
  57. static int32_t acceleration_time, deceleration_time;
  58. //static unsigned long accelerate_until, decelerate_after, acceleration_rate, initial_rate, final_rate, nominal_rate;
  59. static uint16_t acc_step_rate; // needed for deccelaration start point
  60. static uint8_t step_loops;
  61. static uint16_t OCR1A_nominal;
  62. static uint8_t step_loops_nominal;
  63. volatile long endstops_trigsteps[3]={0,0,0};
  64. volatile long endstops_stepsTotal,endstops_stepsDone;
  65. static volatile bool endstop_x_hit=false;
  66. static volatile bool endstop_y_hit=false;
  67. static volatile bool endstop_z_hit=false;
  68. #ifdef ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
  69. bool abort_on_endstop_hit = false;
  70. #endif
  71. #ifdef MOTOR_CURRENT_PWM_XY_PIN
  72. int motor_current_setting[3] = DEFAULT_PWM_MOTOR_CURRENT;
  73. int motor_current_setting_silent[3] = DEFAULT_PWM_MOTOR_CURRENT;
  74. int motor_current_setting_loud[3] = DEFAULT_PWM_MOTOR_CURRENT_LOUD;
  75. #endif
  76. static bool old_x_min_endstop=false;
  77. static bool old_x_max_endstop=false;
  78. static bool old_y_min_endstop=false;
  79. static bool old_y_max_endstop=false;
  80. static bool old_z_min_endstop=false;
  81. static bool old_z_max_endstop=false;
  82. static bool check_endstops = true;
  83. static bool check_z_endstop = false;
  84. int8_t SilentMode = 0;
  85. volatile long count_position[NUM_AXIS] = { 0, 0, 0, 0};
  86. volatile signed char count_direction[NUM_AXIS] = { 1, 1, 1, 1};
  87. uint8_t LastStepMask = 0;
  88. #ifdef LIN_ADVANCE
  89. uint16_t ADV_NEVER = 65535;
  90. static uint16_t nextMainISR = 0;
  91. static uint16_t nextAdvanceISR = ADV_NEVER;
  92. static uint16_t eISR_Rate = ADV_NEVER;
  93. static volatile int e_steps; //Extrusion steps to be executed by the stepper
  94. static int final_estep_rate; //Speed of extruder at cruising speed
  95. static int current_estep_rate; //The current speed of the extruder
  96. static int current_adv_steps; //The current pretension of filament expressed in steps
  97. #define ADV_RATE(T, L) (e_steps ? (T) * (L) / abs(e_steps) : ADV_NEVER)
  98. #define _NEXT_ISR(T) nextMainISR = T
  99. #else
  100. #define _NEXT_ISR(T) OCR1A = T
  101. #endif
  102. //===========================================================================
  103. //=============================functions ============================
  104. //===========================================================================
  105. #define CHECK_ENDSTOPS if(check_endstops)
  106. #ifndef _NO_ASM
  107. // intRes = intIn1 * intIn2 >> 16
  108. // uses:
  109. // r26 to store 0
  110. // r27 to store the byte 1 of the 24 bit result
  111. #define MultiU16X8toH16(intRes, charIn1, intIn2) \
  112. asm volatile ( \
  113. "clr r26 \n\t" \
  114. "mul %A1, %B2 \n\t" \
  115. "movw %A0, r0 \n\t" \
  116. "mul %A1, %A2 \n\t" \
  117. "add %A0, r1 \n\t" \
  118. "adc %B0, r26 \n\t" \
  119. "lsr r0 \n\t" \
  120. "adc %A0, r26 \n\t" \
  121. "adc %B0, r26 \n\t" \
  122. "clr r1 \n\t" \
  123. : \
  124. "=&r" (intRes) \
  125. : \
  126. "d" (charIn1), \
  127. "d" (intIn2) \
  128. : \
  129. "r26" \
  130. )
  131. // intRes = longIn1 * longIn2 >> 24
  132. // uses:
  133. // r26 to store 0
  134. // r27 to store the byte 1 of the 48bit result
  135. #define MultiU24X24toH16(intRes, longIn1, longIn2) \
  136. asm volatile ( \
  137. "clr r26 \n\t" \
  138. "mul %A1, %B2 \n\t" \
  139. "mov r27, r1 \n\t" \
  140. "mul %B1, %C2 \n\t" \
  141. "movw %A0, r0 \n\t" \
  142. "mul %C1, %C2 \n\t" \
  143. "add %B0, r0 \n\t" \
  144. "mul %C1, %B2 \n\t" \
  145. "add %A0, r0 \n\t" \
  146. "adc %B0, r1 \n\t" \
  147. "mul %A1, %C2 \n\t" \
  148. "add r27, r0 \n\t" \
  149. "adc %A0, r1 \n\t" \
  150. "adc %B0, r26 \n\t" \
  151. "mul %B1, %B2 \n\t" \
  152. "add r27, r0 \n\t" \
  153. "adc %A0, r1 \n\t" \
  154. "adc %B0, r26 \n\t" \
  155. "mul %C1, %A2 \n\t" \
  156. "add r27, r0 \n\t" \
  157. "adc %A0, r1 \n\t" \
  158. "adc %B0, r26 \n\t" \
  159. "mul %B1, %A2 \n\t" \
  160. "add r27, r1 \n\t" \
  161. "adc %A0, r26 \n\t" \
  162. "adc %B0, r26 \n\t" \
  163. "lsr r27 \n\t" \
  164. "adc %A0, r26 \n\t" \
  165. "adc %B0, r26 \n\t" \
  166. "clr r1 \n\t" \
  167. : \
  168. "=&r" (intRes) \
  169. : \
  170. "d" (longIn1), \
  171. "d" (longIn2) \
  172. : \
  173. "r26" , "r27" \
  174. )
  175. #else //_NO_ASM
  176. void MultiU16X8toH16(unsigned short& intRes, unsigned char& charIn1, unsigned short& intIn2)
  177. {
  178. }
  179. void MultiU24X24toH16(uint16_t& intRes, int32_t& longIn1, long& longIn2)
  180. {
  181. }
  182. #endif //_NO_ASM
  183. // Some useful constants
  184. #define ENABLE_STEPPER_DRIVER_INTERRUPT() TIMSK1 |= (1<<OCIE1A)
  185. #define DISABLE_STEPPER_DRIVER_INTERRUPT() TIMSK1 &= ~(1<<OCIE1A)
  186. void checkHitEndstops()
  187. {
  188. if( endstop_x_hit || endstop_y_hit || endstop_z_hit) {
  189. SERIAL_ECHO_START;
  190. SERIAL_ECHORPGM(MSG_ENDSTOPS_HIT);
  191. if(endstop_x_hit) {
  192. SERIAL_ECHOPAIR(" X:",(float)endstops_trigsteps[X_AXIS]/axis_steps_per_unit[X_AXIS]);
  193. LCD_MESSAGERPGM(CAT2(MSG_ENDSTOPS_HIT, PSTR("X")));
  194. }
  195. if(endstop_y_hit) {
  196. SERIAL_ECHOPAIR(" Y:",(float)endstops_trigsteps[Y_AXIS]/axis_steps_per_unit[Y_AXIS]);
  197. LCD_MESSAGERPGM(CAT2(MSG_ENDSTOPS_HIT, PSTR("Y")));
  198. }
  199. if(endstop_z_hit) {
  200. SERIAL_ECHOPAIR(" Z:",(float)endstops_trigsteps[Z_AXIS]/axis_steps_per_unit[Z_AXIS]);
  201. LCD_MESSAGERPGM(CAT2(MSG_ENDSTOPS_HIT,PSTR("Z")));
  202. }
  203. SERIAL_ECHOLN("");
  204. endstop_x_hit=false;
  205. endstop_y_hit=false;
  206. endstop_z_hit=false;
  207. #if defined(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED) && defined(SDSUPPORT)
  208. if (abort_on_endstop_hit)
  209. {
  210. card.sdprinting = false;
  211. card.closefile();
  212. quickStop();
  213. setTargetHotend0(0);
  214. setTargetHotend1(0);
  215. setTargetHotend2(0);
  216. }
  217. #endif
  218. }
  219. }
  220. bool endstops_hit_on_purpose()
  221. {
  222. bool hit = endstop_x_hit || endstop_y_hit || endstop_z_hit;
  223. endstop_x_hit=false;
  224. endstop_y_hit=false;
  225. endstop_z_hit=false;
  226. return hit;
  227. }
  228. bool endstop_z_hit_on_purpose()
  229. {
  230. bool hit = endstop_z_hit;
  231. endstop_z_hit=false;
  232. return hit;
  233. }
  234. bool enable_endstops(bool check)
  235. {
  236. bool old = check_endstops;
  237. check_endstops = check;
  238. return old;
  239. }
  240. bool enable_z_endstop(bool check)
  241. {
  242. bool old = check_z_endstop;
  243. check_z_endstop = check;
  244. endstop_z_hit=false;
  245. return old;
  246. }
  247. // __________________________
  248. // /| |\ _________________ ^
  249. // / | | \ /| |\ |
  250. // / | | \ / | | \ s
  251. // / | | | | | \ p
  252. // / | | | | | \ e
  253. // +-----+------------------------+---+--+---------------+----+ e
  254. // | BLOCK 1 | BLOCK 2 | d
  255. //
  256. // time ----->
  257. //
  258. // The trapezoid is the shape the speed curve over time. It starts at block->initial_rate, accelerates
  259. // first block->accelerate_until step_events_completed, then keeps going at constant speed until
  260. // step_events_completed reaches block->decelerate_after after which it decelerates until the trapezoid generator is reset.
  261. // The slope of acceleration is calculated with the leib ramp alghorithm.
  262. void st_wake_up() {
  263. // TCNT1 = 0;
  264. ENABLE_STEPPER_DRIVER_INTERRUPT();
  265. }
  266. void step_wait(){
  267. for(int8_t i=0; i < 6; i++){
  268. }
  269. }
  270. FORCE_INLINE unsigned short calc_timer(unsigned short step_rate) {
  271. unsigned short timer;
  272. if(step_rate > MAX_STEP_FREQUENCY) step_rate = MAX_STEP_FREQUENCY;
  273. if(step_rate > 20000) { // If steprate > 20kHz >> step 4 times
  274. step_rate = (step_rate >> 2)&0x3fff;
  275. step_loops = 4;
  276. }
  277. else if(step_rate > 10000) { // If steprate > 10kHz >> step 2 times
  278. step_rate = (step_rate >> 1)&0x7fff;
  279. step_loops = 2;
  280. }
  281. else {
  282. step_loops = 1;
  283. }
  284. // step_loops = 1;
  285. if(step_rate < (F_CPU/500000)) step_rate = (F_CPU/500000);
  286. step_rate -= (F_CPU/500000); // Correct for minimal speed
  287. if(step_rate >= (8*256)){ // higher step rate
  288. unsigned short table_address = (unsigned short)&speed_lookuptable_fast[(unsigned char)(step_rate>>8)][0];
  289. unsigned char tmp_step_rate = (step_rate & 0x00ff);
  290. unsigned short gain = (unsigned short)pgm_read_word_near(table_address+2);
  291. MultiU16X8toH16(timer, tmp_step_rate, gain);
  292. timer = (unsigned short)pgm_read_word_near(table_address) - timer;
  293. }
  294. else { // lower step rates
  295. unsigned short table_address = (unsigned short)&speed_lookuptable_slow[0][0];
  296. table_address += ((step_rate)>>1) & 0xfffc;
  297. timer = (unsigned short)pgm_read_word_near(table_address);
  298. timer -= (((unsigned short)pgm_read_word_near(table_address+2) * (unsigned char)(step_rate & 0x0007))>>3);
  299. }
  300. if(timer < 100) { timer = 100; MYSERIAL.print(MSG_STEPPER_TOO_HIGH); MYSERIAL.println(step_rate); }//(20kHz this should never happen)
  301. return timer;
  302. }
  303. // Initializes the trapezoid generator from the current block. Called whenever a new
  304. // block begins.
  305. FORCE_INLINE void trapezoid_generator_reset() {
  306. deceleration_time = 0;
  307. // step_rate to timer interval
  308. OCR1A_nominal = calc_timer(current_block->nominal_rate);
  309. // make a note of the number of step loops required at nominal speed
  310. step_loops_nominal = step_loops;
  311. acc_step_rate = current_block->initial_rate;
  312. acceleration_time = calc_timer(acc_step_rate);
  313. _NEXT_ISR(acceleration_time);
  314. #ifdef LIN_ADVANCE
  315. if (current_block->use_advance_lead) {
  316. current_estep_rate = ((unsigned long)acc_step_rate * current_block->abs_adv_steps_multiplier8) >> 17;
  317. final_estep_rate = (current_block->nominal_rate * current_block->abs_adv_steps_multiplier8) >> 17;
  318. }
  319. #endif
  320. }
  321. // "The Stepper Driver Interrupt" - This timer interrupt is the workhorse.
  322. // It pops blocks from the block_buffer and executes them by pulsing the stepper pins appropriately.
  323. ISR(TIMER1_COMPA_vect) {
  324. #ifdef LIN_ADVANCE
  325. advance_isr_scheduler();
  326. #else
  327. isr();
  328. #endif
  329. }
  330. void isr() {
  331. //if (UVLO) uvlo();
  332. // If there is no current block, attempt to pop one from the buffer
  333. if (current_block == NULL) {
  334. // Anything in the buffer?
  335. current_block = plan_get_current_block();
  336. if (current_block != NULL) {
  337. #ifdef PAT9125
  338. fsensor_counter = 0;
  339. fsensor_st_block_begin(current_block);
  340. #endif //PAT9125
  341. // The busy flag is set by the plan_get_current_block() call.
  342. // current_block->busy = true;
  343. trapezoid_generator_reset();
  344. counter_x = -(current_block->step_event_count >> 1);
  345. counter_y = counter_x;
  346. counter_z = counter_x;
  347. counter_e = counter_x;
  348. step_events_completed = 0;
  349. #ifdef Z_LATE_ENABLE
  350. if(current_block->steps_z > 0) {
  351. enable_z();
  352. _NEXT_ISR(2000); //1ms wait
  353. return;
  354. }
  355. #endif
  356. }
  357. else {
  358. _NEXT_ISR(2000); // 1kHz.
  359. }
  360. }
  361. LastStepMask = 0;
  362. if (current_block != NULL) {
  363. // Set directions TO DO This should be done once during init of trapezoid. Endstops -> interrupt
  364. out_bits = current_block->direction_bits;
  365. // Set the direction bits (X_AXIS=A_AXIS and Y_AXIS=B_AXIS for COREXY)
  366. if((out_bits & (1<<X_AXIS))!=0){
  367. WRITE(X_DIR_PIN, INVERT_X_DIR);
  368. count_direction[X_AXIS]=-1;
  369. }
  370. else{
  371. WRITE(X_DIR_PIN, !INVERT_X_DIR);
  372. count_direction[X_AXIS]=1;
  373. }
  374. if((out_bits & (1<<Y_AXIS))!=0){
  375. WRITE(Y_DIR_PIN, INVERT_Y_DIR);
  376. #ifdef Y_DUAL_STEPPER_DRIVERS
  377. WRITE(Y2_DIR_PIN, !(INVERT_Y_DIR == INVERT_Y2_VS_Y_DIR));
  378. #endif
  379. count_direction[Y_AXIS]=-1;
  380. }
  381. else{
  382. WRITE(Y_DIR_PIN, !INVERT_Y_DIR);
  383. #ifdef Y_DUAL_STEPPER_DRIVERS
  384. WRITE(Y2_DIR_PIN, (INVERT_Y_DIR == INVERT_Y2_VS_Y_DIR));
  385. #endif
  386. count_direction[Y_AXIS]=1;
  387. }
  388. // Set direction en check limit switches
  389. #ifndef COREXY
  390. if ((out_bits & (1<<X_AXIS)) != 0) { // stepping along -X axis
  391. #else
  392. if ((((out_bits & (1<<X_AXIS)) != 0)&&(out_bits & (1<<Y_AXIS)) != 0)) { //-X occurs for -A and -B
  393. #endif
  394. CHECK_ENDSTOPS
  395. {
  396. {
  397. #if ( (defined(X_MIN_PIN) && (X_MIN_PIN > -1)) || defined(TMC2130_SG_HOMING) ) && !defined(DEBUG_DISABLE_XMINLIMIT)
  398. #ifdef TMC2130_SG_HOMING
  399. // Stall guard homing turned on, now decide if software or hardware one
  400. #ifndef TMC2130_SG_HOMING_SW_XY
  401. x_min_endstop = (READ(X_TMC2130_DIAG) != X_MIN_ENDSTOP_INVERTING);
  402. #else //TMC2130_SG_HOMING_SW_XY
  403. x_min_endstop = tmc2130_axis_stalled[X_AXIS];
  404. #endif //TMC2130_SG_HOMING_SW_XY
  405. #else
  406. // Normal homing
  407. x_min_endstop = (READ(X_MIN_PIN) != X_MIN_ENDSTOP_INVERTING);
  408. #endif
  409. if(x_min_endstop && old_x_min_endstop && (current_block->steps_x > 0)) {
  410. endstops_trigsteps[X_AXIS] = count_position[X_AXIS];
  411. endstop_x_hit=true;
  412. step_events_completed = current_block->step_event_count;
  413. }
  414. old_x_min_endstop = x_min_endstop;
  415. #endif
  416. }
  417. }
  418. }
  419. else { // +direction
  420. CHECK_ENDSTOPS
  421. {
  422. {
  423. #if ( (defined(X_MAX_PIN) && (X_MAX_PIN > -1)) || defined(TMC2130_SG_HOMING) ) && !defined(DEBUG_DISABLE_XMAXLIMIT)
  424. #ifdef TMC2130_SG_HOMING
  425. // Stall guard homing turned on, now decide if software or hardware one
  426. #ifndef TMC2130_SG_HOMING_SW_XY
  427. x_max_endstop = (READ(X_TMC2130_DIAG) != X_MAX_ENDSTOP_INVERTING);
  428. #else //TMC2130_SG_HOMING_SW_XY
  429. x_max_endstop = tmc2130_axis_stalled[X_AXIS];
  430. #endif //TMC2130_SG_HOMING_SW_XY
  431. #else
  432. // Normal homing
  433. x_max_endstop = (READ(X_MAX_PIN) != X_MAX_ENDSTOP_INVERTING);
  434. #endif
  435. if(x_max_endstop && old_x_max_endstop && (current_block->steps_x > 0)){
  436. endstops_trigsteps[X_AXIS] = count_position[X_AXIS];
  437. endstop_x_hit=true;
  438. step_events_completed = current_block->step_event_count;
  439. }
  440. old_x_max_endstop = x_max_endstop;
  441. #endif
  442. }
  443. }
  444. }
  445. #ifndef COREXY
  446. if ((out_bits & (1<<Y_AXIS)) != 0) { // -direction
  447. #else
  448. if ((((out_bits & (1<<X_AXIS)) != 0)&&(out_bits & (1<<Y_AXIS)) == 0)) { // -Y occurs for -A and +B
  449. #endif
  450. CHECK_ENDSTOPS
  451. {
  452. #if ( (defined(Y_MIN_PIN) && (Y_MIN_PIN > -1)) || defined(TMC2130_SG_HOMING) ) && !defined(DEBUG_DISABLE_YMINLIMIT)
  453. #ifdef TMC2130_SG_HOMING
  454. // Stall guard homing turned on, now decide if software or hardware one
  455. #ifndef TMC2130_SG_HOMING_SW_XY
  456. y_min_endstop = (READ(Y_TMC2130_DIAG) != Y_MIN_ENDSTOP_INVERTING);
  457. #else //TMC2130_SG_HOMING_SW_XY
  458. y_min_endstop = tmc2130_axis_stalled[Y_AXIS];
  459. #endif //TMC2130_SG_HOMING_SW_XY
  460. #else
  461. // Normal homing
  462. y_min_endstop = (READ(Y_MIN_PIN) != Y_MIN_ENDSTOP_INVERTING);
  463. #endif
  464. if(y_min_endstop && old_y_min_endstop && (current_block->steps_y > 0)) {
  465. endstops_trigsteps[Y_AXIS] = count_position[Y_AXIS];
  466. endstop_y_hit=true;
  467. step_events_completed = current_block->step_event_count;
  468. }
  469. old_y_min_endstop = y_min_endstop;
  470. #endif
  471. }
  472. }
  473. else { // +direction
  474. CHECK_ENDSTOPS
  475. {
  476. #if ( (defined(Y_MAX_PIN) && (Y_MAX_PIN > -1)) || defined(TMC2130_SG_HOMING) ) && !defined(DEBUG_DISABLE_YMAXLIMIT)
  477. #ifdef TMC2130_SG_HOMING
  478. // Stall guard homing turned on, now decide if software or hardware one
  479. #ifndef TMC2130_SG_HOMING_SW_XY
  480. y_max_endstop = (READ(Y_TMC2130_DIAG) != Y_MAX_ENDSTOP_INVERTING);
  481. #else //TMC2130_SG_HOMING_SW_XY
  482. y_max_endstop = tmc2130_axis_stalled[Y_AXIS];
  483. #endif //TMC2130_SG_HOMING_SW_XY
  484. #else
  485. // Normal homing
  486. y_max_endstop = (READ(Y_MAX_PIN) != Y_MAX_ENDSTOP_INVERTING);
  487. #endif
  488. if(y_max_endstop && old_y_max_endstop && (current_block->steps_y > 0)){
  489. endstops_trigsteps[Y_AXIS] = count_position[Y_AXIS];
  490. endstop_y_hit=true;
  491. step_events_completed = current_block->step_event_count;
  492. }
  493. old_y_max_endstop = y_max_endstop;
  494. #endif
  495. }
  496. }
  497. if ((out_bits & (1<<Z_AXIS)) != 0) { // -direction
  498. WRITE(Z_DIR_PIN,INVERT_Z_DIR);
  499. #ifdef Z_DUAL_STEPPER_DRIVERS
  500. WRITE(Z2_DIR_PIN,INVERT_Z_DIR);
  501. #endif
  502. count_direction[Z_AXIS]=-1;
  503. if(check_endstops && ! check_z_endstop)
  504. {
  505. #if defined(Z_MIN_PIN) && (Z_MIN_PIN > -1) && !defined(DEBUG_DISABLE_ZMINLIMIT)
  506. z_min_endstop=(READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING);
  507. if(z_min_endstop && old_z_min_endstop && (current_block->steps_z > 0)) {
  508. endstops_trigsteps[Z_AXIS] = count_position[Z_AXIS];
  509. endstop_z_hit=true;
  510. step_events_completed = current_block->step_event_count;
  511. }
  512. old_z_min_endstop = z_min_endstop;
  513. #endif
  514. }
  515. }
  516. else { // +direction
  517. WRITE(Z_DIR_PIN,!INVERT_Z_DIR);
  518. #ifdef Z_DUAL_STEPPER_DRIVERS
  519. WRITE(Z2_DIR_PIN,!INVERT_Z_DIR);
  520. #endif
  521. count_direction[Z_AXIS]=1;
  522. CHECK_ENDSTOPS
  523. {
  524. #if defined(Z_MAX_PIN) && (Z_MAX_PIN > -1) && !defined(DEBUG_DISABLE_ZMAXLIMIT)
  525. #ifndef TMC2130_SG_HOMING_SW_Z
  526. z_max_endstop = (READ(Z_MAX_PIN) != Z_MAX_ENDSTOP_INVERTING);
  527. #else //TMC2130_SG_HOMING_SW_Z
  528. z_max_endstop = tmc2130_axis_stalled[Z_AXIS];
  529. #endif //TMC2130_SG_HOMING_SW_Z
  530. if(z_max_endstop && old_z_max_endstop && (current_block->steps_z > 0)) {
  531. endstops_trigsteps[Z_AXIS] = count_position[Z_AXIS];
  532. endstop_z_hit=true;
  533. step_events_completed = current_block->step_event_count;
  534. }
  535. old_z_max_endstop = z_max_endstop;
  536. #endif
  537. }
  538. }
  539. // Supporting stopping on a trigger of the Z-stop induction sensor, not only for the Z-minus movements.
  540. #if defined(Z_MIN_PIN) && (Z_MIN_PIN > -1) && !defined(DEBUG_DISABLE_ZMINLIMIT)
  541. if(check_z_endstop) {
  542. // Check the Z min end-stop no matter what.
  543. // Good for searching for the center of an induction target.
  544. z_min_endstop=(READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING);
  545. if(z_min_endstop && old_z_min_endstop) {
  546. endstops_trigsteps[Z_AXIS] = count_position[Z_AXIS];
  547. endstop_z_hit=true;
  548. step_events_completed = current_block->step_event_count;
  549. }
  550. old_z_min_endstop = z_min_endstop;
  551. }
  552. #endif
  553. if ((out_bits & (1 << E_AXIS)) != 0)
  554. { // -direction
  555. //AKU
  556. #ifdef SNMM
  557. if (snmm_extruder == 0 || snmm_extruder == 2)
  558. {
  559. NORM_E_DIR();
  560. }
  561. else
  562. {
  563. REV_E_DIR();
  564. }
  565. #else
  566. REV_E_DIR();
  567. #endif // SNMM
  568. count_direction[E_AXIS] = -1;
  569. }
  570. else
  571. { // +direction
  572. #ifdef SNMM
  573. if (snmm_extruder == 0 || snmm_extruder == 2)
  574. {
  575. REV_E_DIR();
  576. }
  577. else
  578. {
  579. NORM_E_DIR();
  580. }
  581. #else
  582. NORM_E_DIR();
  583. #endif // SNMM
  584. count_direction[E_AXIS] = 1;
  585. }
  586. for(uint8_t i=0; i < step_loops; i++) { // Take multiple steps per interrupt (For high speed moves)
  587. #ifndef AT90USB
  588. MSerial.checkRx(); // Check for serial chars.
  589. #endif
  590. #ifdef LIN_ADVANCE
  591. counter_e += current_block->steps_e;
  592. if (counter_e > 0) {
  593. counter_e -= current_block->step_event_count;
  594. count_position[E_AXIS] += count_direction[E_AXIS];
  595. ((out_bits&(1<<E_AXIS))!=0) ? --e_steps : ++e_steps;
  596. }
  597. #endif
  598. counter_x += current_block->steps_x;
  599. if (counter_x > 0) {
  600. WRITE(X_STEP_PIN, !INVERT_X_STEP_PIN);
  601. LastStepMask |= X_AXIS_MASK;
  602. #ifdef DEBUG_XSTEP_DUP_PIN
  603. WRITE(DEBUG_XSTEP_DUP_PIN,!INVERT_X_STEP_PIN);
  604. #endif //DEBUG_XSTEP_DUP_PIN
  605. counter_x -= current_block->step_event_count;
  606. count_position[X_AXIS]+=count_direction[X_AXIS];
  607. WRITE(X_STEP_PIN, INVERT_X_STEP_PIN);
  608. #ifdef DEBUG_XSTEP_DUP_PIN
  609. WRITE(DEBUG_XSTEP_DUP_PIN,INVERT_X_STEP_PIN);
  610. #endif //DEBUG_XSTEP_DUP_PIN
  611. }
  612. counter_y += current_block->steps_y;
  613. if (counter_y > 0) {
  614. WRITE(Y_STEP_PIN, !INVERT_Y_STEP_PIN);
  615. LastStepMask |= Y_AXIS_MASK;
  616. #ifdef DEBUG_YSTEP_DUP_PIN
  617. WRITE(DEBUG_YSTEP_DUP_PIN,!INVERT_Y_STEP_PIN);
  618. #endif //DEBUG_YSTEP_DUP_PIN
  619. #ifdef Y_DUAL_STEPPER_DRIVERS
  620. WRITE(Y2_STEP_PIN, !INVERT_Y_STEP_PIN);
  621. #endif
  622. counter_y -= current_block->step_event_count;
  623. count_position[Y_AXIS]+=count_direction[Y_AXIS];
  624. WRITE(Y_STEP_PIN, INVERT_Y_STEP_PIN);
  625. #ifdef DEBUG_YSTEP_DUP_PIN
  626. WRITE(DEBUG_YSTEP_DUP_PIN,INVERT_Y_STEP_PIN);
  627. #endif //DEBUG_YSTEP_DUP_PIN
  628. #ifdef Y_DUAL_STEPPER_DRIVERS
  629. WRITE(Y2_STEP_PIN, INVERT_Y_STEP_PIN);
  630. #endif
  631. }
  632. counter_z += current_block->steps_z;
  633. if (counter_z > 0) {
  634. WRITE(Z_STEP_PIN, !INVERT_Z_STEP_PIN);
  635. LastStepMask |= Z_AXIS_MASK;
  636. #ifdef Z_DUAL_STEPPER_DRIVERS
  637. WRITE(Z2_STEP_PIN, !INVERT_Z_STEP_PIN);
  638. #endif
  639. counter_z -= current_block->step_event_count;
  640. count_position[Z_AXIS]+=count_direction[Z_AXIS];
  641. WRITE(Z_STEP_PIN, INVERT_Z_STEP_PIN);
  642. #ifdef Z_DUAL_STEPPER_DRIVERS
  643. WRITE(Z2_STEP_PIN, INVERT_Z_STEP_PIN);
  644. #endif
  645. }
  646. #ifndef LIN_ADVANCE
  647. counter_e += current_block->steps_e;
  648. if (counter_e > 0) {
  649. WRITE_E_STEP(!INVERT_E_STEP_PIN);
  650. counter_e -= current_block->step_event_count;
  651. count_position[E_AXIS]+=count_direction[E_AXIS];
  652. WRITE_E_STEP(INVERT_E_STEP_PIN);
  653. #ifdef PAT9125
  654. fsensor_counter++;
  655. #endif //PAT9125
  656. }
  657. #endif
  658. step_events_completed += 1;
  659. if(step_events_completed >= current_block->step_event_count) break;
  660. }
  661. #ifdef LIN_ADVANCE
  662. if (current_block->use_advance_lead) {
  663. const int delta_adv_steps = current_estep_rate - current_adv_steps;
  664. current_adv_steps += delta_adv_steps;
  665. e_steps += delta_adv_steps;
  666. }
  667. // If we have esteps to execute, fire the next advance_isr "now"
  668. if (e_steps) nextAdvanceISR = 0;
  669. #endif
  670. // Calculare new timer value
  671. unsigned short timer;
  672. uint16_t step_rate;
  673. if (step_events_completed <= (unsigned long int)current_block->accelerate_until) {
  674. // v = t * a -> acc_step_rate = acceleration_time * current_block->acceleration_rate
  675. MultiU24X24toH16(acc_step_rate, acceleration_time, current_block->acceleration_rate);
  676. acc_step_rate += current_block->initial_rate;
  677. // upper limit
  678. if(acc_step_rate > current_block->nominal_rate)
  679. acc_step_rate = current_block->nominal_rate;
  680. // step_rate to timer interval
  681. timer = calc_timer(acc_step_rate);
  682. _NEXT_ISR(timer);
  683. acceleration_time += timer;
  684. #ifdef LIN_ADVANCE
  685. if (current_block->use_advance_lead) {
  686. current_estep_rate = ((uint32_t)acc_step_rate * current_block->abs_adv_steps_multiplier8) >> 17;
  687. }
  688. eISR_Rate = ADV_RATE(timer, step_loops);
  689. #endif
  690. }
  691. else if (step_events_completed > (unsigned long int)current_block->decelerate_after) {
  692. MultiU24X24toH16(step_rate, deceleration_time, current_block->acceleration_rate);
  693. if(step_rate > acc_step_rate) { // Check step_rate stays positive
  694. step_rate = current_block->final_rate;
  695. }
  696. else {
  697. step_rate = acc_step_rate - step_rate; // Decelerate from aceleration end point.
  698. }
  699. // lower limit
  700. if(step_rate < current_block->final_rate)
  701. step_rate = current_block->final_rate;
  702. // step_rate to timer interval
  703. timer = calc_timer(step_rate);
  704. _NEXT_ISR(timer);
  705. deceleration_time += timer;
  706. #ifdef LIN_ADVANCE
  707. if (current_block->use_advance_lead) {
  708. current_estep_rate = ((uint32_t)step_rate * current_block->abs_adv_steps_multiplier8) >> 17;
  709. }
  710. eISR_Rate = ADV_RATE(timer, step_loops);
  711. #endif
  712. }
  713. else {
  714. #ifdef LIN_ADVANCE
  715. if (current_block->use_advance_lead)
  716. current_estep_rate = final_estep_rate;
  717. eISR_Rate = ADV_RATE(OCR1A_nominal, step_loops_nominal);
  718. #endif
  719. _NEXT_ISR(OCR1A_nominal);
  720. // ensure we're running at the correct step rate, even if we just came off an acceleration
  721. step_loops = step_loops_nominal;
  722. }
  723. // If current block is finished, reset pointer
  724. if (step_events_completed >= current_block->step_event_count) {
  725. #ifdef PAT9125
  726. fsensor_st_block_chunk(current_block, fsensor_counter);
  727. fsensor_counter = 0;
  728. #endif //PAT9125
  729. current_block = NULL;
  730. plan_discard_current_block();
  731. }
  732. #ifdef PAT9125
  733. else if (fsensor_counter >= fsensor_chunk_len)
  734. {
  735. fsensor_st_block_chunk(current_block, fsensor_counter);
  736. fsensor_counter = 0;
  737. }
  738. #endif //PAT9125
  739. }
  740. #ifdef TMC2130
  741. tmc2130_st_isr(LastStepMask);
  742. #endif //TMC2130
  743. }
  744. #ifdef LIN_ADVANCE
  745. // Timer interrupt for E. e_steps is set in the main routine.
  746. void advance_isr() {
  747. nextAdvanceISR = eISR_Rate;
  748. if (e_steps) {
  749. bool dir =
  750. #ifdef SNMM
  751. ((e_steps < 0) == (snmm_extruder & 1))
  752. #else
  753. (e_steps < 0)
  754. #endif
  755. ? INVERT_E0_DIR : !INVERT_E0_DIR; //If we have SNMM, reverse every second extruder.
  756. WRITE(E0_DIR_PIN, dir);
  757. for (uint8_t i = step_loops; e_steps && i--;) {
  758. WRITE(E0_STEP_PIN, !INVERT_E_STEP_PIN);
  759. e_steps < 0 ? ++e_steps : --e_steps;
  760. WRITE(E0_STEP_PIN, INVERT_E_STEP_PIN);
  761. #ifdef PAT9125
  762. fsensor_counter++;
  763. #endif //PAT9125
  764. }
  765. }
  766. }
  767. void advance_isr_scheduler() {
  768. // Run main stepping ISR if flagged
  769. if (!nextMainISR) isr();
  770. // Run Advance stepping ISR if flagged
  771. if (!nextAdvanceISR) advance_isr();
  772. // Is the next advance ISR scheduled before the next main ISR?
  773. if (nextAdvanceISR <= nextMainISR) {
  774. // Set up the next interrupt
  775. OCR1A = nextAdvanceISR;
  776. // New interval for the next main ISR
  777. if (nextMainISR) nextMainISR -= nextAdvanceISR;
  778. // Will call Stepper::advance_isr on the next interrupt
  779. nextAdvanceISR = 0;
  780. }
  781. else {
  782. // The next main ISR comes first
  783. OCR1A = nextMainISR;
  784. // New interval for the next advance ISR, if any
  785. if (nextAdvanceISR && nextAdvanceISR != ADV_NEVER)
  786. nextAdvanceISR -= nextMainISR;
  787. // Will call Stepper::isr on the next interrupt
  788. nextMainISR = 0;
  789. }
  790. // Don't run the ISR faster than possible
  791. if (OCR1A < TCNT1 + 16) OCR1A = TCNT1 + 16;
  792. }
  793. void clear_current_adv_vars() {
  794. e_steps = 0; //Should be already 0 at an filament change event, but just to be sure..
  795. current_adv_steps = 0;
  796. }
  797. #endif // LIN_ADVANCE
  798. void st_init()
  799. {
  800. #ifdef TMC2130
  801. tmc2130_init();
  802. #endif //TMC2130
  803. digipot_init(); //Initialize Digipot Motor Current
  804. microstep_init(); //Initialize Microstepping Pins
  805. //Initialize Dir Pins
  806. #if defined(X_DIR_PIN) && X_DIR_PIN > -1
  807. SET_OUTPUT(X_DIR_PIN);
  808. #endif
  809. #if defined(X2_DIR_PIN) && X2_DIR_PIN > -1
  810. SET_OUTPUT(X2_DIR_PIN);
  811. #endif
  812. #if defined(Y_DIR_PIN) && Y_DIR_PIN > -1
  813. SET_OUTPUT(Y_DIR_PIN);
  814. #if defined(Y_DUAL_STEPPER_DRIVERS) && defined(Y2_DIR_PIN) && (Y2_DIR_PIN > -1)
  815. SET_OUTPUT(Y2_DIR_PIN);
  816. #endif
  817. #endif
  818. #if defined(Z_DIR_PIN) && Z_DIR_PIN > -1
  819. SET_OUTPUT(Z_DIR_PIN);
  820. #if defined(Z_DUAL_STEPPER_DRIVERS) && defined(Z2_DIR_PIN) && (Z2_DIR_PIN > -1)
  821. SET_OUTPUT(Z2_DIR_PIN);
  822. #endif
  823. #endif
  824. #if defined(E0_DIR_PIN) && E0_DIR_PIN > -1
  825. SET_OUTPUT(E0_DIR_PIN);
  826. #endif
  827. #if defined(E1_DIR_PIN) && (E1_DIR_PIN > -1)
  828. SET_OUTPUT(E1_DIR_PIN);
  829. #endif
  830. #if defined(E2_DIR_PIN) && (E2_DIR_PIN > -1)
  831. SET_OUTPUT(E2_DIR_PIN);
  832. #endif
  833. //Initialize Enable Pins - steppers default to disabled.
  834. #if defined(X_ENABLE_PIN) && X_ENABLE_PIN > -1
  835. SET_OUTPUT(X_ENABLE_PIN);
  836. if(!X_ENABLE_ON) WRITE(X_ENABLE_PIN,HIGH);
  837. #endif
  838. #if defined(X2_ENABLE_PIN) && X2_ENABLE_PIN > -1
  839. SET_OUTPUT(X2_ENABLE_PIN);
  840. if(!X_ENABLE_ON) WRITE(X2_ENABLE_PIN,HIGH);
  841. #endif
  842. #if defined(Y_ENABLE_PIN) && Y_ENABLE_PIN > -1
  843. SET_OUTPUT(Y_ENABLE_PIN);
  844. if(!Y_ENABLE_ON) WRITE(Y_ENABLE_PIN,HIGH);
  845. #if defined(Y_DUAL_STEPPER_DRIVERS) && defined(Y2_ENABLE_PIN) && (Y2_ENABLE_PIN > -1)
  846. SET_OUTPUT(Y2_ENABLE_PIN);
  847. if(!Y_ENABLE_ON) WRITE(Y2_ENABLE_PIN,HIGH);
  848. #endif
  849. #endif
  850. #if defined(Z_ENABLE_PIN) && Z_ENABLE_PIN > -1
  851. SET_OUTPUT(Z_ENABLE_PIN);
  852. if(!Z_ENABLE_ON) WRITE(Z_ENABLE_PIN,HIGH);
  853. #if defined(Z_DUAL_STEPPER_DRIVERS) && defined(Z2_ENABLE_PIN) && (Z2_ENABLE_PIN > -1)
  854. SET_OUTPUT(Z2_ENABLE_PIN);
  855. if(!Z_ENABLE_ON) WRITE(Z2_ENABLE_PIN,HIGH);
  856. #endif
  857. #endif
  858. #if defined(E0_ENABLE_PIN) && (E0_ENABLE_PIN > -1)
  859. SET_OUTPUT(E0_ENABLE_PIN);
  860. if(!E_ENABLE_ON) WRITE(E0_ENABLE_PIN,HIGH);
  861. #endif
  862. #if defined(E1_ENABLE_PIN) && (E1_ENABLE_PIN > -1)
  863. SET_OUTPUT(E1_ENABLE_PIN);
  864. if(!E_ENABLE_ON) WRITE(E1_ENABLE_PIN,HIGH);
  865. #endif
  866. #if defined(E2_ENABLE_PIN) && (E2_ENABLE_PIN > -1)
  867. SET_OUTPUT(E2_ENABLE_PIN);
  868. if(!E_ENABLE_ON) WRITE(E2_ENABLE_PIN,HIGH);
  869. #endif
  870. //endstops and pullups
  871. #ifdef TMC2130_SG_HOMING
  872. SET_INPUT(X_TMC2130_DIAG);
  873. WRITE(X_TMC2130_DIAG,HIGH);
  874. SET_INPUT(Y_TMC2130_DIAG);
  875. WRITE(Y_TMC2130_DIAG,HIGH);
  876. SET_INPUT(Z_TMC2130_DIAG);
  877. WRITE(Z_TMC2130_DIAG,HIGH);
  878. #endif
  879. #if defined(X_MIN_PIN) && X_MIN_PIN > -1
  880. SET_INPUT(X_MIN_PIN);
  881. #ifdef ENDSTOPPULLUP_XMIN
  882. WRITE(X_MIN_PIN,HIGH);
  883. #endif
  884. #endif
  885. #if defined(Y_MIN_PIN) && Y_MIN_PIN > -1
  886. SET_INPUT(Y_MIN_PIN);
  887. #ifdef ENDSTOPPULLUP_YMIN
  888. WRITE(Y_MIN_PIN,HIGH);
  889. #endif
  890. #endif
  891. #if defined(Z_MIN_PIN) && Z_MIN_PIN > -1
  892. SET_INPUT(Z_MIN_PIN);
  893. #ifdef ENDSTOPPULLUP_ZMIN
  894. WRITE(Z_MIN_PIN,HIGH);
  895. #endif
  896. #endif
  897. #if defined(X_MAX_PIN) && X_MAX_PIN > -1
  898. SET_INPUT(X_MAX_PIN);
  899. #ifdef ENDSTOPPULLUP_XMAX
  900. WRITE(X_MAX_PIN,HIGH);
  901. #endif
  902. #endif
  903. #if defined(Y_MAX_PIN) && Y_MAX_PIN > -1
  904. SET_INPUT(Y_MAX_PIN);
  905. #ifdef ENDSTOPPULLUP_YMAX
  906. WRITE(Y_MAX_PIN,HIGH);
  907. #endif
  908. #endif
  909. #if defined(Z_MAX_PIN) && Z_MAX_PIN > -1
  910. SET_INPUT(Z_MAX_PIN);
  911. #ifdef ENDSTOPPULLUP_ZMAX
  912. WRITE(Z_MAX_PIN,HIGH);
  913. #endif
  914. #endif
  915. //Initialize Step Pins
  916. #if defined(X_STEP_PIN) && (X_STEP_PIN > -1)
  917. SET_OUTPUT(X_STEP_PIN);
  918. WRITE(X_STEP_PIN,INVERT_X_STEP_PIN);
  919. #ifdef DEBUG_XSTEP_DUP_PIN
  920. SET_OUTPUT(DEBUG_XSTEP_DUP_PIN);
  921. WRITE(DEBUG_XSTEP_DUP_PIN,INVERT_X_STEP_PIN);
  922. #endif //DEBUG_XSTEP_DUP_PIN
  923. disable_x();
  924. #endif
  925. #if defined(X2_STEP_PIN) && (X2_STEP_PIN > -1)
  926. SET_OUTPUT(X2_STEP_PIN);
  927. WRITE(X2_STEP_PIN,INVERT_X_STEP_PIN);
  928. disable_x();
  929. #endif
  930. #if defined(Y_STEP_PIN) && (Y_STEP_PIN > -1)
  931. SET_OUTPUT(Y_STEP_PIN);
  932. WRITE(Y_STEP_PIN,INVERT_Y_STEP_PIN);
  933. #ifdef DEBUG_YSTEP_DUP_PIN
  934. SET_OUTPUT(DEBUG_YSTEP_DUP_PIN);
  935. WRITE(DEBUG_YSTEP_DUP_PIN,INVERT_Y_STEP_PIN);
  936. #endif //DEBUG_YSTEP_DUP_PIN
  937. #if defined(Y_DUAL_STEPPER_DRIVERS) && defined(Y2_STEP_PIN) && (Y2_STEP_PIN > -1)
  938. SET_OUTPUT(Y2_STEP_PIN);
  939. WRITE(Y2_STEP_PIN,INVERT_Y_STEP_PIN);
  940. #endif
  941. disable_y();
  942. #endif
  943. #if defined(Z_STEP_PIN) && (Z_STEP_PIN > -1)
  944. SET_OUTPUT(Z_STEP_PIN);
  945. WRITE(Z_STEP_PIN,INVERT_Z_STEP_PIN);
  946. #if defined(Z_DUAL_STEPPER_DRIVERS) && defined(Z2_STEP_PIN) && (Z2_STEP_PIN > -1)
  947. SET_OUTPUT(Z2_STEP_PIN);
  948. WRITE(Z2_STEP_PIN,INVERT_Z_STEP_PIN);
  949. #endif
  950. disable_z();
  951. #endif
  952. #if defined(E0_STEP_PIN) && (E0_STEP_PIN > -1)
  953. SET_OUTPUT(E0_STEP_PIN);
  954. WRITE(E0_STEP_PIN,INVERT_E_STEP_PIN);
  955. disable_e0();
  956. #endif
  957. #if defined(E1_STEP_PIN) && (E1_STEP_PIN > -1)
  958. SET_OUTPUT(E1_STEP_PIN);
  959. WRITE(E1_STEP_PIN,INVERT_E_STEP_PIN);
  960. disable_e1();
  961. #endif
  962. #if defined(E2_STEP_PIN) && (E2_STEP_PIN > -1)
  963. SET_OUTPUT(E2_STEP_PIN);
  964. WRITE(E2_STEP_PIN,INVERT_E_STEP_PIN);
  965. disable_e2();
  966. #endif
  967. // waveform generation = 0100 = CTC
  968. TCCR1B &= ~(1<<WGM13);
  969. TCCR1B |= (1<<WGM12);
  970. TCCR1A &= ~(1<<WGM11);
  971. TCCR1A &= ~(1<<WGM10);
  972. // output mode = 00 (disconnected)
  973. TCCR1A &= ~(3<<COM1A0);
  974. TCCR1A &= ~(3<<COM1B0);
  975. // Set the timer pre-scaler
  976. // Generally we use a divider of 8, resulting in a 2MHz timer
  977. // frequency on a 16MHz MCU. If you are going to change this, be
  978. // sure to regenerate speed_lookuptable.h with
  979. // create_speed_lookuptable.py
  980. TCCR1B = (TCCR1B & ~(0x07<<CS10)) | (2<<CS10);
  981. OCR1A = 0x4000;
  982. TCNT1 = 0;
  983. ENABLE_STEPPER_DRIVER_INTERRUPT();
  984. #ifdef LIN_ADVANCE
  985. e_steps = 0;
  986. current_adv_steps = 0;
  987. #endif
  988. enable_endstops(true); // Start with endstops active. After homing they can be disabled
  989. sei();
  990. }
  991. // Block until all buffered steps are executed
  992. void st_synchronize()
  993. {
  994. while(blocks_queued())
  995. {
  996. #ifdef TMC2130
  997. manage_heater();
  998. // Vojtech: Don't disable motors inside the planner!
  999. if (!tmc2130_update_sg())
  1000. {
  1001. manage_inactivity(true);
  1002. lcd_update();
  1003. }
  1004. #else //TMC2130
  1005. manage_heater();
  1006. // Vojtech: Don't disable motors inside the planner!
  1007. manage_inactivity(true);
  1008. lcd_update();
  1009. #endif //TMC2130
  1010. }
  1011. }
  1012. void st_set_position(const long &x, const long &y, const long &z, const long &e)
  1013. {
  1014. CRITICAL_SECTION_START;
  1015. count_position[X_AXIS] = x;
  1016. count_position[Y_AXIS] = y;
  1017. count_position[Z_AXIS] = z;
  1018. count_position[E_AXIS] = e;
  1019. CRITICAL_SECTION_END;
  1020. }
  1021. void st_set_e_position(const long &e)
  1022. {
  1023. CRITICAL_SECTION_START;
  1024. count_position[E_AXIS] = e;
  1025. CRITICAL_SECTION_END;
  1026. }
  1027. long st_get_position(uint8_t axis)
  1028. {
  1029. long count_pos;
  1030. CRITICAL_SECTION_START;
  1031. count_pos = count_position[axis];
  1032. CRITICAL_SECTION_END;
  1033. return count_pos;
  1034. }
  1035. void st_get_position_xy(long &x, long &y)
  1036. {
  1037. CRITICAL_SECTION_START;
  1038. x = count_position[X_AXIS];
  1039. y = count_position[Y_AXIS];
  1040. CRITICAL_SECTION_END;
  1041. }
  1042. float st_get_position_mm(uint8_t axis)
  1043. {
  1044. float steper_position_in_steps = st_get_position(axis);
  1045. return steper_position_in_steps / axis_steps_per_unit[axis];
  1046. }
  1047. void finishAndDisableSteppers()
  1048. {
  1049. st_synchronize();
  1050. disable_x();
  1051. disable_y();
  1052. disable_z();
  1053. disable_e0();
  1054. disable_e1();
  1055. disable_e2();
  1056. }
  1057. void quickStop()
  1058. {
  1059. DISABLE_STEPPER_DRIVER_INTERRUPT();
  1060. while (blocks_queued()) plan_discard_current_block();
  1061. current_block = NULL;
  1062. ENABLE_STEPPER_DRIVER_INTERRUPT();
  1063. }
  1064. #ifdef BABYSTEPPING
  1065. void babystep(const uint8_t axis,const bool direction)
  1066. {
  1067. //MUST ONLY BE CALLED BY A ISR, it depends on that no other ISR interrupts this
  1068. //store initial pin states
  1069. switch(axis)
  1070. {
  1071. case X_AXIS:
  1072. {
  1073. enable_x();
  1074. uint8_t old_x_dir_pin= READ(X_DIR_PIN); //if dualzstepper, both point to same direction.
  1075. //setup new step
  1076. WRITE(X_DIR_PIN,(INVERT_X_DIR)^direction);
  1077. //perform step
  1078. WRITE(X_STEP_PIN, !INVERT_X_STEP_PIN);
  1079. LastStepMask |= X_AXIS_MASK;
  1080. #ifdef DEBUG_XSTEP_DUP_PIN
  1081. WRITE(DEBUG_XSTEP_DUP_PIN,!INVERT_X_STEP_PIN);
  1082. #endif //DEBUG_XSTEP_DUP_PIN
  1083. {
  1084. volatile float x=1./float(axis+1)/float(axis+2); //wait a tiny bit
  1085. }
  1086. WRITE(X_STEP_PIN, INVERT_X_STEP_PIN);
  1087. #ifdef DEBUG_XSTEP_DUP_PIN
  1088. WRITE(DEBUG_XSTEP_DUP_PIN,INVERT_X_STEP_PIN);
  1089. #endif //DEBUG_XSTEP_DUP_PIN
  1090. //get old pin state back.
  1091. WRITE(X_DIR_PIN,old_x_dir_pin);
  1092. }
  1093. break;
  1094. case Y_AXIS:
  1095. {
  1096. enable_y();
  1097. uint8_t old_y_dir_pin= READ(Y_DIR_PIN); //if dualzstepper, both point to same direction.
  1098. //setup new step
  1099. WRITE(Y_DIR_PIN,(INVERT_Y_DIR)^direction);
  1100. //perform step
  1101. WRITE(Y_STEP_PIN, !INVERT_Y_STEP_PIN);
  1102. LastStepMask |= Y_AXIS_MASK;
  1103. #ifdef DEBUG_YSTEP_DUP_PIN
  1104. WRITE(DEBUG_YSTEP_DUP_PIN,!INVERT_Y_STEP_PIN);
  1105. #endif //DEBUG_YSTEP_DUP_PIN
  1106. {
  1107. volatile float x=1./float(axis+1)/float(axis+2); //wait a tiny bit
  1108. }
  1109. WRITE(Y_STEP_PIN, INVERT_Y_STEP_PIN);
  1110. #ifdef DEBUG_YSTEP_DUP_PIN
  1111. WRITE(DEBUG_YSTEP_DUP_PIN,INVERT_Y_STEP_PIN);
  1112. #endif //DEBUG_YSTEP_DUP_PIN
  1113. //get old pin state back.
  1114. WRITE(Y_DIR_PIN,old_y_dir_pin);
  1115. }
  1116. break;
  1117. case Z_AXIS:
  1118. {
  1119. enable_z();
  1120. uint8_t old_z_dir_pin= READ(Z_DIR_PIN); //if dualzstepper, both point to same direction.
  1121. //setup new step
  1122. WRITE(Z_DIR_PIN,(INVERT_Z_DIR)^direction^BABYSTEP_INVERT_Z);
  1123. #ifdef Z_DUAL_STEPPER_DRIVERS
  1124. WRITE(Z2_DIR_PIN,(INVERT_Z_DIR)^direction^BABYSTEP_INVERT_Z);
  1125. #endif
  1126. //perform step
  1127. WRITE(Z_STEP_PIN, !INVERT_Z_STEP_PIN);
  1128. LastStepMask |= Z_AXIS_MASK;
  1129. #ifdef Z_DUAL_STEPPER_DRIVERS
  1130. WRITE(Z2_STEP_PIN, !INVERT_Z_STEP_PIN);
  1131. #endif
  1132. //wait a tiny bit
  1133. {
  1134. volatile float x=1./float(axis+1); //absolutely useless
  1135. }
  1136. WRITE(Z_STEP_PIN, INVERT_Z_STEP_PIN);
  1137. #ifdef Z_DUAL_STEPPER_DRIVERS
  1138. WRITE(Z2_STEP_PIN, INVERT_Z_STEP_PIN);
  1139. #endif
  1140. //get old pin state back.
  1141. WRITE(Z_DIR_PIN,old_z_dir_pin);
  1142. #ifdef Z_DUAL_STEPPER_DRIVERS
  1143. WRITE(Z2_DIR_PIN,old_z_dir_pin);
  1144. #endif
  1145. }
  1146. break;
  1147. default: break;
  1148. }
  1149. }
  1150. #endif //BABYSTEPPING
  1151. void digitalPotWrite(int address, int value) // From Arduino DigitalPotControl example
  1152. {
  1153. #if defined(DIGIPOTSS_PIN) && DIGIPOTSS_PIN > -1
  1154. digitalWrite(DIGIPOTSS_PIN,LOW); // take the SS pin low to select the chip
  1155. SPI.transfer(address); // send in the address and value via SPI:
  1156. SPI.transfer(value);
  1157. digitalWrite(DIGIPOTSS_PIN,HIGH); // take the SS pin high to de-select the chip:
  1158. //delay(10);
  1159. #endif
  1160. }
  1161. void EEPROM_read_st(int pos, uint8_t* value, uint8_t size)
  1162. {
  1163. do
  1164. {
  1165. *value = eeprom_read_byte((unsigned char*)pos);
  1166. pos++;
  1167. value++;
  1168. }while(--size);
  1169. }
  1170. void digipot_init() //Initialize Digipot Motor Current
  1171. {
  1172. EEPROM_read_st(EEPROM_SILENT,(uint8_t*)&SilentMode,sizeof(SilentMode));
  1173. #if defined(DIGIPOTSS_PIN) && DIGIPOTSS_PIN > -1
  1174. if(SilentMode == 0){
  1175. const uint8_t digipot_motor_current[] = DIGIPOT_MOTOR_CURRENT_LOUD;
  1176. }else{
  1177. const uint8_t digipot_motor_current[] = DIGIPOT_MOTOR_CURRENT;
  1178. }
  1179. SPI.begin();
  1180. pinMode(DIGIPOTSS_PIN, OUTPUT);
  1181. for(int i=0;i<=4;i++)
  1182. //digitalPotWrite(digipot_ch[i], digipot_motor_current[i]);
  1183. digipot_current(i,digipot_motor_current[i]);
  1184. #endif
  1185. #ifdef MOTOR_CURRENT_PWM_XY_PIN
  1186. pinMode(MOTOR_CURRENT_PWM_XY_PIN, OUTPUT);
  1187. pinMode(MOTOR_CURRENT_PWM_Z_PIN, OUTPUT);
  1188. pinMode(MOTOR_CURRENT_PWM_E_PIN, OUTPUT);
  1189. if((SilentMode == 0) || (farm_mode) ){
  1190. motor_current_setting[0] = motor_current_setting_loud[0];
  1191. motor_current_setting[1] = motor_current_setting_loud[1];
  1192. motor_current_setting[2] = motor_current_setting_loud[2];
  1193. }else{
  1194. motor_current_setting[0] = motor_current_setting_silent[0];
  1195. motor_current_setting[1] = motor_current_setting_silent[1];
  1196. motor_current_setting[2] = motor_current_setting_silent[2];
  1197. }
  1198. digipot_current(0, motor_current_setting[0]);
  1199. digipot_current(1, motor_current_setting[1]);
  1200. digipot_current(2, motor_current_setting[2]);
  1201. //Set timer5 to 31khz so the PWM of the motor power is as constant as possible. (removes a buzzing noise)
  1202. TCCR5B = (TCCR5B & ~(_BV(CS50) | _BV(CS51) | _BV(CS52))) | _BV(CS50);
  1203. #endif
  1204. }
  1205. void digipot_current(uint8_t driver, int current)
  1206. {
  1207. #if defined(DIGIPOTSS_PIN) && DIGIPOTSS_PIN > -1
  1208. const uint8_t digipot_ch[] = DIGIPOT_CHANNELS;
  1209. digitalPotWrite(digipot_ch[driver], current);
  1210. #endif
  1211. #ifdef MOTOR_CURRENT_PWM_XY_PIN
  1212. if (driver == 0) analogWrite(MOTOR_CURRENT_PWM_XY_PIN, (long)current * 255L / (long)MOTOR_CURRENT_PWM_RANGE);
  1213. if (driver == 1) analogWrite(MOTOR_CURRENT_PWM_Z_PIN, (long)current * 255L / (long)MOTOR_CURRENT_PWM_RANGE);
  1214. if (driver == 2) analogWrite(MOTOR_CURRENT_PWM_E_PIN, (long)current * 255L / (long)MOTOR_CURRENT_PWM_RANGE);
  1215. #endif
  1216. }
  1217. void microstep_init()
  1218. {
  1219. const uint8_t microstep_modes[] = MICROSTEP_MODES;
  1220. #if defined(E1_MS1_PIN) && E1_MS1_PIN > -1
  1221. pinMode(E1_MS1_PIN,OUTPUT);
  1222. pinMode(E1_MS2_PIN,OUTPUT);
  1223. #endif
  1224. #if defined(X_MS1_PIN) && X_MS1_PIN > -1
  1225. pinMode(X_MS1_PIN,OUTPUT);
  1226. pinMode(X_MS2_PIN,OUTPUT);
  1227. pinMode(Y_MS1_PIN,OUTPUT);
  1228. pinMode(Y_MS2_PIN,OUTPUT);
  1229. pinMode(Z_MS1_PIN,OUTPUT);
  1230. pinMode(Z_MS2_PIN,OUTPUT);
  1231. pinMode(E0_MS1_PIN,OUTPUT);
  1232. pinMode(E0_MS2_PIN,OUTPUT);
  1233. for(int i=0;i<=4;i++) microstep_mode(i,microstep_modes[i]);
  1234. #endif
  1235. }
  1236. void microstep_ms(uint8_t driver, int8_t ms1, int8_t ms2)
  1237. {
  1238. if(ms1 > -1) switch(driver)
  1239. {
  1240. case 0: digitalWrite( X_MS1_PIN,ms1); break;
  1241. case 1: digitalWrite( Y_MS1_PIN,ms1); break;
  1242. case 2: digitalWrite( Z_MS1_PIN,ms1); break;
  1243. case 3: digitalWrite(E0_MS1_PIN,ms1); break;
  1244. #if defined(E1_MS1_PIN) && E1_MS1_PIN > -1
  1245. case 4: digitalWrite(E1_MS1_PIN,ms1); break;
  1246. #endif
  1247. }
  1248. if(ms2 > -1) switch(driver)
  1249. {
  1250. case 0: digitalWrite( X_MS2_PIN,ms2); break;
  1251. case 1: digitalWrite( Y_MS2_PIN,ms2); break;
  1252. case 2: digitalWrite( Z_MS2_PIN,ms2); break;
  1253. case 3: digitalWrite(E0_MS2_PIN,ms2); break;
  1254. #if defined(E1_MS2_PIN) && E1_MS2_PIN > -1
  1255. case 4: digitalWrite(E1_MS2_PIN,ms2); break;
  1256. #endif
  1257. }
  1258. }
  1259. void microstep_mode(uint8_t driver, uint8_t stepping_mode)
  1260. {
  1261. switch(stepping_mode)
  1262. {
  1263. case 1: microstep_ms(driver,MICROSTEP1); break;
  1264. case 2: microstep_ms(driver,MICROSTEP2); break;
  1265. case 4: microstep_ms(driver,MICROSTEP4); break;
  1266. case 8: microstep_ms(driver,MICROSTEP8); break;
  1267. case 16: microstep_ms(driver,MICROSTEP16); break;
  1268. }
  1269. }
  1270. void microstep_readings()
  1271. {
  1272. SERIAL_PROTOCOLPGM("MS1,MS2 Pins\n");
  1273. SERIAL_PROTOCOLPGM("X: ");
  1274. SERIAL_PROTOCOL( digitalRead(X_MS1_PIN));
  1275. SERIAL_PROTOCOLLN( digitalRead(X_MS2_PIN));
  1276. SERIAL_PROTOCOLPGM("Y: ");
  1277. SERIAL_PROTOCOL( digitalRead(Y_MS1_PIN));
  1278. SERIAL_PROTOCOLLN( digitalRead(Y_MS2_PIN));
  1279. SERIAL_PROTOCOLPGM("Z: ");
  1280. SERIAL_PROTOCOL( digitalRead(Z_MS1_PIN));
  1281. SERIAL_PROTOCOLLN( digitalRead(Z_MS2_PIN));
  1282. SERIAL_PROTOCOLPGM("E0: ");
  1283. SERIAL_PROTOCOL( digitalRead(E0_MS1_PIN));
  1284. SERIAL_PROTOCOLLN( digitalRead(E0_MS2_PIN));
  1285. #if defined(E1_MS1_PIN) && E1_MS1_PIN > -1
  1286. SERIAL_PROTOCOLPGM("E1: ");
  1287. SERIAL_PROTOCOL( digitalRead(E1_MS1_PIN));
  1288. SERIAL_PROTOCOLLN( digitalRead(E1_MS2_PIN));
  1289. #endif
  1290. }