My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stepper.cpp 140KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * stepper.cpp - A singleton object to execute motion plans using stepper motors
  24. * Marlin Firmware
  25. *
  26. * Derived from Grbl
  27. * Copyright (c) 2009-2011 Simen Svale Skogsrud
  28. *
  29. * Grbl is free software: you can redistribute it and/or modify
  30. * it under the terms of the GNU General Public License as published by
  31. * the Free Software Foundation, either version 3 of the License, or
  32. * (at your option) any later version.
  33. *
  34. * Grbl is distributed in the hope that it will be useful,
  35. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  36. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  37. * GNU General Public License for more details.
  38. *
  39. * You should have received a copy of the GNU General Public License
  40. * along with Grbl. If not, see <https://www.gnu.org/licenses/>.
  41. */
  42. /**
  43. * Timer calculations informed by the 'RepRap cartesian firmware' by Zack Smith
  44. * and Philipp Tiefenbacher.
  45. */
  46. /**
  47. * __________________________
  48. * /| |\ _________________ ^
  49. * / | | \ /| |\ |
  50. * / | | \ / | | \ s
  51. * / | | | | | \ p
  52. * / | | | | | \ e
  53. * +-----+------------------------+---+--+---------------+----+ e
  54. * | BLOCK 1 | BLOCK 2 | d
  55. *
  56. * time ----->
  57. *
  58. * The trapezoid is the shape the speed curve over time. It starts at block->initial_rate, accelerates
  59. * first block->accelerate_until step_events_completed, then keeps going at constant speed until
  60. * step_events_completed reaches block->decelerate_after after which it decelerates until the trapezoid generator is reset.
  61. * The slope of acceleration is calculated using v = u + at where t is the accumulated timer values of the steps so far.
  62. */
  63. /**
  64. * Marlin uses the Bresenham algorithm. For a detailed explanation of theory and
  65. * method see https://www.cs.helsinki.fi/group/goa/mallinnus/lines/bresenh.html
  66. */
  67. /**
  68. * Jerk controlled movements planner added Apr 2018 by Eduardo José Tagle.
  69. * Equations based on Synthethos TinyG2 sources, but the fixed-point
  70. * implementation is new, as we are running the ISR with a variable period.
  71. * Also implemented the Bézier velocity curve evaluation in ARM assembler,
  72. * to avoid impacting ISR speed.
  73. */
  74. #include "stepper.h"
  75. Stepper stepper; // Singleton
  76. #define BABYSTEPPING_EXTRA_DIR_WAIT
  77. #ifdef __AVR__
  78. #include "speed_lookuptable.h"
  79. #endif
  80. #include "endstops.h"
  81. #include "planner.h"
  82. #include "motion.h"
  83. #include "../lcd/marlinui.h"
  84. #include "../gcode/queue.h"
  85. #include "../sd/cardreader.h"
  86. #include "../MarlinCore.h"
  87. #include "../HAL/shared/Delay.h"
  88. #if ENABLED(INTEGRATED_BABYSTEPPING)
  89. #include "../feature/babystep.h"
  90. #endif
  91. #if MB(ALLIGATOR)
  92. #include "../feature/dac/dac_dac084s085.h"
  93. #endif
  94. #if HAS_MOTOR_CURRENT_SPI
  95. #include <SPI.h>
  96. #endif
  97. #if ENABLED(MIXING_EXTRUDER)
  98. #include "../feature/mixing.h"
  99. #endif
  100. #if HAS_FILAMENT_RUNOUT_DISTANCE
  101. #include "../feature/runout.h"
  102. #endif
  103. #if HAS_L64XX
  104. #include "../libs/L64XX/L64XX_Marlin.h"
  105. uint8_t L6470_buf[MAX_L64XX + 1]; // chip command sequence - element 0 not used
  106. bool L64XX_OK_to_power_up = false; // flag to keep L64xx steppers powered down after a reset or power up
  107. #endif
  108. #if ENABLED(AUTO_POWER_CONTROL)
  109. #include "../feature/power.h"
  110. #endif
  111. #if ENABLED(POWER_LOSS_RECOVERY)
  112. #include "../feature/powerloss.h"
  113. #endif
  114. #if HAS_CUTTER
  115. #include "../feature/spindle_laser.h"
  116. #endif
  117. #if ENABLED(EXTENSIBLE_UI)
  118. #include "../lcd/extui/ui_api.h"
  119. #endif
  120. // public:
  121. #if EITHER(HAS_EXTRA_ENDSTOPS, Z_STEPPER_AUTO_ALIGN)
  122. bool Stepper::separate_multi_axis = false;
  123. #endif
  124. #if HAS_MOTOR_CURRENT_SPI || HAS_MOTOR_CURRENT_PWM
  125. bool Stepper::initialized; // = false
  126. uint32_t Stepper::motor_current_setting[MOTOR_CURRENT_COUNT]; // Initialized by settings.load()
  127. #if HAS_MOTOR_CURRENT_SPI
  128. constexpr uint32_t Stepper::digipot_count[];
  129. #endif
  130. #endif
  131. stepper_flags_t Stepper::axis_enabled; // {0}
  132. // private:
  133. block_t* Stepper::current_block; // (= nullptr) A pointer to the block currently being traced
  134. axis_bits_t Stepper::last_direction_bits, // = 0
  135. Stepper::axis_did_move; // = 0
  136. bool Stepper::abort_current_block;
  137. #if DISABLED(MIXING_EXTRUDER) && HAS_MULTI_EXTRUDER
  138. uint8_t Stepper::last_moved_extruder = 0xFF;
  139. #endif
  140. #if ENABLED(X_DUAL_ENDSTOPS)
  141. bool Stepper::locked_X_motor = false, Stepper::locked_X2_motor = false;
  142. #endif
  143. #if ENABLED(Y_DUAL_ENDSTOPS)
  144. bool Stepper::locked_Y_motor = false, Stepper::locked_Y2_motor = false;
  145. #endif
  146. #if EITHER(Z_MULTI_ENDSTOPS, Z_STEPPER_AUTO_ALIGN)
  147. bool Stepper::locked_Z_motor = false, Stepper::locked_Z2_motor = false
  148. #if NUM_Z_STEPPER_DRIVERS >= 3
  149. , Stepper::locked_Z3_motor = false
  150. #if NUM_Z_STEPPER_DRIVERS >= 4
  151. , Stepper::locked_Z4_motor = false
  152. #endif
  153. #endif
  154. ;
  155. #endif
  156. uint32_t Stepper::acceleration_time, Stepper::deceleration_time;
  157. uint8_t Stepper::steps_per_isr;
  158. #if ENABLED(FREEZE_FEATURE)
  159. bool Stepper::frozen; // = false
  160. #endif
  161. IF_DISABLED(ADAPTIVE_STEP_SMOOTHING, constexpr) uint8_t Stepper::oversampling_factor;
  162. xyze_long_t Stepper::delta_error{0};
  163. xyze_ulong_t Stepper::advance_dividend{0};
  164. uint32_t Stepper::advance_divisor = 0,
  165. Stepper::step_events_completed = 0, // The number of step events executed in the current block
  166. Stepper::accelerate_until, // The count at which to stop accelerating
  167. Stepper::decelerate_after, // The count at which to start decelerating
  168. Stepper::step_event_count; // The total event count for the current block
  169. #if EITHER(HAS_MULTI_EXTRUDER, MIXING_EXTRUDER)
  170. uint8_t Stepper::stepper_extruder;
  171. #else
  172. constexpr uint8_t Stepper::stepper_extruder;
  173. #endif
  174. #if ENABLED(S_CURVE_ACCELERATION)
  175. int32_t __attribute__((used)) Stepper::bezier_A __asm__("bezier_A"); // A coefficient in Bézier speed curve with alias for assembler
  176. int32_t __attribute__((used)) Stepper::bezier_B __asm__("bezier_B"); // B coefficient in Bézier speed curve with alias for assembler
  177. int32_t __attribute__((used)) Stepper::bezier_C __asm__("bezier_C"); // C coefficient in Bézier speed curve with alias for assembler
  178. uint32_t __attribute__((used)) Stepper::bezier_F __asm__("bezier_F"); // F coefficient in Bézier speed curve with alias for assembler
  179. uint32_t __attribute__((used)) Stepper::bezier_AV __asm__("bezier_AV"); // AV coefficient in Bézier speed curve with alias for assembler
  180. #ifdef __AVR__
  181. bool __attribute__((used)) Stepper::A_negative __asm__("A_negative"); // If A coefficient was negative
  182. #endif
  183. bool Stepper::bezier_2nd_half; // =false If Bézier curve has been initialized or not
  184. #endif
  185. #if ENABLED(LIN_ADVANCE)
  186. uint32_t Stepper::nextAdvanceISR = LA_ADV_NEVER,
  187. Stepper::LA_isr_rate = LA_ADV_NEVER;
  188. uint16_t Stepper::LA_current_adv_steps = 0,
  189. Stepper::LA_final_adv_steps,
  190. Stepper::LA_max_adv_steps;
  191. int8_t Stepper::LA_steps = 0;
  192. bool Stepper::LA_use_advance_lead;
  193. #endif // LIN_ADVANCE
  194. #if ENABLED(INTEGRATED_BABYSTEPPING)
  195. uint32_t Stepper::nextBabystepISR = BABYSTEP_NEVER;
  196. #endif
  197. #if ENABLED(DIRECT_STEPPING)
  198. page_step_state_t Stepper::page_step_state;
  199. #endif
  200. int32_t Stepper::ticks_nominal = -1;
  201. #if DISABLED(S_CURVE_ACCELERATION)
  202. uint32_t Stepper::acc_step_rate; // needed for deceleration start point
  203. #endif
  204. xyz_long_t Stepper::endstops_trigsteps;
  205. xyze_long_t Stepper::count_position{0};
  206. xyze_int8_t Stepper::count_direction{0};
  207. #if ENABLED(LASER_POWER_INLINE_TRAPEZOID)
  208. Stepper::stepper_laser_t Stepper::laser_trap = {
  209. .enabled = false,
  210. .cur_power = 0,
  211. .cruise_set = false,
  212. #if DISABLED(LASER_POWER_INLINE_TRAPEZOID_CONT)
  213. .last_step_count = 0,
  214. .acc_step_count = 0
  215. #else
  216. .till_update = 0
  217. #endif
  218. };
  219. #endif
  220. #define MINDIR(A) (count_direction[_AXIS(A)] < 0)
  221. #define MAXDIR(A) (count_direction[_AXIS(A)] > 0)
  222. #define STEPTEST(A,M,I) TERN0(HAS_ ##A## ##I## _ ##M, !(TEST(endstops.state(), A## ##I## _ ##M) && M## DIR(A)) && !locked_ ##A## ##I## _motor)
  223. #define DUAL_ENDSTOP_APPLY_STEP(A,V) \
  224. if (separate_multi_axis) { \
  225. if (ENABLED(A##_HOME_TO_MIN)) { \
  226. if (STEPTEST(A,MIN, )) A## _STEP_WRITE(V); \
  227. if (STEPTEST(A,MIN,2)) A##2_STEP_WRITE(V); \
  228. } \
  229. else if (ENABLED(A##_HOME_TO_MAX)) { \
  230. if (STEPTEST(A,MAX, )) A## _STEP_WRITE(V); \
  231. if (STEPTEST(A,MAX,2)) A##2_STEP_WRITE(V); \
  232. } \
  233. } \
  234. else { \
  235. A##_STEP_WRITE(V); \
  236. A##2_STEP_WRITE(V); \
  237. }
  238. #define DUAL_SEPARATE_APPLY_STEP(A,V) \
  239. if (separate_multi_axis) { \
  240. if (!locked_##A## _motor) A## _STEP_WRITE(V); \
  241. if (!locked_##A##2_motor) A##2_STEP_WRITE(V); \
  242. } \
  243. else { \
  244. A##_STEP_WRITE(V); \
  245. A##2_STEP_WRITE(V); \
  246. }
  247. #define TRIPLE_ENDSTOP_APPLY_STEP(A,V) \
  248. if (separate_multi_axis) { \
  249. if (ENABLED(A##_HOME_TO_MIN)) { \
  250. if (STEPTEST(A,MIN, )) A## _STEP_WRITE(V); \
  251. if (STEPTEST(A,MIN,2)) A##2_STEP_WRITE(V); \
  252. if (STEPTEST(A,MIN,3)) A##3_STEP_WRITE(V); \
  253. } \
  254. else if (ENABLED(A##_HOME_TO_MAX)) { \
  255. if (STEPTEST(A,MAX, )) A## _STEP_WRITE(V); \
  256. if (STEPTEST(A,MAX,2)) A##2_STEP_WRITE(V); \
  257. if (STEPTEST(A,MAX,3)) A##3_STEP_WRITE(V); \
  258. } \
  259. } \
  260. else { \
  261. A##_STEP_WRITE(V); \
  262. A##2_STEP_WRITE(V); \
  263. A##3_STEP_WRITE(V); \
  264. }
  265. #define TRIPLE_SEPARATE_APPLY_STEP(A,V) \
  266. if (separate_multi_axis) { \
  267. if (!locked_##A## _motor) A## _STEP_WRITE(V); \
  268. if (!locked_##A##2_motor) A##2_STEP_WRITE(V); \
  269. if (!locked_##A##3_motor) A##3_STEP_WRITE(V); \
  270. } \
  271. else { \
  272. A## _STEP_WRITE(V); \
  273. A##2_STEP_WRITE(V); \
  274. A##3_STEP_WRITE(V); \
  275. }
  276. #define QUAD_ENDSTOP_APPLY_STEP(A,V) \
  277. if (separate_multi_axis) { \
  278. if (ENABLED(A##_HOME_TO_MIN)) { \
  279. if (STEPTEST(A,MIN, )) A## _STEP_WRITE(V); \
  280. if (STEPTEST(A,MIN,2)) A##2_STEP_WRITE(V); \
  281. if (STEPTEST(A,MIN,3)) A##3_STEP_WRITE(V); \
  282. if (STEPTEST(A,MIN,4)) A##4_STEP_WRITE(V); \
  283. } \
  284. else if (ENABLED(A##_HOME_TO_MAX)) { \
  285. if (STEPTEST(A,MAX, )) A## _STEP_WRITE(V); \
  286. if (STEPTEST(A,MAX,2)) A##2_STEP_WRITE(V); \
  287. if (STEPTEST(A,MAX,3)) A##3_STEP_WRITE(V); \
  288. if (STEPTEST(A,MAX,4)) A##4_STEP_WRITE(V); \
  289. } \
  290. } \
  291. else { \
  292. A## _STEP_WRITE(V); \
  293. A##2_STEP_WRITE(V); \
  294. A##3_STEP_WRITE(V); \
  295. A##4_STEP_WRITE(V); \
  296. }
  297. #define QUAD_SEPARATE_APPLY_STEP(A,V) \
  298. if (separate_multi_axis) { \
  299. if (!locked_##A## _motor) A## _STEP_WRITE(V); \
  300. if (!locked_##A##2_motor) A##2_STEP_WRITE(V); \
  301. if (!locked_##A##3_motor) A##3_STEP_WRITE(V); \
  302. if (!locked_##A##4_motor) A##4_STEP_WRITE(V); \
  303. } \
  304. else { \
  305. A## _STEP_WRITE(V); \
  306. A##2_STEP_WRITE(V); \
  307. A##3_STEP_WRITE(V); \
  308. A##4_STEP_WRITE(V); \
  309. }
  310. #if ENABLED(X_DUAL_STEPPER_DRIVERS)
  311. #define X_APPLY_DIR(v,Q) do{ X_DIR_WRITE(v); X2_DIR_WRITE((v) ^ ENABLED(INVERT_X2_VS_X_DIR)); }while(0)
  312. #if ENABLED(X_DUAL_ENDSTOPS)
  313. #define X_APPLY_STEP(v,Q) DUAL_ENDSTOP_APPLY_STEP(X,v)
  314. #else
  315. #define X_APPLY_STEP(v,Q) do{ X_STEP_WRITE(v); X2_STEP_WRITE(v); }while(0)
  316. #endif
  317. #elif ENABLED(DUAL_X_CARRIAGE)
  318. #define X_APPLY_DIR(v,ALWAYS) do{ \
  319. if (extruder_duplication_enabled || ALWAYS) { X_DIR_WRITE(v); X2_DIR_WRITE((v) ^ idex_mirrored_mode); } \
  320. else if (last_moved_extruder) X2_DIR_WRITE(v); else X_DIR_WRITE(v); \
  321. }while(0)
  322. #define X_APPLY_STEP(v,ALWAYS) do{ \
  323. if (extruder_duplication_enabled || ALWAYS) { X_STEP_WRITE(v); X2_STEP_WRITE(v); } \
  324. else if (last_moved_extruder) X2_STEP_WRITE(v); else X_STEP_WRITE(v); \
  325. }while(0)
  326. #else
  327. #define X_APPLY_DIR(v,Q) X_DIR_WRITE(v)
  328. #define X_APPLY_STEP(v,Q) X_STEP_WRITE(v)
  329. #endif
  330. #if ENABLED(Y_DUAL_STEPPER_DRIVERS)
  331. #define Y_APPLY_DIR(v,Q) do{ Y_DIR_WRITE(v); Y2_DIR_WRITE((v) ^ ENABLED(INVERT_Y2_VS_Y_DIR)); }while(0)
  332. #if ENABLED(Y_DUAL_ENDSTOPS)
  333. #define Y_APPLY_STEP(v,Q) DUAL_ENDSTOP_APPLY_STEP(Y,v)
  334. #else
  335. #define Y_APPLY_STEP(v,Q) do{ Y_STEP_WRITE(v); Y2_STEP_WRITE(v); }while(0)
  336. #endif
  337. #elif HAS_Y_AXIS
  338. #define Y_APPLY_DIR(v,Q) Y_DIR_WRITE(v)
  339. #define Y_APPLY_STEP(v,Q) Y_STEP_WRITE(v)
  340. #endif
  341. #if NUM_Z_STEPPER_DRIVERS == 4
  342. #define Z_APPLY_DIR(v,Q) do{ \
  343. Z_DIR_WRITE(v); Z2_DIR_WRITE((v) ^ ENABLED(INVERT_Z2_VS_Z_DIR)); \
  344. Z3_DIR_WRITE((v) ^ ENABLED(INVERT_Z3_VS_Z_DIR)); Z4_DIR_WRITE((v) ^ ENABLED(INVERT_Z4_VS_Z_DIR)); \
  345. }while(0)
  346. #if ENABLED(Z_MULTI_ENDSTOPS)
  347. #define Z_APPLY_STEP(v,Q) QUAD_ENDSTOP_APPLY_STEP(Z,v)
  348. #elif ENABLED(Z_STEPPER_AUTO_ALIGN)
  349. #define Z_APPLY_STEP(v,Q) QUAD_SEPARATE_APPLY_STEP(Z,v)
  350. #else
  351. #define Z_APPLY_STEP(v,Q) do{ Z_STEP_WRITE(v); Z2_STEP_WRITE(v); Z3_STEP_WRITE(v); Z4_STEP_WRITE(v); }while(0)
  352. #endif
  353. #elif NUM_Z_STEPPER_DRIVERS == 3
  354. #define Z_APPLY_DIR(v,Q) do{ \
  355. Z_DIR_WRITE(v); Z2_DIR_WRITE((v) ^ ENABLED(INVERT_Z2_VS_Z_DIR)); Z3_DIR_WRITE((v) ^ ENABLED(INVERT_Z3_VS_Z_DIR)); \
  356. }while(0)
  357. #if ENABLED(Z_MULTI_ENDSTOPS)
  358. #define Z_APPLY_STEP(v,Q) TRIPLE_ENDSTOP_APPLY_STEP(Z,v)
  359. #elif ENABLED(Z_STEPPER_AUTO_ALIGN)
  360. #define Z_APPLY_STEP(v,Q) TRIPLE_SEPARATE_APPLY_STEP(Z,v)
  361. #else
  362. #define Z_APPLY_STEP(v,Q) do{ Z_STEP_WRITE(v); Z2_STEP_WRITE(v); Z3_STEP_WRITE(v); }while(0)
  363. #endif
  364. #elif NUM_Z_STEPPER_DRIVERS == 2
  365. #define Z_APPLY_DIR(v,Q) do{ Z_DIR_WRITE(v); Z2_DIR_WRITE((v) ^ ENABLED(INVERT_Z2_VS_Z_DIR)); }while(0)
  366. #if ENABLED(Z_MULTI_ENDSTOPS)
  367. #define Z_APPLY_STEP(v,Q) DUAL_ENDSTOP_APPLY_STEP(Z,v)
  368. #elif ENABLED(Z_STEPPER_AUTO_ALIGN)
  369. #define Z_APPLY_STEP(v,Q) DUAL_SEPARATE_APPLY_STEP(Z,v)
  370. #else
  371. #define Z_APPLY_STEP(v,Q) do{ Z_STEP_WRITE(v); Z2_STEP_WRITE(v); }while(0)
  372. #endif
  373. #elif HAS_Z_AXIS
  374. #define Z_APPLY_DIR(v,Q) Z_DIR_WRITE(v)
  375. #define Z_APPLY_STEP(v,Q) Z_STEP_WRITE(v)
  376. #endif
  377. #if HAS_I_AXIS
  378. #define I_APPLY_DIR(v,Q) I_DIR_WRITE(v)
  379. #define I_APPLY_STEP(v,Q) I_STEP_WRITE(v)
  380. #endif
  381. #if HAS_J_AXIS
  382. #define J_APPLY_DIR(v,Q) J_DIR_WRITE(v)
  383. #define J_APPLY_STEP(v,Q) J_STEP_WRITE(v)
  384. #endif
  385. #if HAS_K_AXIS
  386. #define K_APPLY_DIR(v,Q) K_DIR_WRITE(v)
  387. #define K_APPLY_STEP(v,Q) K_STEP_WRITE(v)
  388. #endif
  389. #if HAS_U_AXIS
  390. #define U_APPLY_DIR(v,Q) U_DIR_WRITE(v)
  391. #define U_APPLY_STEP(v,Q) U_STEP_WRITE(v)
  392. #endif
  393. #if HAS_V_AXIS
  394. #define V_APPLY_DIR(v,Q) V_DIR_WRITE(v)
  395. #define V_APPLY_STEP(v,Q) V_STEP_WRITE(v)
  396. #endif
  397. #if HAS_W_AXIS
  398. #define W_APPLY_DIR(v,Q) W_DIR_WRITE(v)
  399. #define W_APPLY_STEP(v,Q) W_STEP_WRITE(v)
  400. #endif
  401. #if DISABLED(MIXING_EXTRUDER)
  402. #define E_APPLY_STEP(v,Q) E_STEP_WRITE(stepper_extruder, v)
  403. #endif
  404. #define CYCLES_TO_NS(CYC) (1000UL * (CYC) / ((F_CPU) / 1000000))
  405. #define NS_PER_PULSE_TIMER_TICK (1000000000UL / (STEPPER_TIMER_RATE))
  406. // Round up when converting from ns to timer ticks
  407. #define NS_TO_PULSE_TIMER_TICKS(NS) (((NS) + (NS_PER_PULSE_TIMER_TICK) / 2) / (NS_PER_PULSE_TIMER_TICK))
  408. #define TIMER_SETUP_NS (CYCLES_TO_NS(TIMER_READ_ADD_AND_STORE_CYCLES))
  409. #define PULSE_HIGH_TICK_COUNT hal_timer_t(NS_TO_PULSE_TIMER_TICKS(_MIN_PULSE_HIGH_NS - _MIN(_MIN_PULSE_HIGH_NS, TIMER_SETUP_NS)))
  410. #define PULSE_LOW_TICK_COUNT hal_timer_t(NS_TO_PULSE_TIMER_TICKS(_MIN_PULSE_LOW_NS - _MIN(_MIN_PULSE_LOW_NS, TIMER_SETUP_NS)))
  411. #define USING_TIMED_PULSE() hal_timer_t start_pulse_count = 0
  412. #define START_TIMED_PULSE(DIR) (start_pulse_count = HAL_timer_get_count(MF_TIMER_PULSE))
  413. #define AWAIT_TIMED_PULSE(DIR) while (PULSE_##DIR##_TICK_COUNT > HAL_timer_get_count(MF_TIMER_PULSE) - start_pulse_count) { }
  414. #define START_HIGH_PULSE() START_TIMED_PULSE(HIGH)
  415. #define AWAIT_HIGH_PULSE() AWAIT_TIMED_PULSE(HIGH)
  416. #define START_LOW_PULSE() START_TIMED_PULSE(LOW)
  417. #define AWAIT_LOW_PULSE() AWAIT_TIMED_PULSE(LOW)
  418. #if MINIMUM_STEPPER_PRE_DIR_DELAY > 0
  419. #define DIR_WAIT_BEFORE() DELAY_NS(MINIMUM_STEPPER_PRE_DIR_DELAY)
  420. #else
  421. #define DIR_WAIT_BEFORE()
  422. #endif
  423. #if MINIMUM_STEPPER_POST_DIR_DELAY > 0
  424. #define DIR_WAIT_AFTER() DELAY_NS(MINIMUM_STEPPER_POST_DIR_DELAY)
  425. #else
  426. #define DIR_WAIT_AFTER()
  427. #endif
  428. void Stepper::enable_axis(const AxisEnum axis) {
  429. #define _CASE_ENABLE(N) case N##_AXIS: ENABLE_AXIS_##N(); break;
  430. switch (axis) {
  431. NUM_AXIS_CODE(
  432. _CASE_ENABLE(X), _CASE_ENABLE(Y), _CASE_ENABLE(Z),
  433. _CASE_ENABLE(I), _CASE_ENABLE(J), _CASE_ENABLE(K),
  434. _CASE_ENABLE(U), _CASE_ENABLE(V), _CASE_ENABLE(W)
  435. );
  436. default: break;
  437. }
  438. mark_axis_enabled(axis);
  439. }
  440. bool Stepper::disable_axis(const AxisEnum axis) {
  441. mark_axis_disabled(axis);
  442. TERN_(DWIN_LCD_PROUI, set_axis_untrusted(axis)); // MRISCOC workaround: https://github.com/MarlinFirmware/Marlin/issues/23095
  443. // If all the axes that share the enabled bit are disabled
  444. const bool can_disable = can_axis_disable(axis);
  445. if (can_disable) {
  446. #define _CASE_DISABLE(N) case N##_AXIS: DISABLE_AXIS_##N(); break;
  447. switch (axis) {
  448. NUM_AXIS_CODE(
  449. _CASE_DISABLE(X), _CASE_DISABLE(Y), _CASE_DISABLE(Z),
  450. _CASE_DISABLE(I), _CASE_DISABLE(J), _CASE_DISABLE(K),
  451. _CASE_DISABLE(U), _CASE_DISABLE(V), _CASE_DISABLE(W)
  452. );
  453. default: break;
  454. }
  455. }
  456. return can_disable;
  457. }
  458. #if HAS_EXTRUDERS
  459. void Stepper::enable_extruder(E_TERN_(const uint8_t eindex)) {
  460. IF_DISABLED(HAS_MULTI_EXTRUDER, constexpr uint8_t eindex = 0);
  461. #define _CASE_ENA_E(N) case N: ENABLE_AXIS_E##N(); mark_axis_enabled(E_AXIS E_OPTARG(eindex)); break;
  462. switch (eindex) {
  463. REPEAT(E_STEPPERS, _CASE_ENA_E)
  464. }
  465. }
  466. bool Stepper::disable_extruder(E_TERN_(const uint8_t eindex/*=0*/)) {
  467. IF_DISABLED(HAS_MULTI_EXTRUDER, constexpr uint8_t eindex = 0);
  468. mark_axis_disabled(E_AXIS E_OPTARG(eindex));
  469. const bool can_disable = can_axis_disable(E_AXIS E_OPTARG(eindex));
  470. if (can_disable) {
  471. #define _CASE_DIS_E(N) case N: DISABLE_AXIS_E##N(); break;
  472. switch (eindex) { REPEAT(E_STEPPERS, _CASE_DIS_E) }
  473. }
  474. return can_disable;
  475. }
  476. void Stepper::enable_e_steppers() {
  477. #define _ENA_E(N) ENABLE_EXTRUDER(N);
  478. REPEAT(EXTRUDERS, _ENA_E)
  479. }
  480. void Stepper::disable_e_steppers() {
  481. #define _DIS_E(N) DISABLE_EXTRUDER(N);
  482. REPEAT(EXTRUDERS, _DIS_E)
  483. }
  484. #endif
  485. void Stepper::enable_all_steppers() {
  486. TERN_(AUTO_POWER_CONTROL, powerManager.power_on());
  487. NUM_AXIS_CODE(
  488. enable_axis(X_AXIS), enable_axis(Y_AXIS), enable_axis(Z_AXIS),
  489. enable_axis(I_AXIS), enable_axis(J_AXIS), enable_axis(K_AXIS),
  490. enable_axis(U_AXIS), enable_axis(V_AXIS), enable_axis(W_AXIS)
  491. );
  492. enable_e_steppers();
  493. TERN_(EXTENSIBLE_UI, ExtUI::onSteppersEnabled());
  494. }
  495. void Stepper::disable_all_steppers() {
  496. NUM_AXIS_CODE(
  497. disable_axis(X_AXIS), disable_axis(Y_AXIS), disable_axis(Z_AXIS),
  498. disable_axis(I_AXIS), disable_axis(J_AXIS), disable_axis(K_AXIS),
  499. disable_axis(U_AXIS), disable_axis(V_AXIS), disable_axis(W_AXIS)
  500. );
  501. disable_e_steppers();
  502. TERN_(EXTENSIBLE_UI, ExtUI::onSteppersDisabled());
  503. }
  504. /**
  505. * Set the stepper direction of each axis
  506. *
  507. * COREXY: X_AXIS=A_AXIS and Y_AXIS=B_AXIS
  508. * COREXZ: X_AXIS=A_AXIS and Z_AXIS=C_AXIS
  509. * COREYZ: Y_AXIS=B_AXIS and Z_AXIS=C_AXIS
  510. */
  511. void Stepper::set_directions() {
  512. DIR_WAIT_BEFORE();
  513. #define SET_STEP_DIR(A) \
  514. if (motor_direction(_AXIS(A))) { \
  515. A##_APPLY_DIR(INVERT_##A##_DIR, false); \
  516. count_direction[_AXIS(A)] = -1; \
  517. } \
  518. else { \
  519. A##_APPLY_DIR(!INVERT_##A##_DIR, false); \
  520. count_direction[_AXIS(A)] = 1; \
  521. }
  522. TERN_(HAS_X_DIR, SET_STEP_DIR(X)); // A
  523. TERN_(HAS_Y_DIR, SET_STEP_DIR(Y)); // B
  524. TERN_(HAS_Z_DIR, SET_STEP_DIR(Z)); // C
  525. TERN_(HAS_I_DIR, SET_STEP_DIR(I));
  526. TERN_(HAS_J_DIR, SET_STEP_DIR(J));
  527. TERN_(HAS_K_DIR, SET_STEP_DIR(K));
  528. TERN_(HAS_U_DIR, SET_STEP_DIR(U));
  529. TERN_(HAS_V_DIR, SET_STEP_DIR(V));
  530. TERN_(HAS_W_DIR, SET_STEP_DIR(W));
  531. #if DISABLED(LIN_ADVANCE)
  532. #if ENABLED(MIXING_EXTRUDER)
  533. // Because this is valid for the whole block we don't know
  534. // what e-steppers will step. Likely all. Set all.
  535. if (motor_direction(E_AXIS)) {
  536. MIXER_STEPPER_LOOP(j) REV_E_DIR(j);
  537. count_direction.e = -1;
  538. }
  539. else {
  540. MIXER_STEPPER_LOOP(j) NORM_E_DIR(j);
  541. count_direction.e = 1;
  542. }
  543. #elif HAS_EXTRUDERS
  544. if (motor_direction(E_AXIS)) {
  545. REV_E_DIR(stepper_extruder);
  546. count_direction.e = -1;
  547. }
  548. else {
  549. NORM_E_DIR(stepper_extruder);
  550. count_direction.e = 1;
  551. }
  552. #endif
  553. #endif // !LIN_ADVANCE
  554. #if HAS_L64XX
  555. if (L64XX_OK_to_power_up) { // OK to send the direction commands (which powers up the L64XX steppers)
  556. if (L64xxManager.spi_active) {
  557. L64xxManager.spi_abort = true; // Interrupted SPI transfer needs to shut down gracefully
  558. for (uint8_t j = 1; j <= L64XX::chain[0]; j++)
  559. L6470_buf[j] = dSPIN_NOP; // Fill buffer with NOOPs
  560. L64xxManager.transfer(L6470_buf, L64XX::chain[0]); // Send enough NOOPs to complete any command
  561. L64xxManager.transfer(L6470_buf, L64XX::chain[0]);
  562. L64xxManager.transfer(L6470_buf, L64XX::chain[0]);
  563. }
  564. // L64xxManager.dir_commands[] is an array that holds direction command for each stepper
  565. // Scan command array, copy matches into L64xxManager.transfer
  566. for (uint8_t j = 1; j <= L64XX::chain[0]; j++)
  567. L6470_buf[j] = L64xxManager.dir_commands[L64XX::chain[j]];
  568. L64xxManager.transfer(L6470_buf, L64XX::chain[0]); // send the command stream to the drivers
  569. }
  570. #endif
  571. DIR_WAIT_AFTER();
  572. }
  573. #if ENABLED(S_CURVE_ACCELERATION)
  574. /**
  575. * This uses a quintic (fifth-degree) Bézier polynomial for the velocity curve, giving
  576. * a "linear pop" velocity curve; with pop being the sixth derivative of position:
  577. * velocity - 1st, acceleration - 2nd, jerk - 3rd, snap - 4th, crackle - 5th, pop - 6th
  578. *
  579. * The Bézier curve takes the form:
  580. *
  581. * V(t) = P_0 * B_0(t) + P_1 * B_1(t) + P_2 * B_2(t) + P_3 * B_3(t) + P_4 * B_4(t) + P_5 * B_5(t)
  582. *
  583. * Where 0 <= t <= 1, and V(t) is the velocity. P_0 through P_5 are the control points, and B_0(t)
  584. * through B_5(t) are the Bernstein basis as follows:
  585. *
  586. * B_0(t) = (1-t)^5 = -t^5 + 5t^4 - 10t^3 + 10t^2 - 5t + 1
  587. * B_1(t) = 5(1-t)^4 * t = 5t^5 - 20t^4 + 30t^3 - 20t^2 + 5t
  588. * B_2(t) = 10(1-t)^3 * t^2 = -10t^5 + 30t^4 - 30t^3 + 10t^2
  589. * B_3(t) = 10(1-t)^2 * t^3 = 10t^5 - 20t^4 + 10t^3
  590. * B_4(t) = 5(1-t) * t^4 = -5t^5 + 5t^4
  591. * B_5(t) = t^5 = t^5
  592. * ^ ^ ^ ^ ^ ^
  593. * | | | | | |
  594. * A B C D E F
  595. *
  596. * Unfortunately, we cannot use forward-differencing to calculate each position through
  597. * the curve, as Marlin uses variable timer periods. So, we require a formula of the form:
  598. *
  599. * V_f(t) = A*t^5 + B*t^4 + C*t^3 + D*t^2 + E*t + F
  600. *
  601. * Looking at the above B_0(t) through B_5(t) expanded forms, if we take the coefficients of t^5
  602. * through t of the Bézier form of V(t), we can determine that:
  603. *
  604. * A = -P_0 + 5*P_1 - 10*P_2 + 10*P_3 - 5*P_4 + P_5
  605. * B = 5*P_0 - 20*P_1 + 30*P_2 - 20*P_3 + 5*P_4
  606. * C = -10*P_0 + 30*P_1 - 30*P_2 + 10*P_3
  607. * D = 10*P_0 - 20*P_1 + 10*P_2
  608. * E = - 5*P_0 + 5*P_1
  609. * F = P_0
  610. *
  611. * Now, since we will (currently) *always* want the initial acceleration and jerk values to be 0,
  612. * We set P_i = P_0 = P_1 = P_2 (initial velocity), and P_t = P_3 = P_4 = P_5 (target velocity),
  613. * which, after simplification, resolves to:
  614. *
  615. * A = - 6*P_i + 6*P_t = 6*(P_t - P_i)
  616. * B = 15*P_i - 15*P_t = 15*(P_i - P_t)
  617. * C = -10*P_i + 10*P_t = 10*(P_t - P_i)
  618. * D = 0
  619. * E = 0
  620. * F = P_i
  621. *
  622. * As the t is evaluated in non uniform steps here, there is no other way rather than evaluating
  623. * the Bézier curve at each point:
  624. *
  625. * V_f(t) = A*t^5 + B*t^4 + C*t^3 + F [0 <= t <= 1]
  626. *
  627. * Floating point arithmetic execution time cost is prohibitive, so we will transform the math to
  628. * use fixed point values to be able to evaluate it in realtime. Assuming a maximum of 250000 steps
  629. * per second (driver pulses should at least be 2µS hi/2µS lo), and allocating 2 bits to avoid
  630. * overflows on the evaluation of the Bézier curve, means we can use
  631. *
  632. * t: unsigned Q0.32 (0 <= t < 1) |range 0 to 0xFFFFFFFF unsigned
  633. * A: signed Q24.7 , |range = +/- 250000 * 6 * 128 = +/- 192000000 = 0x0B71B000 | 28 bits + sign
  634. * B: signed Q24.7 , |range = +/- 250000 *15 * 128 = +/- 480000000 = 0x1C9C3800 | 29 bits + sign
  635. * C: signed Q24.7 , |range = +/- 250000 *10 * 128 = +/- 320000000 = 0x1312D000 | 29 bits + sign
  636. * F: signed Q24.7 , |range = +/- 250000 * 128 = 32000000 = 0x01E84800 | 25 bits + sign
  637. *
  638. * The trapezoid generator state contains the following information, that we will use to create and evaluate
  639. * the Bézier curve:
  640. *
  641. * blk->step_event_count [TS] = The total count of steps for this movement. (=distance)
  642. * blk->initial_rate [VI] = The initial steps per second (=velocity)
  643. * blk->final_rate [VF] = The ending steps per second (=velocity)
  644. * and the count of events completed (step_events_completed) [CS] (=distance until now)
  645. *
  646. * Note the abbreviations we use in the following formulae are between []s
  647. *
  648. * For Any 32bit CPU:
  649. *
  650. * At the start of each trapezoid, calculate the coefficients A,B,C,F and Advance [AV], as follows:
  651. *
  652. * A = 6*128*(VF - VI) = 768*(VF - VI)
  653. * B = 15*128*(VI - VF) = 1920*(VI - VF)
  654. * C = 10*128*(VF - VI) = 1280*(VF - VI)
  655. * F = 128*VI = 128*VI
  656. * AV = (1<<32)/TS ~= 0xFFFFFFFF / TS (To use ARM UDIV, that is 32 bits) (this is computed at the planner, to offload expensive calculations from the ISR)
  657. *
  658. * And for each point, evaluate the curve with the following sequence:
  659. *
  660. * void lsrs(uint32_t& d, uint32_t s, int cnt) {
  661. * d = s >> cnt;
  662. * }
  663. * void lsls(uint32_t& d, uint32_t s, int cnt) {
  664. * d = s << cnt;
  665. * }
  666. * void lsrs(int32_t& d, uint32_t s, int cnt) {
  667. * d = uint32_t(s) >> cnt;
  668. * }
  669. * void lsls(int32_t& d, uint32_t s, int cnt) {
  670. * d = uint32_t(s) << cnt;
  671. * }
  672. * void umull(uint32_t& rlo, uint32_t& rhi, uint32_t op1, uint32_t op2) {
  673. * uint64_t res = uint64_t(op1) * op2;
  674. * rlo = uint32_t(res & 0xFFFFFFFF);
  675. * rhi = uint32_t((res >> 32) & 0xFFFFFFFF);
  676. * }
  677. * void smlal(int32_t& rlo, int32_t& rhi, int32_t op1, int32_t op2) {
  678. * int64_t mul = int64_t(op1) * op2;
  679. * int64_t s = int64_t(uint32_t(rlo) | ((uint64_t(uint32_t(rhi)) << 32U)));
  680. * mul += s;
  681. * rlo = int32_t(mul & 0xFFFFFFFF);
  682. * rhi = int32_t((mul >> 32) & 0xFFFFFFFF);
  683. * }
  684. * int32_t _eval_bezier_curve_arm(uint32_t curr_step) {
  685. * uint32_t flo = 0;
  686. * uint32_t fhi = bezier_AV * curr_step;
  687. * uint32_t t = fhi;
  688. * int32_t alo = bezier_F;
  689. * int32_t ahi = 0;
  690. * int32_t A = bezier_A;
  691. * int32_t B = bezier_B;
  692. * int32_t C = bezier_C;
  693. *
  694. * lsrs(ahi, alo, 1); // a = F << 31
  695. * lsls(alo, alo, 31); //
  696. * umull(flo, fhi, fhi, t); // f *= t
  697. * umull(flo, fhi, fhi, t); // f>>=32; f*=t
  698. * lsrs(flo, fhi, 1); //
  699. * smlal(alo, ahi, flo, C); // a+=(f>>33)*C
  700. * umull(flo, fhi, fhi, t); // f>>=32; f*=t
  701. * lsrs(flo, fhi, 1); //
  702. * smlal(alo, ahi, flo, B); // a+=(f>>33)*B
  703. * umull(flo, fhi, fhi, t); // f>>=32; f*=t
  704. * lsrs(flo, fhi, 1); // f>>=33;
  705. * smlal(alo, ahi, flo, A); // a+=(f>>33)*A;
  706. * lsrs(alo, ahi, 6); // a>>=38
  707. *
  708. * return alo;
  709. * }
  710. *
  711. * This is rewritten in ARM assembly for optimal performance (43 cycles to execute).
  712. *
  713. * For AVR, the precision of coefficients is scaled so the Bézier curve can be evaluated in real-time:
  714. * Let's reduce precision as much as possible. After some experimentation we found that:
  715. *
  716. * Assume t and AV with 24 bits is enough
  717. * A = 6*(VF - VI)
  718. * B = 15*(VI - VF)
  719. * C = 10*(VF - VI)
  720. * F = VI
  721. * AV = (1<<24)/TS (this is computed at the planner, to offload expensive calculations from the ISR)
  722. *
  723. * Instead of storing sign for each coefficient, we will store its absolute value,
  724. * and flag the sign of the A coefficient, so we can save to store the sign bit.
  725. * It always holds that sign(A) = - sign(B) = sign(C)
  726. *
  727. * So, the resulting range of the coefficients are:
  728. *
  729. * t: unsigned (0 <= t < 1) |range 0 to 0xFFFFFF unsigned
  730. * A: signed Q24 , range = 250000 * 6 = 1500000 = 0x16E360 | 21 bits
  731. * B: signed Q24 , range = 250000 *15 = 3750000 = 0x393870 | 22 bits
  732. * C: signed Q24 , range = 250000 *10 = 2500000 = 0x1312D0 | 21 bits
  733. * F: signed Q24 , range = 250000 = 250000 = 0x0ED090 | 20 bits
  734. *
  735. * And for each curve, estimate its coefficients with:
  736. *
  737. * void _calc_bezier_curve_coeffs(int32_t v0, int32_t v1, uint32_t av) {
  738. * // Calculate the Bézier coefficients
  739. * if (v1 < v0) {
  740. * A_negative = true;
  741. * bezier_A = 6 * (v0 - v1);
  742. * bezier_B = 15 * (v0 - v1);
  743. * bezier_C = 10 * (v0 - v1);
  744. * }
  745. * else {
  746. * A_negative = false;
  747. * bezier_A = 6 * (v1 - v0);
  748. * bezier_B = 15 * (v1 - v0);
  749. * bezier_C = 10 * (v1 - v0);
  750. * }
  751. * bezier_F = v0;
  752. * }
  753. *
  754. * And for each point, evaluate the curve with the following sequence:
  755. *
  756. * // unsigned multiplication of 24 bits x 24bits, return upper 16 bits
  757. * void umul24x24to16hi(uint16_t& r, uint24_t op1, uint24_t op2) {
  758. * r = (uint64_t(op1) * op2) >> 8;
  759. * }
  760. * // unsigned multiplication of 16 bits x 16bits, return upper 16 bits
  761. * void umul16x16to16hi(uint16_t& r, uint16_t op1, uint16_t op2) {
  762. * r = (uint32_t(op1) * op2) >> 16;
  763. * }
  764. * // unsigned multiplication of 16 bits x 24bits, return upper 24 bits
  765. * void umul16x24to24hi(uint24_t& r, uint16_t op1, uint24_t op2) {
  766. * r = uint24_t((uint64_t(op1) * op2) >> 16);
  767. * }
  768. *
  769. * int32_t _eval_bezier_curve(uint32_t curr_step) {
  770. * // To save computing, the first step is always the initial speed
  771. * if (!curr_step)
  772. * return bezier_F;
  773. *
  774. * uint16_t t;
  775. * umul24x24to16hi(t, bezier_AV, curr_step); // t: Range 0 - 1^16 = 16 bits
  776. * uint16_t f = t;
  777. * umul16x16to16hi(f, f, t); // Range 16 bits (unsigned)
  778. * umul16x16to16hi(f, f, t); // Range 16 bits : f = t^3 (unsigned)
  779. * uint24_t acc = bezier_F; // Range 20 bits (unsigned)
  780. * if (A_negative) {
  781. * uint24_t v;
  782. * umul16x24to24hi(v, f, bezier_C); // Range 21bits
  783. * acc -= v;
  784. * umul16x16to16hi(f, f, t); // Range 16 bits : f = t^4 (unsigned)
  785. * umul16x24to24hi(v, f, bezier_B); // Range 22bits
  786. * acc += v;
  787. * umul16x16to16hi(f, f, t); // Range 16 bits : f = t^5 (unsigned)
  788. * umul16x24to24hi(v, f, bezier_A); // Range 21bits + 15 = 36bits (plus sign)
  789. * acc -= v;
  790. * }
  791. * else {
  792. * uint24_t v;
  793. * umul16x24to24hi(v, f, bezier_C); // Range 21bits
  794. * acc += v;
  795. * umul16x16to16hi(f, f, t); // Range 16 bits : f = t^4 (unsigned)
  796. * umul16x24to24hi(v, f, bezier_B); // Range 22bits
  797. * acc -= v;
  798. * umul16x16to16hi(f, f, t); // Range 16 bits : f = t^5 (unsigned)
  799. * umul16x24to24hi(v, f, bezier_A); // Range 21bits + 15 = 36bits (plus sign)
  800. * acc += v;
  801. * }
  802. * return acc;
  803. * }
  804. * These functions are translated to assembler for optimal performance.
  805. * Coefficient calculation takes 70 cycles. Bezier point evaluation takes 150 cycles.
  806. */
  807. #ifdef __AVR__
  808. // For AVR we use assembly to maximize speed
  809. void Stepper::_calc_bezier_curve_coeffs(const int32_t v0, const int32_t v1, const uint32_t av) {
  810. // Store advance
  811. bezier_AV = av;
  812. // Calculate the rest of the coefficients
  813. uint8_t r2 = v0 & 0xFF;
  814. uint8_t r3 = (v0 >> 8) & 0xFF;
  815. uint8_t r12 = (v0 >> 16) & 0xFF;
  816. uint8_t r5 = v1 & 0xFF;
  817. uint8_t r6 = (v1 >> 8) & 0xFF;
  818. uint8_t r7 = (v1 >> 16) & 0xFF;
  819. uint8_t r4,r8,r9,r10,r11;
  820. __asm__ __volatile__(
  821. /* Calculate the Bézier coefficients */
  822. /* %10:%1:%0 = v0*/
  823. /* %5:%4:%3 = v1*/
  824. /* %7:%6:%10 = temporary*/
  825. /* %9 = val (must be high register!)*/
  826. /* %10 (must be high register!)*/
  827. /* Store initial velocity*/
  828. A("sts bezier_F, %0")
  829. A("sts bezier_F+1, %1")
  830. A("sts bezier_F+2, %10") /* bezier_F = %10:%1:%0 = v0 */
  831. /* Get delta speed */
  832. A("ldi %2,-1") /* %2 = 0xFF, means A_negative = true */
  833. A("clr %8") /* %8 = 0 */
  834. A("sub %0,%3")
  835. A("sbc %1,%4")
  836. A("sbc %10,%5") /* v0 -= v1, C=1 if result is negative */
  837. A("brcc 1f") /* branch if result is positive (C=0), that means v0 >= v1 */
  838. /* Result was negative, get the absolute value*/
  839. A("com %10")
  840. A("com %1")
  841. A("neg %0")
  842. A("sbc %1,%2")
  843. A("sbc %10,%2") /* %10:%1:%0 +1 -> %10:%1:%0 = -(v0 - v1) = (v1 - v0) */
  844. A("clr %2") /* %2 = 0, means A_negative = false */
  845. /* Store negative flag*/
  846. L("1")
  847. A("sts A_negative, %2") /* Store negative flag */
  848. /* Compute coefficients A,B and C [20 cycles worst case]*/
  849. A("ldi %9,6") /* %9 = 6 */
  850. A("mul %0,%9") /* r1:r0 = 6*LO(v0-v1) */
  851. A("sts bezier_A, r0")
  852. A("mov %6,r1")
  853. A("clr %7") /* %7:%6:r0 = 6*LO(v0-v1) */
  854. A("mul %1,%9") /* r1:r0 = 6*MI(v0-v1) */
  855. A("add %6,r0")
  856. A("adc %7,r1") /* %7:%6:?? += 6*MI(v0-v1) << 8 */
  857. A("mul %10,%9") /* r1:r0 = 6*HI(v0-v1) */
  858. A("add %7,r0") /* %7:%6:?? += 6*HI(v0-v1) << 16 */
  859. A("sts bezier_A+1, %6")
  860. A("sts bezier_A+2, %7") /* bezier_A = %7:%6:?? = 6*(v0-v1) [35 cycles worst] */
  861. A("ldi %9,15") /* %9 = 15 */
  862. A("mul %0,%9") /* r1:r0 = 5*LO(v0-v1) */
  863. A("sts bezier_B, r0")
  864. A("mov %6,r1")
  865. A("clr %7") /* %7:%6:?? = 5*LO(v0-v1) */
  866. A("mul %1,%9") /* r1:r0 = 5*MI(v0-v1) */
  867. A("add %6,r0")
  868. A("adc %7,r1") /* %7:%6:?? += 5*MI(v0-v1) << 8 */
  869. A("mul %10,%9") /* r1:r0 = 5*HI(v0-v1) */
  870. A("add %7,r0") /* %7:%6:?? += 5*HI(v0-v1) << 16 */
  871. A("sts bezier_B+1, %6")
  872. A("sts bezier_B+2, %7") /* bezier_B = %7:%6:?? = 5*(v0-v1) [50 cycles worst] */
  873. A("ldi %9,10") /* %9 = 10 */
  874. A("mul %0,%9") /* r1:r0 = 10*LO(v0-v1) */
  875. A("sts bezier_C, r0")
  876. A("mov %6,r1")
  877. A("clr %7") /* %7:%6:?? = 10*LO(v0-v1) */
  878. A("mul %1,%9") /* r1:r0 = 10*MI(v0-v1) */
  879. A("add %6,r0")
  880. A("adc %7,r1") /* %7:%6:?? += 10*MI(v0-v1) << 8 */
  881. A("mul %10,%9") /* r1:r0 = 10*HI(v0-v1) */
  882. A("add %7,r0") /* %7:%6:?? += 10*HI(v0-v1) << 16 */
  883. A("sts bezier_C+1, %6")
  884. " sts bezier_C+2, %7" /* bezier_C = %7:%6:?? = 10*(v0-v1) [65 cycles worst] */
  885. : "+r" (r2),
  886. "+d" (r3),
  887. "=r" (r4),
  888. "+r" (r5),
  889. "+r" (r6),
  890. "+r" (r7),
  891. "=r" (r8),
  892. "=r" (r9),
  893. "=r" (r10),
  894. "=d" (r11),
  895. "+r" (r12)
  896. :
  897. : "r0", "r1", "cc", "memory"
  898. );
  899. }
  900. FORCE_INLINE int32_t Stepper::_eval_bezier_curve(const uint32_t curr_step) {
  901. // If dealing with the first step, save expensive computing and return the initial speed
  902. if (!curr_step)
  903. return bezier_F;
  904. uint8_t r0 = 0; /* Zero register */
  905. uint8_t r2 = (curr_step) & 0xFF;
  906. uint8_t r3 = (curr_step >> 8) & 0xFF;
  907. uint8_t r4 = (curr_step >> 16) & 0xFF;
  908. uint8_t r1,r5,r6,r7,r8,r9,r10,r11; /* Temporary registers */
  909. __asm__ __volatile(
  910. /* umul24x24to16hi(t, bezier_AV, curr_step); t: Range 0 - 1^16 = 16 bits*/
  911. A("lds %9,bezier_AV") /* %9 = LO(AV)*/
  912. A("mul %9,%2") /* r1:r0 = LO(bezier_AV)*LO(curr_step)*/
  913. A("mov %7,r1") /* %7 = LO(bezier_AV)*LO(curr_step) >> 8*/
  914. A("clr %8") /* %8:%7 = LO(bezier_AV)*LO(curr_step) >> 8*/
  915. A("lds %10,bezier_AV+1") /* %10 = MI(AV)*/
  916. A("mul %10,%2") /* r1:r0 = MI(bezier_AV)*LO(curr_step)*/
  917. A("add %7,r0")
  918. A("adc %8,r1") /* %8:%7 += MI(bezier_AV)*LO(curr_step)*/
  919. A("lds r1,bezier_AV+2") /* r11 = HI(AV)*/
  920. A("mul r1,%2") /* r1:r0 = HI(bezier_AV)*LO(curr_step)*/
  921. A("add %8,r0") /* %8:%7 += HI(bezier_AV)*LO(curr_step) << 8*/
  922. A("mul %9,%3") /* r1:r0 = LO(bezier_AV)*MI(curr_step)*/
  923. A("add %7,r0")
  924. A("adc %8,r1") /* %8:%7 += LO(bezier_AV)*MI(curr_step)*/
  925. A("mul %10,%3") /* r1:r0 = MI(bezier_AV)*MI(curr_step)*/
  926. A("add %8,r0") /* %8:%7 += LO(bezier_AV)*MI(curr_step) << 8*/
  927. A("mul %9,%4") /* r1:r0 = LO(bezier_AV)*HI(curr_step)*/
  928. A("add %8,r0") /* %8:%7 += LO(bezier_AV)*HI(curr_step) << 8*/
  929. /* %8:%7 = t*/
  930. /* uint16_t f = t;*/
  931. A("mov %5,%7") /* %6:%5 = f*/
  932. A("mov %6,%8")
  933. /* %6:%5 = f*/
  934. /* umul16x16to16hi(f, f, t); / Range 16 bits (unsigned) [17] */
  935. A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
  936. A("mov %9,r1") /* store MIL(LO(f) * LO(t)) in %9, we need it for rounding*/
  937. A("clr %10") /* %10 = 0*/
  938. A("clr %11") /* %11 = 0*/
  939. A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
  940. A("add %9,r0") /* %9 += LO(LO(f) * HI(t))*/
  941. A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
  942. A("adc %11,%0") /* %11 += carry*/
  943. A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
  944. A("add %9,r0") /* %9 += LO(HI(f) * LO(t))*/
  945. A("adc %10,r1") /* %10 += HI(HI(f) * LO(t)) */
  946. A("adc %11,%0") /* %11 += carry*/
  947. A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
  948. A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
  949. A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
  950. A("mov %5,%10") /* %6:%5 = */
  951. A("mov %6,%11") /* f = %10:%11*/
  952. /* umul16x16to16hi(f, f, t); / Range 16 bits : f = t^3 (unsigned) [17]*/
  953. A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
  954. A("mov %1,r1") /* store MIL(LO(f) * LO(t)) in %1, we need it for rounding*/
  955. A("clr %10") /* %10 = 0*/
  956. A("clr %11") /* %11 = 0*/
  957. A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
  958. A("add %1,r0") /* %1 += LO(LO(f) * HI(t))*/
  959. A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
  960. A("adc %11,%0") /* %11 += carry*/
  961. A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
  962. A("add %1,r0") /* %1 += LO(HI(f) * LO(t))*/
  963. A("adc %10,r1") /* %10 += HI(HI(f) * LO(t))*/
  964. A("adc %11,%0") /* %11 += carry*/
  965. A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
  966. A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
  967. A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
  968. A("mov %5,%10") /* %6:%5 =*/
  969. A("mov %6,%11") /* f = %10:%11*/
  970. /* [15 +17*2] = [49]*/
  971. /* %4:%3:%2 will be acc from now on*/
  972. /* uint24_t acc = bezier_F; / Range 20 bits (unsigned)*/
  973. A("clr %9") /* "decimal place we get for free"*/
  974. A("lds %2,bezier_F")
  975. A("lds %3,bezier_F+1")
  976. A("lds %4,bezier_F+2") /* %4:%3:%2 = acc*/
  977. /* if (A_negative) {*/
  978. A("lds r0,A_negative")
  979. A("or r0,%0") /* Is flag signalling negative? */
  980. A("brne 3f") /* If yes, Skip next instruction if A was negative*/
  981. A("rjmp 1f") /* Otherwise, jump */
  982. /* uint24_t v; */
  983. /* umul16x24to24hi(v, f, bezier_C); / Range 21bits [29] */
  984. /* acc -= v; */
  985. L("3")
  986. A("lds %10, bezier_C") /* %10 = LO(bezier_C)*/
  987. A("mul %10,%5") /* r1:r0 = LO(bezier_C) * LO(f)*/
  988. A("sub %9,r1")
  989. A("sbc %2,%0")
  990. A("sbc %3,%0")
  991. A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(LO(bezier_C) * LO(f))*/
  992. A("lds %11, bezier_C+1") /* %11 = MI(bezier_C)*/
  993. A("mul %11,%5") /* r1:r0 = MI(bezier_C) * LO(f)*/
  994. A("sub %9,r0")
  995. A("sbc %2,r1")
  996. A("sbc %3,%0")
  997. A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_C) * LO(f)*/
  998. A("lds %1, bezier_C+2") /* %1 = HI(bezier_C)*/
  999. A("mul %1,%5") /* r1:r0 = MI(bezier_C) * LO(f)*/
  1000. A("sub %2,r0")
  1001. A("sbc %3,r1")
  1002. A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(bezier_C) * LO(f) << 8*/
  1003. A("mul %10,%6") /* r1:r0 = LO(bezier_C) * MI(f)*/
  1004. A("sub %9,r0")
  1005. A("sbc %2,r1")
  1006. A("sbc %3,%0")
  1007. A("sbc %4,%0") /* %4:%3:%2:%9 -= LO(bezier_C) * MI(f)*/
  1008. A("mul %11,%6") /* r1:r0 = MI(bezier_C) * MI(f)*/
  1009. A("sub %2,r0")
  1010. A("sbc %3,r1")
  1011. A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_C) * MI(f) << 8*/
  1012. A("mul %1,%6") /* r1:r0 = HI(bezier_C) * LO(f)*/
  1013. A("sub %3,r0")
  1014. A("sbc %4,r1") /* %4:%3:%2:%9 -= HI(bezier_C) * LO(f) << 16*/
  1015. /* umul16x16to16hi(f, f, t); / Range 16 bits : f = t^3 (unsigned) [17]*/
  1016. A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
  1017. A("mov %1,r1") /* store MIL(LO(f) * LO(t)) in %1, we need it for rounding*/
  1018. A("clr %10") /* %10 = 0*/
  1019. A("clr %11") /* %11 = 0*/
  1020. A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
  1021. A("add %1,r0") /* %1 += LO(LO(f) * HI(t))*/
  1022. A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
  1023. A("adc %11,%0") /* %11 += carry*/
  1024. A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
  1025. A("add %1,r0") /* %1 += LO(HI(f) * LO(t))*/
  1026. A("adc %10,r1") /* %10 += HI(HI(f) * LO(t))*/
  1027. A("adc %11,%0") /* %11 += carry*/
  1028. A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
  1029. A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
  1030. A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
  1031. A("mov %5,%10") /* %6:%5 =*/
  1032. A("mov %6,%11") /* f = %10:%11*/
  1033. /* umul16x24to24hi(v, f, bezier_B); / Range 22bits [29]*/
  1034. /* acc += v; */
  1035. A("lds %10, bezier_B") /* %10 = LO(bezier_B)*/
  1036. A("mul %10,%5") /* r1:r0 = LO(bezier_B) * LO(f)*/
  1037. A("add %9,r1")
  1038. A("adc %2,%0")
  1039. A("adc %3,%0")
  1040. A("adc %4,%0") /* %4:%3:%2:%9 += HI(LO(bezier_B) * LO(f))*/
  1041. A("lds %11, bezier_B+1") /* %11 = MI(bezier_B)*/
  1042. A("mul %11,%5") /* r1:r0 = MI(bezier_B) * LO(f)*/
  1043. A("add %9,r0")
  1044. A("adc %2,r1")
  1045. A("adc %3,%0")
  1046. A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_B) * LO(f)*/
  1047. A("lds %1, bezier_B+2") /* %1 = HI(bezier_B)*/
  1048. A("mul %1,%5") /* r1:r0 = MI(bezier_B) * LO(f)*/
  1049. A("add %2,r0")
  1050. A("adc %3,r1")
  1051. A("adc %4,%0") /* %4:%3:%2:%9 += HI(bezier_B) * LO(f) << 8*/
  1052. A("mul %10,%6") /* r1:r0 = LO(bezier_B) * MI(f)*/
  1053. A("add %9,r0")
  1054. A("adc %2,r1")
  1055. A("adc %3,%0")
  1056. A("adc %4,%0") /* %4:%3:%2:%9 += LO(bezier_B) * MI(f)*/
  1057. A("mul %11,%6") /* r1:r0 = MI(bezier_B) * MI(f)*/
  1058. A("add %2,r0")
  1059. A("adc %3,r1")
  1060. A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_B) * MI(f) << 8*/
  1061. A("mul %1,%6") /* r1:r0 = HI(bezier_B) * LO(f)*/
  1062. A("add %3,r0")
  1063. A("adc %4,r1") /* %4:%3:%2:%9 += HI(bezier_B) * LO(f) << 16*/
  1064. /* umul16x16to16hi(f, f, t); / Range 16 bits : f = t^5 (unsigned) [17]*/
  1065. A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
  1066. A("mov %1,r1") /* store MIL(LO(f) * LO(t)) in %1, we need it for rounding*/
  1067. A("clr %10") /* %10 = 0*/
  1068. A("clr %11") /* %11 = 0*/
  1069. A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
  1070. A("add %1,r0") /* %1 += LO(LO(f) * HI(t))*/
  1071. A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
  1072. A("adc %11,%0") /* %11 += carry*/
  1073. A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
  1074. A("add %1,r0") /* %1 += LO(HI(f) * LO(t))*/
  1075. A("adc %10,r1") /* %10 += HI(HI(f) * LO(t))*/
  1076. A("adc %11,%0") /* %11 += carry*/
  1077. A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
  1078. A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
  1079. A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
  1080. A("mov %5,%10") /* %6:%5 =*/
  1081. A("mov %6,%11") /* f = %10:%11*/
  1082. /* umul16x24to24hi(v, f, bezier_A); / Range 21bits [29]*/
  1083. /* acc -= v; */
  1084. A("lds %10, bezier_A") /* %10 = LO(bezier_A)*/
  1085. A("mul %10,%5") /* r1:r0 = LO(bezier_A) * LO(f)*/
  1086. A("sub %9,r1")
  1087. A("sbc %2,%0")
  1088. A("sbc %3,%0")
  1089. A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(LO(bezier_A) * LO(f))*/
  1090. A("lds %11, bezier_A+1") /* %11 = MI(bezier_A)*/
  1091. A("mul %11,%5") /* r1:r0 = MI(bezier_A) * LO(f)*/
  1092. A("sub %9,r0")
  1093. A("sbc %2,r1")
  1094. A("sbc %3,%0")
  1095. A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_A) * LO(f)*/
  1096. A("lds %1, bezier_A+2") /* %1 = HI(bezier_A)*/
  1097. A("mul %1,%5") /* r1:r0 = MI(bezier_A) * LO(f)*/
  1098. A("sub %2,r0")
  1099. A("sbc %3,r1")
  1100. A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(bezier_A) * LO(f) << 8*/
  1101. A("mul %10,%6") /* r1:r0 = LO(bezier_A) * MI(f)*/
  1102. A("sub %9,r0")
  1103. A("sbc %2,r1")
  1104. A("sbc %3,%0")
  1105. A("sbc %4,%0") /* %4:%3:%2:%9 -= LO(bezier_A) * MI(f)*/
  1106. A("mul %11,%6") /* r1:r0 = MI(bezier_A) * MI(f)*/
  1107. A("sub %2,r0")
  1108. A("sbc %3,r1")
  1109. A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_A) * MI(f) << 8*/
  1110. A("mul %1,%6") /* r1:r0 = HI(bezier_A) * LO(f)*/
  1111. A("sub %3,r0")
  1112. A("sbc %4,r1") /* %4:%3:%2:%9 -= HI(bezier_A) * LO(f) << 16*/
  1113. A("jmp 2f") /* Done!*/
  1114. L("1")
  1115. /* uint24_t v; */
  1116. /* umul16x24to24hi(v, f, bezier_C); / Range 21bits [29]*/
  1117. /* acc += v; */
  1118. A("lds %10, bezier_C") /* %10 = LO(bezier_C)*/
  1119. A("mul %10,%5") /* r1:r0 = LO(bezier_C) * LO(f)*/
  1120. A("add %9,r1")
  1121. A("adc %2,%0")
  1122. A("adc %3,%0")
  1123. A("adc %4,%0") /* %4:%3:%2:%9 += HI(LO(bezier_C) * LO(f))*/
  1124. A("lds %11, bezier_C+1") /* %11 = MI(bezier_C)*/
  1125. A("mul %11,%5") /* r1:r0 = MI(bezier_C) * LO(f)*/
  1126. A("add %9,r0")
  1127. A("adc %2,r1")
  1128. A("adc %3,%0")
  1129. A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_C) * LO(f)*/
  1130. A("lds %1, bezier_C+2") /* %1 = HI(bezier_C)*/
  1131. A("mul %1,%5") /* r1:r0 = MI(bezier_C) * LO(f)*/
  1132. A("add %2,r0")
  1133. A("adc %3,r1")
  1134. A("adc %4,%0") /* %4:%3:%2:%9 += HI(bezier_C) * LO(f) << 8*/
  1135. A("mul %10,%6") /* r1:r0 = LO(bezier_C) * MI(f)*/
  1136. A("add %9,r0")
  1137. A("adc %2,r1")
  1138. A("adc %3,%0")
  1139. A("adc %4,%0") /* %4:%3:%2:%9 += LO(bezier_C) * MI(f)*/
  1140. A("mul %11,%6") /* r1:r0 = MI(bezier_C) * MI(f)*/
  1141. A("add %2,r0")
  1142. A("adc %3,r1")
  1143. A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_C) * MI(f) << 8*/
  1144. A("mul %1,%6") /* r1:r0 = HI(bezier_C) * LO(f)*/
  1145. A("add %3,r0")
  1146. A("adc %4,r1") /* %4:%3:%2:%9 += HI(bezier_C) * LO(f) << 16*/
  1147. /* umul16x16to16hi(f, f, t); / Range 16 bits : f = t^3 (unsigned) [17]*/
  1148. A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
  1149. A("mov %1,r1") /* store MIL(LO(f) * LO(t)) in %1, we need it for rounding*/
  1150. A("clr %10") /* %10 = 0*/
  1151. A("clr %11") /* %11 = 0*/
  1152. A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
  1153. A("add %1,r0") /* %1 += LO(LO(f) * HI(t))*/
  1154. A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
  1155. A("adc %11,%0") /* %11 += carry*/
  1156. A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
  1157. A("add %1,r0") /* %1 += LO(HI(f) * LO(t))*/
  1158. A("adc %10,r1") /* %10 += HI(HI(f) * LO(t))*/
  1159. A("adc %11,%0") /* %11 += carry*/
  1160. A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
  1161. A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
  1162. A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
  1163. A("mov %5,%10") /* %6:%5 =*/
  1164. A("mov %6,%11") /* f = %10:%11*/
  1165. /* umul16x24to24hi(v, f, bezier_B); / Range 22bits [29]*/
  1166. /* acc -= v;*/
  1167. A("lds %10, bezier_B") /* %10 = LO(bezier_B)*/
  1168. A("mul %10,%5") /* r1:r0 = LO(bezier_B) * LO(f)*/
  1169. A("sub %9,r1")
  1170. A("sbc %2,%0")
  1171. A("sbc %3,%0")
  1172. A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(LO(bezier_B) * LO(f))*/
  1173. A("lds %11, bezier_B+1") /* %11 = MI(bezier_B)*/
  1174. A("mul %11,%5") /* r1:r0 = MI(bezier_B) * LO(f)*/
  1175. A("sub %9,r0")
  1176. A("sbc %2,r1")
  1177. A("sbc %3,%0")
  1178. A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_B) * LO(f)*/
  1179. A("lds %1, bezier_B+2") /* %1 = HI(bezier_B)*/
  1180. A("mul %1,%5") /* r1:r0 = MI(bezier_B) * LO(f)*/
  1181. A("sub %2,r0")
  1182. A("sbc %3,r1")
  1183. A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(bezier_B) * LO(f) << 8*/
  1184. A("mul %10,%6") /* r1:r0 = LO(bezier_B) * MI(f)*/
  1185. A("sub %9,r0")
  1186. A("sbc %2,r1")
  1187. A("sbc %3,%0")
  1188. A("sbc %4,%0") /* %4:%3:%2:%9 -= LO(bezier_B) * MI(f)*/
  1189. A("mul %11,%6") /* r1:r0 = MI(bezier_B) * MI(f)*/
  1190. A("sub %2,r0")
  1191. A("sbc %3,r1")
  1192. A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_B) * MI(f) << 8*/
  1193. A("mul %1,%6") /* r1:r0 = HI(bezier_B) * LO(f)*/
  1194. A("sub %3,r0")
  1195. A("sbc %4,r1") /* %4:%3:%2:%9 -= HI(bezier_B) * LO(f) << 16*/
  1196. /* umul16x16to16hi(f, f, t); / Range 16 bits : f = t^5 (unsigned) [17]*/
  1197. A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
  1198. A("mov %1,r1") /* store MIL(LO(f) * LO(t)) in %1, we need it for rounding*/
  1199. A("clr %10") /* %10 = 0*/
  1200. A("clr %11") /* %11 = 0*/
  1201. A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
  1202. A("add %1,r0") /* %1 += LO(LO(f) * HI(t))*/
  1203. A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
  1204. A("adc %11,%0") /* %11 += carry*/
  1205. A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
  1206. A("add %1,r0") /* %1 += LO(HI(f) * LO(t))*/
  1207. A("adc %10,r1") /* %10 += HI(HI(f) * LO(t))*/
  1208. A("adc %11,%0") /* %11 += carry*/
  1209. A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
  1210. A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
  1211. A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
  1212. A("mov %5,%10") /* %6:%5 =*/
  1213. A("mov %6,%11") /* f = %10:%11*/
  1214. /* umul16x24to24hi(v, f, bezier_A); / Range 21bits [29]*/
  1215. /* acc += v; */
  1216. A("lds %10, bezier_A") /* %10 = LO(bezier_A)*/
  1217. A("mul %10,%5") /* r1:r0 = LO(bezier_A) * LO(f)*/
  1218. A("add %9,r1")
  1219. A("adc %2,%0")
  1220. A("adc %3,%0")
  1221. A("adc %4,%0") /* %4:%3:%2:%9 += HI(LO(bezier_A) * LO(f))*/
  1222. A("lds %11, bezier_A+1") /* %11 = MI(bezier_A)*/
  1223. A("mul %11,%5") /* r1:r0 = MI(bezier_A) * LO(f)*/
  1224. A("add %9,r0")
  1225. A("adc %2,r1")
  1226. A("adc %3,%0")
  1227. A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_A) * LO(f)*/
  1228. A("lds %1, bezier_A+2") /* %1 = HI(bezier_A)*/
  1229. A("mul %1,%5") /* r1:r0 = MI(bezier_A) * LO(f)*/
  1230. A("add %2,r0")
  1231. A("adc %3,r1")
  1232. A("adc %4,%0") /* %4:%3:%2:%9 += HI(bezier_A) * LO(f) << 8*/
  1233. A("mul %10,%6") /* r1:r0 = LO(bezier_A) * MI(f)*/
  1234. A("add %9,r0")
  1235. A("adc %2,r1")
  1236. A("adc %3,%0")
  1237. A("adc %4,%0") /* %4:%3:%2:%9 += LO(bezier_A) * MI(f)*/
  1238. A("mul %11,%6") /* r1:r0 = MI(bezier_A) * MI(f)*/
  1239. A("add %2,r0")
  1240. A("adc %3,r1")
  1241. A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_A) * MI(f) << 8*/
  1242. A("mul %1,%6") /* r1:r0 = HI(bezier_A) * LO(f)*/
  1243. A("add %3,r0")
  1244. A("adc %4,r1") /* %4:%3:%2:%9 += HI(bezier_A) * LO(f) << 16*/
  1245. L("2")
  1246. " clr __zero_reg__" /* C runtime expects r1 = __zero_reg__ = 0 */
  1247. : "+r"(r0),
  1248. "+r"(r1),
  1249. "+r"(r2),
  1250. "+r"(r3),
  1251. "+r"(r4),
  1252. "+r"(r5),
  1253. "+r"(r6),
  1254. "+r"(r7),
  1255. "+r"(r8),
  1256. "+r"(r9),
  1257. "+r"(r10),
  1258. "+r"(r11)
  1259. :
  1260. :"cc","r0","r1"
  1261. );
  1262. return (r2 | (uint16_t(r3) << 8)) | (uint32_t(r4) << 16);
  1263. }
  1264. #else
  1265. // For all the other 32bit CPUs
  1266. FORCE_INLINE void Stepper::_calc_bezier_curve_coeffs(const int32_t v0, const int32_t v1, const uint32_t av) {
  1267. // Calculate the Bézier coefficients
  1268. bezier_A = 768 * (v1 - v0);
  1269. bezier_B = 1920 * (v0 - v1);
  1270. bezier_C = 1280 * (v1 - v0);
  1271. bezier_F = 128 * v0;
  1272. bezier_AV = av;
  1273. }
  1274. FORCE_INLINE int32_t Stepper::_eval_bezier_curve(const uint32_t curr_step) {
  1275. #if (defined(__arm__) || defined(__thumb__)) && !defined(STM32G0B1xx) // TODO: Test define STM32G0xx versus STM32G0B1xx
  1276. // For ARM Cortex M3/M4 CPUs, we have the optimized assembler version, that takes 43 cycles to execute
  1277. uint32_t flo = 0;
  1278. uint32_t fhi = bezier_AV * curr_step;
  1279. uint32_t t = fhi;
  1280. int32_t alo = bezier_F;
  1281. int32_t ahi = 0;
  1282. int32_t A = bezier_A;
  1283. int32_t B = bezier_B;
  1284. int32_t C = bezier_C;
  1285. __asm__ __volatile__(
  1286. ".syntax unified" "\n\t" // is to prevent CM0,CM1 non-unified syntax
  1287. A("lsrs %[ahi],%[alo],#1") // a = F << 31 1 cycles
  1288. A("lsls %[alo],%[alo],#31") // 1 cycles
  1289. A("umull %[flo],%[fhi],%[fhi],%[t]") // f *= t 5 cycles [fhi:flo=64bits]
  1290. A("umull %[flo],%[fhi],%[fhi],%[t]") // f>>=32; f*=t 5 cycles [fhi:flo=64bits]
  1291. A("lsrs %[flo],%[fhi],#1") // 1 cycles [31bits]
  1292. A("smlal %[alo],%[ahi],%[flo],%[C]") // a+=(f>>33)*C; 5 cycles
  1293. A("umull %[flo],%[fhi],%[fhi],%[t]") // f>>=32; f*=t 5 cycles [fhi:flo=64bits]
  1294. A("lsrs %[flo],%[fhi],#1") // 1 cycles [31bits]
  1295. A("smlal %[alo],%[ahi],%[flo],%[B]") // a+=(f>>33)*B; 5 cycles
  1296. A("umull %[flo],%[fhi],%[fhi],%[t]") // f>>=32; f*=t 5 cycles [fhi:flo=64bits]
  1297. A("lsrs %[flo],%[fhi],#1") // f>>=33; 1 cycles [31bits]
  1298. A("smlal %[alo],%[ahi],%[flo],%[A]") // a+=(f>>33)*A; 5 cycles
  1299. A("lsrs %[alo],%[ahi],#6") // a>>=38 1 cycles
  1300. : [alo]"+r"( alo ) ,
  1301. [flo]"+r"( flo ) ,
  1302. [fhi]"+r"( fhi ) ,
  1303. [ahi]"+r"( ahi ) ,
  1304. [A]"+r"( A ) , // <== Note: Even if A, B, C, and t registers are INPUT ONLY
  1305. [B]"+r"( B ) , // GCC does bad optimizations on the code if we list them as
  1306. [C]"+r"( C ) , // such, breaking this function. So, to avoid that problem,
  1307. [t]"+r"( t ) // we list all registers as input-outputs.
  1308. :
  1309. : "cc"
  1310. );
  1311. return alo;
  1312. #else
  1313. // For non ARM targets, we provide a fallback implementation. Really doubt it
  1314. // will be useful, unless the processor is fast and 32bit
  1315. uint32_t t = bezier_AV * curr_step; // t: Range 0 - 1^32 = 32 bits
  1316. uint64_t f = t;
  1317. f *= t; // Range 32*2 = 64 bits (unsigned)
  1318. f >>= 32; // Range 32 bits (unsigned)
  1319. f *= t; // Range 32*2 = 64 bits (unsigned)
  1320. f >>= 32; // Range 32 bits : f = t^3 (unsigned)
  1321. int64_t acc = (int64_t) bezier_F << 31; // Range 63 bits (signed)
  1322. acc += ((uint32_t) f >> 1) * (int64_t) bezier_C; // Range 29bits + 31 = 60bits (plus sign)
  1323. f *= t; // Range 32*2 = 64 bits
  1324. f >>= 32; // Range 32 bits : f = t^3 (unsigned)
  1325. acc += ((uint32_t) f >> 1) * (int64_t) bezier_B; // Range 29bits + 31 = 60bits (plus sign)
  1326. f *= t; // Range 32*2 = 64 bits
  1327. f >>= 32; // Range 32 bits : f = t^3 (unsigned)
  1328. acc += ((uint32_t) f >> 1) * (int64_t) bezier_A; // Range 28bits + 31 = 59bits (plus sign)
  1329. acc >>= (31 + 7); // Range 24bits (plus sign)
  1330. return (int32_t) acc;
  1331. #endif
  1332. }
  1333. #endif
  1334. #endif // S_CURVE_ACCELERATION
  1335. /**
  1336. * Stepper Driver Interrupt
  1337. *
  1338. * Directly pulses the stepper motors at high frequency.
  1339. */
  1340. HAL_STEP_TIMER_ISR() {
  1341. HAL_timer_isr_prologue(MF_TIMER_STEP);
  1342. Stepper::isr();
  1343. HAL_timer_isr_epilogue(MF_TIMER_STEP);
  1344. }
  1345. #ifdef CPU_32_BIT
  1346. #define STEP_MULTIPLY(A,B) MultiU32X24toH32(A, B)
  1347. #else
  1348. #define STEP_MULTIPLY(A,B) MultiU24X32toH16(A, B)
  1349. #endif
  1350. void Stepper::isr() {
  1351. static uint32_t nextMainISR = 0; // Interval until the next main Stepper Pulse phase (0 = Now)
  1352. #ifndef __AVR__
  1353. // Disable interrupts, to avoid ISR preemption while we reprogram the period
  1354. // (AVR enters the ISR with global interrupts disabled, so no need to do it here)
  1355. hal.isr_off();
  1356. #endif
  1357. // Program timer compare for the maximum period, so it does NOT
  1358. // flag an interrupt while this ISR is running - So changes from small
  1359. // periods to big periods are respected and the timer does not reset to 0
  1360. HAL_timer_set_compare(MF_TIMER_STEP, hal_timer_t(HAL_TIMER_TYPE_MAX));
  1361. // Count of ticks for the next ISR
  1362. hal_timer_t next_isr_ticks = 0;
  1363. // Limit the amount of iterations
  1364. uint8_t max_loops = 10;
  1365. // We need this variable here to be able to use it in the following loop
  1366. hal_timer_t min_ticks;
  1367. do {
  1368. // Enable ISRs to reduce USART processing latency
  1369. hal.isr_on();
  1370. if (!nextMainISR) pulse_phase_isr(); // 0 = Do coordinated axes Stepper pulses
  1371. #if ENABLED(LIN_ADVANCE)
  1372. if (!nextAdvanceISR) nextAdvanceISR = advance_isr(); // 0 = Do Linear Advance E Stepper pulses
  1373. #endif
  1374. #if ENABLED(INTEGRATED_BABYSTEPPING)
  1375. const bool is_babystep = (nextBabystepISR == 0); // 0 = Do Babystepping (XY)Z pulses
  1376. if (is_babystep) nextBabystepISR = babystepping_isr();
  1377. #endif
  1378. // ^== Time critical. NOTHING besides pulse generation should be above here!!!
  1379. if (!nextMainISR) nextMainISR = block_phase_isr(); // Manage acc/deceleration, get next block
  1380. #if ENABLED(INTEGRATED_BABYSTEPPING)
  1381. if (is_babystep) // Avoid ANY stepping too soon after baby-stepping
  1382. NOLESS(nextMainISR, (BABYSTEP_TICKS) / 8); // FULL STOP for 125µs after a baby-step
  1383. if (nextBabystepISR != BABYSTEP_NEVER) // Avoid baby-stepping too close to axis Stepping
  1384. NOLESS(nextBabystepISR, nextMainISR / 2); // TODO: Only look at axes enabled for baby-stepping
  1385. #endif
  1386. // Get the interval to the next ISR call
  1387. const uint32_t interval = _MIN(
  1388. uint32_t(HAL_TIMER_TYPE_MAX), // Come back in a very long time
  1389. nextMainISR // Time until the next Pulse / Block phase
  1390. OPTARG(LIN_ADVANCE, nextAdvanceISR) // Come back early for Linear Advance?
  1391. OPTARG(INTEGRATED_BABYSTEPPING, nextBabystepISR) // Come back early for Babystepping?
  1392. );
  1393. //
  1394. // Compute remaining time for each ISR phase
  1395. // NEVER : The phase is idle
  1396. // Zero : The phase will occur on the next ISR call
  1397. // Non-zero : The phase will occur on a future ISR call
  1398. //
  1399. nextMainISR -= interval;
  1400. #if ENABLED(LIN_ADVANCE)
  1401. if (nextAdvanceISR != LA_ADV_NEVER) nextAdvanceISR -= interval;
  1402. #endif
  1403. #if ENABLED(INTEGRATED_BABYSTEPPING)
  1404. if (nextBabystepISR != BABYSTEP_NEVER) nextBabystepISR -= interval;
  1405. #endif
  1406. /**
  1407. * This needs to avoid a race-condition caused by interleaving
  1408. * of interrupts required by both the LA and Stepper algorithms.
  1409. *
  1410. * Assume the following tick times for stepper pulses:
  1411. * Stepper ISR (S): 1 1000 2000 3000 4000
  1412. * Linear Adv. (E): 10 1010 2010 3010 4010
  1413. *
  1414. * The current algorithm tries to interleave them, giving:
  1415. * 1:S 10:E 1000:S 1010:E 2000:S 2010:E 3000:S 3010:E 4000:S 4010:E
  1416. *
  1417. * Ideal timing would yield these delta periods:
  1418. * 1:S 9:E 990:S 10:E 990:S 10:E 990:S 10:E 990:S 10:E
  1419. *
  1420. * But, since each event must fire an ISR with a minimum duration, the
  1421. * minimum delta might be 900, so deltas under 900 get rounded up:
  1422. * 900:S d900:E d990:S d900:E d990:S d900:E d990:S d900:E d990:S d900:E
  1423. *
  1424. * It works, but divides the speed of all motors by half, leading to a sudden
  1425. * reduction to 1/2 speed! Such jumps in speed lead to lost steps (not even
  1426. * accounting for double/quad stepping, which makes it even worse).
  1427. */
  1428. // Compute the tick count for the next ISR
  1429. next_isr_ticks += interval;
  1430. /**
  1431. * The following section must be done with global interrupts disabled.
  1432. * We want nothing to interrupt it, as that could mess the calculations
  1433. * we do for the next value to program in the period register of the
  1434. * stepper timer and lead to skipped ISRs (if the value we happen to program
  1435. * is less than the current count due to something preempting between the
  1436. * read and the write of the new period value).
  1437. */
  1438. hal.isr_off();
  1439. /**
  1440. * Get the current tick value + margin
  1441. * Assuming at least 6µs between calls to this ISR...
  1442. * On AVR the ISR epilogue+prologue is estimated at 100 instructions - Give 8µs as margin
  1443. * On ARM the ISR epilogue+prologue is estimated at 20 instructions - Give 1µs as margin
  1444. */
  1445. min_ticks = HAL_timer_get_count(MF_TIMER_STEP) + hal_timer_t(
  1446. #ifdef __AVR__
  1447. 8
  1448. #else
  1449. 1
  1450. #endif
  1451. * (STEPPER_TIMER_TICKS_PER_US)
  1452. );
  1453. /**
  1454. * NB: If for some reason the stepper monopolizes the MPU, eventually the
  1455. * timer will wrap around (and so will 'next_isr_ticks'). So, limit the
  1456. * loop to 10 iterations. Beyond that, there's no way to ensure correct pulse
  1457. * timing, since the MCU isn't fast enough.
  1458. */
  1459. if (!--max_loops) next_isr_ticks = min_ticks;
  1460. // Advance pulses if not enough time to wait for the next ISR
  1461. } while (next_isr_ticks < min_ticks);
  1462. // Now 'next_isr_ticks' contains the period to the next Stepper ISR - And we are
  1463. // sure that the time has not arrived yet - Warrantied by the scheduler
  1464. // Set the next ISR to fire at the proper time
  1465. HAL_timer_set_compare(MF_TIMER_STEP, hal_timer_t(next_isr_ticks));
  1466. // Don't forget to finally reenable interrupts
  1467. hal.isr_on();
  1468. }
  1469. #if MINIMUM_STEPPER_PULSE || MAXIMUM_STEPPER_RATE
  1470. #define ISR_PULSE_CONTROL 1
  1471. #endif
  1472. #if ISR_PULSE_CONTROL && DISABLED(I2S_STEPPER_STREAM)
  1473. #define ISR_MULTI_STEPS 1
  1474. #endif
  1475. /**
  1476. * This phase of the ISR should ONLY create the pulses for the steppers.
  1477. * This prevents jitter caused by the interval between the start of the
  1478. * interrupt and the start of the pulses. DON'T add any logic ahead of the
  1479. * call to this method that might cause variation in the timing. The aim
  1480. * is to keep pulse timing as regular as possible.
  1481. */
  1482. void Stepper::pulse_phase_isr() {
  1483. // If we must abort the current block, do so!
  1484. if (abort_current_block) {
  1485. abort_current_block = false;
  1486. if (current_block) discard_current_block();
  1487. }
  1488. // If there is no current block, do nothing
  1489. if (!current_block) return;
  1490. // Skipping step processing causes motion to freeze
  1491. if (TERN0(FREEZE_FEATURE, frozen)) return;
  1492. // Count of pending loops and events for this iteration
  1493. const uint32_t pending_events = step_event_count - step_events_completed;
  1494. uint8_t events_to_do = _MIN(pending_events, steps_per_isr);
  1495. // Just update the value we will get at the end of the loop
  1496. step_events_completed += events_to_do;
  1497. // Take multiple steps per interrupt (For high speed moves)
  1498. #if ISR_MULTI_STEPS
  1499. bool firstStep = true;
  1500. USING_TIMED_PULSE();
  1501. #endif
  1502. xyze_bool_t step_needed{0};
  1503. do {
  1504. #define _APPLY_STEP(AXIS, INV, ALWAYS) AXIS ##_APPLY_STEP(INV, ALWAYS)
  1505. #define _INVERT_STEP_PIN(AXIS) INVERT_## AXIS ##_STEP_PIN
  1506. // Determine if a pulse is needed using Bresenham
  1507. #define PULSE_PREP(AXIS) do{ \
  1508. delta_error[_AXIS(AXIS)] += advance_dividend[_AXIS(AXIS)]; \
  1509. step_needed[_AXIS(AXIS)] = (delta_error[_AXIS(AXIS)] >= 0); \
  1510. if (step_needed[_AXIS(AXIS)]) { \
  1511. count_position[_AXIS(AXIS)] += count_direction[_AXIS(AXIS)]; \
  1512. delta_error[_AXIS(AXIS)] -= advance_divisor; \
  1513. } \
  1514. }while(0)
  1515. // Start an active pulse if needed
  1516. #define PULSE_START(AXIS) do{ \
  1517. if (step_needed[_AXIS(AXIS)]) { \
  1518. _APPLY_STEP(AXIS, !_INVERT_STEP_PIN(AXIS), 0); \
  1519. } \
  1520. }while(0)
  1521. // Stop an active pulse if needed
  1522. #define PULSE_STOP(AXIS) do { \
  1523. if (step_needed[_AXIS(AXIS)]) { \
  1524. _APPLY_STEP(AXIS, _INVERT_STEP_PIN(AXIS), 0); \
  1525. } \
  1526. }while(0)
  1527. // Direct Stepping page?
  1528. const bool is_page = IS_PAGE(current_block);
  1529. #if ENABLED(DIRECT_STEPPING)
  1530. // Direct stepping is currently not ready for HAS_I_AXIS
  1531. if (is_page) {
  1532. #if STEPPER_PAGE_FORMAT == SP_4x4D_128
  1533. #define PAGE_SEGMENT_UPDATE(AXIS, VALUE) do{ \
  1534. if ((VALUE) < 7) SBI(dm, _AXIS(AXIS)); \
  1535. else if ((VALUE) > 7) CBI(dm, _AXIS(AXIS)); \
  1536. page_step_state.sd[_AXIS(AXIS)] = VALUE; \
  1537. page_step_state.bd[_AXIS(AXIS)] += VALUE; \
  1538. }while(0)
  1539. #define PAGE_PULSE_PREP(AXIS) do{ \
  1540. step_needed[_AXIS(AXIS)] = \
  1541. pgm_read_byte(&segment_table[page_step_state.sd[_AXIS(AXIS)]][page_step_state.segment_steps & 0x7]); \
  1542. }while(0)
  1543. switch (page_step_state.segment_steps) {
  1544. case DirectStepping::Config::SEGMENT_STEPS:
  1545. page_step_state.segment_idx += 2;
  1546. page_step_state.segment_steps = 0;
  1547. // fallthru
  1548. case 0: {
  1549. const uint8_t low = page_step_state.page[page_step_state.segment_idx],
  1550. high = page_step_state.page[page_step_state.segment_idx + 1];
  1551. axis_bits_t dm = last_direction_bits;
  1552. PAGE_SEGMENT_UPDATE(X, low >> 4);
  1553. PAGE_SEGMENT_UPDATE(Y, low & 0xF);
  1554. PAGE_SEGMENT_UPDATE(Z, high >> 4);
  1555. PAGE_SEGMENT_UPDATE(E, high & 0xF);
  1556. if (dm != last_direction_bits)
  1557. set_directions(dm);
  1558. } break;
  1559. default: break;
  1560. }
  1561. PAGE_PULSE_PREP(X);
  1562. PAGE_PULSE_PREP(Y);
  1563. PAGE_PULSE_PREP(Z);
  1564. TERN_(HAS_EXTRUDERS, PAGE_PULSE_PREP(E));
  1565. page_step_state.segment_steps++;
  1566. #elif STEPPER_PAGE_FORMAT == SP_4x2_256
  1567. #define PAGE_SEGMENT_UPDATE(AXIS, VALUE) \
  1568. page_step_state.sd[_AXIS(AXIS)] = VALUE; \
  1569. page_step_state.bd[_AXIS(AXIS)] += VALUE;
  1570. #define PAGE_PULSE_PREP(AXIS) do{ \
  1571. step_needed[_AXIS(AXIS)] = \
  1572. pgm_read_byte(&segment_table[page_step_state.sd[_AXIS(AXIS)]][page_step_state.segment_steps & 0x3]); \
  1573. }while(0)
  1574. switch (page_step_state.segment_steps) {
  1575. case DirectStepping::Config::SEGMENT_STEPS:
  1576. page_step_state.segment_idx++;
  1577. page_step_state.segment_steps = 0;
  1578. // fallthru
  1579. case 0: {
  1580. const uint8_t b = page_step_state.page[page_step_state.segment_idx];
  1581. PAGE_SEGMENT_UPDATE(X, (b >> 6) & 0x3);
  1582. PAGE_SEGMENT_UPDATE(Y, (b >> 4) & 0x3);
  1583. PAGE_SEGMENT_UPDATE(Z, (b >> 2) & 0x3);
  1584. PAGE_SEGMENT_UPDATE(E, (b >> 0) & 0x3);
  1585. } break;
  1586. default: break;
  1587. }
  1588. PAGE_PULSE_PREP(X);
  1589. PAGE_PULSE_PREP(Y);
  1590. PAGE_PULSE_PREP(Z);
  1591. TERN_(HAS_EXTRUDERS, PAGE_PULSE_PREP(E));
  1592. page_step_state.segment_steps++;
  1593. #elif STEPPER_PAGE_FORMAT == SP_4x1_512
  1594. #define PAGE_PULSE_PREP(AXIS, BITS) do{ \
  1595. step_needed[_AXIS(AXIS)] = (steps >> BITS) & 0x1; \
  1596. if (step_needed[_AXIS(AXIS)]) \
  1597. page_step_state.bd[_AXIS(AXIS)]++; \
  1598. }while(0)
  1599. uint8_t steps = page_step_state.page[page_step_state.segment_idx >> 1];
  1600. if (page_step_state.segment_idx & 0x1) steps >>= 4;
  1601. PAGE_PULSE_PREP(X, 3);
  1602. PAGE_PULSE_PREP(Y, 2);
  1603. PAGE_PULSE_PREP(Z, 1);
  1604. PAGE_PULSE_PREP(E, 0);
  1605. page_step_state.segment_idx++;
  1606. #else
  1607. #error "Unknown direct stepping page format!"
  1608. #endif
  1609. }
  1610. #endif // DIRECT_STEPPING
  1611. if (!is_page) {
  1612. // Determine if pulses are needed
  1613. #if HAS_X_STEP
  1614. PULSE_PREP(X);
  1615. #endif
  1616. #if HAS_Y_STEP
  1617. PULSE_PREP(Y);
  1618. #endif
  1619. #if HAS_Z_STEP
  1620. PULSE_PREP(Z);
  1621. #endif
  1622. #if HAS_I_STEP
  1623. PULSE_PREP(I);
  1624. #endif
  1625. #if HAS_J_STEP
  1626. PULSE_PREP(J);
  1627. #endif
  1628. #if HAS_K_STEP
  1629. PULSE_PREP(K);
  1630. #endif
  1631. #if HAS_U_STEP
  1632. PULSE_PREP(U);
  1633. #endif
  1634. #if HAS_V_STEP
  1635. PULSE_PREP(V);
  1636. #endif
  1637. #if HAS_W_STEP
  1638. PULSE_PREP(W);
  1639. #endif
  1640. #if EITHER(LIN_ADVANCE, MIXING_EXTRUDER)
  1641. delta_error.e += advance_dividend.e;
  1642. if (delta_error.e >= 0) {
  1643. #if ENABLED(LIN_ADVANCE)
  1644. delta_error.e -= advance_divisor;
  1645. // Don't step E here - But remember the number of steps to perform
  1646. motor_direction(E_AXIS) ? --LA_steps : ++LA_steps;
  1647. #else
  1648. count_position.e += count_direction.e;
  1649. step_needed.e = true;
  1650. #endif
  1651. }
  1652. #elif HAS_E0_STEP
  1653. PULSE_PREP(E);
  1654. #endif
  1655. }
  1656. #if ISR_MULTI_STEPS
  1657. if (firstStep)
  1658. firstStep = false;
  1659. else
  1660. AWAIT_LOW_PULSE();
  1661. #endif
  1662. // Pulse start
  1663. #if HAS_X_STEP
  1664. PULSE_START(X);
  1665. #endif
  1666. #if HAS_Y_STEP
  1667. PULSE_START(Y);
  1668. #endif
  1669. #if HAS_Z_STEP
  1670. PULSE_START(Z);
  1671. #endif
  1672. #if HAS_I_STEP
  1673. PULSE_START(I);
  1674. #endif
  1675. #if HAS_J_STEP
  1676. PULSE_START(J);
  1677. #endif
  1678. #if HAS_K_STEP
  1679. PULSE_START(K);
  1680. #endif
  1681. #if HAS_U_STEP
  1682. PULSE_START(U);
  1683. #endif
  1684. #if HAS_V_STEP
  1685. PULSE_START(V);
  1686. #endif
  1687. #if HAS_W_STEP
  1688. PULSE_START(W);
  1689. #endif
  1690. #if DISABLED(LIN_ADVANCE)
  1691. #if ENABLED(MIXING_EXTRUDER)
  1692. if (step_needed.e) E_STEP_WRITE(mixer.get_next_stepper(), !INVERT_E_STEP_PIN);
  1693. #elif HAS_E0_STEP
  1694. PULSE_START(E);
  1695. #endif
  1696. #endif
  1697. #if ENABLED(I2S_STEPPER_STREAM)
  1698. i2s_push_sample();
  1699. #endif
  1700. // TODO: need to deal with MINIMUM_STEPPER_PULSE over i2s
  1701. #if ISR_MULTI_STEPS
  1702. START_HIGH_PULSE();
  1703. AWAIT_HIGH_PULSE();
  1704. #endif
  1705. // Pulse stop
  1706. #if HAS_X_STEP
  1707. PULSE_STOP(X);
  1708. #endif
  1709. #if HAS_Y_STEP
  1710. PULSE_STOP(Y);
  1711. #endif
  1712. #if HAS_Z_STEP
  1713. PULSE_STOP(Z);
  1714. #endif
  1715. #if HAS_I_STEP
  1716. PULSE_STOP(I);
  1717. #endif
  1718. #if HAS_J_STEP
  1719. PULSE_STOP(J);
  1720. #endif
  1721. #if HAS_K_STEP
  1722. PULSE_STOP(K);
  1723. #endif
  1724. #if HAS_U_STEP
  1725. PULSE_STOP(U);
  1726. #endif
  1727. #if HAS_V_STEP
  1728. PULSE_STOP(V);
  1729. #endif
  1730. #if HAS_W_STEP
  1731. PULSE_STOP(W);
  1732. #endif
  1733. #if DISABLED(LIN_ADVANCE)
  1734. #if ENABLED(MIXING_EXTRUDER)
  1735. if (delta_error.e >= 0) {
  1736. delta_error.e -= advance_divisor;
  1737. E_STEP_WRITE(mixer.get_stepper(), INVERT_E_STEP_PIN);
  1738. }
  1739. #elif HAS_E0_STEP
  1740. PULSE_STOP(E);
  1741. #endif
  1742. #endif
  1743. #if ISR_MULTI_STEPS
  1744. if (events_to_do) START_LOW_PULSE();
  1745. #endif
  1746. } while (--events_to_do);
  1747. }
  1748. // This is the last half of the stepper interrupt: This one processes and
  1749. // properly schedules blocks from the planner. This is executed after creating
  1750. // the step pulses, so it is not time critical, as pulses are already done.
  1751. uint32_t Stepper::block_phase_isr() {
  1752. // If no queued movements, just wait 1ms for the next block
  1753. uint32_t interval = (STEPPER_TIMER_RATE) / 1000UL;
  1754. // If there is a current block
  1755. if (current_block) {
  1756. // If current block is finished, reset pointer and finalize state
  1757. if (step_events_completed >= step_event_count) {
  1758. #if ENABLED(DIRECT_STEPPING)
  1759. // Direct stepping is currently not ready for HAS_I_AXIS
  1760. #if STEPPER_PAGE_FORMAT == SP_4x4D_128
  1761. #define PAGE_SEGMENT_UPDATE_POS(AXIS) \
  1762. count_position[_AXIS(AXIS)] += page_step_state.bd[_AXIS(AXIS)] - 128 * 7;
  1763. #elif STEPPER_PAGE_FORMAT == SP_4x1_512 || STEPPER_PAGE_FORMAT == SP_4x2_256
  1764. #define PAGE_SEGMENT_UPDATE_POS(AXIS) \
  1765. count_position[_AXIS(AXIS)] += page_step_state.bd[_AXIS(AXIS)] * count_direction[_AXIS(AXIS)];
  1766. #endif
  1767. if (IS_PAGE(current_block)) {
  1768. PAGE_SEGMENT_UPDATE_POS(X);
  1769. PAGE_SEGMENT_UPDATE_POS(Y);
  1770. PAGE_SEGMENT_UPDATE_POS(Z);
  1771. PAGE_SEGMENT_UPDATE_POS(E);
  1772. }
  1773. #endif
  1774. TERN_(HAS_FILAMENT_RUNOUT_DISTANCE, runout.block_completed(current_block));
  1775. discard_current_block();
  1776. }
  1777. else {
  1778. // Step events not completed yet...
  1779. // Are we in acceleration phase ?
  1780. if (step_events_completed <= accelerate_until) { // Calculate new timer value
  1781. #if ENABLED(S_CURVE_ACCELERATION)
  1782. // Get the next speed to use (Jerk limited!)
  1783. uint32_t acc_step_rate = acceleration_time < current_block->acceleration_time
  1784. ? _eval_bezier_curve(acceleration_time)
  1785. : current_block->cruise_rate;
  1786. #else
  1787. acc_step_rate = STEP_MULTIPLY(acceleration_time, current_block->acceleration_rate) + current_block->initial_rate;
  1788. NOMORE(acc_step_rate, current_block->nominal_rate);
  1789. #endif
  1790. // acc_step_rate is in steps/second
  1791. // step_rate to timer interval and steps per stepper isr
  1792. interval = calc_timer_interval(acc_step_rate, &steps_per_isr);
  1793. acceleration_time += interval;
  1794. #if ENABLED(LIN_ADVANCE)
  1795. if (LA_use_advance_lead) {
  1796. // Fire ISR if final adv_rate is reached
  1797. if (LA_steps && LA_isr_rate != current_block->advance_speed) nextAdvanceISR = 0;
  1798. }
  1799. else if (LA_steps) nextAdvanceISR = 0;
  1800. #endif
  1801. // Update laser - Accelerating
  1802. #if ENABLED(LASER_POWER_INLINE_TRAPEZOID)
  1803. if (laser_trap.enabled) {
  1804. #if DISABLED(LASER_POWER_INLINE_TRAPEZOID_CONT)
  1805. if (current_block->laser.entry_per) {
  1806. laser_trap.acc_step_count -= step_events_completed - laser_trap.last_step_count;
  1807. laser_trap.last_step_count = step_events_completed;
  1808. // Should be faster than a divide, since this should trip just once
  1809. if (laser_trap.acc_step_count < 0) {
  1810. while (laser_trap.acc_step_count < 0) {
  1811. laser_trap.acc_step_count += current_block->laser.entry_per;
  1812. if (laser_trap.cur_power < current_block->laser.power) laser_trap.cur_power++;
  1813. }
  1814. cutter.ocr_set_power(laser_trap.cur_power);
  1815. }
  1816. }
  1817. #else
  1818. if (laser_trap.till_update)
  1819. laser_trap.till_update--;
  1820. else {
  1821. laser_trap.till_update = LASER_POWER_INLINE_TRAPEZOID_CONT_PER;
  1822. laser_trap.cur_power = (current_block->laser.power * acc_step_rate) / current_block->nominal_rate;
  1823. cutter.ocr_set_power(laser_trap.cur_power); // Cycle efficiency is irrelevant it the last line was many cycles
  1824. }
  1825. #endif
  1826. }
  1827. #endif
  1828. }
  1829. // Are we in Deceleration phase ?
  1830. else if (step_events_completed > decelerate_after) {
  1831. uint32_t step_rate;
  1832. #if ENABLED(S_CURVE_ACCELERATION)
  1833. // If this is the 1st time we process the 2nd half of the trapezoid...
  1834. if (!bezier_2nd_half) {
  1835. // Initialize the Bézier speed curve
  1836. _calc_bezier_curve_coeffs(current_block->cruise_rate, current_block->final_rate, current_block->deceleration_time_inverse);
  1837. bezier_2nd_half = true;
  1838. // The first point starts at cruise rate. Just save evaluation of the Bézier curve
  1839. step_rate = current_block->cruise_rate;
  1840. }
  1841. else {
  1842. // Calculate the next speed to use
  1843. step_rate = deceleration_time < current_block->deceleration_time
  1844. ? _eval_bezier_curve(deceleration_time)
  1845. : current_block->final_rate;
  1846. }
  1847. #else
  1848. // Using the old trapezoidal control
  1849. step_rate = STEP_MULTIPLY(deceleration_time, current_block->acceleration_rate);
  1850. if (step_rate < acc_step_rate) { // Still decelerating?
  1851. step_rate = acc_step_rate - step_rate;
  1852. NOLESS(step_rate, current_block->final_rate);
  1853. }
  1854. else
  1855. step_rate = current_block->final_rate;
  1856. #endif
  1857. // step_rate is in steps/second
  1858. // step_rate to timer interval and steps per stepper isr
  1859. interval = calc_timer_interval(step_rate, &steps_per_isr);
  1860. deceleration_time += interval;
  1861. #if ENABLED(LIN_ADVANCE)
  1862. if (LA_use_advance_lead) {
  1863. // Wake up eISR on first deceleration loop and fire ISR if final adv_rate is reached
  1864. if (step_events_completed <= decelerate_after + steps_per_isr || (LA_steps && LA_isr_rate != current_block->advance_speed)) {
  1865. initiateLA();
  1866. LA_isr_rate = current_block->advance_speed;
  1867. }
  1868. }
  1869. else if (LA_steps) nextAdvanceISR = 0;
  1870. #endif // LIN_ADVANCE
  1871. // Update laser - Decelerating
  1872. #if ENABLED(LASER_POWER_INLINE_TRAPEZOID)
  1873. if (laser_trap.enabled) {
  1874. #if DISABLED(LASER_POWER_INLINE_TRAPEZOID_CONT)
  1875. if (current_block->laser.exit_per) {
  1876. laser_trap.acc_step_count -= step_events_completed - laser_trap.last_step_count;
  1877. laser_trap.last_step_count = step_events_completed;
  1878. // Should be faster than a divide, since this should trip just once
  1879. if (laser_trap.acc_step_count < 0) {
  1880. while (laser_trap.acc_step_count < 0) {
  1881. laser_trap.acc_step_count += current_block->laser.exit_per;
  1882. if (laser_trap.cur_power > current_block->laser.power_exit) laser_trap.cur_power--;
  1883. }
  1884. cutter.ocr_set_power(laser_trap.cur_power);
  1885. }
  1886. }
  1887. #else
  1888. if (laser_trap.till_update)
  1889. laser_trap.till_update--;
  1890. else {
  1891. laser_trap.till_update = LASER_POWER_INLINE_TRAPEZOID_CONT_PER;
  1892. laser_trap.cur_power = (current_block->laser.power * step_rate) / current_block->nominal_rate;
  1893. cutter.ocr_set_power(laser_trap.cur_power); // Cycle efficiency isn't relevant when the last line was many cycles
  1894. }
  1895. #endif
  1896. }
  1897. #endif
  1898. }
  1899. // Must be in cruise phase otherwise
  1900. else {
  1901. #if ENABLED(LIN_ADVANCE)
  1902. // If there are any esteps, fire the next advance_isr "now"
  1903. if (LA_steps && LA_isr_rate != current_block->advance_speed) initiateLA();
  1904. #endif
  1905. // Calculate the ticks_nominal for this nominal speed, if not done yet
  1906. if (ticks_nominal < 0) {
  1907. // step_rate to timer interval and loops for the nominal speed
  1908. ticks_nominal = calc_timer_interval(current_block->nominal_rate, &steps_per_isr);
  1909. }
  1910. // The timer interval is just the nominal value for the nominal speed
  1911. interval = ticks_nominal;
  1912. // Update laser - Cruising
  1913. #if ENABLED(LASER_POWER_INLINE_TRAPEZOID)
  1914. if (laser_trap.enabled) {
  1915. if (!laser_trap.cruise_set) {
  1916. laser_trap.cur_power = current_block->laser.power;
  1917. cutter.ocr_set_power(laser_trap.cur_power);
  1918. laser_trap.cruise_set = true;
  1919. }
  1920. #if ENABLED(LASER_POWER_INLINE_TRAPEZOID_CONT)
  1921. laser_trap.till_update = LASER_POWER_INLINE_TRAPEZOID_CONT_PER;
  1922. #else
  1923. laser_trap.last_step_count = step_events_completed;
  1924. #endif
  1925. }
  1926. #endif
  1927. }
  1928. }
  1929. }
  1930. // If there is no current block at this point, attempt to pop one from the buffer
  1931. // and prepare its movement
  1932. if (!current_block) {
  1933. // Anything in the buffer?
  1934. if ((current_block = planner.get_current_block())) {
  1935. // Sync block? Sync the stepper counts or fan speeds and return
  1936. while (current_block->flag & BLOCK_MASK_SYNC) {
  1937. #if ENABLED(LASER_SYNCHRONOUS_M106_M107)
  1938. const bool is_sync_fans = TEST(current_block->flag, BLOCK_BIT_SYNC_FANS);
  1939. if (is_sync_fans) planner.sync_fan_speeds(current_block->fan_speed);
  1940. #else
  1941. constexpr bool is_sync_fans = false;
  1942. #endif
  1943. if (!is_sync_fans) _set_position(current_block->position);
  1944. discard_current_block();
  1945. // Try to get a new block
  1946. if (!(current_block = planner.get_current_block()))
  1947. return interval; // No more queued movements!
  1948. }
  1949. // For non-inline cutter, grossly apply power
  1950. #if ENABLED(LASER_FEATURE) && DISABLED(LASER_POWER_INLINE)
  1951. cutter.apply_power(current_block->cutter_power);
  1952. #endif
  1953. #if ENABLED(POWER_LOSS_RECOVERY)
  1954. recovery.info.sdpos = current_block->sdpos;
  1955. recovery.info.current_position = current_block->start_position;
  1956. #endif
  1957. #if ENABLED(DIRECT_STEPPING)
  1958. if (IS_PAGE(current_block)) {
  1959. page_step_state.segment_steps = 0;
  1960. page_step_state.segment_idx = 0;
  1961. page_step_state.page = page_manager.get_page(current_block->page_idx);
  1962. page_step_state.bd.reset();
  1963. if (DirectStepping::Config::DIRECTIONAL)
  1964. current_block->direction_bits = last_direction_bits;
  1965. if (!page_step_state.page) {
  1966. discard_current_block();
  1967. return interval;
  1968. }
  1969. }
  1970. #endif
  1971. // Flag all moving axes for proper endstop handling
  1972. #if IS_CORE
  1973. // Define conditions for checking endstops
  1974. #define S_(N) current_block->steps[CORE_AXIS_##N]
  1975. #define D_(N) TEST(current_block->direction_bits, CORE_AXIS_##N)
  1976. #endif
  1977. #if CORE_IS_XY || CORE_IS_XZ
  1978. /**
  1979. * Head direction in -X axis for CoreXY and CoreXZ bots.
  1980. *
  1981. * If steps differ, both axes are moving.
  1982. * If DeltaA == -DeltaB, the movement is only in the 2nd axis (Y or Z, handled below)
  1983. * If DeltaA == DeltaB, the movement is only in the 1st axis (X)
  1984. */
  1985. #if EITHER(COREXY, COREXZ)
  1986. #define X_CMP(A,B) ((A)==(B))
  1987. #else
  1988. #define X_CMP(A,B) ((A)!=(B))
  1989. #endif
  1990. #define X_MOVE_TEST ( S_(1) != S_(2) || (S_(1) > 0 && X_CMP(D_(1),D_(2))) )
  1991. #elif ENABLED(MARKFORGED_XY)
  1992. #define X_MOVE_TEST (current_block->steps.a != current_block->steps.b)
  1993. #else
  1994. #define X_MOVE_TEST !!current_block->steps.a
  1995. #endif
  1996. #if CORE_IS_XY || CORE_IS_YZ
  1997. /**
  1998. * Head direction in -Y axis for CoreXY / CoreYZ bots.
  1999. *
  2000. * If steps differ, both axes are moving
  2001. * If DeltaA == DeltaB, the movement is only in the 1st axis (X or Y)
  2002. * If DeltaA == -DeltaB, the movement is only in the 2nd axis (Y or Z)
  2003. */
  2004. #if EITHER(COREYX, COREYZ)
  2005. #define Y_CMP(A,B) ((A)==(B))
  2006. #else
  2007. #define Y_CMP(A,B) ((A)!=(B))
  2008. #endif
  2009. #define Y_MOVE_TEST ( S_(1) != S_(2) || (S_(1) > 0 && Y_CMP(D_(1),D_(2))) )
  2010. #elif ENABLED(MARKFORGED_YX)
  2011. #define Y_MOVE_TEST (current_block->steps.a != current_block->steps.b)
  2012. #else
  2013. #define Y_MOVE_TEST !!current_block->steps.b
  2014. #endif
  2015. #if CORE_IS_XZ || CORE_IS_YZ
  2016. /**
  2017. * Head direction in -Z axis for CoreXZ or CoreYZ bots.
  2018. *
  2019. * If steps differ, both axes are moving
  2020. * If DeltaA == DeltaB, the movement is only in the 1st axis (X or Y, already handled above)
  2021. * If DeltaA == -DeltaB, the movement is only in the 2nd axis (Z)
  2022. */
  2023. #if EITHER(COREZX, COREZY)
  2024. #define Z_CMP(A,B) ((A)==(B))
  2025. #else
  2026. #define Z_CMP(A,B) ((A)!=(B))
  2027. #endif
  2028. #define Z_MOVE_TEST ( S_(1) != S_(2) || (S_(1) > 0 && Z_CMP(D_(1),D_(2))) )
  2029. #else
  2030. #define Z_MOVE_TEST !!current_block->steps.c
  2031. #endif
  2032. axis_bits_t axis_bits = 0;
  2033. NUM_AXIS_CODE(
  2034. if (X_MOVE_TEST) SBI(axis_bits, A_AXIS),
  2035. if (Y_MOVE_TEST) SBI(axis_bits, B_AXIS),
  2036. if (Z_MOVE_TEST) SBI(axis_bits, C_AXIS),
  2037. if (current_block->steps.i) SBI(axis_bits, I_AXIS),
  2038. if (current_block->steps.j) SBI(axis_bits, J_AXIS),
  2039. if (current_block->steps.k) SBI(axis_bits, K_AXIS),
  2040. if (current_block->steps.u) SBI(axis_bits, U_AXIS),
  2041. if (current_block->steps.v) SBI(axis_bits, V_AXIS),
  2042. if (current_block->steps.w) SBI(axis_bits, W_AXIS)
  2043. );
  2044. //if (current_block->steps.e) SBI(axis_bits, E_AXIS);
  2045. //if (current_block->steps.a) SBI(axis_bits, X_HEAD);
  2046. //if (current_block->steps.b) SBI(axis_bits, Y_HEAD);
  2047. //if (current_block->steps.c) SBI(axis_bits, Z_HEAD);
  2048. axis_did_move = axis_bits;
  2049. // No acceleration / deceleration time elapsed so far
  2050. acceleration_time = deceleration_time = 0;
  2051. #if ENABLED(ADAPTIVE_STEP_SMOOTHING)
  2052. uint8_t oversampling = 0; // Assume no axis smoothing (via oversampling)
  2053. // Decide if axis smoothing is possible
  2054. uint32_t max_rate = current_block->nominal_rate; // Get the step event rate
  2055. while (max_rate < MIN_STEP_ISR_FREQUENCY) { // As long as more ISRs are possible...
  2056. max_rate <<= 1; // Try to double the rate
  2057. if (max_rate < MIN_STEP_ISR_FREQUENCY) // Don't exceed the estimated ISR limit
  2058. ++oversampling; // Increase the oversampling (used for left-shift)
  2059. }
  2060. oversampling_factor = oversampling; // For all timer interval calculations
  2061. #else
  2062. constexpr uint8_t oversampling = 0;
  2063. #endif
  2064. // Based on the oversampling factor, do the calculations
  2065. step_event_count = current_block->step_event_count << oversampling;
  2066. // Initialize Bresenham delta errors to 1/2
  2067. delta_error = -int32_t(step_event_count);
  2068. // Calculate Bresenham dividends and divisors
  2069. advance_dividend = current_block->steps << 1;
  2070. advance_divisor = step_event_count << 1;
  2071. // No step events completed so far
  2072. step_events_completed = 0;
  2073. // Compute the acceleration and deceleration points
  2074. accelerate_until = current_block->accelerate_until << oversampling;
  2075. decelerate_after = current_block->decelerate_after << oversampling;
  2076. TERN_(MIXING_EXTRUDER, mixer.stepper_setup(current_block->b_color));
  2077. E_TERN_(stepper_extruder = current_block->extruder);
  2078. // Initialize the trapezoid generator from the current block.
  2079. #if ENABLED(LIN_ADVANCE)
  2080. #if DISABLED(MIXING_EXTRUDER) && E_STEPPERS > 1
  2081. // If the now active extruder wasn't in use during the last move, its pressure is most likely gone.
  2082. if (stepper_extruder != last_moved_extruder) LA_current_adv_steps = 0;
  2083. #endif
  2084. if ((LA_use_advance_lead = current_block->use_advance_lead)) {
  2085. LA_final_adv_steps = current_block->final_adv_steps;
  2086. LA_max_adv_steps = current_block->max_adv_steps;
  2087. initiateLA(); // Start the ISR
  2088. LA_isr_rate = current_block->advance_speed;
  2089. }
  2090. else LA_isr_rate = LA_ADV_NEVER;
  2091. #endif
  2092. if ( ENABLED(HAS_L64XX) // Always set direction for L64xx (Also enables the chips)
  2093. || ENABLED(DUAL_X_CARRIAGE) // TODO: Find out why this fixes "jittery" small circles
  2094. || current_block->direction_bits != last_direction_bits
  2095. || TERN(MIXING_EXTRUDER, false, stepper_extruder != last_moved_extruder)
  2096. ) {
  2097. E_TERN_(last_moved_extruder = stepper_extruder);
  2098. TERN_(HAS_L64XX, L64XX_OK_to_power_up = true);
  2099. set_directions(current_block->direction_bits);
  2100. }
  2101. #if ENABLED(LASER_POWER_INLINE)
  2102. const power_status_t stat = current_block->laser.status;
  2103. #if ENABLED(LASER_POWER_INLINE_TRAPEZOID)
  2104. laser_trap.enabled = stat.isPlanned && stat.isEnabled;
  2105. laser_trap.cur_power = current_block->laser.power_entry; // RESET STATE
  2106. laser_trap.cruise_set = false;
  2107. #if DISABLED(LASER_POWER_INLINE_TRAPEZOID_CONT)
  2108. laser_trap.last_step_count = 0;
  2109. laser_trap.acc_step_count = current_block->laser.entry_per / 2;
  2110. #else
  2111. laser_trap.till_update = 0;
  2112. #endif
  2113. // Always have PWM in this case
  2114. if (stat.isPlanned) { // Planner controls the laser
  2115. cutter.ocr_set_power(
  2116. stat.isEnabled ? laser_trap.cur_power : 0 // ON with power or OFF
  2117. );
  2118. }
  2119. #else
  2120. if (stat.isPlanned) { // Planner controls the laser
  2121. #if ENABLED(SPINDLE_LASER_USE_PWM)
  2122. cutter.ocr_set_power(
  2123. stat.isEnabled ? current_block->laser.power : 0 // ON with power or OFF
  2124. );
  2125. #else
  2126. cutter.set_enabled(stat.isEnabled);
  2127. #endif
  2128. }
  2129. #endif
  2130. #endif // LASER_POWER_INLINE
  2131. // If the endstop is already pressed, endstop interrupts won't invoke
  2132. // endstop_triggered and the move will grind. So check here for a
  2133. // triggered endstop, which marks the block for discard on the next ISR.
  2134. endstops.update();
  2135. #if ENABLED(Z_LATE_ENABLE)
  2136. // If delayed Z enable, enable it now. This option will severely interfere with
  2137. // timing between pulses when chaining motion between blocks, and it could lead
  2138. // to lost steps in both X and Y axis, so avoid using it unless strictly necessary!!
  2139. if (current_block->steps.z) enable_axis(Z_AXIS);
  2140. #endif
  2141. // Mark the time_nominal as not calculated yet
  2142. ticks_nominal = -1;
  2143. #if ENABLED(S_CURVE_ACCELERATION)
  2144. // Initialize the Bézier speed curve
  2145. _calc_bezier_curve_coeffs(current_block->initial_rate, current_block->cruise_rate, current_block->acceleration_time_inverse);
  2146. // We haven't started the 2nd half of the trapezoid
  2147. bezier_2nd_half = false;
  2148. #else
  2149. // Set as deceleration point the initial rate of the block
  2150. acc_step_rate = current_block->initial_rate;
  2151. #endif
  2152. // Calculate the initial timer interval
  2153. interval = calc_timer_interval(current_block->initial_rate, &steps_per_isr);
  2154. }
  2155. #if ENABLED(LASER_POWER_INLINE_CONTINUOUS)
  2156. else { // No new block found; so apply inline laser parameters
  2157. // This should mean ending file with 'M5 I' will stop the laser; thus the inline flag isn't needed
  2158. const power_status_t stat = planner.laser_inline.status;
  2159. if (stat.isPlanned) { // Planner controls the laser
  2160. #if ENABLED(SPINDLE_LASER_USE_PWM)
  2161. cutter.ocr_set_power(
  2162. stat.isEnabled ? planner.laser_inline.power : 0 // ON with power or OFF
  2163. );
  2164. #else
  2165. cutter.set_enabled(stat.isEnabled);
  2166. #endif
  2167. }
  2168. }
  2169. #endif
  2170. }
  2171. // Return the interval to wait
  2172. return interval;
  2173. }
  2174. #if ENABLED(LIN_ADVANCE)
  2175. // Timer interrupt for E. LA_steps is set in the main routine
  2176. uint32_t Stepper::advance_isr() {
  2177. uint32_t interval;
  2178. if (LA_use_advance_lead) {
  2179. if (step_events_completed > decelerate_after && LA_current_adv_steps > LA_final_adv_steps) {
  2180. LA_steps--;
  2181. LA_current_adv_steps--;
  2182. interval = LA_isr_rate;
  2183. }
  2184. else if (step_events_completed < decelerate_after && LA_current_adv_steps < LA_max_adv_steps) {
  2185. LA_steps++;
  2186. LA_current_adv_steps++;
  2187. interval = LA_isr_rate;
  2188. }
  2189. else
  2190. interval = LA_isr_rate = LA_ADV_NEVER;
  2191. }
  2192. else
  2193. interval = LA_ADV_NEVER;
  2194. if (!LA_steps) return interval; // Leave pins alone if there are no steps!
  2195. DIR_WAIT_BEFORE();
  2196. #if ENABLED(MIXING_EXTRUDER)
  2197. // We don't know which steppers will be stepped because LA loop follows,
  2198. // with potentially multiple steps. Set all.
  2199. if (LA_steps > 0) {
  2200. MIXER_STEPPER_LOOP(j) NORM_E_DIR(j);
  2201. count_direction.e = 1;
  2202. }
  2203. else if (LA_steps < 0) {
  2204. MIXER_STEPPER_LOOP(j) REV_E_DIR(j);
  2205. count_direction.e = -1;
  2206. }
  2207. #else
  2208. if (LA_steps > 0) {
  2209. NORM_E_DIR(stepper_extruder);
  2210. count_direction.e = 1;
  2211. }
  2212. else if (LA_steps < 0) {
  2213. REV_E_DIR(stepper_extruder);
  2214. count_direction.e = -1;
  2215. }
  2216. #endif
  2217. DIR_WAIT_AFTER();
  2218. //const hal_timer_t added_step_ticks = hal_timer_t(ADDED_STEP_TICKS);
  2219. // Step E stepper if we have steps
  2220. #if ISR_MULTI_STEPS
  2221. bool firstStep = true;
  2222. USING_TIMED_PULSE();
  2223. #endif
  2224. while (LA_steps) {
  2225. #if ISR_MULTI_STEPS
  2226. if (firstStep)
  2227. firstStep = false;
  2228. else
  2229. AWAIT_LOW_PULSE();
  2230. #endif
  2231. count_position.e += count_direction.e;
  2232. // Set the STEP pulse ON
  2233. #if ENABLED(MIXING_EXTRUDER)
  2234. E_STEP_WRITE(mixer.get_next_stepper(), !INVERT_E_STEP_PIN);
  2235. #else
  2236. E_STEP_WRITE(stepper_extruder, !INVERT_E_STEP_PIN);
  2237. #endif
  2238. // Enforce a minimum duration for STEP pulse ON
  2239. #if ISR_PULSE_CONTROL
  2240. START_HIGH_PULSE();
  2241. #endif
  2242. LA_steps < 0 ? ++LA_steps : --LA_steps;
  2243. #if ISR_PULSE_CONTROL
  2244. AWAIT_HIGH_PULSE();
  2245. #endif
  2246. // Set the STEP pulse OFF
  2247. #if ENABLED(MIXING_EXTRUDER)
  2248. E_STEP_WRITE(mixer.get_stepper(), INVERT_E_STEP_PIN);
  2249. #else
  2250. E_STEP_WRITE(stepper_extruder, INVERT_E_STEP_PIN);
  2251. #endif
  2252. // For minimum pulse time wait before looping
  2253. // Just wait for the requested pulse duration
  2254. #if ISR_PULSE_CONTROL
  2255. if (LA_steps) START_LOW_PULSE();
  2256. #endif
  2257. } // LA_steps
  2258. return interval;
  2259. }
  2260. #endif // LIN_ADVANCE
  2261. #if ENABLED(INTEGRATED_BABYSTEPPING)
  2262. // Timer interrupt for baby-stepping
  2263. uint32_t Stepper::babystepping_isr() {
  2264. babystep.task();
  2265. return babystep.has_steps() ? BABYSTEP_TICKS : BABYSTEP_NEVER;
  2266. }
  2267. #endif
  2268. // Check if the given block is busy or not - Must not be called from ISR contexts
  2269. // The current_block could change in the middle of the read by an Stepper ISR, so
  2270. // we must explicitly prevent that!
  2271. bool Stepper::is_block_busy(const block_t * const block) {
  2272. #ifdef __AVR__
  2273. // A SW memory barrier, to ensure GCC does not overoptimize loops
  2274. #define sw_barrier() asm volatile("": : :"memory");
  2275. // Keep reading until 2 consecutive reads return the same value,
  2276. // meaning there was no update in-between caused by an interrupt.
  2277. // This works because stepper ISRs happen at a slower rate than
  2278. // successive reads of a variable, so 2 consecutive reads with
  2279. // the same value means no interrupt updated it.
  2280. block_t *vold, *vnew = current_block;
  2281. sw_barrier();
  2282. do {
  2283. vold = vnew;
  2284. vnew = current_block;
  2285. sw_barrier();
  2286. } while (vold != vnew);
  2287. #else
  2288. block_t *vnew = current_block;
  2289. #endif
  2290. // Return if the block is busy or not
  2291. return block == vnew;
  2292. }
  2293. void Stepper::init() {
  2294. #if MB(ALLIGATOR)
  2295. const float motor_current[] = MOTOR_CURRENT;
  2296. unsigned int digipot_motor = 0;
  2297. LOOP_L_N(i, 3 + EXTRUDERS) {
  2298. digipot_motor = 255 * (motor_current[i] / 2.5);
  2299. dac084s085::setValue(i, digipot_motor);
  2300. }
  2301. #endif
  2302. // Init Microstepping Pins
  2303. TERN_(HAS_MICROSTEPS, microstep_init());
  2304. // Init Dir Pins
  2305. TERN_(HAS_X_DIR, X_DIR_INIT());
  2306. TERN_(HAS_X2_DIR, X2_DIR_INIT());
  2307. #if HAS_Y_DIR
  2308. Y_DIR_INIT();
  2309. #if BOTH(Y_DUAL_STEPPER_DRIVERS, HAS_Y2_DIR)
  2310. Y2_DIR_INIT();
  2311. #endif
  2312. #endif
  2313. #if HAS_Z_DIR
  2314. Z_DIR_INIT();
  2315. #if NUM_Z_STEPPER_DRIVERS >= 2 && HAS_Z2_DIR
  2316. Z2_DIR_INIT();
  2317. #endif
  2318. #if NUM_Z_STEPPER_DRIVERS >= 3 && HAS_Z3_DIR
  2319. Z3_DIR_INIT();
  2320. #endif
  2321. #if NUM_Z_STEPPER_DRIVERS >= 4 && HAS_Z4_DIR
  2322. Z4_DIR_INIT();
  2323. #endif
  2324. #endif
  2325. #if HAS_I_DIR
  2326. I_DIR_INIT();
  2327. #endif
  2328. #if HAS_J_DIR
  2329. J_DIR_INIT();
  2330. #endif
  2331. #if HAS_K_DIR
  2332. K_DIR_INIT();
  2333. #endif
  2334. #if HAS_U_DIR
  2335. U_DIR_INIT();
  2336. #endif
  2337. #if HAS_V_DIR
  2338. V_DIR_INIT();
  2339. #endif
  2340. #if HAS_W_DIR
  2341. W_DIR_INIT();
  2342. #endif
  2343. #if HAS_E0_DIR
  2344. E0_DIR_INIT();
  2345. #endif
  2346. #if HAS_E1_DIR
  2347. E1_DIR_INIT();
  2348. #endif
  2349. #if HAS_E2_DIR
  2350. E2_DIR_INIT();
  2351. #endif
  2352. #if HAS_E3_DIR
  2353. E3_DIR_INIT();
  2354. #endif
  2355. #if HAS_E4_DIR
  2356. E4_DIR_INIT();
  2357. #endif
  2358. #if HAS_E5_DIR
  2359. E5_DIR_INIT();
  2360. #endif
  2361. #if HAS_E6_DIR
  2362. E6_DIR_INIT();
  2363. #endif
  2364. #if HAS_E7_DIR
  2365. E7_DIR_INIT();
  2366. #endif
  2367. // Init Enable Pins - steppers default to disabled.
  2368. #if HAS_X_ENABLE
  2369. X_ENABLE_INIT();
  2370. if (!X_ENABLE_ON) X_ENABLE_WRITE(HIGH);
  2371. #if BOTH(HAS_X2_STEPPER, HAS_X2_ENABLE)
  2372. X2_ENABLE_INIT();
  2373. if (!X_ENABLE_ON) X2_ENABLE_WRITE(HIGH);
  2374. #endif
  2375. #endif
  2376. #if HAS_Y_ENABLE
  2377. Y_ENABLE_INIT();
  2378. if (!Y_ENABLE_ON) Y_ENABLE_WRITE(HIGH);
  2379. #if BOTH(Y_DUAL_STEPPER_DRIVERS, HAS_Y2_ENABLE)
  2380. Y2_ENABLE_INIT();
  2381. if (!Y_ENABLE_ON) Y2_ENABLE_WRITE(HIGH);
  2382. #endif
  2383. #endif
  2384. #if HAS_Z_ENABLE
  2385. Z_ENABLE_INIT();
  2386. if (!Z_ENABLE_ON) Z_ENABLE_WRITE(HIGH);
  2387. #if NUM_Z_STEPPER_DRIVERS >= 2 && HAS_Z2_ENABLE
  2388. Z2_ENABLE_INIT();
  2389. if (!Z_ENABLE_ON) Z2_ENABLE_WRITE(HIGH);
  2390. #endif
  2391. #if NUM_Z_STEPPER_DRIVERS >= 3 && HAS_Z3_ENABLE
  2392. Z3_ENABLE_INIT();
  2393. if (!Z_ENABLE_ON) Z3_ENABLE_WRITE(HIGH);
  2394. #endif
  2395. #if NUM_Z_STEPPER_DRIVERS >= 4 && HAS_Z4_ENABLE
  2396. Z4_ENABLE_INIT();
  2397. if (!Z_ENABLE_ON) Z4_ENABLE_WRITE(HIGH);
  2398. #endif
  2399. #endif
  2400. #if HAS_I_ENABLE
  2401. I_ENABLE_INIT();
  2402. if (!I_ENABLE_ON) I_ENABLE_WRITE(HIGH);
  2403. #endif
  2404. #if HAS_J_ENABLE
  2405. J_ENABLE_INIT();
  2406. if (!J_ENABLE_ON) J_ENABLE_WRITE(HIGH);
  2407. #endif
  2408. #if HAS_K_ENABLE
  2409. K_ENABLE_INIT();
  2410. if (!K_ENABLE_ON) K_ENABLE_WRITE(HIGH);
  2411. #endif
  2412. #if HAS_U_ENABLE
  2413. U_ENABLE_INIT();
  2414. if (!U_ENABLE_ON) U_ENABLE_WRITE(HIGH);
  2415. #endif
  2416. #if HAS_V_ENABLE
  2417. V_ENABLE_INIT();
  2418. if (!V_ENABLE_ON) V_ENABLE_WRITE(HIGH);
  2419. #endif
  2420. #if HAS_W_ENABLE
  2421. W_ENABLE_INIT();
  2422. if (!W_ENABLE_ON) W_ENABLE_WRITE(HIGH);
  2423. #endif
  2424. #if HAS_E0_ENABLE
  2425. E0_ENABLE_INIT();
  2426. if (!E_ENABLE_ON) E0_ENABLE_WRITE(HIGH);
  2427. #endif
  2428. #if HAS_E1_ENABLE
  2429. E1_ENABLE_INIT();
  2430. if (!E_ENABLE_ON) E1_ENABLE_WRITE(HIGH);
  2431. #endif
  2432. #if HAS_E2_ENABLE
  2433. E2_ENABLE_INIT();
  2434. if (!E_ENABLE_ON) E2_ENABLE_WRITE(HIGH);
  2435. #endif
  2436. #if HAS_E3_ENABLE
  2437. E3_ENABLE_INIT();
  2438. if (!E_ENABLE_ON) E3_ENABLE_WRITE(HIGH);
  2439. #endif
  2440. #if HAS_E4_ENABLE
  2441. E4_ENABLE_INIT();
  2442. if (!E_ENABLE_ON) E4_ENABLE_WRITE(HIGH);
  2443. #endif
  2444. #if HAS_E5_ENABLE
  2445. E5_ENABLE_INIT();
  2446. if (!E_ENABLE_ON) E5_ENABLE_WRITE(HIGH);
  2447. #endif
  2448. #if HAS_E6_ENABLE
  2449. E6_ENABLE_INIT();
  2450. if (!E_ENABLE_ON) E6_ENABLE_WRITE(HIGH);
  2451. #endif
  2452. #if HAS_E7_ENABLE
  2453. E7_ENABLE_INIT();
  2454. if (!E_ENABLE_ON) E7_ENABLE_WRITE(HIGH);
  2455. #endif
  2456. #define _STEP_INIT(AXIS) AXIS ##_STEP_INIT()
  2457. #define _WRITE_STEP(AXIS, HIGHLOW) AXIS ##_STEP_WRITE(HIGHLOW)
  2458. #define _DISABLE_AXIS(AXIS) DISABLE_AXIS_## AXIS()
  2459. #define AXIS_INIT(AXIS, PIN) \
  2460. _STEP_INIT(AXIS); \
  2461. _WRITE_STEP(AXIS, _INVERT_STEP_PIN(PIN)); \
  2462. _DISABLE_AXIS(AXIS)
  2463. #define E_AXIS_INIT(NUM) AXIS_INIT(E## NUM, E)
  2464. // Init Step Pins
  2465. #if HAS_X_STEP
  2466. #if EITHER(X_DUAL_STEPPER_DRIVERS, DUAL_X_CARRIAGE)
  2467. X2_STEP_INIT();
  2468. X2_STEP_WRITE(INVERT_X_STEP_PIN);
  2469. #endif
  2470. AXIS_INIT(X, X);
  2471. #endif
  2472. #if HAS_Y_STEP
  2473. #if ENABLED(Y_DUAL_STEPPER_DRIVERS)
  2474. Y2_STEP_INIT();
  2475. Y2_STEP_WRITE(INVERT_Y_STEP_PIN);
  2476. #endif
  2477. AXIS_INIT(Y, Y);
  2478. #endif
  2479. #if HAS_Z_STEP
  2480. #if NUM_Z_STEPPER_DRIVERS >= 2
  2481. Z2_STEP_INIT();
  2482. Z2_STEP_WRITE(INVERT_Z_STEP_PIN);
  2483. #endif
  2484. #if NUM_Z_STEPPER_DRIVERS >= 3
  2485. Z3_STEP_INIT();
  2486. Z3_STEP_WRITE(INVERT_Z_STEP_PIN);
  2487. #endif
  2488. #if NUM_Z_STEPPER_DRIVERS >= 4
  2489. Z4_STEP_INIT();
  2490. Z4_STEP_WRITE(INVERT_Z_STEP_PIN);
  2491. #endif
  2492. AXIS_INIT(Z, Z);
  2493. #endif
  2494. #if HAS_I_STEP
  2495. AXIS_INIT(I, I);
  2496. #endif
  2497. #if HAS_J_STEP
  2498. AXIS_INIT(J, J);
  2499. #endif
  2500. #if HAS_K_STEP
  2501. AXIS_INIT(K, K);
  2502. #endif
  2503. #if HAS_U_STEP
  2504. AXIS_INIT(U, U);
  2505. #endif
  2506. #if HAS_V_STEP
  2507. AXIS_INIT(V, V);
  2508. #endif
  2509. #if HAS_W_STEP
  2510. AXIS_INIT(W, W);
  2511. #endif
  2512. #if E_STEPPERS && HAS_E0_STEP
  2513. E_AXIS_INIT(0);
  2514. #endif
  2515. #if (E_STEPPERS > 1 || ENABLED(E_DUAL_STEPPER_DRIVERS)) && HAS_E1_STEP
  2516. E_AXIS_INIT(1);
  2517. #endif
  2518. #if E_STEPPERS > 2 && HAS_E2_STEP
  2519. E_AXIS_INIT(2);
  2520. #endif
  2521. #if E_STEPPERS > 3 && HAS_E3_STEP
  2522. E_AXIS_INIT(3);
  2523. #endif
  2524. #if E_STEPPERS > 4 && HAS_E4_STEP
  2525. E_AXIS_INIT(4);
  2526. #endif
  2527. #if E_STEPPERS > 5 && HAS_E5_STEP
  2528. E_AXIS_INIT(5);
  2529. #endif
  2530. #if E_STEPPERS > 6 && HAS_E6_STEP
  2531. E_AXIS_INIT(6);
  2532. #endif
  2533. #if E_STEPPERS > 7 && HAS_E7_STEP
  2534. E_AXIS_INIT(7);
  2535. #endif
  2536. #if DISABLED(I2S_STEPPER_STREAM)
  2537. HAL_timer_start(MF_TIMER_STEP, 122); // Init Stepper ISR to 122 Hz for quick starting
  2538. wake_up();
  2539. sei();
  2540. #endif
  2541. // Init direction bits for first moves
  2542. set_directions(0
  2543. NUM_AXIS_GANG(
  2544. | TERN0(INVERT_X_DIR, _BV(X_AXIS)),
  2545. | TERN0(INVERT_Y_DIR, _BV(Y_AXIS)),
  2546. | TERN0(INVERT_Z_DIR, _BV(Z_AXIS)),
  2547. | TERN0(INVERT_I_DIR, _BV(I_AXIS)),
  2548. | TERN0(INVERT_J_DIR, _BV(J_AXIS)),
  2549. | TERN0(INVERT_K_DIR, _BV(K_AXIS)),
  2550. | TERN0(INVERT_U_DIR, _BV(U_AXIS)),
  2551. | TERN0(INVERT_V_DIR, _BV(V_AXIS)),
  2552. | TERN0(INVERT_W_DIR, _BV(W_AXIS))
  2553. )
  2554. );
  2555. #if HAS_MOTOR_CURRENT_SPI || HAS_MOTOR_CURRENT_PWM
  2556. initialized = true;
  2557. digipot_init();
  2558. #endif
  2559. }
  2560. /**
  2561. * Set the stepper positions directly in steps
  2562. *
  2563. * The input is based on the typical per-axis XYZE steps.
  2564. * For CORE machines XYZ needs to be translated to ABC.
  2565. *
  2566. * This allows get_axis_position_mm to correctly
  2567. * derive the current XYZE position later on.
  2568. */
  2569. void Stepper::_set_position(const abce_long_t &spos) {
  2570. #if ANY(IS_CORE, MARKFORGED_XY, MARKFORGED_YX)
  2571. #if CORE_IS_XY
  2572. // corexy positioning
  2573. // these equations follow the form of the dA and dB equations on https://www.corexy.com/theory.html
  2574. count_position.set(spos.a + spos.b, CORESIGN(spos.a - spos.b), spos.c);
  2575. #elif CORE_IS_XZ
  2576. // corexz planning
  2577. count_position.set(spos.a + spos.c, spos.b, CORESIGN(spos.a - spos.c));
  2578. #elif CORE_IS_YZ
  2579. // coreyz planning
  2580. count_position.set(spos.a, spos.b + spos.c, CORESIGN(spos.b - spos.c));
  2581. #elif ENABLED(MARKFORGED_XY)
  2582. count_position.set(spos.a - spos.b, spos.b, spos.c);
  2583. #elif ENABLED(MARKFORGED_YX)
  2584. count_position.set(spos.a, spos.b - spos.a, spos.c);
  2585. #endif
  2586. SECONDARY_AXIS_CODE(
  2587. count_position.i = spos.i,
  2588. count_position.j = spos.j,
  2589. count_position.k = spos.k,
  2590. count_position.u = spos.u,
  2591. count_position.v = spos.v,
  2592. count_position.w = spos.w
  2593. );
  2594. TERN_(HAS_EXTRUDERS, count_position.e = spos.e);
  2595. #else
  2596. // default non-h-bot planning
  2597. count_position = spos;
  2598. #endif
  2599. }
  2600. /**
  2601. * Get a stepper's position in steps.
  2602. */
  2603. int32_t Stepper::position(const AxisEnum axis) {
  2604. #ifdef __AVR__
  2605. // Protect the access to the position. Only required for AVR, as
  2606. // any 32bit CPU offers atomic access to 32bit variables
  2607. const bool was_enabled = suspend();
  2608. #endif
  2609. const int32_t v = count_position[axis];
  2610. #ifdef __AVR__
  2611. // Reenable Stepper ISR
  2612. if (was_enabled) wake_up();
  2613. #endif
  2614. return v;
  2615. }
  2616. // Set the current position in steps
  2617. void Stepper::set_position(const xyze_long_t &spos) {
  2618. planner.synchronize();
  2619. const bool was_enabled = suspend();
  2620. _set_position(spos);
  2621. if (was_enabled) wake_up();
  2622. }
  2623. void Stepper::set_axis_position(const AxisEnum a, const int32_t &v) {
  2624. planner.synchronize();
  2625. #ifdef __AVR__
  2626. // Protect the access to the position. Only required for AVR, as
  2627. // any 32bit CPU offers atomic access to 32bit variables
  2628. const bool was_enabled = suspend();
  2629. #endif
  2630. count_position[a] = v;
  2631. #ifdef __AVR__
  2632. // Reenable Stepper ISR
  2633. if (was_enabled) wake_up();
  2634. #endif
  2635. }
  2636. // Signal endstops were triggered - This function can be called from
  2637. // an ISR context (Temperature, Stepper or limits ISR), so we must
  2638. // be very careful here. If the interrupt being preempted was the
  2639. // Stepper ISR (this CAN happen with the endstop limits ISR) then
  2640. // when the stepper ISR resumes, we must be very sure that the movement
  2641. // is properly canceled
  2642. void Stepper::endstop_triggered(const AxisEnum axis) {
  2643. const bool was_enabled = suspend();
  2644. endstops_trigsteps[axis] = (
  2645. #if IS_CORE
  2646. (axis == CORE_AXIS_2
  2647. ? CORESIGN(count_position[CORE_AXIS_1] - count_position[CORE_AXIS_2])
  2648. : count_position[CORE_AXIS_1] + count_position[CORE_AXIS_2]
  2649. ) * double(0.5)
  2650. #elif ENABLED(MARKFORGED_XY)
  2651. axis == CORE_AXIS_1
  2652. ? count_position[CORE_AXIS_1] - count_position[CORE_AXIS_2]
  2653. : count_position[CORE_AXIS_2]
  2654. #elif ENABLED(MARKFORGED_YX)
  2655. axis == CORE_AXIS_1
  2656. ? count_position[CORE_AXIS_1]
  2657. : count_position[CORE_AXIS_2] - count_position[CORE_AXIS_1]
  2658. #else // !IS_CORE
  2659. count_position[axis]
  2660. #endif
  2661. );
  2662. // Discard the rest of the move if there is a current block
  2663. quick_stop();
  2664. if (was_enabled) wake_up();
  2665. }
  2666. int32_t Stepper::triggered_position(const AxisEnum axis) {
  2667. #ifdef __AVR__
  2668. // Protect the access to the position. Only required for AVR, as
  2669. // any 32bit CPU offers atomic access to 32bit variables
  2670. const bool was_enabled = suspend();
  2671. #endif
  2672. const int32_t v = endstops_trigsteps[axis];
  2673. #ifdef __AVR__
  2674. // Reenable Stepper ISR
  2675. if (was_enabled) wake_up();
  2676. #endif
  2677. return v;
  2678. }
  2679. #if ANY(CORE_IS_XY, CORE_IS_XZ, MARKFORGED_XY, MARKFORGED_YX, IS_SCARA, DELTA)
  2680. #define SAYS_A 1
  2681. #endif
  2682. #if ANY(CORE_IS_XY, CORE_IS_YZ, MARKFORGED_XY, MARKFORGED_YX, IS_SCARA, DELTA)
  2683. #define SAYS_B 1
  2684. #endif
  2685. #if ANY(CORE_IS_XZ, CORE_IS_YZ, DELTA)
  2686. #define SAYS_C 1
  2687. #endif
  2688. void Stepper::report_a_position(const xyz_long_t &pos) {
  2689. SERIAL_ECHOLNPGM_P(
  2690. LIST_N(DOUBLE(NUM_AXES),
  2691. TERN(SAYS_A, PSTR(STR_COUNT_A), PSTR(STR_COUNT_X)), pos.x,
  2692. TERN(SAYS_B, PSTR("B:"), SP_Y_LBL), pos.y,
  2693. TERN(SAYS_C, PSTR("C:"), SP_Z_LBL), pos.z,
  2694. SP_I_LBL, pos.i,
  2695. SP_J_LBL, pos.j,
  2696. SP_K_LBL, pos.k,
  2697. SP_U_LBL, pos.u,
  2698. SP_V_LBL, pos.v,
  2699. SP_W_LBL, pos.w
  2700. )
  2701. );
  2702. }
  2703. void Stepper::report_positions() {
  2704. #ifdef __AVR__
  2705. // Protect the access to the position.
  2706. const bool was_enabled = suspend();
  2707. #endif
  2708. const xyz_long_t pos = count_position;
  2709. #ifdef __AVR__
  2710. if (was_enabled) wake_up();
  2711. #endif
  2712. report_a_position(pos);
  2713. }
  2714. #if ENABLED(BABYSTEPPING)
  2715. #define _ENABLE_AXIS(A) enable_axis(_AXIS(A))
  2716. #define _READ_DIR(AXIS) AXIS ##_DIR_READ()
  2717. #define _INVERT_DIR(AXIS) ENABLED(INVERT_## AXIS ##_DIR)
  2718. #define _APPLY_DIR(AXIS, INVERT) AXIS ##_APPLY_DIR(INVERT, true)
  2719. #if MINIMUM_STEPPER_PULSE
  2720. #define STEP_PULSE_CYCLES ((MINIMUM_STEPPER_PULSE) * CYCLES_PER_MICROSECOND)
  2721. #else
  2722. #define STEP_PULSE_CYCLES 0
  2723. #endif
  2724. #if ENABLED(DELTA)
  2725. #define CYCLES_EATEN_BABYSTEP (2 * 15)
  2726. #else
  2727. #define CYCLES_EATEN_BABYSTEP 0
  2728. #endif
  2729. #if CYCLES_EATEN_BABYSTEP < STEP_PULSE_CYCLES
  2730. #define EXTRA_CYCLES_BABYSTEP (STEP_PULSE_CYCLES - (CYCLES_EATEN_BABYSTEP))
  2731. #else
  2732. #define EXTRA_CYCLES_BABYSTEP 0
  2733. #endif
  2734. #if EXTRA_CYCLES_BABYSTEP > 20
  2735. #define _SAVE_START() const hal_timer_t pulse_start = HAL_timer_get_count(MF_TIMER_PULSE)
  2736. #define _PULSE_WAIT() while (EXTRA_CYCLES_BABYSTEP > (uint32_t)(HAL_timer_get_count(MF_TIMER_PULSE) - pulse_start) * (PULSE_TIMER_PRESCALE)) { /* nada */ }
  2737. #else
  2738. #define _SAVE_START() NOOP
  2739. #if EXTRA_CYCLES_BABYSTEP > 0
  2740. #define _PULSE_WAIT() DELAY_NS(EXTRA_CYCLES_BABYSTEP * NANOSECONDS_PER_CYCLE)
  2741. #elif ENABLED(DELTA)
  2742. #define _PULSE_WAIT() DELAY_US(2);
  2743. #elif STEP_PULSE_CYCLES > 0
  2744. #define _PULSE_WAIT() NOOP
  2745. #else
  2746. #define _PULSE_WAIT() DELAY_US(4);
  2747. #endif
  2748. #endif
  2749. #if ENABLED(BABYSTEPPING_EXTRA_DIR_WAIT)
  2750. #define EXTRA_DIR_WAIT_BEFORE DIR_WAIT_BEFORE
  2751. #define EXTRA_DIR_WAIT_AFTER DIR_WAIT_AFTER
  2752. #else
  2753. #define EXTRA_DIR_WAIT_BEFORE()
  2754. #define EXTRA_DIR_WAIT_AFTER()
  2755. #endif
  2756. #if DISABLED(DELTA)
  2757. #define BABYSTEP_AXIS(AXIS, INV, DIR) do{ \
  2758. const uint8_t old_dir = _READ_DIR(AXIS); \
  2759. _ENABLE_AXIS(AXIS); \
  2760. DIR_WAIT_BEFORE(); \
  2761. _APPLY_DIR(AXIS, _INVERT_DIR(AXIS)^DIR^INV); \
  2762. DIR_WAIT_AFTER(); \
  2763. _SAVE_START(); \
  2764. _APPLY_STEP(AXIS, !_INVERT_STEP_PIN(AXIS), true); \
  2765. _PULSE_WAIT(); \
  2766. _APPLY_STEP(AXIS, _INVERT_STEP_PIN(AXIS), true); \
  2767. EXTRA_DIR_WAIT_BEFORE(); \
  2768. _APPLY_DIR(AXIS, old_dir); \
  2769. EXTRA_DIR_WAIT_AFTER(); \
  2770. }while(0)
  2771. #endif
  2772. #if IS_CORE
  2773. #define BABYSTEP_CORE(A, B, INV, DIR, ALT) do{ \
  2774. const xy_byte_t old_dir = { _READ_DIR(A), _READ_DIR(B) }; \
  2775. _ENABLE_AXIS(A); _ENABLE_AXIS(B); \
  2776. DIR_WAIT_BEFORE(); \
  2777. _APPLY_DIR(A, _INVERT_DIR(A)^DIR^INV); \
  2778. _APPLY_DIR(B, _INVERT_DIR(B)^DIR^INV^ALT); \
  2779. DIR_WAIT_AFTER(); \
  2780. _SAVE_START(); \
  2781. _APPLY_STEP(A, !_INVERT_STEP_PIN(A), true); \
  2782. _APPLY_STEP(B, !_INVERT_STEP_PIN(B), true); \
  2783. _PULSE_WAIT(); \
  2784. _APPLY_STEP(A, _INVERT_STEP_PIN(A), true); \
  2785. _APPLY_STEP(B, _INVERT_STEP_PIN(B), true); \
  2786. EXTRA_DIR_WAIT_BEFORE(); \
  2787. _APPLY_DIR(A, old_dir.a); _APPLY_DIR(B, old_dir.b); \
  2788. EXTRA_DIR_WAIT_AFTER(); \
  2789. }while(0)
  2790. #endif
  2791. // MUST ONLY BE CALLED BY AN ISR,
  2792. // No other ISR should ever interrupt this!
  2793. void Stepper::do_babystep(const AxisEnum axis, const bool direction) {
  2794. IF_DISABLED(INTEGRATED_BABYSTEPPING, cli());
  2795. switch (axis) {
  2796. #if ENABLED(BABYSTEP_XY)
  2797. case X_AXIS:
  2798. #if CORE_IS_XY
  2799. BABYSTEP_CORE(X, Y, 0, direction, 0);
  2800. #elif CORE_IS_XZ
  2801. BABYSTEP_CORE(X, Z, 0, direction, 0);
  2802. #else
  2803. BABYSTEP_AXIS(X, 0, direction);
  2804. #endif
  2805. break;
  2806. case Y_AXIS:
  2807. #if CORE_IS_XY
  2808. BABYSTEP_CORE(X, Y, 1, !direction, (CORESIGN(1)>0));
  2809. #elif CORE_IS_YZ
  2810. BABYSTEP_CORE(Y, Z, 0, direction, (CORESIGN(1)<0));
  2811. #else
  2812. BABYSTEP_AXIS(Y, 0, direction);
  2813. #endif
  2814. break;
  2815. #endif
  2816. case Z_AXIS: {
  2817. #if CORE_IS_XZ
  2818. BABYSTEP_CORE(X, Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0));
  2819. #elif CORE_IS_YZ
  2820. BABYSTEP_CORE(Y, Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0));
  2821. #elif DISABLED(DELTA)
  2822. BABYSTEP_AXIS(Z, BABYSTEP_INVERT_Z, direction);
  2823. #else // DELTA
  2824. const bool z_direction = direction ^ BABYSTEP_INVERT_Z;
  2825. NUM_AXIS_CODE(
  2826. enable_axis(X_AXIS), enable_axis(Y_AXIS), enable_axis(Z_AXIS),
  2827. enable_axis(I_AXIS), enable_axis(J_AXIS), enable_axis(K_AXIS),
  2828. enable_axis(U_AXIS), enable_axis(V_AXIS), enable_axis(W_AXIS)
  2829. );
  2830. DIR_WAIT_BEFORE();
  2831. const xyz_byte_t old_dir = NUM_AXIS_ARRAY(
  2832. X_DIR_READ(), Y_DIR_READ(), Z_DIR_READ(),
  2833. I_DIR_READ(), J_DIR_READ(), K_DIR_READ(),
  2834. U_DIR_READ(), V_DIR_READ(), W_DIR_READ()
  2835. );
  2836. X_DIR_WRITE(ENABLED(INVERT_X_DIR) ^ z_direction);
  2837. #ifdef Y_DIR_WRITE
  2838. Y_DIR_WRITE(ENABLED(INVERT_Y_DIR) ^ z_direction);
  2839. #endif
  2840. #ifdef Z_DIR_WRITE
  2841. Z_DIR_WRITE(ENABLED(INVERT_Z_DIR) ^ z_direction);
  2842. #endif
  2843. #ifdef I_DIR_WRITE
  2844. I_DIR_WRITE(ENABLED(INVERT_I_DIR) ^ z_direction);
  2845. #endif
  2846. #ifdef J_DIR_WRITE
  2847. J_DIR_WRITE(ENABLED(INVERT_J_DIR) ^ z_direction);
  2848. #endif
  2849. #ifdef K_DIR_WRITE
  2850. K_DIR_WRITE(ENABLED(INVERT_K_DIR) ^ z_direction);
  2851. #endif
  2852. #ifdef U_DIR_WRITE
  2853. U_DIR_WRITE(ENABLED(INVERT_U_DIR) ^ z_direction);
  2854. #endif
  2855. #ifdef V_DIR_WRITE
  2856. V_DIR_WRITE(ENABLED(INVERT_V_DIR) ^ z_direction);
  2857. #endif
  2858. #ifdef W_DIR_WRITE
  2859. W_DIR_WRITE(ENABLED(INVERT_W_DIR) ^ z_direction);
  2860. #endif
  2861. DIR_WAIT_AFTER();
  2862. _SAVE_START();
  2863. X_STEP_WRITE(!INVERT_X_STEP_PIN);
  2864. #ifdef Y_STEP_WRITE
  2865. Y_STEP_WRITE(!INVERT_Y_STEP_PIN);
  2866. #endif
  2867. #ifdef Z_STEP_WRITE
  2868. Z_STEP_WRITE(!INVERT_Z_STEP_PIN);
  2869. #endif
  2870. #ifdef I_STEP_WRITE
  2871. I_STEP_WRITE(!INVERT_I_STEP_PIN);
  2872. #endif
  2873. #ifdef J_STEP_WRITE
  2874. J_STEP_WRITE(!INVERT_J_STEP_PIN);
  2875. #endif
  2876. #ifdef K_STEP_WRITE
  2877. K_STEP_WRITE(!INVERT_K_STEP_PIN);
  2878. #endif
  2879. #ifdef U_STEP_WRITE
  2880. U_STEP_WRITE(!INVERT_U_STEP_PIN);
  2881. #endif
  2882. #ifdef V_STEP_WRITE
  2883. V_STEP_WRITE(!INVERT_V_STEP_PIN);
  2884. #endif
  2885. #ifdef W_STEP_WRITE
  2886. W_STEP_WRITE(!INVERT_W_STEP_PIN);
  2887. #endif
  2888. _PULSE_WAIT();
  2889. X_STEP_WRITE(INVERT_X_STEP_PIN);
  2890. #ifdef Y_STEP_WRITE
  2891. Y_STEP_WRITE(INVERT_Y_STEP_PIN);
  2892. #endif
  2893. #ifdef Z_STEP_WRITE
  2894. Z_STEP_WRITE(INVERT_Z_STEP_PIN);
  2895. #endif
  2896. #ifdef I_STEP_WRITE
  2897. I_STEP_WRITE(INVERT_I_STEP_PIN);
  2898. #endif
  2899. #ifdef J_STEP_WRITE
  2900. J_STEP_WRITE(INVERT_J_STEP_PIN);
  2901. #endif
  2902. #ifdef K_STEP_WRITE
  2903. K_STEP_WRITE(INVERT_K_STEP_PIN);
  2904. #endif
  2905. #ifdef U_STEP_WRITE
  2906. U_STEP_WRITE(INVERT_U_STEP_PIN);
  2907. #endif
  2908. #ifdef V_STEP_WRITE
  2909. V_STEP_WRITE(INVERT_V_STEP_PIN);
  2910. #endif
  2911. #ifdef W_STEP_WRITE
  2912. W_STEP_WRITE(INVERT_W_STEP_PIN);
  2913. #endif
  2914. // Restore direction bits
  2915. EXTRA_DIR_WAIT_BEFORE();
  2916. X_DIR_WRITE(old_dir.x);
  2917. #ifdef Y_DIR_WRITE
  2918. Y_DIR_WRITE(old_dir.y);
  2919. #endif
  2920. #ifdef Z_DIR_WRITE
  2921. Z_DIR_WRITE(old_dir.z);
  2922. #endif
  2923. #ifdef I_DIR_WRITE
  2924. I_DIR_WRITE(old_dir.i);
  2925. #endif
  2926. #ifdef J_DIR_WRITE
  2927. J_DIR_WRITE(old_dir.j);
  2928. #endif
  2929. #ifdef K_DIR_WRITE
  2930. K_DIR_WRITE(old_dir.k);
  2931. #endif
  2932. #ifdef U_DIR_WRITE
  2933. U_DIR_WRITE(old_dir.u);
  2934. #endif
  2935. #ifdef V_DIR_WRITE
  2936. V_DIR_WRITE(old_dir.v);
  2937. #endif
  2938. #ifdef W_DIR_WRITE
  2939. W_DIR_WRITE(old_dir.w);
  2940. #endif
  2941. EXTRA_DIR_WAIT_AFTER();
  2942. #endif
  2943. } break;
  2944. #if HAS_I_AXIS
  2945. case I_AXIS: BABYSTEP_AXIS(I, 0, direction); break;
  2946. #endif
  2947. #if HAS_J_AXIS
  2948. case J_AXIS: BABYSTEP_AXIS(J, 0, direction); break;
  2949. #endif
  2950. #if HAS_K_AXIS
  2951. case K_AXIS: BABYSTEP_AXIS(K, 0, direction); break;
  2952. #endif
  2953. #if HAS_U_AXIS
  2954. case U_AXIS: BABYSTEP_AXIS(U, 0, direction); break;
  2955. #endif
  2956. #if HAS_V_AXIS
  2957. case V_AXIS: BABYSTEP_AXIS(V, 0, direction); break;
  2958. #endif
  2959. #if HAS_W_AXIS
  2960. case W_AXIS: BABYSTEP_AXIS(W, 0, direction); break;
  2961. #endif
  2962. default: break;
  2963. }
  2964. IF_DISABLED(INTEGRATED_BABYSTEPPING, sei());
  2965. }
  2966. #endif // BABYSTEPPING
  2967. /**
  2968. * Software-controlled Stepper Motor Current
  2969. */
  2970. #if HAS_MOTOR_CURRENT_SPI
  2971. // From Arduino DigitalPotControl example
  2972. void Stepper::set_digipot_value_spi(const int16_t address, const int16_t value) {
  2973. WRITE(DIGIPOTSS_PIN, LOW); // Take the SS pin low to select the chip
  2974. SPI.transfer(address); // Send the address and value via SPI
  2975. SPI.transfer(value);
  2976. WRITE(DIGIPOTSS_PIN, HIGH); // Take the SS pin high to de-select the chip
  2977. //delay(10);
  2978. }
  2979. #endif // HAS_MOTOR_CURRENT_SPI
  2980. #if HAS_MOTOR_CURRENT_PWM
  2981. void Stepper::refresh_motor_power() {
  2982. if (!initialized) return;
  2983. LOOP_L_N(i, COUNT(motor_current_setting)) {
  2984. switch (i) {
  2985. #if ANY_PIN(MOTOR_CURRENT_PWM_XY, MOTOR_CURRENT_PWM_X, MOTOR_CURRENT_PWM_Y, MOTOR_CURRENT_PWM_I, MOTOR_CURRENT_PWM_J, MOTOR_CURRENT_PWM_K, MOTOR_CURRENT_PWM_U, MOTOR_CURRENT_PWM_V, MOTOR_CURRENT_PWM_W)
  2986. case 0:
  2987. #endif
  2988. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
  2989. case 1:
  2990. #endif
  2991. #if ANY_PIN(MOTOR_CURRENT_PWM_E, MOTOR_CURRENT_PWM_E0, MOTOR_CURRENT_PWM_E1)
  2992. case 2:
  2993. #endif
  2994. set_digipot_current(i, motor_current_setting[i]);
  2995. default: break;
  2996. }
  2997. }
  2998. }
  2999. #endif // HAS_MOTOR_CURRENT_PWM
  3000. #if !MB(PRINTRBOARD_G2)
  3001. #if HAS_MOTOR_CURRENT_SPI || HAS_MOTOR_CURRENT_PWM
  3002. void Stepper::set_digipot_current(const uint8_t driver, const int16_t current) {
  3003. if (WITHIN(driver, 0, MOTOR_CURRENT_COUNT - 1))
  3004. motor_current_setting[driver] = current; // update motor_current_setting
  3005. if (!initialized) return;
  3006. #if HAS_MOTOR_CURRENT_SPI
  3007. //SERIAL_ECHOLNPGM("Digipotss current ", current);
  3008. const uint8_t digipot_ch[] = DIGIPOT_CHANNELS;
  3009. set_digipot_value_spi(digipot_ch[driver], current);
  3010. #elif HAS_MOTOR_CURRENT_PWM
  3011. #define _WRITE_CURRENT_PWM(P) hal.set_pwm_duty(pin_t(MOTOR_CURRENT_PWM_## P ##_PIN), 255L * current / (MOTOR_CURRENT_PWM_RANGE))
  3012. switch (driver) {
  3013. case 0:
  3014. #if PIN_EXISTS(MOTOR_CURRENT_PWM_X)
  3015. _WRITE_CURRENT_PWM(X);
  3016. #endif
  3017. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Y)
  3018. _WRITE_CURRENT_PWM(Y);
  3019. #endif
  3020. #if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
  3021. _WRITE_CURRENT_PWM(XY);
  3022. #endif
  3023. #if PIN_EXISTS(MOTOR_CURRENT_PWM_I)
  3024. _WRITE_CURRENT_PWM(I);
  3025. #endif
  3026. #if PIN_EXISTS(MOTOR_CURRENT_PWM_J)
  3027. _WRITE_CURRENT_PWM(J);
  3028. #endif
  3029. #if PIN_EXISTS(MOTOR_CURRENT_PWM_K)
  3030. _WRITE_CURRENT_PWM(K);
  3031. #endif
  3032. #if PIN_EXISTS(MOTOR_CURRENT_PWM_U)
  3033. _WRITE_CURRENT_PWM(U);
  3034. #endif
  3035. #if PIN_EXISTS(MOTOR_CURRENT_PWM_V)
  3036. _WRITE_CURRENT_PWM(V);
  3037. #endif
  3038. #if PIN_EXISTS(MOTOR_CURRENT_PWM_W)
  3039. _WRITE_CURRENT_PWM(W);
  3040. #endif
  3041. break;
  3042. case 1:
  3043. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
  3044. _WRITE_CURRENT_PWM(Z);
  3045. #endif
  3046. break;
  3047. case 2:
  3048. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
  3049. _WRITE_CURRENT_PWM(E);
  3050. #endif
  3051. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E0)
  3052. _WRITE_CURRENT_PWM(E0);
  3053. #endif
  3054. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E1)
  3055. _WRITE_CURRENT_PWM(E1);
  3056. #endif
  3057. break;
  3058. }
  3059. #endif
  3060. }
  3061. void Stepper::digipot_init() {
  3062. #if HAS_MOTOR_CURRENT_SPI
  3063. SPI.begin();
  3064. SET_OUTPUT(DIGIPOTSS_PIN);
  3065. LOOP_L_N(i, COUNT(motor_current_setting))
  3066. set_digipot_current(i, motor_current_setting[i]);
  3067. #elif HAS_MOTOR_CURRENT_PWM
  3068. #ifdef __SAM3X8E__
  3069. #define _RESET_CURRENT_PWM_FREQ(P) NOOP
  3070. #else
  3071. #define _RESET_CURRENT_PWM_FREQ(P) hal.set_pwm_frequency(pin_t(P), MOTOR_CURRENT_PWM_FREQUENCY)
  3072. #endif
  3073. #define INIT_CURRENT_PWM(P) do{ SET_PWM(MOTOR_CURRENT_PWM_## P ##_PIN); _RESET_CURRENT_PWM_FREQ(MOTOR_CURRENT_PWM_## P ##_PIN); }while(0)
  3074. #if PIN_EXISTS(MOTOR_CURRENT_PWM_X)
  3075. INIT_CURRENT_PWM(X);
  3076. #endif
  3077. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Y)
  3078. INIT_CURRENT_PWM(Y);
  3079. #endif
  3080. #if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
  3081. INIT_CURRENT_PWM(XY);
  3082. #endif
  3083. #if PIN_EXISTS(MOTOR_CURRENT_PWM_I)
  3084. INIT_CURRENT_PWM(I);
  3085. #endif
  3086. #if PIN_EXISTS(MOTOR_CURRENT_PWM_J)
  3087. INIT_CURRENT_PWM(J);
  3088. #endif
  3089. #if PIN_EXISTS(MOTOR_CURRENT_PWM_K)
  3090. INIT_CURRENT_PWM(K);
  3091. #endif
  3092. #if PIN_EXISTS(MOTOR_CURRENT_PWM_U)
  3093. INIT_CURRENT_PWM(U);
  3094. #endif
  3095. #if PIN_EXISTS(MOTOR_CURRENT_PWM_V)
  3096. INIT_CURRENT_PWM(V);
  3097. #endif
  3098. #if PIN_EXISTS(MOTOR_CURRENT_PWM_W)
  3099. INIT_CURRENT_PWM(W);
  3100. #endif
  3101. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
  3102. INIT_CURRENT_PWM(Z);
  3103. #endif
  3104. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
  3105. INIT_CURRENT_PWM(E);
  3106. #endif
  3107. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E0)
  3108. INIT_CURRENT_PWM(E0);
  3109. #endif
  3110. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E1)
  3111. INIT_CURRENT_PWM(E1);
  3112. #endif
  3113. refresh_motor_power();
  3114. #endif
  3115. }
  3116. #endif
  3117. #else // PRINTRBOARD_G2
  3118. #include HAL_PATH(../HAL, fastio/G2_PWM.h)
  3119. #endif
  3120. #if HAS_MICROSTEPS
  3121. /**
  3122. * Software-controlled Microstepping
  3123. */
  3124. void Stepper::microstep_init() {
  3125. #if HAS_X_MS_PINS
  3126. SET_OUTPUT(X_MS1_PIN); SET_OUTPUT(X_MS2_PIN);
  3127. #if PIN_EXISTS(X_MS3)
  3128. SET_OUTPUT(X_MS3_PIN);
  3129. #endif
  3130. #endif
  3131. #if HAS_X2_MS_PINS
  3132. SET_OUTPUT(X2_MS1_PIN); SET_OUTPUT(X2_MS2_PIN);
  3133. #if PIN_EXISTS(X2_MS3)
  3134. SET_OUTPUT(X2_MS3_PIN);
  3135. #endif
  3136. #endif
  3137. #if HAS_Y_MS_PINS
  3138. SET_OUTPUT(Y_MS1_PIN); SET_OUTPUT(Y_MS2_PIN);
  3139. #if PIN_EXISTS(Y_MS3)
  3140. SET_OUTPUT(Y_MS3_PIN);
  3141. #endif
  3142. #endif
  3143. #if HAS_Y2_MS_PINS
  3144. SET_OUTPUT(Y2_MS1_PIN); SET_OUTPUT(Y2_MS2_PIN);
  3145. #if PIN_EXISTS(Y2_MS3)
  3146. SET_OUTPUT(Y2_MS3_PIN);
  3147. #endif
  3148. #endif
  3149. #if HAS_Z_MS_PINS
  3150. SET_OUTPUT(Z_MS1_PIN); SET_OUTPUT(Z_MS2_PIN);
  3151. #if PIN_EXISTS(Z_MS3)
  3152. SET_OUTPUT(Z_MS3_PIN);
  3153. #endif
  3154. #endif
  3155. #if HAS_Z2_MS_PINS
  3156. SET_OUTPUT(Z2_MS1_PIN); SET_OUTPUT(Z2_MS2_PIN);
  3157. #if PIN_EXISTS(Z2_MS3)
  3158. SET_OUTPUT(Z2_MS3_PIN);
  3159. #endif
  3160. #endif
  3161. #if HAS_Z3_MS_PINS
  3162. SET_OUTPUT(Z3_MS1_PIN); SET_OUTPUT(Z3_MS2_PIN);
  3163. #if PIN_EXISTS(Z3_MS3)
  3164. SET_OUTPUT(Z3_MS3_PIN);
  3165. #endif
  3166. #endif
  3167. #if HAS_Z4_MS_PINS
  3168. SET_OUTPUT(Z4_MS1_PIN); SET_OUTPUT(Z4_MS2_PIN);
  3169. #if PIN_EXISTS(Z4_MS3)
  3170. SET_OUTPUT(Z4_MS3_PIN);
  3171. #endif
  3172. #endif
  3173. #if HAS_I_MS_PINS
  3174. SET_OUTPUT(I_MS1_PIN); SET_OUTPUT(I_MS2_PIN);
  3175. #if PIN_EXISTS(I_MS3)
  3176. SET_OUTPUT(I_MS3_PIN);
  3177. #endif
  3178. #endif
  3179. #if HAS_J_MS_PINS
  3180. SET_OUTPUT(J_MS1_PIN); SET_OUTPUT(J_MS2_PIN);
  3181. #if PIN_EXISTS(J_MS3)
  3182. SET_OUTPUT(J_MS3_PIN);
  3183. #endif
  3184. #endif
  3185. #if HAS_K_MS_PINS
  3186. SET_OUTPUT(K_MS1_PIN); SET_OUTPUT(K_MS2_PIN);
  3187. #if PIN_EXISTS(K_MS3)
  3188. SET_OUTPUT(K_MS3_PIN);
  3189. #endif
  3190. #endif
  3191. #if HAS_U_MS_PINS
  3192. SET_OUTPUT(U_MS1_PIN); SET_OUTPUT(U_MS2_PIN);
  3193. #if PIN_EXISTS(U_MS3)
  3194. SET_OUTPUT(U_MS3_PIN);
  3195. #endif
  3196. #endif
  3197. #if HAS_V_MS_PINS
  3198. SET_OUTPUT(V_MS1_PIN); SET_OUTPUT(V_MS2_PIN);
  3199. #if PIN_EXISTS(V_MS3)
  3200. SET_OUTPUT(V_MS3_PIN);
  3201. #endif
  3202. #endif
  3203. #if HAS_W_MS_PINS
  3204. SET_OUTPUT(W_MS1_PIN); SET_OUTPUT(W_MS2_PIN);
  3205. #if PIN_EXISTS(W_MS3)
  3206. SET_OUTPUT(W_MS3_PIN);
  3207. #endif
  3208. #endif
  3209. #if HAS_E0_MS_PINS
  3210. SET_OUTPUT(E0_MS1_PIN); SET_OUTPUT(E0_MS2_PIN);
  3211. #if PIN_EXISTS(E0_MS3)
  3212. SET_OUTPUT(E0_MS3_PIN);
  3213. #endif
  3214. #endif
  3215. #if HAS_E1_MS_PINS
  3216. SET_OUTPUT(E1_MS1_PIN); SET_OUTPUT(E1_MS2_PIN);
  3217. #if PIN_EXISTS(E1_MS3)
  3218. SET_OUTPUT(E1_MS3_PIN);
  3219. #endif
  3220. #endif
  3221. #if HAS_E2_MS_PINS
  3222. SET_OUTPUT(E2_MS1_PIN); SET_OUTPUT(E2_MS2_PIN);
  3223. #if PIN_EXISTS(E2_MS3)
  3224. SET_OUTPUT(E2_MS3_PIN);
  3225. #endif
  3226. #endif
  3227. #if HAS_E3_MS_PINS
  3228. SET_OUTPUT(E3_MS1_PIN); SET_OUTPUT(E3_MS2_PIN);
  3229. #if PIN_EXISTS(E3_MS3)
  3230. SET_OUTPUT(E3_MS3_PIN);
  3231. #endif
  3232. #endif
  3233. #if HAS_E4_MS_PINS
  3234. SET_OUTPUT(E4_MS1_PIN); SET_OUTPUT(E4_MS2_PIN);
  3235. #if PIN_EXISTS(E4_MS3)
  3236. SET_OUTPUT(E4_MS3_PIN);
  3237. #endif
  3238. #endif
  3239. #if HAS_E5_MS_PINS
  3240. SET_OUTPUT(E5_MS1_PIN); SET_OUTPUT(E5_MS2_PIN);
  3241. #if PIN_EXISTS(E5_MS3)
  3242. SET_OUTPUT(E5_MS3_PIN);
  3243. #endif
  3244. #endif
  3245. #if HAS_E6_MS_PINS
  3246. SET_OUTPUT(E6_MS1_PIN); SET_OUTPUT(E6_MS2_PIN);
  3247. #if PIN_EXISTS(E6_MS3)
  3248. SET_OUTPUT(E6_MS3_PIN);
  3249. #endif
  3250. #endif
  3251. #if HAS_E7_MS_PINS
  3252. SET_OUTPUT(E7_MS1_PIN); SET_OUTPUT(E7_MS2_PIN);
  3253. #if PIN_EXISTS(E7_MS3)
  3254. SET_OUTPUT(E7_MS3_PIN);
  3255. #endif
  3256. #endif
  3257. static const uint8_t microstep_modes[] = MICROSTEP_MODES;
  3258. for (uint16_t i = 0; i < COUNT(microstep_modes); i++)
  3259. microstep_mode(i, microstep_modes[i]);
  3260. }
  3261. void Stepper::microstep_ms(const uint8_t driver, const int8_t ms1, const int8_t ms2, const int8_t ms3) {
  3262. if (ms1 >= 0) switch (driver) {
  3263. #if HAS_X_MS_PINS || HAS_X2_MS_PINS
  3264. case X_AXIS:
  3265. #if HAS_X_MS_PINS
  3266. WRITE(X_MS1_PIN, ms1);
  3267. #endif
  3268. #if HAS_X2_MS_PINS
  3269. WRITE(X2_MS1_PIN, ms1);
  3270. #endif
  3271. break;
  3272. #endif
  3273. #if HAS_Y_MS_PINS || HAS_Y2_MS_PINS
  3274. case Y_AXIS:
  3275. #if HAS_Y_MS_PINS
  3276. WRITE(Y_MS1_PIN, ms1);
  3277. #endif
  3278. #if HAS_Y2_MS_PINS
  3279. WRITE(Y2_MS1_PIN, ms1);
  3280. #endif
  3281. break;
  3282. #endif
  3283. #if HAS_SOME_Z_MS_PINS
  3284. case Z_AXIS:
  3285. #if HAS_Z_MS_PINS
  3286. WRITE(Z_MS1_PIN, ms1);
  3287. #endif
  3288. #if HAS_Z2_MS_PINS
  3289. WRITE(Z2_MS1_PIN, ms1);
  3290. #endif
  3291. #if HAS_Z3_MS_PINS
  3292. WRITE(Z3_MS1_PIN, ms1);
  3293. #endif
  3294. #if HAS_Z4_MS_PINS
  3295. WRITE(Z4_MS1_PIN, ms1);
  3296. #endif
  3297. break;
  3298. #endif
  3299. #if HAS_I_MS_PINS
  3300. case I_AXIS: WRITE(I_MS1_PIN, ms1); break
  3301. #endif
  3302. #if HAS_J_MS_PINS
  3303. case J_AXIS: WRITE(J_MS1_PIN, ms1); break
  3304. #endif
  3305. #if HAS_K_MS_PINS
  3306. case K_AXIS: WRITE(K_MS1_PIN, ms1); break
  3307. #endif
  3308. #if HAS_U_MS_PINS
  3309. case U_AXIS: WRITE(U_MS1_PIN, ms1); break
  3310. #endif
  3311. #if HAS_V_MS_PINS
  3312. case V_AXIS: WRITE(V_MS1_PIN, ms1); break
  3313. #endif
  3314. #if HAS_W_MS_PINS
  3315. case W_AXIS: WRITE(W_MS1_PIN, ms1); break
  3316. #endif
  3317. #if HAS_E0_MS_PINS
  3318. case E_AXIS: WRITE(E0_MS1_PIN, ms1); break;
  3319. #endif
  3320. #if HAS_E1_MS_PINS
  3321. case (E_AXIS + 1): WRITE(E1_MS1_PIN, ms1); break;
  3322. #endif
  3323. #if HAS_E2_MS_PINS
  3324. case (E_AXIS + 2): WRITE(E2_MS1_PIN, ms1); break;
  3325. #endif
  3326. #if HAS_E3_MS_PINS
  3327. case (E_AXIS + 3): WRITE(E3_MS1_PIN, ms1); break;
  3328. #endif
  3329. #if HAS_E4_MS_PINS
  3330. case (E_AXIS + 4): WRITE(E4_MS1_PIN, ms1); break;
  3331. #endif
  3332. #if HAS_E5_MS_PINS
  3333. case (E_AXIS + 5): WRITE(E5_MS1_PIN, ms1); break;
  3334. #endif
  3335. #if HAS_E6_MS_PINS
  3336. case (E_AXIS + 6): WRITE(E6_MS1_PIN, ms1); break;
  3337. #endif
  3338. #if HAS_E7_MS_PINS
  3339. case (E_AXIS + 7): WRITE(E7_MS1_PIN, ms1); break;
  3340. #endif
  3341. }
  3342. if (ms2 >= 0) switch (driver) {
  3343. #if HAS_X_MS_PINS || HAS_X2_MS_PINS
  3344. case X_AXIS:
  3345. #if HAS_X_MS_PINS
  3346. WRITE(X_MS2_PIN, ms2);
  3347. #endif
  3348. #if HAS_X2_MS_PINS
  3349. WRITE(X2_MS2_PIN, ms2);
  3350. #endif
  3351. break;
  3352. #endif
  3353. #if HAS_Y_MS_PINS || HAS_Y2_MS_PINS
  3354. case Y_AXIS:
  3355. #if HAS_Y_MS_PINS
  3356. WRITE(Y_MS2_PIN, ms2);
  3357. #endif
  3358. #if HAS_Y2_MS_PINS
  3359. WRITE(Y2_MS2_PIN, ms2);
  3360. #endif
  3361. break;
  3362. #endif
  3363. #if HAS_SOME_Z_MS_PINS
  3364. case Z_AXIS:
  3365. #if HAS_Z_MS_PINS
  3366. WRITE(Z_MS2_PIN, ms2);
  3367. #endif
  3368. #if HAS_Z2_MS_PINS
  3369. WRITE(Z2_MS2_PIN, ms2);
  3370. #endif
  3371. #if HAS_Z3_MS_PINS
  3372. WRITE(Z3_MS2_PIN, ms2);
  3373. #endif
  3374. #if HAS_Z4_MS_PINS
  3375. WRITE(Z4_MS2_PIN, ms2);
  3376. #endif
  3377. break;
  3378. #endif
  3379. #if HAS_I_MS_PINS
  3380. case I_AXIS: WRITE(I_MS2_PIN, ms2); break
  3381. #endif
  3382. #if HAS_J_MS_PINS
  3383. case J_AXIS: WRITE(J_MS2_PIN, ms2); break
  3384. #endif
  3385. #if HAS_K_MS_PINS
  3386. case K_AXIS: WRITE(K_MS2_PIN, ms2); break
  3387. #endif
  3388. #if HAS_U_MS_PINS
  3389. case U_AXIS: WRITE(U_MS2_PIN, ms2); break
  3390. #endif
  3391. #if HAS_V_MS_PINS
  3392. case V_AXIS: WRITE(V_MS2_PIN, ms2); break
  3393. #endif
  3394. #if HAS_W_MS_PINS
  3395. case W_AXIS: WRITE(W_MS2_PIN, ms2); break
  3396. #endif
  3397. #if HAS_E0_MS_PINS
  3398. case E_AXIS: WRITE(E0_MS2_PIN, ms2); break;
  3399. #endif
  3400. #if HAS_E1_MS_PINS
  3401. case (E_AXIS + 1): WRITE(E1_MS2_PIN, ms2); break;
  3402. #endif
  3403. #if HAS_E2_MS_PINS
  3404. case (E_AXIS + 2): WRITE(E2_MS2_PIN, ms2); break;
  3405. #endif
  3406. #if HAS_E3_MS_PINS
  3407. case (E_AXIS + 3): WRITE(E3_MS2_PIN, ms2); break;
  3408. #endif
  3409. #if HAS_E4_MS_PINS
  3410. case (E_AXIS + 4): WRITE(E4_MS2_PIN, ms2); break;
  3411. #endif
  3412. #if HAS_E5_MS_PINS
  3413. case (E_AXIS + 5): WRITE(E5_MS2_PIN, ms2); break;
  3414. #endif
  3415. #if HAS_E6_MS_PINS
  3416. case (E_AXIS + 6): WRITE(E6_MS2_PIN, ms2); break;
  3417. #endif
  3418. #if HAS_E7_MS_PINS
  3419. case (E_AXIS + 7): WRITE(E7_MS2_PIN, ms2); break;
  3420. #endif
  3421. }
  3422. if (ms3 >= 0) switch (driver) {
  3423. #if HAS_X_MS_PINS || HAS_X2_MS_PINS
  3424. case X_AXIS:
  3425. #if HAS_X_MS_PINS && PIN_EXISTS(X_MS3)
  3426. WRITE(X_MS3_PIN, ms3);
  3427. #endif
  3428. #if HAS_X2_MS_PINS && PIN_EXISTS(X2_MS3)
  3429. WRITE(X2_MS3_PIN, ms3);
  3430. #endif
  3431. break;
  3432. #endif
  3433. #if HAS_Y_MS_PINS || HAS_Y2_MS_PINS
  3434. case Y_AXIS:
  3435. #if HAS_Y_MS_PINS && PIN_EXISTS(Y_MS3)
  3436. WRITE(Y_MS3_PIN, ms3);
  3437. #endif
  3438. #if HAS_Y2_MS_PINS && PIN_EXISTS(Y2_MS3)
  3439. WRITE(Y2_MS3_PIN, ms3);
  3440. #endif
  3441. break;
  3442. #endif
  3443. #if HAS_SOME_Z_MS_PINS
  3444. case Z_AXIS:
  3445. #if HAS_Z_MS_PINS && PIN_EXISTS(Z_MS3)
  3446. WRITE(Z_MS3_PIN, ms3);
  3447. #endif
  3448. #if HAS_Z2_MS_PINS && PIN_EXISTS(Z2_MS3)
  3449. WRITE(Z2_MS3_PIN, ms3);
  3450. #endif
  3451. #if HAS_Z3_MS_PINS && PIN_EXISTS(Z3_MS3)
  3452. WRITE(Z3_MS3_PIN, ms3);
  3453. #endif
  3454. #if HAS_Z4_MS_PINS && PIN_EXISTS(Z4_MS3)
  3455. WRITE(Z4_MS3_PIN, ms3);
  3456. #endif
  3457. break;
  3458. #endif
  3459. #if HAS_I_MS_PINS
  3460. case I_AXIS: WRITE(I_MS3_PIN, ms3); break
  3461. #endif
  3462. #if HAS_J_MS_PINS
  3463. case J_AXIS: WRITE(J_MS3_PIN, ms3); break
  3464. #endif
  3465. #if HAS_K_MS_PINS
  3466. case K_AXIS: WRITE(K_MS3_PIN, ms3); break
  3467. #endif
  3468. #if HAS_U_MS_PINS
  3469. case U_AXIS: WRITE(U_MS3_PIN, ms3); break
  3470. #endif
  3471. #if HAS_V_MS_PINS
  3472. case V_AXIS: WRITE(V_MS3_PIN, ms3); break
  3473. #endif
  3474. #if HAS_W_MS_PINS
  3475. case W_AXIS: WRITE(W_MS3_PIN, ms3); break
  3476. #endif
  3477. #if HAS_E0_MS_PINS && PIN_EXISTS(E0_MS3)
  3478. case E_AXIS: WRITE(E0_MS3_PIN, ms3); break;
  3479. #endif
  3480. #if HAS_E1_MS_PINS && PIN_EXISTS(E1_MS3)
  3481. case (E_AXIS + 1): WRITE(E1_MS3_PIN, ms3); break;
  3482. #endif
  3483. #if HAS_E2_MS_PINS && PIN_EXISTS(E2_MS3)
  3484. case (E_AXIS + 2): WRITE(E2_MS3_PIN, ms3); break;
  3485. #endif
  3486. #if HAS_E3_MS_PINS && PIN_EXISTS(E3_MS3)
  3487. case (E_AXIS + 3): WRITE(E3_MS3_PIN, ms3); break;
  3488. #endif
  3489. #if HAS_E4_MS_PINS && PIN_EXISTS(E4_MS3)
  3490. case (E_AXIS + 4): WRITE(E4_MS3_PIN, ms3); break;
  3491. #endif
  3492. #if HAS_E5_MS_PINS && PIN_EXISTS(E5_MS3)
  3493. case (E_AXIS + 5): WRITE(E5_MS3_PIN, ms3); break;
  3494. #endif
  3495. #if HAS_E6_MS_PINS && PIN_EXISTS(E6_MS3)
  3496. case (E_AXIS + 6): WRITE(E6_MS3_PIN, ms3); break;
  3497. #endif
  3498. #if HAS_E7_MS_PINS && PIN_EXISTS(E7_MS3)
  3499. case (E_AXIS + 7): WRITE(E7_MS3_PIN, ms3); break;
  3500. #endif
  3501. }
  3502. }
  3503. void Stepper::microstep_mode(const uint8_t driver, const uint8_t stepping_mode) {
  3504. switch (stepping_mode) {
  3505. #if HAS_MICROSTEP1
  3506. case 1: microstep_ms(driver, MICROSTEP1); break;
  3507. #endif
  3508. #if HAS_MICROSTEP2
  3509. case 2: microstep_ms(driver, MICROSTEP2); break;
  3510. #endif
  3511. #if HAS_MICROSTEP4
  3512. case 4: microstep_ms(driver, MICROSTEP4); break;
  3513. #endif
  3514. #if HAS_MICROSTEP8
  3515. case 8: microstep_ms(driver, MICROSTEP8); break;
  3516. #endif
  3517. #if HAS_MICROSTEP16
  3518. case 16: microstep_ms(driver, MICROSTEP16); break;
  3519. #endif
  3520. #if HAS_MICROSTEP32
  3521. case 32: microstep_ms(driver, MICROSTEP32); break;
  3522. #endif
  3523. #if HAS_MICROSTEP64
  3524. case 64: microstep_ms(driver, MICROSTEP64); break;
  3525. #endif
  3526. #if HAS_MICROSTEP128
  3527. case 128: microstep_ms(driver, MICROSTEP128); break;
  3528. #endif
  3529. default: SERIAL_ERROR_MSG("Microsteps unavailable"); break;
  3530. }
  3531. }
  3532. void Stepper::microstep_readings() {
  3533. #define PIN_CHAR(P) SERIAL_CHAR('0' + READ(P##_PIN))
  3534. #define MS_LINE(A) do{ SERIAL_ECHOPGM(" " STRINGIFY(A) ":"); PIN_CHAR(A##_MS1); PIN_CHAR(A##_MS2); }while(0)
  3535. SERIAL_ECHOPGM("MS1|2|3 Pins");
  3536. #if HAS_X_MS_PINS
  3537. MS_LINE(X);
  3538. #if PIN_EXISTS(X_MS3)
  3539. PIN_CHAR(X_MS3);
  3540. #endif
  3541. #endif
  3542. #if HAS_Y_MS_PINS
  3543. MS_LINE(Y);
  3544. #if PIN_EXISTS(Y_MS3)
  3545. PIN_CHAR(Y_MS3);
  3546. #endif
  3547. #endif
  3548. #if HAS_Z_MS_PINS
  3549. MS_LINE(Z);
  3550. #if PIN_EXISTS(Z_MS3)
  3551. PIN_CHAR(Z_MS3);
  3552. #endif
  3553. #endif
  3554. #if HAS_I_MS_PINS
  3555. MS_LINE(I);
  3556. #if PIN_EXISTS(I_MS3)
  3557. PIN_CHAR(I_MS3);
  3558. #endif
  3559. #endif
  3560. #if HAS_J_MS_PINS
  3561. MS_LINE(J);
  3562. #if PIN_EXISTS(J_MS3)
  3563. PIN_CHAR(J_MS3);
  3564. #endif
  3565. #endif
  3566. #if HAS_K_MS_PINS
  3567. MS_LINE(K);
  3568. #if PIN_EXISTS(K_MS3)
  3569. PIN_CHAR(K_MS3);
  3570. #endif
  3571. #endif
  3572. #if HAS_U_MS_PINS
  3573. MS_LINE(U);
  3574. #if PIN_EXISTS(U_MS3)
  3575. PIN_CHAR(U_MS3);
  3576. #endif
  3577. #endif
  3578. #if HAS_V_MS_PINS
  3579. MS_LINE(V);
  3580. #if PIN_EXISTS(V_MS3)
  3581. PIN_CHAR(V_MS3);
  3582. #endif
  3583. #endif
  3584. #if HAS_W_MS_PINS
  3585. MS_LINE(W);
  3586. #if PIN_EXISTS(W_MS3)
  3587. PIN_CHAR(W_MS3);
  3588. #endif
  3589. #endif
  3590. #if HAS_E0_MS_PINS
  3591. MS_LINE(E0);
  3592. #if PIN_EXISTS(E0_MS3)
  3593. PIN_CHAR(E0_MS3);
  3594. #endif
  3595. #endif
  3596. #if HAS_E1_MS_PINS
  3597. MS_LINE(E1);
  3598. #if PIN_EXISTS(E1_MS3)
  3599. PIN_CHAR(E1_MS3);
  3600. #endif
  3601. #endif
  3602. #if HAS_E2_MS_PINS
  3603. MS_LINE(E2);
  3604. #if PIN_EXISTS(E2_MS3)
  3605. PIN_CHAR(E2_MS3);
  3606. #endif
  3607. #endif
  3608. #if HAS_E3_MS_PINS
  3609. MS_LINE(E3);
  3610. #if PIN_EXISTS(E3_MS3)
  3611. PIN_CHAR(E3_MS3);
  3612. #endif
  3613. #endif
  3614. #if HAS_E4_MS_PINS
  3615. MS_LINE(E4);
  3616. #if PIN_EXISTS(E4_MS3)
  3617. PIN_CHAR(E4_MS3);
  3618. #endif
  3619. #endif
  3620. #if HAS_E5_MS_PINS
  3621. MS_LINE(E5);
  3622. #if PIN_EXISTS(E5_MS3)
  3623. PIN_CHAR(E5_MS3);
  3624. #endif
  3625. #endif
  3626. #if HAS_E6_MS_PINS
  3627. MS_LINE(E6);
  3628. #if PIN_EXISTS(E6_MS3)
  3629. PIN_CHAR(E6_MS3);
  3630. #endif
  3631. #endif
  3632. #if HAS_E7_MS_PINS
  3633. MS_LINE(E7);
  3634. #if PIN_EXISTS(E7_MS3)
  3635. PIN_CHAR(E7_MS3);
  3636. #endif
  3637. #endif
  3638. SERIAL_EOL();
  3639. }
  3640. #endif // HAS_MICROSTEPS