stepper.cpp 51 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628
  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. #if defined(FILAMENT_SENSOR) && defined(PAT9125)
  33. #include "fsensor.h"
  34. int fsensor_counter; //counter for e-steps
  35. #endif //FILAMENT_SENSOR
  36. #include "mmu.h"
  37. #include "ConfigurationStore.h"
  38. #ifdef DEBUG_STACK_MONITOR
  39. uint16_t SP_min = 0x21FF;
  40. #endif //DEBUG_STACK_MONITOR
  41. //===========================================================================
  42. //=============================public variables ============================
  43. //===========================================================================
  44. block_t *current_block; // A pointer to the block currently being traced
  45. bool x_min_endstop = false;
  46. bool x_max_endstop = false;
  47. bool y_min_endstop = false;
  48. bool y_max_endstop = false;
  49. bool z_min_endstop = false;
  50. bool z_max_endstop = false;
  51. //===========================================================================
  52. //=============================private variables ============================
  53. //===========================================================================
  54. //static makes it inpossible to be called from outside of this file by extern.!
  55. // Variables used by The Stepper Driver Interrupt
  56. static unsigned char out_bits; // The next stepping-bits to be output
  57. static dda_isteps_t
  58. counter_x, // Counter variables for the bresenham line tracer
  59. counter_y,
  60. counter_z,
  61. counter_e;
  62. volatile dda_usteps_t step_events_completed; // The number of step events executed in the current block
  63. static int32_t acceleration_time, deceleration_time;
  64. //static unsigned long accelerate_until, decelerate_after, acceleration_rate, initial_rate, final_rate, nominal_rate;
  65. static uint16_t acc_step_rate; // needed for deccelaration start point
  66. static uint8_t step_loops;
  67. static uint16_t OCR1A_nominal;
  68. static uint8_t step_loops_nominal;
  69. volatile long endstops_trigsteps[3]={0,0,0};
  70. volatile long endstops_stepsTotal,endstops_stepsDone;
  71. static volatile bool endstop_x_hit=false;
  72. static volatile bool endstop_y_hit=false;
  73. static volatile bool endstop_z_hit=false;
  74. #ifdef ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
  75. bool abort_on_endstop_hit = false;
  76. #endif
  77. #ifdef MOTOR_CURRENT_PWM_XY_PIN
  78. int motor_current_setting[3] = DEFAULT_PWM_MOTOR_CURRENT;
  79. int motor_current_setting_silent[3] = DEFAULT_PWM_MOTOR_CURRENT;
  80. int motor_current_setting_loud[3] = DEFAULT_PWM_MOTOR_CURRENT_LOUD;
  81. #endif
  82. #if ( (defined(X_MAX_PIN) && (X_MAX_PIN > -1)) || defined(TMC2130_SG_HOMING) ) && !defined(DEBUG_DISABLE_XMAXLIMIT)
  83. static bool old_x_max_endstop=false;
  84. #endif
  85. #if ( (defined(Y_MAX_PIN) && (Y_MAX_PIN > -1)) || defined(TMC2130_SG_HOMING) ) && !defined(DEBUG_DISABLE_YMAXLIMIT)
  86. static bool old_y_max_endstop=false;
  87. #endif
  88. static bool old_x_min_endstop=false;
  89. static bool old_y_min_endstop=false;
  90. static bool old_z_min_endstop=false;
  91. static bool old_z_max_endstop=false;
  92. static bool check_endstops = true;
  93. static bool check_z_endstop = false;
  94. static bool z_endstop_invert = false;
  95. volatile long count_position[NUM_AXIS] = { 0, 0, 0, 0};
  96. volatile signed char count_direction[NUM_AXIS] = { 1, 1, 1, 1};
  97. #ifdef LIN_ADVANCE
  98. void advance_isr_scheduler();
  99. void advance_isr();
  100. static const uint16_t ADV_NEVER = 0xFFFF;
  101. static const uint8_t ADV_INIT = 0b01; // initialize LA
  102. static const uint8_t ADV_ACC_VARY = 0b10; // varying acceleration phase
  103. static uint16_t nextMainISR;
  104. static uint16_t nextAdvanceISR;
  105. static uint16_t main_Rate;
  106. static uint16_t eISR_Rate;
  107. static uint32_t eISR_Err;
  108. static uint16_t current_adv_steps;
  109. static uint16_t target_adv_steps;
  110. static int8_t e_steps; // scheduled e-steps during each isr loop
  111. static uint8_t e_step_loops; // e-steps to execute at most in each isr loop
  112. static uint8_t e_extruding; // current move is an extrusion move
  113. static int8_t LA_phase; // LA compensation phase
  114. #define _NEXT_ISR(T) main_Rate = nextMainISR = T
  115. #else
  116. #define _NEXT_ISR(T) OCR1A = T
  117. #endif
  118. #ifdef DEBUG_STEPPER_TIMER_MISSED
  119. extern bool stepper_timer_overflow_state;
  120. extern uint16_t stepper_timer_overflow_last;
  121. #endif /* DEBUG_STEPPER_TIMER_MISSED */
  122. //===========================================================================
  123. //=============================functions ============================
  124. //===========================================================================
  125. void checkHitEndstops()
  126. {
  127. if( endstop_x_hit || endstop_y_hit || endstop_z_hit) {
  128. SERIAL_ECHO_START;
  129. SERIAL_ECHORPGM(MSG_ENDSTOPS_HIT);
  130. if(endstop_x_hit) {
  131. SERIAL_ECHOPAIR(" X:",(float)endstops_trigsteps[X_AXIS]/cs.axis_steps_per_unit[X_AXIS]);
  132. // LCD_MESSAGERPGM(CAT2((MSG_ENDSTOPS_HIT), PSTR("X")));
  133. }
  134. if(endstop_y_hit) {
  135. SERIAL_ECHOPAIR(" Y:",(float)endstops_trigsteps[Y_AXIS]/cs.axis_steps_per_unit[Y_AXIS]);
  136. // LCD_MESSAGERPGM(CAT2((MSG_ENDSTOPS_HIT), PSTR("Y")));
  137. }
  138. if(endstop_z_hit) {
  139. SERIAL_ECHOPAIR(" Z:",(float)endstops_trigsteps[Z_AXIS]/cs.axis_steps_per_unit[Z_AXIS]);
  140. // LCD_MESSAGERPGM(CAT2((MSG_ENDSTOPS_HIT),PSTR("Z")));
  141. }
  142. SERIAL_ECHOLN("");
  143. endstop_x_hit=false;
  144. endstop_y_hit=false;
  145. endstop_z_hit=false;
  146. #if defined(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED) && defined(SDSUPPORT)
  147. if (abort_on_endstop_hit)
  148. {
  149. card.sdprinting = false;
  150. card.closefile();
  151. quickStop();
  152. setTargetHotend0(0);
  153. setTargetHotend1(0);
  154. setTargetHotend2(0);
  155. }
  156. #endif
  157. }
  158. }
  159. bool endstops_hit_on_purpose()
  160. {
  161. bool hit = endstop_x_hit || endstop_y_hit || endstop_z_hit;
  162. endstop_x_hit=false;
  163. endstop_y_hit=false;
  164. endstop_z_hit=false;
  165. return hit;
  166. }
  167. bool endstop_z_hit_on_purpose()
  168. {
  169. bool hit = endstop_z_hit;
  170. endstop_z_hit=false;
  171. return hit;
  172. }
  173. bool enable_endstops(bool check)
  174. {
  175. bool old = check_endstops;
  176. check_endstops = check;
  177. return old;
  178. }
  179. bool enable_z_endstop(bool check)
  180. {
  181. bool old = check_z_endstop;
  182. check_z_endstop = check;
  183. endstop_z_hit = false;
  184. return old;
  185. }
  186. void invert_z_endstop(bool endstop_invert)
  187. {
  188. z_endstop_invert = endstop_invert;
  189. }
  190. // __________________________
  191. // /| |\ _________________ ^
  192. // / | | \ /| |\ |
  193. // / | | \ / | | \ s
  194. // / | | | | | \ p
  195. // / | | | | | \ e
  196. // +-----+------------------------+---+--+---------------+----+ e
  197. // | BLOCK 1 | BLOCK 2 | d
  198. //
  199. // time ----->
  200. //
  201. // The trapezoid is the shape the speed curve over time. It starts at block->initial_rate, accelerates
  202. // first block->accelerate_until step_events_completed, then keeps going at constant speed until
  203. // step_events_completed reaches block->decelerate_after after which it decelerates until the trapezoid generator is reset.
  204. // The slope of acceleration is calculated with the leib ramp alghorithm.
  205. // "The Stepper Driver Interrupt" - This timer interrupt is the workhorse.
  206. // It pops blocks from the block_buffer and executes them by pulsing the stepper pins appropriately.
  207. ISR(TIMER1_COMPA_vect) {
  208. #ifdef DEBUG_STACK_MONITOR
  209. uint16_t sp = SPL + 256 * SPH;
  210. if (sp < SP_min) SP_min = sp;
  211. #endif //DEBUG_STACK_MONITOR
  212. #ifdef LIN_ADVANCE
  213. advance_isr_scheduler();
  214. #else
  215. isr();
  216. #endif
  217. // Don't run the ISR faster than possible
  218. // Is there a 8us time left before the next interrupt triggers?
  219. if (OCR1A < TCNT1 + 16) {
  220. #ifdef DEBUG_STEPPER_TIMER_MISSED
  221. // Verify whether the next planned timer interrupt has not been missed already.
  222. // This debugging test takes < 1.125us
  223. // This skews the profiling slightly as the fastest stepper timer
  224. // interrupt repeats at a 100us rate (10kHz).
  225. if (OCR1A + 40 < TCNT1) {
  226. // The interrupt was delayed by more than 20us (which is 1/5th of the 10kHz ISR repeat rate).
  227. // Give a warning.
  228. stepper_timer_overflow_state = true;
  229. stepper_timer_overflow_last = TCNT1 - OCR1A;
  230. // Beep, the beeper will be cleared at the stepper_timer_overflow() called from the main thread.
  231. WRITE(BEEPER, HIGH);
  232. }
  233. #endif
  234. // Fix the next interrupt to be executed after 8us from now.
  235. OCR1A = TCNT1 + 16;
  236. }
  237. }
  238. uint8_t last_dir_bits = 0;
  239. #ifdef BACKLASH_X
  240. uint8_t st_backlash_x = 0;
  241. #endif //BACKLASH_X
  242. #ifdef BACKLASH_Y
  243. uint8_t st_backlash_y = 0;
  244. #endif //BACKLASH_Y
  245. FORCE_INLINE void stepper_next_block()
  246. {
  247. // Anything in the buffer?
  248. //WRITE_NC(LOGIC_ANALYZER_CH2, true);
  249. current_block = plan_get_current_block();
  250. if (current_block != NULL) {
  251. #ifdef BACKLASH_X
  252. if (current_block->steps_x.wide)
  253. { //X-axis movement
  254. if ((current_block->direction_bits ^ last_dir_bits) & 1)
  255. {
  256. printf_P(PSTR("BL %d\n"), (current_block->direction_bits & 1)?st_backlash_x:-st_backlash_x);
  257. if (current_block->direction_bits & 1)
  258. WRITE_NC(X_DIR_PIN, INVERT_X_DIR);
  259. else
  260. WRITE_NC(X_DIR_PIN, !INVERT_X_DIR);
  261. _delay_us(100);
  262. for (uint8_t i = 0; i < st_backlash_x; i++)
  263. {
  264. WRITE_NC(X_STEP_PIN, !INVERT_X_STEP_PIN);
  265. _delay_us(100);
  266. WRITE_NC(X_STEP_PIN, INVERT_X_STEP_PIN);
  267. _delay_us(900);
  268. }
  269. }
  270. last_dir_bits &= ~1;
  271. last_dir_bits |= current_block->direction_bits & 1;
  272. }
  273. #endif
  274. #ifdef BACKLASH_Y
  275. if (current_block->steps_y.wide)
  276. { //Y-axis movement
  277. if ((current_block->direction_bits ^ last_dir_bits) & 2)
  278. {
  279. printf_P(PSTR("BL %d\n"), (current_block->direction_bits & 2)?st_backlash_y:-st_backlash_y);
  280. if (current_block->direction_bits & 2)
  281. WRITE_NC(Y_DIR_PIN, INVERT_Y_DIR);
  282. else
  283. WRITE_NC(Y_DIR_PIN, !INVERT_Y_DIR);
  284. _delay_us(100);
  285. for (uint8_t i = 0; i < st_backlash_y; i++)
  286. {
  287. WRITE_NC(Y_STEP_PIN, !INVERT_Y_STEP_PIN);
  288. _delay_us(100);
  289. WRITE_NC(Y_STEP_PIN, INVERT_Y_STEP_PIN);
  290. _delay_us(900);
  291. }
  292. }
  293. last_dir_bits &= ~2;
  294. last_dir_bits |= current_block->direction_bits & 2;
  295. }
  296. #endif
  297. // The busy flag is set by the plan_get_current_block() call.
  298. // current_block->busy = true;
  299. // Initializes the trapezoid generator from the current block. Called whenever a new
  300. // block begins.
  301. deceleration_time = 0;
  302. // Set the nominal step loops to zero to indicate, that the timer value is not known yet.
  303. // That means, delay the initialization of nominal step rate and step loops until the steady
  304. // state is reached.
  305. step_loops_nominal = 0;
  306. acc_step_rate = uint16_t(current_block->initial_rate);
  307. acceleration_time = calc_timer(acc_step_rate, step_loops);
  308. #ifdef LIN_ADVANCE
  309. if (current_block->use_advance_lead) {
  310. target_adv_steps = current_block->max_adv_steps;
  311. }
  312. e_steps = 0;
  313. nextAdvanceISR = ADV_NEVER;
  314. LA_phase = -1;
  315. #endif
  316. if (current_block->flag & BLOCK_FLAG_E_RESET) {
  317. count_position[E_AXIS] = 0;
  318. }
  319. if (current_block->flag & BLOCK_FLAG_DDA_LOWRES) {
  320. counter_x.lo = -(current_block->step_event_count.lo >> 1);
  321. counter_y.lo = counter_x.lo;
  322. counter_z.lo = counter_x.lo;
  323. counter_e.lo = counter_x.lo;
  324. #ifdef LIN_ADVANCE
  325. e_extruding = current_block->steps_e.lo != 0;
  326. #endif
  327. } else {
  328. counter_x.wide = -(current_block->step_event_count.wide >> 1);
  329. counter_y.wide = counter_x.wide;
  330. counter_z.wide = counter_x.wide;
  331. counter_e.wide = counter_x.wide;
  332. #ifdef LIN_ADVANCE
  333. e_extruding = current_block->steps_e.wide != 0;
  334. #endif
  335. }
  336. step_events_completed.wide = 0;
  337. // Set directions.
  338. out_bits = current_block->direction_bits;
  339. // Set the direction bits (X_AXIS=A_AXIS and Y_AXIS=B_AXIS for COREXY)
  340. if((out_bits & (1<<X_AXIS))!=0){
  341. WRITE_NC(X_DIR_PIN, INVERT_X_DIR);
  342. count_direction[X_AXIS]=-1;
  343. } else {
  344. WRITE_NC(X_DIR_PIN, !INVERT_X_DIR);
  345. count_direction[X_AXIS]=1;
  346. }
  347. if((out_bits & (1<<Y_AXIS))!=0){
  348. WRITE_NC(Y_DIR_PIN, INVERT_Y_DIR);
  349. count_direction[Y_AXIS]=-1;
  350. } else {
  351. WRITE_NC(Y_DIR_PIN, !INVERT_Y_DIR);
  352. count_direction[Y_AXIS]=1;
  353. }
  354. if ((out_bits & (1<<Z_AXIS)) != 0) { // -direction
  355. WRITE_NC(Z_DIR_PIN,INVERT_Z_DIR);
  356. count_direction[Z_AXIS]=-1;
  357. } else { // +direction
  358. WRITE_NC(Z_DIR_PIN,!INVERT_Z_DIR);
  359. count_direction[Z_AXIS]=1;
  360. }
  361. if ((out_bits & (1 << E_AXIS)) != 0) { // -direction
  362. #ifndef LIN_ADVANCE
  363. WRITE(E0_DIR_PIN,
  364. #ifdef SNMM
  365. (mmu_extruder == 0 || mmu_extruder == 2) ? !INVERT_E0_DIR :
  366. #endif // SNMM
  367. INVERT_E0_DIR);
  368. #endif /* LIN_ADVANCE */
  369. count_direction[E_AXIS] = -1;
  370. } else { // +direction
  371. #ifndef LIN_ADVANCE
  372. WRITE(E0_DIR_PIN,
  373. #ifdef SNMM
  374. (mmu_extruder == 0 || mmu_extruder == 2) ? INVERT_E0_DIR :
  375. #endif // SNMM
  376. !INVERT_E0_DIR);
  377. #endif /* LIN_ADVANCE */
  378. count_direction[E_AXIS] = 1;
  379. }
  380. #if defined(FILAMENT_SENSOR) && defined(PAT9125)
  381. fsensor_st_block_begin(count_direction[E_AXIS] < 0);
  382. #endif //FILAMENT_SENSOR
  383. }
  384. else {
  385. _NEXT_ISR(2000); // 1kHz.
  386. #ifdef LIN_ADVANCE
  387. // reset LA state when there's no block
  388. nextAdvanceISR = ADV_NEVER;
  389. e_steps = 0;
  390. // incrementally lose pressure to give a chance for
  391. // a new LA block to be scheduled and recover
  392. if(current_adv_steps)
  393. --current_adv_steps;
  394. #endif
  395. }
  396. //WRITE_NC(LOGIC_ANALYZER_CH2, false);
  397. }
  398. // Check limit switches.
  399. FORCE_INLINE void stepper_check_endstops()
  400. {
  401. if(check_endstops)
  402. {
  403. #ifndef COREXY
  404. if ((out_bits & (1<<X_AXIS)) != 0) // stepping along -X axis
  405. #else
  406. if ((((out_bits & (1<<X_AXIS)) != 0)&&(out_bits & (1<<Y_AXIS)) != 0)) //-X occurs for -A and -B
  407. #endif
  408. {
  409. #if ( (defined(X_MIN_PIN) && (X_MIN_PIN > -1)) || defined(TMC2130_SG_HOMING) ) && !defined(DEBUG_DISABLE_XMINLIMIT)
  410. #ifdef TMC2130_SG_HOMING
  411. // Stall guard homing turned on
  412. x_min_endstop = (READ(X_TMC2130_DIAG) != 0);
  413. #else
  414. // Normal homing
  415. x_min_endstop = (READ(X_MIN_PIN) != X_MIN_ENDSTOP_INVERTING);
  416. #endif
  417. if(x_min_endstop && old_x_min_endstop && (current_block->steps_x.wide > 0)) {
  418. endstops_trigsteps[X_AXIS] = count_position[X_AXIS];
  419. endstop_x_hit=true;
  420. step_events_completed.wide = current_block->step_event_count.wide;
  421. }
  422. old_x_min_endstop = x_min_endstop;
  423. #endif
  424. } else { // +direction
  425. #if ( (defined(X_MAX_PIN) && (X_MAX_PIN > -1)) || defined(TMC2130_SG_HOMING) ) && !defined(DEBUG_DISABLE_XMAXLIMIT)
  426. #ifdef TMC2130_SG_HOMING
  427. // Stall guard homing turned on
  428. x_max_endstop = (READ(X_TMC2130_DIAG) != 0);
  429. #else
  430. // Normal homing
  431. x_max_endstop = (READ(X_MAX_PIN) != X_MAX_ENDSTOP_INVERTING);
  432. #endif
  433. if(x_max_endstop && old_x_max_endstop && (current_block->steps_x.wide > 0)){
  434. endstops_trigsteps[X_AXIS] = count_position[X_AXIS];
  435. endstop_x_hit=true;
  436. step_events_completed.wide = current_block->step_event_count.wide;
  437. }
  438. old_x_max_endstop = x_max_endstop;
  439. #endif
  440. }
  441. #ifndef COREXY
  442. if ((out_bits & (1<<Y_AXIS)) != 0) // -direction
  443. #else
  444. if ((((out_bits & (1<<X_AXIS)) != 0)&&(out_bits & (1<<Y_AXIS)) == 0)) // -Y occurs for -A and +B
  445. #endif
  446. {
  447. #if ( (defined(Y_MIN_PIN) && (Y_MIN_PIN > -1)) || defined(TMC2130_SG_HOMING) ) && !defined(DEBUG_DISABLE_YMINLIMIT)
  448. #ifdef TMC2130_SG_HOMING
  449. // Stall guard homing turned on
  450. y_min_endstop = (READ(Y_TMC2130_DIAG) != 0);
  451. #else
  452. // Normal homing
  453. y_min_endstop = (READ(Y_MIN_PIN) != Y_MIN_ENDSTOP_INVERTING);
  454. #endif
  455. if(y_min_endstop && old_y_min_endstop && (current_block->steps_y.wide > 0)) {
  456. endstops_trigsteps[Y_AXIS] = count_position[Y_AXIS];
  457. endstop_y_hit=true;
  458. step_events_completed.wide = current_block->step_event_count.wide;
  459. }
  460. old_y_min_endstop = y_min_endstop;
  461. #endif
  462. } else { // +direction
  463. #if ( (defined(Y_MAX_PIN) && (Y_MAX_PIN > -1)) || defined(TMC2130_SG_HOMING) ) && !defined(DEBUG_DISABLE_YMAXLIMIT)
  464. #ifdef TMC2130_SG_HOMING
  465. // Stall guard homing turned on
  466. y_max_endstop = (READ(Y_TMC2130_DIAG) != 0);
  467. #else
  468. // Normal homing
  469. y_max_endstop = (READ(Y_MAX_PIN) != Y_MAX_ENDSTOP_INVERTING);
  470. #endif
  471. if(y_max_endstop && old_y_max_endstop && (current_block->steps_y.wide > 0)){
  472. endstops_trigsteps[Y_AXIS] = count_position[Y_AXIS];
  473. endstop_y_hit=true;
  474. step_events_completed.wide = current_block->step_event_count.wide;
  475. }
  476. old_y_max_endstop = y_max_endstop;
  477. #endif
  478. }
  479. if ((out_bits & (1<<Z_AXIS)) != 0) // -direction
  480. {
  481. #if defined(Z_MIN_PIN) && (Z_MIN_PIN > -1) && !defined(DEBUG_DISABLE_ZMINLIMIT)
  482. if (! check_z_endstop) {
  483. #ifdef TMC2130_SG_HOMING
  484. // Stall guard homing turned on
  485. #ifdef TMC2130_STEALTH_Z
  486. if ((tmc2130_mode == TMC2130_MODE_SILENT) && !(tmc2130_sg_homing_axes_mask & 0x04))
  487. z_min_endstop = (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING);
  488. else
  489. #endif //TMC2130_STEALTH_Z
  490. z_min_endstop = (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING) || (READ(Z_TMC2130_DIAG) != 0);
  491. #else
  492. z_min_endstop = (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING);
  493. #endif //TMC2130_SG_HOMING
  494. if(z_min_endstop && old_z_min_endstop && (current_block->steps_z.wide > 0)) {
  495. endstops_trigsteps[Z_AXIS] = count_position[Z_AXIS];
  496. endstop_z_hit=true;
  497. step_events_completed.wide = current_block->step_event_count.wide;
  498. }
  499. old_z_min_endstop = z_min_endstop;
  500. }
  501. #endif
  502. } else { // +direction
  503. #if defined(Z_MAX_PIN) && (Z_MAX_PIN > -1) && !defined(DEBUG_DISABLE_ZMAXLIMIT)
  504. #ifdef TMC2130_SG_HOMING
  505. // Stall guard homing turned on
  506. #ifdef TMC2130_STEALTH_Z
  507. if ((tmc2130_mode == TMC2130_MODE_SILENT) && !(tmc2130_sg_homing_axes_mask & 0x04))
  508. z_max_endstop = false;
  509. else
  510. #endif //TMC2130_STEALTH_Z
  511. z_max_endstop = (READ(Z_TMC2130_DIAG) != 0);
  512. #else
  513. z_max_endstop = (READ(Z_MAX_PIN) != Z_MAX_ENDSTOP_INVERTING);
  514. #endif //TMC2130_SG_HOMING
  515. if(z_max_endstop && old_z_max_endstop && (current_block->steps_z.wide > 0)) {
  516. endstops_trigsteps[Z_AXIS] = count_position[Z_AXIS];
  517. endstop_z_hit=true;
  518. step_events_completed.wide = current_block->step_event_count.wide;
  519. }
  520. old_z_max_endstop = z_max_endstop;
  521. #endif
  522. }
  523. }
  524. // Supporting stopping on a trigger of the Z-stop induction sensor, not only for the Z-minus movements.
  525. #if defined(Z_MIN_PIN) && (Z_MIN_PIN > -1) && !defined(DEBUG_DISABLE_ZMINLIMIT)
  526. if (check_z_endstop) {
  527. // Check the Z min end-stop no matter what.
  528. // Good for searching for the center of an induction target.
  529. #ifdef TMC2130_SG_HOMING
  530. // Stall guard homing turned on
  531. #ifdef TMC2130_STEALTH_Z
  532. if ((tmc2130_mode == TMC2130_MODE_SILENT) && !(tmc2130_sg_homing_axes_mask & 0x04))
  533. z_min_endstop = (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING);
  534. else
  535. #endif //TMC2130_STEALTH_Z
  536. z_min_endstop = (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING) || (READ(Z_TMC2130_DIAG) != 0);
  537. #else
  538. z_min_endstop = (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING);
  539. #endif //TMC2130_SG_HOMING
  540. if(z_min_endstop && old_z_min_endstop) {
  541. endstops_trigsteps[Z_AXIS] = count_position[Z_AXIS];
  542. endstop_z_hit=true;
  543. step_events_completed.wide = current_block->step_event_count.wide;
  544. }
  545. old_z_min_endstop = z_min_endstop;
  546. }
  547. #endif
  548. }
  549. FORCE_INLINE void stepper_tick_lowres()
  550. {
  551. for (uint8_t i=0; i < step_loops; ++ i) { // Take multiple steps per interrupt (For high speed moves)
  552. MSerial.checkRx(); // Check for serial chars.
  553. // Step in X axis
  554. counter_x.lo += current_block->steps_x.lo;
  555. if (counter_x.lo > 0) {
  556. WRITE_NC(X_STEP_PIN, !INVERT_X_STEP_PIN);
  557. #ifdef DEBUG_XSTEP_DUP_PIN
  558. WRITE_NC(DEBUG_XSTEP_DUP_PIN,!INVERT_X_STEP_PIN);
  559. #endif //DEBUG_XSTEP_DUP_PIN
  560. counter_x.lo -= current_block->step_event_count.lo;
  561. count_position[X_AXIS]+=count_direction[X_AXIS];
  562. WRITE_NC(X_STEP_PIN, INVERT_X_STEP_PIN);
  563. #ifdef DEBUG_XSTEP_DUP_PIN
  564. WRITE_NC(DEBUG_XSTEP_DUP_PIN,INVERT_X_STEP_PIN);
  565. #endif //DEBUG_XSTEP_DUP_PIN
  566. }
  567. // Step in Y axis
  568. counter_y.lo += current_block->steps_y.lo;
  569. if (counter_y.lo > 0) {
  570. WRITE_NC(Y_STEP_PIN, !INVERT_Y_STEP_PIN);
  571. #ifdef DEBUG_YSTEP_DUP_PIN
  572. WRITE_NC(DEBUG_YSTEP_DUP_PIN,!INVERT_Y_STEP_PIN);
  573. #endif //DEBUG_YSTEP_DUP_PIN
  574. counter_y.lo -= current_block->step_event_count.lo;
  575. count_position[Y_AXIS]+=count_direction[Y_AXIS];
  576. WRITE_NC(Y_STEP_PIN, INVERT_Y_STEP_PIN);
  577. #ifdef DEBUG_YSTEP_DUP_PIN
  578. WRITE_NC(DEBUG_YSTEP_DUP_PIN,INVERT_Y_STEP_PIN);
  579. #endif //DEBUG_YSTEP_DUP_PIN
  580. }
  581. // Step in Z axis
  582. counter_z.lo += current_block->steps_z.lo;
  583. if (counter_z.lo > 0) {
  584. WRITE_NC(Z_STEP_PIN, !INVERT_Z_STEP_PIN);
  585. counter_z.lo -= current_block->step_event_count.lo;
  586. count_position[Z_AXIS]+=count_direction[Z_AXIS];
  587. WRITE_NC(Z_STEP_PIN, INVERT_Z_STEP_PIN);
  588. }
  589. // Step in E axis
  590. counter_e.lo += current_block->steps_e.lo;
  591. if (counter_e.lo > 0) {
  592. #ifndef LIN_ADVANCE
  593. WRITE(E0_STEP_PIN, !INVERT_E_STEP_PIN);
  594. #endif /* LIN_ADVANCE */
  595. counter_e.lo -= current_block->step_event_count.lo;
  596. count_position[E_AXIS] += count_direction[E_AXIS];
  597. #ifdef LIN_ADVANCE
  598. e_steps += count_direction[E_AXIS];
  599. #else
  600. #ifdef FILAMENT_SENSOR
  601. fsensor_counter += count_direction[E_AXIS];
  602. #endif //FILAMENT_SENSOR
  603. WRITE(E0_STEP_PIN, INVERT_E_STEP_PIN);
  604. #endif
  605. }
  606. if(++ step_events_completed.lo >= current_block->step_event_count.lo)
  607. break;
  608. }
  609. }
  610. FORCE_INLINE void stepper_tick_highres()
  611. {
  612. for (uint8_t i=0; i < step_loops; ++ i) { // Take multiple steps per interrupt (For high speed moves)
  613. MSerial.checkRx(); // Check for serial chars.
  614. // Step in X axis
  615. counter_x.wide += current_block->steps_x.wide;
  616. if (counter_x.wide > 0) {
  617. WRITE_NC(X_STEP_PIN, !INVERT_X_STEP_PIN);
  618. #ifdef DEBUG_XSTEP_DUP_PIN
  619. WRITE_NC(DEBUG_XSTEP_DUP_PIN,!INVERT_X_STEP_PIN);
  620. #endif //DEBUG_XSTEP_DUP_PIN
  621. counter_x.wide -= current_block->step_event_count.wide;
  622. count_position[X_AXIS]+=count_direction[X_AXIS];
  623. WRITE_NC(X_STEP_PIN, INVERT_X_STEP_PIN);
  624. #ifdef DEBUG_XSTEP_DUP_PIN
  625. WRITE_NC(DEBUG_XSTEP_DUP_PIN,INVERT_X_STEP_PIN);
  626. #endif //DEBUG_XSTEP_DUP_PIN
  627. }
  628. // Step in Y axis
  629. counter_y.wide += current_block->steps_y.wide;
  630. if (counter_y.wide > 0) {
  631. WRITE_NC(Y_STEP_PIN, !INVERT_Y_STEP_PIN);
  632. #ifdef DEBUG_YSTEP_DUP_PIN
  633. WRITE_NC(DEBUG_YSTEP_DUP_PIN,!INVERT_Y_STEP_PIN);
  634. #endif //DEBUG_YSTEP_DUP_PIN
  635. counter_y.wide -= current_block->step_event_count.wide;
  636. count_position[Y_AXIS]+=count_direction[Y_AXIS];
  637. WRITE_NC(Y_STEP_PIN, INVERT_Y_STEP_PIN);
  638. #ifdef DEBUG_YSTEP_DUP_PIN
  639. WRITE_NC(DEBUG_YSTEP_DUP_PIN,INVERT_Y_STEP_PIN);
  640. #endif //DEBUG_YSTEP_DUP_PIN
  641. }
  642. // Step in Z axis
  643. counter_z.wide += current_block->steps_z.wide;
  644. if (counter_z.wide > 0) {
  645. WRITE_NC(Z_STEP_PIN, !INVERT_Z_STEP_PIN);
  646. counter_z.wide -= current_block->step_event_count.wide;
  647. count_position[Z_AXIS]+=count_direction[Z_AXIS];
  648. WRITE_NC(Z_STEP_PIN, INVERT_Z_STEP_PIN);
  649. }
  650. // Step in E axis
  651. counter_e.wide += current_block->steps_e.wide;
  652. if (counter_e.wide > 0) {
  653. #ifndef LIN_ADVANCE
  654. WRITE(E0_STEP_PIN, !INVERT_E_STEP_PIN);
  655. #endif /* LIN_ADVANCE */
  656. counter_e.wide -= current_block->step_event_count.wide;
  657. count_position[E_AXIS]+=count_direction[E_AXIS];
  658. #ifdef LIN_ADVANCE
  659. e_steps += count_direction[E_AXIS];
  660. #else
  661. #ifdef FILAMENT_SENSOR
  662. fsensor_counter += count_direction[E_AXIS];
  663. #endif //FILAMENT_SENSOR
  664. WRITE(E0_STEP_PIN, INVERT_E_STEP_PIN);
  665. #endif
  666. }
  667. if(++ step_events_completed.wide >= current_block->step_event_count.wide)
  668. break;
  669. }
  670. }
  671. #ifdef LIN_ADVANCE
  672. // @wavexx: fast uint16_t division for small dividends<5
  673. // q/3 based on "Hacker's delight" formula
  674. FORCE_INLINE uint16_t fastdiv(uint16_t q, uint8_t d)
  675. {
  676. if(d != 3) return q >> (d / 2);
  677. else return ((uint32_t)0xAAAB * q) >> 17;
  678. }
  679. FORCE_INLINE void advance_spread(uint16_t timer)
  680. {
  681. eISR_Err += timer;
  682. uint8_t ticks = 0;
  683. while(eISR_Err >= current_block->advance_rate)
  684. {
  685. ++ticks;
  686. eISR_Err -= current_block->advance_rate;
  687. }
  688. if(!ticks)
  689. {
  690. eISR_Rate = timer;
  691. nextAdvanceISR = timer;
  692. return;
  693. }
  694. if (ticks <= 3)
  695. eISR_Rate = fastdiv(timer, ticks + 1);
  696. else
  697. {
  698. // >4 ticks are still possible on slow moves
  699. eISR_Rate = timer / (ticks + 1);
  700. }
  701. nextAdvanceISR = eISR_Rate;
  702. }
  703. #endif
  704. FORCE_INLINE void isr() {
  705. //WRITE_NC(LOGIC_ANALYZER_CH0, true);
  706. //if (UVLO) uvlo();
  707. // If there is no current block, attempt to pop one from the buffer
  708. if (current_block == NULL)
  709. stepper_next_block();
  710. if (current_block != NULL)
  711. {
  712. stepper_check_endstops();
  713. if (current_block->flag & BLOCK_FLAG_DDA_LOWRES)
  714. stepper_tick_lowres();
  715. else
  716. stepper_tick_highres();
  717. #ifdef LIN_ADVANCE
  718. if (e_steps) WRITE_NC(E0_DIR_PIN, e_steps < 0? INVERT_E0_DIR: !INVERT_E0_DIR);
  719. uint8_t la_state = 0;
  720. #endif
  721. // Calculate new timer value
  722. // 13.38-14.63us for steady state,
  723. // 25.12us for acceleration / deceleration.
  724. {
  725. //WRITE_NC(LOGIC_ANALYZER_CH1, true);
  726. if (step_events_completed.wide <= (unsigned long int)current_block->accelerate_until) {
  727. // v = t * a -> acc_step_rate = acceleration_time * current_block->acceleration_rate
  728. MultiU24X24toH16(acc_step_rate, acceleration_time, current_block->acceleration_rate);
  729. acc_step_rate += uint16_t(current_block->initial_rate);
  730. // upper limit
  731. if(acc_step_rate > uint16_t(current_block->nominal_rate))
  732. acc_step_rate = current_block->nominal_rate;
  733. // step_rate to timer interval
  734. uint16_t timer = calc_timer(acc_step_rate, step_loops);
  735. _NEXT_ISR(timer);
  736. acceleration_time += timer;
  737. #ifdef LIN_ADVANCE
  738. if (current_block->use_advance_lead) {
  739. if (step_events_completed.wide <= (unsigned long int)step_loops) {
  740. la_state = ADV_INIT | ADV_ACC_VARY;
  741. if (e_extruding && current_adv_steps > target_adv_steps)
  742. target_adv_steps = current_adv_steps;
  743. }
  744. }
  745. #endif
  746. }
  747. else if (step_events_completed.wide > (unsigned long int)current_block->decelerate_after) {
  748. uint16_t step_rate;
  749. MultiU24X24toH16(step_rate, deceleration_time, current_block->acceleration_rate);
  750. step_rate = acc_step_rate - step_rate; // Decelerate from aceleration end point.
  751. if ((step_rate & 0x8000) || step_rate < uint16_t(current_block->final_rate)) {
  752. // Result is negative or too small.
  753. step_rate = uint16_t(current_block->final_rate);
  754. }
  755. // Step_rate to timer interval.
  756. uint16_t timer = calc_timer(step_rate, step_loops);
  757. _NEXT_ISR(timer);
  758. deceleration_time += timer;
  759. #ifdef LIN_ADVANCE
  760. if (current_block->use_advance_lead) {
  761. if (step_events_completed.wide <= (unsigned long int)current_block->decelerate_after + step_loops) {
  762. target_adv_steps = current_block->final_adv_steps;
  763. la_state = ADV_INIT | ADV_ACC_VARY;
  764. if (e_extruding && current_adv_steps < target_adv_steps)
  765. target_adv_steps = current_adv_steps;
  766. }
  767. }
  768. #endif
  769. }
  770. else {
  771. if (! step_loops_nominal) {
  772. // Calculation of the steady state timer rate has been delayed to the 1st tick of the steady state to lower
  773. // the initial interrupt blocking.
  774. OCR1A_nominal = calc_timer(uint16_t(current_block->nominal_rate), step_loops);
  775. step_loops_nominal = step_loops;
  776. #ifdef LIN_ADVANCE
  777. if(current_block->use_advance_lead) {
  778. // Due to E-jerk, there can be discontinuities in pressure state where an
  779. // acceleration or deceleration can be skipped or joined with the previous block.
  780. // If LA was not previously active, re-check the pressure level
  781. la_state = ADV_INIT;
  782. if (e_extruding)
  783. target_adv_steps = current_adv_steps;
  784. }
  785. #endif
  786. }
  787. _NEXT_ISR(OCR1A_nominal);
  788. }
  789. //WRITE_NC(LOGIC_ANALYZER_CH1, false);
  790. }
  791. #ifdef LIN_ADVANCE
  792. // avoid multiple instances or function calls to advance_spread
  793. if (la_state & ADV_INIT) {
  794. LA_phase = -1;
  795. if (current_adv_steps == target_adv_steps) {
  796. // nothing to be done in this phase, cancel any pending eisr
  797. la_state = 0;
  798. nextAdvanceISR = ADV_NEVER;
  799. }
  800. else {
  801. // reset error and iterations per loop for this phase
  802. eISR_Err = current_block->advance_rate;
  803. e_step_loops = current_block->advance_step_loops;
  804. if ((la_state & ADV_ACC_VARY) && e_extruding && (current_adv_steps > target_adv_steps)) {
  805. // LA could reverse the direction of extrusion in this phase
  806. eISR_Err += current_block->advance_rate;
  807. LA_phase = 0;
  808. }
  809. }
  810. }
  811. if (la_state & ADV_INIT || nextAdvanceISR != ADV_NEVER) {
  812. // update timers & phase for the next iteration
  813. advance_spread(main_Rate);
  814. if (LA_phase >= 0) {
  815. if (step_loops == e_step_loops)
  816. LA_phase = (current_block->advance_rate < main_Rate);
  817. else {
  818. // avoid overflow through division. warning: we need to _guarantee_ step_loops
  819. // and e_step_loops are <= 4 due to fastdiv's limit
  820. auto adv_rate_n = fastdiv(current_block->advance_rate, step_loops);
  821. auto main_rate_n = fastdiv(main_Rate, e_step_loops);
  822. LA_phase = (adv_rate_n < main_rate_n);
  823. }
  824. }
  825. }
  826. // Check for serial chars. This executes roughtly inbetween 50-60% of the total runtime of the
  827. // entire isr, making this spot a much better choice than checking during esteps
  828. MSerial.checkRx();
  829. #endif
  830. // If current block is finished, reset pointer
  831. if (step_events_completed.wide >= current_block->step_event_count.wide) {
  832. #if !defined(LIN_ADVANCE) && defined(FILAMENT_SENSOR)
  833. fsensor_st_block_chunk(fsensor_counter);
  834. fsensor_counter = 0;
  835. #endif //FILAMENT_SENSOR
  836. current_block = NULL;
  837. plan_discard_current_block();
  838. }
  839. #if !defined(LIN_ADVANCE) && defined(FILAMENT_SENSOR)
  840. else if ((abs(fsensor_counter) >= fsensor_chunk_len))
  841. {
  842. fsensor_st_block_chunk(fsensor_counter);
  843. fsensor_counter = 0;
  844. }
  845. #endif //FILAMENT_SENSOR
  846. }
  847. #ifdef TMC2130
  848. tmc2130_st_isr();
  849. #endif //TMC2130
  850. //WRITE_NC(LOGIC_ANALYZER_CH0, false);
  851. }
  852. #ifdef LIN_ADVANCE
  853. // Timer interrupt for E. e_steps is set in the main routine.
  854. FORCE_INLINE void advance_isr() {
  855. if (current_adv_steps > target_adv_steps) {
  856. // decompression
  857. if (e_step_loops != 1) {
  858. uint16_t d_steps = current_adv_steps - target_adv_steps;
  859. if (d_steps < e_step_loops)
  860. e_step_loops = d_steps;
  861. }
  862. e_steps -= e_step_loops;
  863. if (e_steps) WRITE_NC(E0_DIR_PIN, e_steps < 0? INVERT_E0_DIR: !INVERT_E0_DIR);
  864. current_adv_steps -= e_step_loops;
  865. }
  866. else if (current_adv_steps < target_adv_steps) {
  867. // compression
  868. if (e_step_loops != 1) {
  869. uint16_t d_steps = target_adv_steps - current_adv_steps;
  870. if (d_steps < e_step_loops)
  871. e_step_loops = d_steps;
  872. }
  873. e_steps += e_step_loops;
  874. if (e_steps) WRITE_NC(E0_DIR_PIN, e_steps < 0? INVERT_E0_DIR: !INVERT_E0_DIR);
  875. current_adv_steps += e_step_loops;
  876. }
  877. if (current_adv_steps == target_adv_steps) {
  878. // advance steps completed
  879. nextAdvanceISR = ADV_NEVER;
  880. }
  881. else {
  882. // schedule another tick
  883. nextAdvanceISR = eISR_Rate;
  884. }
  885. }
  886. FORCE_INLINE void advance_isr_scheduler() {
  887. // Integrate the final timer value, accounting for scheduling adjustments
  888. if(nextAdvanceISR && nextAdvanceISR != ADV_NEVER)
  889. {
  890. if(nextAdvanceISR > OCR1A)
  891. nextAdvanceISR -= OCR1A;
  892. else
  893. nextAdvanceISR = 0;
  894. }
  895. if(nextMainISR > OCR1A)
  896. nextMainISR -= OCR1A;
  897. else
  898. nextMainISR = 0;
  899. // Run main stepping ISR if flagged
  900. if (!nextMainISR)
  901. {
  902. #ifdef LA_DEBUG_LOGIC
  903. WRITE_NC(LOGIC_ANALYZER_CH0, true);
  904. #endif
  905. isr();
  906. #ifdef LA_DEBUG_LOGIC
  907. WRITE_NC(LOGIC_ANALYZER_CH0, false);
  908. #endif
  909. }
  910. // Run the next advance isr if triggered
  911. bool eisr = !nextAdvanceISR;
  912. if (eisr)
  913. {
  914. #ifdef LA_DEBUG_LOGIC
  915. WRITE_NC(LOGIC_ANALYZER_CH1, true);
  916. #endif
  917. advance_isr();
  918. #ifdef LA_DEBUG_LOGIC
  919. WRITE_NC(LOGIC_ANALYZER_CH1, false);
  920. #endif
  921. }
  922. // Tick E steps if any
  923. if (e_steps && (LA_phase < 0 || LA_phase == eisr)) {
  924. uint8_t max_ticks = (eisr? e_step_loops: step_loops);
  925. max_ticks = min(abs(e_steps), max_ticks);
  926. bool rev = (e_steps < 0);
  927. do
  928. {
  929. WRITE_NC(E0_STEP_PIN, !INVERT_E_STEP_PIN);
  930. e_steps += (rev? 1: -1);
  931. WRITE_NC(E0_STEP_PIN, INVERT_E_STEP_PIN);
  932. #if defined(FILAMENT_SENSOR) && defined(PAT9125)
  933. fsensor_counter += (rev? -1: 1);
  934. #endif
  935. }
  936. while(--max_ticks);
  937. #if defined(FILAMENT_SENSOR) && defined(PAT9125)
  938. if (abs(fsensor_counter) >= fsensor_chunk_len)
  939. {
  940. fsensor_st_block_chunk(fsensor_counter);
  941. fsensor_counter = 0;
  942. }
  943. #endif
  944. }
  945. // Schedule the next closest tick, ignoring advance if scheduled too
  946. // soon in order to avoid skewing the regular stepper acceleration
  947. if (nextAdvanceISR != ADV_NEVER && (nextAdvanceISR + 40) < nextMainISR)
  948. OCR1A = nextAdvanceISR;
  949. else
  950. OCR1A = nextMainISR;
  951. }
  952. #endif // LIN_ADVANCE
  953. void st_init()
  954. {
  955. #ifdef TMC2130
  956. tmc2130_init();
  957. #endif //TMC2130
  958. st_current_init(); //Initialize Digipot Motor Current
  959. microstep_init(); //Initialize Microstepping Pins
  960. //Initialize Dir Pins
  961. #if defined(X_DIR_PIN) && X_DIR_PIN > -1
  962. SET_OUTPUT(X_DIR_PIN);
  963. #endif
  964. #if defined(X2_DIR_PIN) && X2_DIR_PIN > -1
  965. SET_OUTPUT(X2_DIR_PIN);
  966. #endif
  967. #if defined(Y_DIR_PIN) && Y_DIR_PIN > -1
  968. SET_OUTPUT(Y_DIR_PIN);
  969. #if defined(Y_DUAL_STEPPER_DRIVERS) && defined(Y2_DIR_PIN) && (Y2_DIR_PIN > -1)
  970. SET_OUTPUT(Y2_DIR_PIN);
  971. #endif
  972. #endif
  973. #if defined(Z_DIR_PIN) && Z_DIR_PIN > -1
  974. SET_OUTPUT(Z_DIR_PIN);
  975. #if defined(Z_DUAL_STEPPER_DRIVERS) && defined(Z2_DIR_PIN) && (Z2_DIR_PIN > -1)
  976. SET_OUTPUT(Z2_DIR_PIN);
  977. #endif
  978. #endif
  979. #if defined(E0_DIR_PIN) && E0_DIR_PIN > -1
  980. SET_OUTPUT(E0_DIR_PIN);
  981. #endif
  982. #if defined(E1_DIR_PIN) && (E1_DIR_PIN > -1)
  983. SET_OUTPUT(E1_DIR_PIN);
  984. #endif
  985. #if defined(E2_DIR_PIN) && (E2_DIR_PIN > -1)
  986. SET_OUTPUT(E2_DIR_PIN);
  987. #endif
  988. //Initialize Enable Pins - steppers default to disabled.
  989. #if defined(X_ENABLE_PIN) && X_ENABLE_PIN > -1
  990. SET_OUTPUT(X_ENABLE_PIN);
  991. if(!X_ENABLE_ON) WRITE(X_ENABLE_PIN,HIGH);
  992. #endif
  993. #if defined(X2_ENABLE_PIN) && X2_ENABLE_PIN > -1
  994. SET_OUTPUT(X2_ENABLE_PIN);
  995. if(!X_ENABLE_ON) WRITE(X2_ENABLE_PIN,HIGH);
  996. #endif
  997. #if defined(Y_ENABLE_PIN) && Y_ENABLE_PIN > -1
  998. SET_OUTPUT(Y_ENABLE_PIN);
  999. if(!Y_ENABLE_ON) WRITE(Y_ENABLE_PIN,HIGH);
  1000. #if defined(Y_DUAL_STEPPER_DRIVERS) && defined(Y2_ENABLE_PIN) && (Y2_ENABLE_PIN > -1)
  1001. SET_OUTPUT(Y2_ENABLE_PIN);
  1002. if(!Y_ENABLE_ON) WRITE(Y2_ENABLE_PIN,HIGH);
  1003. #endif
  1004. #endif
  1005. #if defined(Z_ENABLE_PIN) && Z_ENABLE_PIN > -1
  1006. SET_OUTPUT(Z_ENABLE_PIN);
  1007. if(!Z_ENABLE_ON) WRITE(Z_ENABLE_PIN,HIGH);
  1008. #if defined(Z_DUAL_STEPPER_DRIVERS) && defined(Z2_ENABLE_PIN) && (Z2_ENABLE_PIN > -1)
  1009. SET_OUTPUT(Z2_ENABLE_PIN);
  1010. if(!Z_ENABLE_ON) WRITE(Z2_ENABLE_PIN,HIGH);
  1011. #endif
  1012. #endif
  1013. #if defined(E0_ENABLE_PIN) && (E0_ENABLE_PIN > -1)
  1014. SET_OUTPUT(E0_ENABLE_PIN);
  1015. if(!E_ENABLE_ON) WRITE(E0_ENABLE_PIN,HIGH);
  1016. #endif
  1017. #if defined(E1_ENABLE_PIN) && (E1_ENABLE_PIN > -1)
  1018. SET_OUTPUT(E1_ENABLE_PIN);
  1019. if(!E_ENABLE_ON) WRITE(E1_ENABLE_PIN,HIGH);
  1020. #endif
  1021. #if defined(E2_ENABLE_PIN) && (E2_ENABLE_PIN > -1)
  1022. SET_OUTPUT(E2_ENABLE_PIN);
  1023. if(!E_ENABLE_ON) WRITE(E2_ENABLE_PIN,HIGH);
  1024. #endif
  1025. //endstops and pullups
  1026. #ifdef TMC2130_SG_HOMING
  1027. SET_INPUT(X_TMC2130_DIAG);
  1028. WRITE(X_TMC2130_DIAG,HIGH);
  1029. SET_INPUT(Y_TMC2130_DIAG);
  1030. WRITE(Y_TMC2130_DIAG,HIGH);
  1031. SET_INPUT(Z_TMC2130_DIAG);
  1032. WRITE(Z_TMC2130_DIAG,HIGH);
  1033. SET_INPUT(E0_TMC2130_DIAG);
  1034. WRITE(E0_TMC2130_DIAG,HIGH);
  1035. #endif
  1036. #if defined(X_MIN_PIN) && X_MIN_PIN > -1
  1037. SET_INPUT(X_MIN_PIN);
  1038. #ifdef ENDSTOPPULLUP_XMIN
  1039. WRITE(X_MIN_PIN,HIGH);
  1040. #endif
  1041. #endif
  1042. #if defined(Y_MIN_PIN) && Y_MIN_PIN > -1
  1043. SET_INPUT(Y_MIN_PIN);
  1044. #ifdef ENDSTOPPULLUP_YMIN
  1045. WRITE(Y_MIN_PIN,HIGH);
  1046. #endif
  1047. #endif
  1048. #if defined(Z_MIN_PIN) && Z_MIN_PIN > -1
  1049. SET_INPUT(Z_MIN_PIN);
  1050. #ifdef ENDSTOPPULLUP_ZMIN
  1051. WRITE(Z_MIN_PIN,HIGH);
  1052. #endif
  1053. #endif
  1054. #if defined(X_MAX_PIN) && X_MAX_PIN > -1
  1055. SET_INPUT(X_MAX_PIN);
  1056. #ifdef ENDSTOPPULLUP_XMAX
  1057. WRITE(X_MAX_PIN,HIGH);
  1058. #endif
  1059. #endif
  1060. #if defined(Y_MAX_PIN) && Y_MAX_PIN > -1
  1061. SET_INPUT(Y_MAX_PIN);
  1062. #ifdef ENDSTOPPULLUP_YMAX
  1063. WRITE(Y_MAX_PIN,HIGH);
  1064. #endif
  1065. #endif
  1066. #if defined(Z_MAX_PIN) && Z_MAX_PIN > -1
  1067. SET_INPUT(Z_MAX_PIN);
  1068. #ifdef ENDSTOPPULLUP_ZMAX
  1069. WRITE(Z_MAX_PIN,HIGH);
  1070. #endif
  1071. #endif
  1072. #if (defined(FANCHECK) && defined(TACH_0) && (TACH_0 > -1))
  1073. SET_INPUT(TACH_0);
  1074. #ifdef TACH0PULLUP
  1075. WRITE(TACH_0, HIGH);
  1076. #endif
  1077. #endif
  1078. //Initialize Step Pins
  1079. #if defined(X_STEP_PIN) && (X_STEP_PIN > -1)
  1080. SET_OUTPUT(X_STEP_PIN);
  1081. WRITE(X_STEP_PIN,INVERT_X_STEP_PIN);
  1082. #ifdef DEBUG_XSTEP_DUP_PIN
  1083. SET_OUTPUT(DEBUG_XSTEP_DUP_PIN);
  1084. WRITE(DEBUG_XSTEP_DUP_PIN,INVERT_X_STEP_PIN);
  1085. #endif //DEBUG_XSTEP_DUP_PIN
  1086. disable_x();
  1087. #endif
  1088. #if defined(X2_STEP_PIN) && (X2_STEP_PIN > -1)
  1089. SET_OUTPUT(X2_STEP_PIN);
  1090. WRITE(X2_STEP_PIN,INVERT_X_STEP_PIN);
  1091. disable_x();
  1092. #endif
  1093. #if defined(Y_STEP_PIN) && (Y_STEP_PIN > -1)
  1094. SET_OUTPUT(Y_STEP_PIN);
  1095. WRITE(Y_STEP_PIN,INVERT_Y_STEP_PIN);
  1096. #ifdef DEBUG_YSTEP_DUP_PIN
  1097. SET_OUTPUT(DEBUG_YSTEP_DUP_PIN);
  1098. WRITE(DEBUG_YSTEP_DUP_PIN,INVERT_Y_STEP_PIN);
  1099. #endif //DEBUG_YSTEP_DUP_PIN
  1100. #if defined(Y_DUAL_STEPPER_DRIVERS) && defined(Y2_STEP_PIN) && (Y2_STEP_PIN > -1)
  1101. SET_OUTPUT(Y2_STEP_PIN);
  1102. WRITE(Y2_STEP_PIN,INVERT_Y_STEP_PIN);
  1103. #endif
  1104. disable_y();
  1105. #endif
  1106. #if defined(Z_STEP_PIN) && (Z_STEP_PIN > -1)
  1107. SET_OUTPUT(Z_STEP_PIN);
  1108. WRITE(Z_STEP_PIN,INVERT_Z_STEP_PIN);
  1109. #if defined(Z_DUAL_STEPPER_DRIVERS) && defined(Z2_STEP_PIN) && (Z2_STEP_PIN > -1)
  1110. SET_OUTPUT(Z2_STEP_PIN);
  1111. WRITE(Z2_STEP_PIN,INVERT_Z_STEP_PIN);
  1112. #endif
  1113. #ifdef PSU_Delta
  1114. init_force_z();
  1115. #endif // PSU_Delta
  1116. disable_z();
  1117. #endif
  1118. #if defined(E0_STEP_PIN) && (E0_STEP_PIN > -1)
  1119. SET_OUTPUT(E0_STEP_PIN);
  1120. WRITE(E0_STEP_PIN,INVERT_E_STEP_PIN);
  1121. disable_e0();
  1122. #endif
  1123. #if defined(E1_STEP_PIN) && (E1_STEP_PIN > -1)
  1124. SET_OUTPUT(E1_STEP_PIN);
  1125. WRITE(E1_STEP_PIN,INVERT_E_STEP_PIN);
  1126. disable_e1();
  1127. #endif
  1128. #if defined(E2_STEP_PIN) && (E2_STEP_PIN > -1)
  1129. SET_OUTPUT(E2_STEP_PIN);
  1130. WRITE(E2_STEP_PIN,INVERT_E_STEP_PIN);
  1131. disable_e2();
  1132. #endif
  1133. // waveform generation = 0100 = CTC
  1134. TCCR1B &= ~(1<<WGM13);
  1135. TCCR1B |= (1<<WGM12);
  1136. TCCR1A &= ~(1<<WGM11);
  1137. TCCR1A &= ~(1<<WGM10);
  1138. // output mode = 00 (disconnected)
  1139. TCCR1A &= ~(3<<COM1A0);
  1140. TCCR1A &= ~(3<<COM1B0);
  1141. // Set the timer pre-scaler
  1142. // Generally we use a divider of 8, resulting in a 2MHz timer
  1143. // frequency on a 16MHz MCU. If you are going to change this, be
  1144. // sure to regenerate speed_lookuptable.h with
  1145. // create_speed_lookuptable.py
  1146. TCCR1B = (TCCR1B & ~(0x07<<CS10)) | (2<<CS10);
  1147. // Plan the first interrupt after 8ms from now.
  1148. OCR1A = 0x4000;
  1149. TCNT1 = 0;
  1150. #ifdef LIN_ADVANCE
  1151. #ifdef LA_DEBUG_LOGIC
  1152. LOGIC_ANALYZER_CH0_ENABLE;
  1153. LOGIC_ANALYZER_CH1_ENABLE;
  1154. WRITE_NC(LOGIC_ANALYZER_CH0, false);
  1155. WRITE_NC(LOGIC_ANALYZER_CH1, false);
  1156. #endif
  1157. // Initialize state for the linear advance scheduler
  1158. nextMainISR = 0;
  1159. nextAdvanceISR = ADV_NEVER;
  1160. main_Rate = ADV_NEVER;
  1161. current_adv_steps = 0;
  1162. #endif
  1163. enable_endstops(true); // Start with endstops active. After homing they can be disabled
  1164. ENABLE_STEPPER_DRIVER_INTERRUPT();
  1165. sei();
  1166. }
  1167. void st_reset_timer()
  1168. {
  1169. // Clear a possible pending interrupt on OCR1A overflow.
  1170. TIFR1 |= 1 << OCF1A;
  1171. // Reset the counter.
  1172. TCNT1 = 0;
  1173. // Wake up after 1ms from now.
  1174. OCR1A = 2000;
  1175. #ifdef LIN_ADVANCE
  1176. nextMainISR = 0;
  1177. if(nextAdvanceISR && nextAdvanceISR != ADV_NEVER)
  1178. nextAdvanceISR = 0;
  1179. #endif
  1180. }
  1181. // Block until all buffered steps are executed
  1182. void st_synchronize()
  1183. {
  1184. while(blocks_queued())
  1185. {
  1186. #ifdef TMC2130
  1187. manage_heater();
  1188. // Vojtech: Don't disable motors inside the planner!
  1189. if (!tmc2130_update_sg())
  1190. {
  1191. manage_inactivity(true);
  1192. lcd_update(0);
  1193. }
  1194. #else //TMC2130
  1195. manage_heater();
  1196. // Vojtech: Don't disable motors inside the planner!
  1197. manage_inactivity(true);
  1198. lcd_update(0);
  1199. #endif //TMC2130
  1200. }
  1201. }
  1202. void st_set_position(const long &x, const long &y, const long &z, const long &e)
  1203. {
  1204. CRITICAL_SECTION_START;
  1205. // Copy 4x4B.
  1206. // This block locks the interrupts globally for 4.56 us,
  1207. // which corresponds to a maximum repeat frequency of 219.18 kHz.
  1208. // This blocking is safe in the context of a 10kHz stepper driver interrupt
  1209. // or a 115200 Bd serial line receive interrupt, which will not trigger faster than 12kHz.
  1210. count_position[X_AXIS] = x;
  1211. count_position[Y_AXIS] = y;
  1212. count_position[Z_AXIS] = z;
  1213. count_position[E_AXIS] = e;
  1214. CRITICAL_SECTION_END;
  1215. }
  1216. void st_set_e_position(const long &e)
  1217. {
  1218. CRITICAL_SECTION_START;
  1219. count_position[E_AXIS] = e;
  1220. CRITICAL_SECTION_END;
  1221. }
  1222. long st_get_position(uint8_t axis)
  1223. {
  1224. long count_pos;
  1225. CRITICAL_SECTION_START;
  1226. count_pos = count_position[axis];
  1227. CRITICAL_SECTION_END;
  1228. return count_pos;
  1229. }
  1230. void st_get_position_xy(long &x, long &y)
  1231. {
  1232. CRITICAL_SECTION_START;
  1233. x = count_position[X_AXIS];
  1234. y = count_position[Y_AXIS];
  1235. CRITICAL_SECTION_END;
  1236. }
  1237. float st_get_position_mm(uint8_t axis)
  1238. {
  1239. float steper_position_in_steps = st_get_position(axis);
  1240. return steper_position_in_steps / cs.axis_steps_per_unit[axis];
  1241. }
  1242. void quickStop()
  1243. {
  1244. DISABLE_STEPPER_DRIVER_INTERRUPT();
  1245. while (blocks_queued()) plan_discard_current_block();
  1246. current_block = NULL;
  1247. #ifdef LIN_ADVANCE
  1248. nextAdvanceISR = ADV_NEVER;
  1249. current_adv_steps = 0;
  1250. #endif
  1251. st_reset_timer();
  1252. ENABLE_STEPPER_DRIVER_INTERRUPT();
  1253. }
  1254. #ifdef BABYSTEPPING
  1255. void babystep(const uint8_t axis,const bool direction)
  1256. {
  1257. //MUST ONLY BE CALLED BY A ISR, it depends on that no other ISR interrupts this
  1258. //store initial pin states
  1259. switch(axis)
  1260. {
  1261. case X_AXIS:
  1262. {
  1263. enable_x();
  1264. uint8_t old_x_dir_pin= READ(X_DIR_PIN); //if dualzstepper, both point to same direction.
  1265. //setup new step
  1266. WRITE(X_DIR_PIN,(INVERT_X_DIR)^direction);
  1267. //perform step
  1268. WRITE(X_STEP_PIN, !INVERT_X_STEP_PIN);
  1269. #ifdef DEBUG_XSTEP_DUP_PIN
  1270. WRITE(DEBUG_XSTEP_DUP_PIN,!INVERT_X_STEP_PIN);
  1271. #endif //DEBUG_XSTEP_DUP_PIN
  1272. delayMicroseconds(1);
  1273. WRITE(X_STEP_PIN, INVERT_X_STEP_PIN);
  1274. #ifdef DEBUG_XSTEP_DUP_PIN
  1275. WRITE(DEBUG_XSTEP_DUP_PIN,INVERT_X_STEP_PIN);
  1276. #endif //DEBUG_XSTEP_DUP_PIN
  1277. //get old pin state back.
  1278. WRITE(X_DIR_PIN,old_x_dir_pin);
  1279. }
  1280. break;
  1281. case Y_AXIS:
  1282. {
  1283. enable_y();
  1284. uint8_t old_y_dir_pin= READ(Y_DIR_PIN); //if dualzstepper, both point to same direction.
  1285. //setup new step
  1286. WRITE(Y_DIR_PIN,(INVERT_Y_DIR)^direction);
  1287. //perform step
  1288. WRITE(Y_STEP_PIN, !INVERT_Y_STEP_PIN);
  1289. #ifdef DEBUG_YSTEP_DUP_PIN
  1290. WRITE(DEBUG_YSTEP_DUP_PIN,!INVERT_Y_STEP_PIN);
  1291. #endif //DEBUG_YSTEP_DUP_PIN
  1292. delayMicroseconds(1);
  1293. WRITE(Y_STEP_PIN, INVERT_Y_STEP_PIN);
  1294. #ifdef DEBUG_YSTEP_DUP_PIN
  1295. WRITE(DEBUG_YSTEP_DUP_PIN,INVERT_Y_STEP_PIN);
  1296. #endif //DEBUG_YSTEP_DUP_PIN
  1297. //get old pin state back.
  1298. WRITE(Y_DIR_PIN,old_y_dir_pin);
  1299. }
  1300. break;
  1301. case Z_AXIS:
  1302. {
  1303. enable_z();
  1304. uint8_t old_z_dir_pin= READ(Z_DIR_PIN); //if dualzstepper, both point to same direction.
  1305. //setup new step
  1306. WRITE(Z_DIR_PIN,(INVERT_Z_DIR)^direction^BABYSTEP_INVERT_Z);
  1307. #ifdef Z_DUAL_STEPPER_DRIVERS
  1308. WRITE(Z2_DIR_PIN,(INVERT_Z_DIR)^direction^BABYSTEP_INVERT_Z);
  1309. #endif
  1310. //perform step
  1311. WRITE(Z_STEP_PIN, !INVERT_Z_STEP_PIN);
  1312. #ifdef Z_DUAL_STEPPER_DRIVERS
  1313. WRITE(Z2_STEP_PIN, !INVERT_Z_STEP_PIN);
  1314. #endif
  1315. delayMicroseconds(1);
  1316. WRITE(Z_STEP_PIN, INVERT_Z_STEP_PIN);
  1317. #ifdef Z_DUAL_STEPPER_DRIVERS
  1318. WRITE(Z2_STEP_PIN, INVERT_Z_STEP_PIN);
  1319. #endif
  1320. //get old pin state back.
  1321. WRITE(Z_DIR_PIN,old_z_dir_pin);
  1322. #ifdef Z_DUAL_STEPPER_DRIVERS
  1323. WRITE(Z2_DIR_PIN,old_z_dir_pin);
  1324. #endif
  1325. }
  1326. break;
  1327. default: break;
  1328. }
  1329. }
  1330. #endif //BABYSTEPPING
  1331. #if defined(DIGIPOTSS_PIN) && DIGIPOTSS_PIN > -1
  1332. void digitalPotWrite(int address, int value) // From Arduino DigitalPotControl example
  1333. {
  1334. digitalWrite(DIGIPOTSS_PIN,LOW); // take the SS pin low to select the chip
  1335. SPI.transfer(address); // send in the address and value via SPI:
  1336. SPI.transfer(value);
  1337. digitalWrite(DIGIPOTSS_PIN,HIGH); // take the SS pin high to de-select the chip:
  1338. //_delay(10);
  1339. }
  1340. #endif
  1341. void EEPROM_read_st(int pos, uint8_t* value, uint8_t size)
  1342. {
  1343. do
  1344. {
  1345. *value = eeprom_read_byte((unsigned char*)pos);
  1346. pos++;
  1347. value++;
  1348. }while(--size);
  1349. }
  1350. void st_current_init() //Initialize Digipot Motor Current
  1351. {
  1352. #ifdef MOTOR_CURRENT_PWM_XY_PIN
  1353. uint8_t SilentMode = eeprom_read_byte((uint8_t*)EEPROM_SILENT);
  1354. SilentModeMenu = SilentMode;
  1355. pinMode(MOTOR_CURRENT_PWM_XY_PIN, OUTPUT);
  1356. pinMode(MOTOR_CURRENT_PWM_Z_PIN, OUTPUT);
  1357. pinMode(MOTOR_CURRENT_PWM_E_PIN, OUTPUT);
  1358. if((SilentMode == SILENT_MODE_OFF) || (farm_mode) ){
  1359. motor_current_setting[0] = motor_current_setting_loud[0];
  1360. motor_current_setting[1] = motor_current_setting_loud[1];
  1361. motor_current_setting[2] = motor_current_setting_loud[2];
  1362. }else{
  1363. motor_current_setting[0] = motor_current_setting_silent[0];
  1364. motor_current_setting[1] = motor_current_setting_silent[1];
  1365. motor_current_setting[2] = motor_current_setting_silent[2];
  1366. }
  1367. st_current_set(0, motor_current_setting[0]);
  1368. st_current_set(1, motor_current_setting[1]);
  1369. st_current_set(2, motor_current_setting[2]);
  1370. //Set timer5 to 31khz so the PWM of the motor power is as constant as possible. (removes a buzzing noise)
  1371. TCCR5B = (TCCR5B & ~(_BV(CS50) | _BV(CS51) | _BV(CS52))) | _BV(CS50);
  1372. #endif
  1373. }
  1374. #ifdef MOTOR_CURRENT_PWM_XY_PIN
  1375. void st_current_set(uint8_t driver, int current)
  1376. {
  1377. if (driver == 0) analogWrite(MOTOR_CURRENT_PWM_XY_PIN, (long)current * 255L / (long)MOTOR_CURRENT_PWM_RANGE);
  1378. if (driver == 1) analogWrite(MOTOR_CURRENT_PWM_Z_PIN, (long)current * 255L / (long)MOTOR_CURRENT_PWM_RANGE);
  1379. if (driver == 2) analogWrite(MOTOR_CURRENT_PWM_E_PIN, (long)current * 255L / (long)MOTOR_CURRENT_PWM_RANGE);
  1380. }
  1381. #else //MOTOR_CURRENT_PWM_XY_PIN
  1382. void st_current_set(uint8_t, int ){}
  1383. #endif //MOTOR_CURRENT_PWM_XY_PIN
  1384. void microstep_init()
  1385. {
  1386. #if defined(E1_MS1_PIN) && E1_MS1_PIN > -1
  1387. pinMode(E1_MS1_PIN,OUTPUT);
  1388. pinMode(E1_MS2_PIN,OUTPUT);
  1389. #endif
  1390. #if defined(X_MS1_PIN) && X_MS1_PIN > -1
  1391. const uint8_t microstep_modes[] = MICROSTEP_MODES;
  1392. pinMode(X_MS1_PIN,OUTPUT);
  1393. pinMode(X_MS2_PIN,OUTPUT);
  1394. pinMode(Y_MS1_PIN,OUTPUT);
  1395. pinMode(Y_MS2_PIN,OUTPUT);
  1396. pinMode(Z_MS1_PIN,OUTPUT);
  1397. pinMode(Z_MS2_PIN,OUTPUT);
  1398. pinMode(E0_MS1_PIN,OUTPUT);
  1399. pinMode(E0_MS2_PIN,OUTPUT);
  1400. for(int i=0;i<=4;i++) microstep_mode(i,microstep_modes[i]);
  1401. #endif
  1402. }
  1403. #ifndef TMC2130
  1404. void microstep_ms(uint8_t driver, int8_t ms1, int8_t ms2)
  1405. {
  1406. if(ms1 > -1) switch(driver)
  1407. {
  1408. case 0: digitalWrite( X_MS1_PIN,ms1); break;
  1409. case 1: digitalWrite( Y_MS1_PIN,ms1); break;
  1410. case 2: digitalWrite( Z_MS1_PIN,ms1); break;
  1411. case 3: digitalWrite(E0_MS1_PIN,ms1); break;
  1412. #if defined(E1_MS1_PIN) && E1_MS1_PIN > -1
  1413. case 4: digitalWrite(E1_MS1_PIN,ms1); break;
  1414. #endif
  1415. }
  1416. if(ms2 > -1) switch(driver)
  1417. {
  1418. case 0: digitalWrite( X_MS2_PIN,ms2); break;
  1419. case 1: digitalWrite( Y_MS2_PIN,ms2); break;
  1420. case 2: digitalWrite( Z_MS2_PIN,ms2); break;
  1421. case 3: digitalWrite(E0_MS2_PIN,ms2); break;
  1422. #if defined(E1_MS2_PIN) && E1_MS2_PIN > -1
  1423. case 4: digitalWrite(E1_MS2_PIN,ms2); break;
  1424. #endif
  1425. }
  1426. }
  1427. void microstep_mode(uint8_t driver, uint8_t stepping_mode)
  1428. {
  1429. switch(stepping_mode)
  1430. {
  1431. case 1: microstep_ms(driver,MICROSTEP1); break;
  1432. case 2: microstep_ms(driver,MICROSTEP2); break;
  1433. case 4: microstep_ms(driver,MICROSTEP4); break;
  1434. case 8: microstep_ms(driver,MICROSTEP8); break;
  1435. case 16: microstep_ms(driver,MICROSTEP16); break;
  1436. }
  1437. }
  1438. void microstep_readings()
  1439. {
  1440. SERIAL_PROTOCOLPGM("MS1,MS2 Pins\n");
  1441. SERIAL_PROTOCOLPGM("X: ");
  1442. SERIAL_PROTOCOL( digitalRead(X_MS1_PIN));
  1443. SERIAL_PROTOCOLLN( digitalRead(X_MS2_PIN));
  1444. SERIAL_PROTOCOLPGM("Y: ");
  1445. SERIAL_PROTOCOL( digitalRead(Y_MS1_PIN));
  1446. SERIAL_PROTOCOLLN( digitalRead(Y_MS2_PIN));
  1447. SERIAL_PROTOCOLPGM("Z: ");
  1448. SERIAL_PROTOCOL( digitalRead(Z_MS1_PIN));
  1449. SERIAL_PROTOCOLLN( digitalRead(Z_MS2_PIN));
  1450. SERIAL_PROTOCOLPGM("E0: ");
  1451. SERIAL_PROTOCOL( digitalRead(E0_MS1_PIN));
  1452. SERIAL_PROTOCOLLN( digitalRead(E0_MS2_PIN));
  1453. #if defined(E1_MS1_PIN) && E1_MS1_PIN > -1
  1454. SERIAL_PROTOCOLPGM("E1: ");
  1455. SERIAL_PROTOCOL( digitalRead(E1_MS1_PIN));
  1456. SERIAL_PROTOCOLLN( digitalRead(E1_MS2_PIN));
  1457. #endif
  1458. }
  1459. #endif //TMC2130
  1460. #if defined(FILAMENT_SENSOR) && defined(PAT9125)
  1461. void st_reset_fsensor()
  1462. {
  1463. CRITICAL_SECTION_START;
  1464. fsensor_counter = 0;
  1465. CRITICAL_SECTION_END;
  1466. }
  1467. #endif //FILAMENT_SENSOR