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.

Marlin_main.cpp 417KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016, 2017 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * About Marlin
  24. *
  25. * This firmware is a mashup between Sprinter and grbl.
  26. * - https://github.com/kliment/Sprinter
  27. * - https://github.com/simen/grbl/tree
  28. */
  29. /**
  30. * -----------------
  31. * G-Codes in Marlin
  32. * -----------------
  33. *
  34. * Helpful G-code references:
  35. * - http://linuxcnc.org/handbook/gcode/g-code.html
  36. * - http://objects.reprap.org/wiki/Mendel_User_Manual:_RepRapGCodes
  37. *
  38. * Help to document Marlin's G-codes online:
  39. * - http://reprap.org/wiki/G-code
  40. * - https://github.com/MarlinFirmware/MarlinDocumentation
  41. *
  42. * -----------------
  43. *
  44. * "G" Codes
  45. *
  46. * G0 -> G1
  47. * G1 - Coordinated Movement X Y Z E
  48. * G2 - CW ARC
  49. * G3 - CCW ARC
  50. * G4 - Dwell S<seconds> or P<milliseconds>
  51. * G5 - Cubic B-spline with XYZE destination and IJPQ offsets
  52. * G10 - Retract filament according to settings of M207
  53. * G11 - Retract recover filament according to settings of M208
  54. * G12 - Clean tool
  55. * G17 - Select Plane XY (Requires CNC_WORKSPACE_PLANES)
  56. * G18 - Select Plane ZX (Requires CNC_WORKSPACE_PLANES)
  57. * G19 - Select Plane YZ (Requires CNC_WORKSPACE_PLANES)
  58. * G20 - Set input units to inches
  59. * G21 - Set input units to millimeters
  60. * G26 - Mesh Validation Pattern (Requires UBL_G26_MESH_VALIDATION)
  61. * G27 - Park Nozzle (Requires NOZZLE_PARK_FEATURE)
  62. * G28 - Home one or more axes
  63. * G29 - Detailed Z probe, probes the bed at 3 or more points. Will fail if you haven't homed yet.
  64. * G30 - Single Z probe, probes bed at X Y location (defaults to current XY location)
  65. * G31 - Dock sled (Z_PROBE_SLED only)
  66. * G32 - Undock sled (Z_PROBE_SLED only)
  67. * G33 - Delta Auto-Calibration (Requires DELTA_AUTO_CALIBRATION)
  68. * G38 - Probe target - similar to G28 except it uses the Z_MIN_PROBE for all three axes
  69. * G42 - Coordinated move to a mesh point (Requires AUTO_BED_LEVELING_UBL)
  70. * G90 - Use Absolute Coordinates
  71. * G91 - Use Relative Coordinates
  72. * G92 - Set current position to coordinates given
  73. *
  74. * "M" Codes
  75. *
  76. * M0 - Unconditional stop - Wait for user to press a button on the LCD (Only if ULTRA_LCD is enabled)
  77. * M1 -> M0
  78. * M3 - Turn laser/spindle on, set spindle/laser speed/power, set rotation to clockwise
  79. * M4 - Turn laser/spindle on, set spindle/laser speed/power, set rotation to counter-clockwise
  80. * M5 - Turn laser/spindle off
  81. * M17 - Enable/Power all stepper motors
  82. * M18 - Disable all stepper motors; same as M84
  83. * M20 - List SD card. (Requires SDSUPPORT)
  84. * M21 - Init SD card. (Requires SDSUPPORT)
  85. * M22 - Release SD card. (Requires SDSUPPORT)
  86. * M23 - Select SD file: "M23 /path/file.gco". (Requires SDSUPPORT)
  87. * M24 - Start/resume SD print. (Requires SDSUPPORT)
  88. * M25 - Pause SD print. (Requires SDSUPPORT)
  89. * M26 - Set SD position in bytes: "M26 S12345". (Requires SDSUPPORT)
  90. * M27 - Report SD print status. (Requires SDSUPPORT)
  91. * M28 - Start SD write: "M28 /path/file.gco". (Requires SDSUPPORT)
  92. * M29 - Stop SD write. (Requires SDSUPPORT)
  93. * M30 - Delete file from SD: "M30 /path/file.gco"
  94. * M31 - Report time since last M109 or SD card start to serial.
  95. * M32 - Select file and start SD print: "M32 [S<bytepos>] !/path/file.gco#". (Requires SDSUPPORT)
  96. * Use P to run other files as sub-programs: "M32 P !filename#"
  97. * The '#' is necessary when calling from within sd files, as it stops buffer prereading
  98. * M33 - Get the longname version of a path. (Requires LONG_FILENAME_HOST_SUPPORT)
  99. * M34 - Set SD Card sorting options. (Requires SDCARD_SORT_ALPHA)
  100. * M42 - Change pin status via gcode: M42 P<pin> S<value>. LED pin assumed if P is omitted.
  101. * M43 - Display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
  102. * M48 - Measure Z Probe repeatability: M48 P<points> X<pos> Y<pos> V<level> E<engage> L<legs>. (Requires Z_MIN_PROBE_REPEATABILITY_TEST)
  103. * M75 - Start the print job timer.
  104. * M76 - Pause the print job timer.
  105. * M77 - Stop the print job timer.
  106. * M78 - Show statistical information about the print jobs. (Requires PRINTCOUNTER)
  107. * M80 - Turn on Power Supply. (Requires POWER_SUPPLY > 0)
  108. * M81 - Turn off Power Supply. (Requires POWER_SUPPLY > 0)
  109. * M82 - Set E codes absolute (default).
  110. * M83 - Set E codes relative while in Absolute (G90) mode.
  111. * M84 - Disable steppers until next move, or use S<seconds> to specify an idle
  112. * duration after which steppers should turn off. S0 disables the timeout.
  113. * M85 - Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
  114. * M92 - Set planner.axis_steps_per_mm for one or more axes.
  115. * M100 - Watch Free Memory (for debugging) (Requires M100_FREE_MEMORY_WATCHER)
  116. * M104 - Set extruder target temp.
  117. * M105 - Report current temperatures.
  118. * M106 - Fan on.
  119. * M107 - Fan off.
  120. * M108 - Break out of heating loops (M109, M190, M303). With no controller, breaks out of M0/M1. (Requires EMERGENCY_PARSER)
  121. * M109 - Sxxx Wait for extruder current temp to reach target temp. Waits only when heating
  122. * Rxxx Wait for extruder current temp to reach target temp. Waits when heating and cooling
  123. * If AUTOTEMP is enabled, S<mintemp> B<maxtemp> F<factor>. Exit autotemp by any M109 without F
  124. * M110 - Set the current line number. (Used by host printing)
  125. * M111 - Set debug flags: "M111 S<flagbits>". See flag bits defined in enum.h.
  126. * M112 - Emergency stop.
  127. * M113 - Get or set the timeout interval for Host Keepalive "busy" messages. (Requires HOST_KEEPALIVE_FEATURE)
  128. * M114 - Report current position.
  129. * M115 - Report capabilities. (Extended capabilities requires EXTENDED_CAPABILITIES_REPORT)
  130. * M117 - Display a message on the controller screen. (Requires an LCD)
  131. * M118 - Display a message in the host console.
  132. * M119 - Report endstops status.
  133. * M120 - Enable endstops detection.
  134. * M121 - Disable endstops detection.
  135. * M125 - Save current position and move to filament change position. (Requires PARK_HEAD_ON_PAUSE)
  136. * M126 - Solenoid Air Valve Open. (Requires BARICUDA)
  137. * M127 - Solenoid Air Valve Closed. (Requires BARICUDA)
  138. * M128 - EtoP Open. (Requires BARICUDA)
  139. * M129 - EtoP Closed. (Requires BARICUDA)
  140. * M140 - Set bed target temp. S<temp>
  141. * M145 - Set heatup values for materials on the LCD. H<hotend> B<bed> F<fan speed> for S<material> (0=PLA, 1=ABS)
  142. * M149 - Set temperature units. (Requires TEMPERATURE_UNITS_SUPPORT)
  143. * M150 - Set Status LED Color as R<red> U<green> B<blue>. Values 0-255. (Requires BLINKM, RGB_LED, RGBW_LED, or PCA9632)
  144. * M155 - Auto-report temperatures with interval of S<seconds>. (Requires AUTO_REPORT_TEMPERATURES)
  145. * M163 - Set a single proportion for a mixing extruder. (Requires MIXING_EXTRUDER)
  146. * M164 - Save the mix as a virtual extruder. (Requires MIXING_EXTRUDER and MIXING_VIRTUAL_TOOLS)
  147. * M165 - Set the proportions for a mixing extruder. Use parameters ABCDHI to set the mixing factors. (Requires MIXING_EXTRUDER)
  148. * M190 - Sxxx Wait for bed current temp to reach target temp. ** Waits only when heating! **
  149. * Rxxx Wait for bed current temp to reach target temp. ** Waits for heating or cooling. **
  150. * M200 - Set filament diameter, D<diameter>, setting E axis units to cubic. (Use S0 to revert to linear units.)
  151. * M201 - Set max acceleration in units/s^2 for print moves: "M201 X<accel> Y<accel> Z<accel> E<accel>"
  152. * M202 - Set max acceleration in units/s^2 for travel moves: "M202 X<accel> Y<accel> Z<accel> E<accel>" ** UNUSED IN MARLIN! **
  153. * M203 - Set maximum feedrate: "M203 X<fr> Y<fr> Z<fr> E<fr>" in units/sec.
  154. * M204 - Set default acceleration in units/sec^2: P<printing> R<extruder_only> T<travel>
  155. * M205 - Set advanced settings. Current units apply:
  156. S<print> T<travel> minimum speeds
  157. B<minimum segment time>
  158. X<max X jerk>, Y<max Y jerk>, Z<max Z jerk>, E<max E jerk>
  159. * M206 - Set additional homing offset. (Disabled by NO_WORKSPACE_OFFSETS or DELTA)
  160. * M207 - Set Retract Length: S<length>, Feedrate: F<units/min>, and Z lift: Z<distance>. (Requires FWRETRACT)
  161. * M208 - Set Recover (unretract) Additional (!) Length: S<length> and Feedrate: F<units/min>. (Requires FWRETRACT)
  162. * M209 - Turn Automatic Retract Detection on/off: S<0|1> (For slicers that don't support G10/11). (Requires FWRETRACT)
  163. Every normal extrude-only move will be classified as retract depending on the direction.
  164. * M211 - Enable, Disable, and/or Report software endstops: S<0|1> (Requires MIN_SOFTWARE_ENDSTOPS or MAX_SOFTWARE_ENDSTOPS)
  165. * M218 - Set a tool offset: "M218 T<index> X<offset> Y<offset>". (Requires 2 or more extruders)
  166. * M220 - Set Feedrate Percentage: "M220 S<percent>" (i.e., "FR" on the LCD)
  167. * M221 - Set Flow Percentage: "M221 S<percent>"
  168. * M226 - Wait until a pin is in a given state: "M226 P<pin> S<state>"
  169. * M240 - Trigger a camera to take a photograph. (Requires CHDK or PHOTOGRAPH_PIN)
  170. * M250 - Set LCD contrast: "M250 C<contrast>" (0-63). (Requires LCD support)
  171. * M260 - i2c Send Data (Requires EXPERIMENTAL_I2CBUS)
  172. * M261 - i2c Request Data (Requires EXPERIMENTAL_I2CBUS)
  173. * M280 - Set servo position absolute: "M280 P<index> S<angle|µs>". (Requires servos)
  174. * M300 - Play beep sound S<frequency Hz> P<duration ms>
  175. * M301 - Set PID parameters P I and D. (Requires PIDTEMP)
  176. * M302 - Allow cold extrudes, or set the minimum extrude S<temperature>. (Requires PREVENT_COLD_EXTRUSION)
  177. * M303 - PID relay autotune S<temperature> sets the target temperature. Default 150C. (Requires PIDTEMP)
  178. * M304 - Set bed PID parameters P I and D. (Requires PIDTEMPBED)
  179. * M350 - Set microstepping mode. (Requires digital microstepping pins.)
  180. * M351 - Toggle MS1 MS2 pins directly. (Requires digital microstepping pins.)
  181. * M355 - Set Case Light on/off and set brightness. (Requires CASE_LIGHT_PIN)
  182. * M380 - Activate solenoid on active extruder. (Requires EXT_SOLENOID)
  183. * M381 - Disable all solenoids. (Requires EXT_SOLENOID)
  184. * M400 - Finish all moves.
  185. * M401 - Lower Z probe. (Requires a probe)
  186. * M402 - Raise Z probe. (Requires a probe)
  187. * M404 - Display or set the Nominal Filament Width: "W<diameter>". (Requires FILAMENT_WIDTH_SENSOR)
  188. * M405 - Enable Filament Sensor flow control. "M405 D<delay_cm>". (Requires FILAMENT_WIDTH_SENSOR)
  189. * M406 - Disable Filament Sensor flow control. (Requires FILAMENT_WIDTH_SENSOR)
  190. * M407 - Display measured filament diameter in millimeters. (Requires FILAMENT_WIDTH_SENSOR)
  191. * M410 - Quickstop. Abort all planned moves.
  192. * M420 - Enable/Disable Leveling (with current values) S1=enable S0=disable (Requires MESH_BED_LEVELING or ABL)
  193. * M421 - Set a single Z coordinate in the Mesh Leveling grid. X<units> Y<units> Z<units> (Requires MESH_BED_LEVELING or AUTO_BED_LEVELING_UBL)
  194. * M428 - Set the home_offset based on the current_position. Nearest edge applies. (Disabled by NO_WORKSPACE_OFFSETS or DELTA)
  195. * M500 - Store parameters in EEPROM. (Requires EEPROM_SETTINGS)
  196. * M501 - Restore parameters from EEPROM. (Requires EEPROM_SETTINGS)
  197. * M502 - Revert to the default "factory settings". ** Does not write them to EEPROM! **
  198. * M503 - Print the current settings (in memory): "M503 S<verbose>". S0 specifies compact output.
  199. * M540 - Enable/disable SD card abort on endstop hit: "M540 S<state>". (Requires ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  200. * M600 - Pause for filament change: "M600 X<pos> Y<pos> Z<raise> E<first_retract> L<later_retract>". (Requires ADVANCED_PAUSE_FEATURE)
  201. * M665 - Set delta configurations: "M665 L<diagonal rod> R<delta radius> S<segments/s> A<rod A trim mm> B<rod B trim mm> C<rod C trim mm> I<tower A trim angle> J<tower B trim angle> K<tower C trim angle>" (Requires DELTA)
  202. * M666 - Set delta endstop adjustment. (Requires DELTA)
  203. * M605 - Set dual x-carriage movement mode: "M605 S<mode> [X<x_offset>] [R<temp_offset>]". (Requires DUAL_X_CARRIAGE)
  204. * M851 - Set Z probe's Z offset in current units. (Negative = below the nozzle.)
  205. * M860 - Report the position of position encoder modules.
  206. * M861 - Report the status of position encoder modules.
  207. * M862 - Perform an axis continuity test for position encoder modules.
  208. * M863 - Perform steps-per-mm calibration for position encoder modules.
  209. * M864 - Change position encoder module I2C address.
  210. * M865 - Check position encoder module firmware version.
  211. * M866 - Report or reset position encoder module error count.
  212. * M867 - Enable/disable or toggle error correction for position encoder modules.
  213. * M868 - Report or set position encoder module error correction threshold.
  214. * M869 - Report position encoder module error.
  215. * M900 - Get and/or Set advance K factor and WH/D ratio. (Requires LIN_ADVANCE)
  216. * M906 - Set or get motor current in milliamps using axis codes X, Y, Z, E. Report values if no axis codes given. (Requires HAVE_TMC2130)
  217. * M907 - Set digital trimpot motor current using axis codes. (Requires a board with digital trimpots)
  218. * M908 - Control digital trimpot directly. (Requires DAC_STEPPER_CURRENT or DIGIPOTSS_PIN)
  219. * M909 - Print digipot/DAC current value. (Requires DAC_STEPPER_CURRENT)
  220. * M910 - Commit digipot/DAC value to external EEPROM via I2C. (Requires DAC_STEPPER_CURRENT)
  221. * M911 - Report stepper driver overtemperature pre-warn condition. (Requires HAVE_TMC2130)
  222. * M912 - Clear stepper driver overtemperature pre-warn condition flag. (Requires HAVE_TMC2130)
  223. * M913 - Set HYBRID_THRESHOLD speed. (Requires HYBRID_THRESHOLD)
  224. * M914 - Set SENSORLESS_HOMING sensitivity. (Requires SENSORLESS_HOMING)
  225. *
  226. * M360 - SCARA calibration: Move to cal-position ThetaA (0 deg calibration)
  227. * M361 - SCARA calibration: Move to cal-position ThetaB (90 deg calibration - steps per degree)
  228. * M362 - SCARA calibration: Move to cal-position PsiA (0 deg calibration)
  229. * M363 - SCARA calibration: Move to cal-position PsiB (90 deg calibration - steps per degree)
  230. * M364 - SCARA calibration: Move to cal-position PSIC (90 deg to Theta calibration position)
  231. *
  232. * ************ Custom codes - This can change to suit future G-code regulations
  233. * M928 - Start SD logging: "M928 filename.gco". Stop with M29. (Requires SDSUPPORT)
  234. * M999 - Restart after being stopped by error
  235. *
  236. * "T" Codes
  237. *
  238. * T0-T3 - Select an extruder (tool) by index: "T<n> F<units/min>"
  239. *
  240. */
  241. #include "Marlin.h"
  242. #include "ultralcd.h"
  243. #include "planner.h"
  244. #include "stepper.h"
  245. #include "endstops.h"
  246. #include "temperature.h"
  247. #include "cardreader.h"
  248. #include "configuration_store.h"
  249. #include "language.h"
  250. #include "pins_arduino.h"
  251. #include "math.h"
  252. #include "nozzle.h"
  253. #include "duration_t.h"
  254. #include "types.h"
  255. #include "gcode.h"
  256. #if HAS_ABL
  257. #include "vector_3.h"
  258. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  259. #include "qr_solve.h"
  260. #endif
  261. #elif ENABLED(MESH_BED_LEVELING)
  262. #include "mesh_bed_leveling.h"
  263. #endif
  264. #if ENABLED(BEZIER_CURVE_SUPPORT)
  265. #include "planner_bezier.h"
  266. #endif
  267. #if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
  268. #include "buzzer.h"
  269. #endif
  270. #if ENABLED(USE_WATCHDOG)
  271. #include "watchdog.h"
  272. #endif
  273. #if ENABLED(BLINKM)
  274. #include "blinkm.h"
  275. #include "Wire.h"
  276. #endif
  277. #if ENABLED(PCA9632)
  278. #include "pca9632.h"
  279. #endif
  280. #if HAS_SERVOS
  281. #include "servo.h"
  282. #endif
  283. #if HAS_DIGIPOTSS
  284. #include <SPI.h>
  285. #endif
  286. #if ENABLED(DAC_STEPPER_CURRENT)
  287. #include "stepper_dac.h"
  288. #endif
  289. #if ENABLED(EXPERIMENTAL_I2CBUS)
  290. #include "twibus.h"
  291. #endif
  292. #if ENABLED(I2C_POSITION_ENCODERS)
  293. #include "I2CPositionEncoder.h"
  294. #endif
  295. #if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
  296. #include "endstop_interrupts.h"
  297. #endif
  298. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  299. void gcode_M100();
  300. void M100_dump_routine(const char * const title, const char *start, const char *end);
  301. #endif
  302. #if ENABLED(SDSUPPORT)
  303. CardReader card;
  304. #endif
  305. #if ENABLED(EXPERIMENTAL_I2CBUS)
  306. TWIBus i2c;
  307. #endif
  308. #if ENABLED(G38_PROBE_TARGET)
  309. bool G38_move = false,
  310. G38_endstop_hit = false;
  311. #endif
  312. #if ENABLED(AUTO_BED_LEVELING_UBL)
  313. #include "ubl.h"
  314. extern bool defer_return_to_status;
  315. unified_bed_leveling ubl;
  316. #define UBL_MESH_VALID !( ( ubl.z_values[0][0] == ubl.z_values[0][1] && ubl.z_values[0][1] == ubl.z_values[0][2] \
  317. && ubl.z_values[1][0] == ubl.z_values[1][1] && ubl.z_values[1][1] == ubl.z_values[1][2] \
  318. && ubl.z_values[2][0] == ubl.z_values[2][1] && ubl.z_values[2][1] == ubl.z_values[2][2] \
  319. && ubl.z_values[0][0] == 0 && ubl.z_values[1][0] == 0 && ubl.z_values[2][0] == 0 ) \
  320. || isnan(ubl.z_values[0][0]))
  321. #endif
  322. bool Running = true;
  323. uint8_t marlin_debug_flags = DEBUG_NONE;
  324. /**
  325. * Cartesian Current Position
  326. * Used to track the logical position as moves are queued.
  327. * Used by 'line_to_current_position' to do a move after changing it.
  328. * Used by 'SYNC_PLAN_POSITION_KINEMATIC' to update 'planner.position'.
  329. */
  330. float current_position[XYZE] = { 0.0 };
  331. /**
  332. * Cartesian Destination
  333. * A temporary position, usually applied to 'current_position'.
  334. * Set with 'gcode_get_destination' or 'set_destination_to_current'.
  335. * 'line_to_destination' sets 'current_position' to 'destination'.
  336. */
  337. float destination[XYZE] = { 0.0 };
  338. /**
  339. * axis_homed
  340. * Flags that each linear axis was homed.
  341. * XYZ on cartesian, ABC on delta, ABZ on SCARA.
  342. *
  343. * axis_known_position
  344. * Flags that the position is known in each linear axis. Set when homed.
  345. * Cleared whenever a stepper powers off, potentially losing its position.
  346. */
  347. bool axis_homed[XYZ] = { false }, axis_known_position[XYZ] = { false };
  348. /**
  349. * GCode line number handling. Hosts may opt to include line numbers when
  350. * sending commands to Marlin, and lines will be checked for sequentiality.
  351. * M110 N<int> sets the current line number.
  352. */
  353. static long gcode_N, gcode_LastN, Stopped_gcode_LastN = 0;
  354. /**
  355. * GCode Command Queue
  356. * A simple ring buffer of BUFSIZE command strings.
  357. *
  358. * Commands are copied into this buffer by the command injectors
  359. * (immediate, serial, sd card) and they are processed sequentially by
  360. * the main loop. The process_next_command function parses the next
  361. * command and hands off execution to individual handler functions.
  362. */
  363. uint8_t commands_in_queue = 0; // Count of commands in the queue
  364. static uint8_t cmd_queue_index_r = 0, // Ring buffer read position
  365. cmd_queue_index_w = 0; // Ring buffer write position
  366. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  367. char command_queue[BUFSIZE][MAX_CMD_SIZE]; // Necessary so M100 Free Memory Dumper can show us the commands and any corruption
  368. #else // This can be collapsed back to the way it was soon.
  369. static char command_queue[BUFSIZE][MAX_CMD_SIZE];
  370. #endif
  371. /**
  372. * Next Injected Command pointer. NULL if no commands are being injected.
  373. * Used by Marlin internally to ensure that commands initiated from within
  374. * are enqueued ahead of any pending serial or sd card commands.
  375. */
  376. static const char *injected_commands_P = NULL;
  377. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  378. TempUnit input_temp_units = TEMPUNIT_C;
  379. #endif
  380. /**
  381. * Feed rates are often configured with mm/m
  382. * but the planner and stepper like mm/s units.
  383. */
  384. static const float homing_feedrate_mm_s[] PROGMEM = {
  385. #if ENABLED(DELTA)
  386. MMM_TO_MMS(HOMING_FEEDRATE_Z), MMM_TO_MMS(HOMING_FEEDRATE_Z),
  387. #else
  388. MMM_TO_MMS(HOMING_FEEDRATE_XY), MMM_TO_MMS(HOMING_FEEDRATE_XY),
  389. #endif
  390. MMM_TO_MMS(HOMING_FEEDRATE_Z), 0
  391. };
  392. FORCE_INLINE float homing_feedrate(const AxisEnum a) { return pgm_read_float(&homing_feedrate_mm_s[a]); }
  393. float feedrate_mm_s = MMM_TO_MMS(1500.0);
  394. static float saved_feedrate_mm_s;
  395. int16_t feedrate_percentage = 100, saved_feedrate_percentage,
  396. flow_percentage[EXTRUDERS] = ARRAY_BY_EXTRUDERS1(100);
  397. bool axis_relative_modes[] = AXIS_RELATIVE_MODES,
  398. volumetric_enabled =
  399. #if ENABLED(VOLUMETRIC_DEFAULT_ON)
  400. true
  401. #else
  402. false
  403. #endif
  404. ;
  405. float filament_size[EXTRUDERS] = ARRAY_BY_EXTRUDERS1(DEFAULT_NOMINAL_FILAMENT_DIA),
  406. volumetric_multiplier[EXTRUDERS] = ARRAY_BY_EXTRUDERS1(1.0);
  407. #if HAS_WORKSPACE_OFFSET
  408. #if HAS_POSITION_SHIFT
  409. // The distance that XYZ has been offset by G92. Reset by G28.
  410. float position_shift[XYZ] = { 0 };
  411. #endif
  412. #if HAS_HOME_OFFSET
  413. // This offset is added to the configured home position.
  414. // Set by M206, M428, or menu item. Saved to EEPROM.
  415. float home_offset[XYZ] = { 0 };
  416. #endif
  417. #if HAS_HOME_OFFSET && HAS_POSITION_SHIFT
  418. // The above two are combined to save on computes
  419. float workspace_offset[XYZ] = { 0 };
  420. #endif
  421. #endif
  422. // Software Endstops are based on the configured limits.
  423. #if HAS_SOFTWARE_ENDSTOPS
  424. bool soft_endstops_enabled = true;
  425. #endif
  426. float soft_endstop_min[XYZ] = { X_MIN_POS, Y_MIN_POS, Z_MIN_POS },
  427. soft_endstop_max[XYZ] = { X_MAX_POS, Y_MAX_POS, Z_MAX_POS };
  428. #if FAN_COUNT > 0
  429. int16_t fanSpeeds[FAN_COUNT] = { 0 };
  430. #if ENABLED(PROBING_FANS_OFF)
  431. bool fans_paused = false;
  432. int16_t paused_fanSpeeds[FAN_COUNT] = { 0 };
  433. #endif
  434. #endif
  435. // The active extruder (tool). Set with T<extruder> command.
  436. uint8_t active_extruder = 0;
  437. // Relative Mode. Enable with G91, disable with G90.
  438. static bool relative_mode = false;
  439. // For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
  440. volatile bool wait_for_heatup = true;
  441. // For M0/M1, this flag may be cleared (by M108) to exit the wait-for-user loop
  442. #if HAS_RESUME_CONTINUE
  443. volatile bool wait_for_user = false;
  444. #endif
  445. const char axis_codes[XYZE] = { 'X', 'Y', 'Z', 'E' };
  446. // Number of characters read in the current line of serial input
  447. static int serial_count = 0;
  448. // Inactivity shutdown
  449. millis_t previous_cmd_ms = 0;
  450. static millis_t max_inactive_time = 0;
  451. static millis_t stepper_inactive_time = (DEFAULT_STEPPER_DEACTIVE_TIME) * 1000UL;
  452. // Print Job Timer
  453. #if ENABLED(PRINTCOUNTER)
  454. PrintCounter print_job_timer = PrintCounter();
  455. #else
  456. Stopwatch print_job_timer = Stopwatch();
  457. #endif
  458. // Buzzer - I2C on the LCD or a BEEPER_PIN
  459. #if ENABLED(LCD_USE_I2C_BUZZER)
  460. #define BUZZ(d,f) lcd_buzz(d, f)
  461. #elif PIN_EXISTS(BEEPER)
  462. Buzzer buzzer;
  463. #define BUZZ(d,f) buzzer.tone(d, f)
  464. #else
  465. #define BUZZ(d,f) NOOP
  466. #endif
  467. static uint8_t target_extruder;
  468. #if HAS_BED_PROBE
  469. float zprobe_zoffset = Z_PROBE_OFFSET_FROM_EXTRUDER;
  470. #endif
  471. #if HAS_ABL
  472. float xy_probe_feedrate_mm_s = MMM_TO_MMS(XY_PROBE_SPEED);
  473. #define XY_PROBE_FEEDRATE_MM_S xy_probe_feedrate_mm_s
  474. #elif defined(XY_PROBE_SPEED)
  475. #define XY_PROBE_FEEDRATE_MM_S MMM_TO_MMS(XY_PROBE_SPEED)
  476. #else
  477. #define XY_PROBE_FEEDRATE_MM_S PLANNER_XY_FEEDRATE()
  478. #endif
  479. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  480. #if ENABLED(DELTA)
  481. #define ADJUST_DELTA(V) \
  482. if (planner.abl_enabled) { \
  483. const float zadj = bilinear_z_offset(V); \
  484. delta[A_AXIS] += zadj; \
  485. delta[B_AXIS] += zadj; \
  486. delta[C_AXIS] += zadj; \
  487. }
  488. #else
  489. #define ADJUST_DELTA(V) if (planner.abl_enabled) { delta[Z_AXIS] += bilinear_z_offset(V); }
  490. #endif
  491. #elif IS_KINEMATIC
  492. #define ADJUST_DELTA(V) NOOP
  493. #endif
  494. #if ENABLED(Z_DUAL_ENDSTOPS)
  495. float z_endstop_adj =
  496. #ifdef Z_DUAL_ENDSTOPS_ADJUSTMENT
  497. Z_DUAL_ENDSTOPS_ADJUSTMENT
  498. #else
  499. 0
  500. #endif
  501. ;
  502. #endif
  503. // Extruder offsets
  504. #if HOTENDS > 1
  505. float hotend_offset[XYZ][HOTENDS];
  506. #endif
  507. #if HAS_Z_SERVO_ENDSTOP
  508. const int z_servo_angle[2] = Z_SERVO_ANGLES;
  509. #endif
  510. #if ENABLED(BARICUDA)
  511. int baricuda_valve_pressure = 0;
  512. int baricuda_e_to_p_pressure = 0;
  513. #endif
  514. #if ENABLED(FWRETRACT)
  515. bool autoretract_enabled = false;
  516. bool retracted[EXTRUDERS] = { false };
  517. bool retracted_swap[EXTRUDERS] = { false };
  518. float retract_length = RETRACT_LENGTH;
  519. float retract_length_swap = RETRACT_LENGTH_SWAP;
  520. float retract_feedrate_mm_s = RETRACT_FEEDRATE;
  521. float retract_zlift = RETRACT_ZLIFT;
  522. float retract_recover_length = RETRACT_RECOVER_LENGTH;
  523. float retract_recover_length_swap = RETRACT_RECOVER_LENGTH_SWAP;
  524. float retract_recover_feedrate_mm_s = RETRACT_RECOVER_FEEDRATE;
  525. #endif // FWRETRACT
  526. #if HAS_POWER_SWITCH
  527. bool powersupply_on =
  528. #if ENABLED(PS_DEFAULT_OFF)
  529. false
  530. #else
  531. true
  532. #endif
  533. ;
  534. #endif
  535. #if ENABLED(DELTA)
  536. float delta[ABC],
  537. endstop_adj[ABC] = { 0 };
  538. // These values are loaded or reset at boot time when setup() calls
  539. // settings.load(), which calls recalc_delta_settings().
  540. float delta_radius,
  541. delta_tower_angle_trim[2],
  542. delta_tower[ABC][2],
  543. delta_diagonal_rod,
  544. delta_calibration_radius,
  545. delta_diagonal_rod_2_tower[ABC],
  546. delta_segments_per_second,
  547. delta_clip_start_height = Z_MAX_POS;
  548. float delta_safe_distance_from_top();
  549. #endif
  550. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  551. int bilinear_grid_spacing[2], bilinear_start[2];
  552. float bilinear_grid_factor[2],
  553. z_values[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
  554. #endif
  555. #if IS_SCARA
  556. // Float constants for SCARA calculations
  557. const float L1 = SCARA_LINKAGE_1, L2 = SCARA_LINKAGE_2,
  558. L1_2 = sq(float(L1)), L1_2_2 = 2.0 * L1_2,
  559. L2_2 = sq(float(L2));
  560. float delta_segments_per_second = SCARA_SEGMENTS_PER_SECOND,
  561. delta[ABC];
  562. #endif
  563. float cartes[XYZ] = { 0 };
  564. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  565. bool filament_sensor = false; // M405 turns on filament sensor control. M406 turns it off.
  566. float filament_width_nominal = DEFAULT_NOMINAL_FILAMENT_DIA, // Nominal filament width. Change with M404.
  567. filament_width_meas = DEFAULT_MEASURED_FILAMENT_DIA; // Measured filament diameter
  568. uint8_t meas_delay_cm = MEASUREMENT_DELAY_CM, // Distance delay setting
  569. measurement_delay[MAX_MEASUREMENT_DELAY + 1]; // Ring buffer to delayed measurement. Store extruder factor after subtracting 100
  570. int8_t filwidth_delay_index[2] = { 0, -1 }; // Indexes into ring buffer
  571. #endif
  572. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  573. static bool filament_ran_out = false;
  574. #endif
  575. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  576. AdvancedPauseMenuResponse advanced_pause_menu_response;
  577. #endif
  578. #if ENABLED(MIXING_EXTRUDER)
  579. float mixing_factor[MIXING_STEPPERS]; // Reciprocal of mix proportion. 0.0 = off, otherwise >= 1.0.
  580. #if MIXING_VIRTUAL_TOOLS > 1
  581. float mixing_virtual_tool_mix[MIXING_VIRTUAL_TOOLS][MIXING_STEPPERS];
  582. #endif
  583. #endif
  584. static bool send_ok[BUFSIZE];
  585. #if HAS_SERVOS
  586. Servo servo[NUM_SERVOS];
  587. #define MOVE_SERVO(I, P) servo[I].move(P)
  588. #if HAS_Z_SERVO_ENDSTOP
  589. #define DEPLOY_Z_SERVO() MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[0])
  590. #define STOW_Z_SERVO() MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[1])
  591. #endif
  592. #endif
  593. #ifdef CHDK
  594. millis_t chdkHigh = 0;
  595. bool chdkActive = false;
  596. #endif
  597. #ifdef AUTOMATIC_CURRENT_CONTROL
  598. bool auto_current_control = 0;
  599. #endif
  600. #if ENABLED(PID_EXTRUSION_SCALING)
  601. int lpq_len = 20;
  602. #endif
  603. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  604. MarlinBusyState busy_state = NOT_BUSY;
  605. static millis_t next_busy_signal_ms = 0;
  606. uint8_t host_keepalive_interval = DEFAULT_KEEPALIVE_INTERVAL;
  607. #else
  608. #define host_keepalive() NOOP
  609. #endif
  610. #if ENABLED(I2C_POSITION_ENCODERS)
  611. I2CPositionEncodersMgr I2CPEM;
  612. uint8_t blockBufferIndexRef = 0;
  613. millis_t lastUpdateMillis;
  614. #endif
  615. #if ENABLED(CNC_WORKSPACE_PLANES)
  616. static WorkspacePlane workspace_plane = PLANE_XY;
  617. #endif
  618. FORCE_INLINE float pgm_read_any(const float *p) { return pgm_read_float_near(p); }
  619. FORCE_INLINE signed char pgm_read_any(const signed char *p) { return pgm_read_byte_near(p); }
  620. #define XYZ_CONSTS_FROM_CONFIG(type, array, CONFIG) \
  621. static const PROGMEM type array##_P[XYZ] = { X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
  622. static inline type array(AxisEnum axis) { return pgm_read_any(&array##_P[axis]); } \
  623. typedef void __void_##CONFIG##__
  624. XYZ_CONSTS_FROM_CONFIG(float, base_min_pos, MIN_POS);
  625. XYZ_CONSTS_FROM_CONFIG(float, base_max_pos, MAX_POS);
  626. XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS);
  627. XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH);
  628. XYZ_CONSTS_FROM_CONFIG(float, home_bump_mm, HOME_BUMP_MM);
  629. XYZ_CONSTS_FROM_CONFIG(signed char, home_dir, HOME_DIR);
  630. /**
  631. * ***************************************************************************
  632. * ******************************** FUNCTIONS ********************************
  633. * ***************************************************************************
  634. */
  635. void stop();
  636. void get_available_commands();
  637. void process_next_command();
  638. void prepare_move_to_destination();
  639. void get_cartesian_from_steppers();
  640. void set_current_from_steppers_for_axis(const AxisEnum axis);
  641. #if ENABLED(ARC_SUPPORT)
  642. void plan_arc(float target[XYZE], float* offset, uint8_t clockwise);
  643. #endif
  644. #if ENABLED(BEZIER_CURVE_SUPPORT)
  645. void plan_cubic_move(const float offset[4]);
  646. #endif
  647. void tool_change(const uint8_t tmp_extruder, const float fr_mm_s=0.0, bool no_move=false);
  648. void report_current_position();
  649. void report_current_position_detail();
  650. #if ENABLED(DEBUG_LEVELING_FEATURE)
  651. void print_xyz(const char* prefix, const char* suffix, const float x, const float y, const float z) {
  652. serialprintPGM(prefix);
  653. SERIAL_CHAR('(');
  654. SERIAL_ECHO(x);
  655. SERIAL_ECHOPAIR(", ", y);
  656. SERIAL_ECHOPAIR(", ", z);
  657. SERIAL_CHAR(')');
  658. if (suffix) serialprintPGM(suffix); else SERIAL_EOL();
  659. }
  660. void print_xyz(const char* prefix, const char* suffix, const float xyz[]) {
  661. print_xyz(prefix, suffix, xyz[X_AXIS], xyz[Y_AXIS], xyz[Z_AXIS]);
  662. }
  663. #if HAS_ABL
  664. void print_xyz(const char* prefix, const char* suffix, const vector_3 &xyz) {
  665. print_xyz(prefix, suffix, xyz.x, xyz.y, xyz.z);
  666. }
  667. #endif
  668. #define DEBUG_POS(SUFFIX,VAR) do { \
  669. print_xyz(PSTR(" " STRINGIFY(VAR) "="), PSTR(" : " SUFFIX "\n"), VAR); }while(0)
  670. #endif
  671. /**
  672. * sync_plan_position
  673. *
  674. * Set the planner/stepper positions directly from current_position with
  675. * no kinematic translation. Used for homing axes and cartesian/core syncing.
  676. */
  677. void sync_plan_position() {
  678. #if ENABLED(DEBUG_LEVELING_FEATURE)
  679. if (DEBUGGING(LEVELING)) DEBUG_POS("sync_plan_position", current_position);
  680. #endif
  681. planner.set_position_mm(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
  682. }
  683. inline void sync_plan_position_e() { planner.set_e_position_mm(current_position[E_AXIS]); }
  684. #if IS_KINEMATIC
  685. inline void sync_plan_position_kinematic() {
  686. #if ENABLED(DEBUG_LEVELING_FEATURE)
  687. if (DEBUGGING(LEVELING)) DEBUG_POS("sync_plan_position_kinematic", current_position);
  688. #endif
  689. planner.set_position_mm_kinematic(current_position);
  690. }
  691. #define SYNC_PLAN_POSITION_KINEMATIC() sync_plan_position_kinematic()
  692. #else
  693. #define SYNC_PLAN_POSITION_KINEMATIC() sync_plan_position()
  694. #endif
  695. #if ENABLED(SDSUPPORT)
  696. #include "SdFatUtil.h"
  697. int freeMemory() { return SdFatUtil::FreeRam(); }
  698. #else
  699. extern "C" {
  700. extern char __bss_end;
  701. extern char __heap_start;
  702. extern void* __brkval;
  703. int freeMemory() {
  704. int free_memory;
  705. if ((int)__brkval == 0)
  706. free_memory = ((int)&free_memory) - ((int)&__bss_end);
  707. else
  708. free_memory = ((int)&free_memory) - ((int)__brkval);
  709. return free_memory;
  710. }
  711. }
  712. #endif // !SDSUPPORT
  713. #if ENABLED(DIGIPOT_I2C)
  714. extern void digipot_i2c_set_current(uint8_t channel, float current);
  715. extern void digipot_i2c_init();
  716. #endif
  717. /**
  718. * Inject the next "immediate" command, when possible, onto the front of the queue.
  719. * Return true if any immediate commands remain to inject.
  720. */
  721. static bool drain_injected_commands_P() {
  722. if (injected_commands_P != NULL) {
  723. size_t i = 0;
  724. char c, cmd[30];
  725. strncpy_P(cmd, injected_commands_P, sizeof(cmd) - 1);
  726. cmd[sizeof(cmd) - 1] = '\0';
  727. while ((c = cmd[i]) && c != '\n') i++; // find the end of this gcode command
  728. cmd[i] = '\0';
  729. if (enqueue_and_echo_command(cmd)) // success?
  730. injected_commands_P = c ? injected_commands_P + i + 1 : NULL; // next command or done
  731. }
  732. return (injected_commands_P != NULL); // return whether any more remain
  733. }
  734. /**
  735. * Record one or many commands to run from program memory.
  736. * Aborts the current queue, if any.
  737. * Note: drain_injected_commands_P() must be called repeatedly to drain the commands afterwards
  738. */
  739. void enqueue_and_echo_commands_P(const char * const pgcode) {
  740. injected_commands_P = pgcode;
  741. drain_injected_commands_P(); // first command executed asap (when possible)
  742. }
  743. /**
  744. * Clear the Marlin command queue
  745. */
  746. void clear_command_queue() {
  747. cmd_queue_index_r = cmd_queue_index_w;
  748. commands_in_queue = 0;
  749. }
  750. /**
  751. * Once a new command is in the ring buffer, call this to commit it
  752. */
  753. inline void _commit_command(bool say_ok) {
  754. send_ok[cmd_queue_index_w] = say_ok;
  755. if (++cmd_queue_index_w >= BUFSIZE) cmd_queue_index_w = 0;
  756. commands_in_queue++;
  757. }
  758. /**
  759. * Copy a command from RAM into the main command buffer.
  760. * Return true if the command was successfully added.
  761. * Return false for a full buffer, or if the 'command' is a comment.
  762. */
  763. inline bool _enqueuecommand(const char* cmd, bool say_ok=false) {
  764. if (*cmd == ';' || commands_in_queue >= BUFSIZE) return false;
  765. strcpy(command_queue[cmd_queue_index_w], cmd);
  766. _commit_command(say_ok);
  767. return true;
  768. }
  769. /**
  770. * Enqueue with Serial Echo
  771. */
  772. bool enqueue_and_echo_command(const char* cmd, bool say_ok/*=false*/) {
  773. if (_enqueuecommand(cmd, say_ok)) {
  774. SERIAL_ECHO_START();
  775. SERIAL_ECHOPAIR(MSG_ENQUEUEING, cmd);
  776. SERIAL_CHAR('"');
  777. SERIAL_EOL();
  778. return true;
  779. }
  780. return false;
  781. }
  782. void setup_killpin() {
  783. #if HAS_KILL
  784. SET_INPUT_PULLUP(KILL_PIN);
  785. #endif
  786. }
  787. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  788. void setup_filrunoutpin() {
  789. #if ENABLED(ENDSTOPPULLUP_FIL_RUNOUT)
  790. SET_INPUT_PULLUP(FIL_RUNOUT_PIN);
  791. #else
  792. SET_INPUT(FIL_RUNOUT_PIN);
  793. #endif
  794. }
  795. #endif
  796. void setup_powerhold() {
  797. #if HAS_SUICIDE
  798. OUT_WRITE(SUICIDE_PIN, HIGH);
  799. #endif
  800. #if HAS_POWER_SWITCH
  801. #if ENABLED(PS_DEFAULT_OFF)
  802. OUT_WRITE(PS_ON_PIN, PS_ON_ASLEEP);
  803. #else
  804. OUT_WRITE(PS_ON_PIN, PS_ON_AWAKE);
  805. #endif
  806. #endif
  807. }
  808. void suicide() {
  809. #if HAS_SUICIDE
  810. OUT_WRITE(SUICIDE_PIN, LOW);
  811. #endif
  812. }
  813. void servo_init() {
  814. #if NUM_SERVOS >= 1 && HAS_SERVO_0
  815. servo[0].attach(SERVO0_PIN);
  816. servo[0].detach(); // Just set up the pin. We don't have a position yet. Don't move to a random position.
  817. #endif
  818. #if NUM_SERVOS >= 2 && HAS_SERVO_1
  819. servo[1].attach(SERVO1_PIN);
  820. servo[1].detach();
  821. #endif
  822. #if NUM_SERVOS >= 3 && HAS_SERVO_2
  823. servo[2].attach(SERVO2_PIN);
  824. servo[2].detach();
  825. #endif
  826. #if NUM_SERVOS >= 4 && HAS_SERVO_3
  827. servo[3].attach(SERVO3_PIN);
  828. servo[3].detach();
  829. #endif
  830. #if HAS_Z_SERVO_ENDSTOP
  831. /**
  832. * Set position of Z Servo Endstop
  833. *
  834. * The servo might be deployed and positioned too low to stow
  835. * when starting up the machine or rebooting the board.
  836. * There's no way to know where the nozzle is positioned until
  837. * homing has been done - no homing with z-probe without init!
  838. *
  839. */
  840. STOW_Z_SERVO();
  841. #endif
  842. }
  843. /**
  844. * Stepper Reset (RigidBoard, et.al.)
  845. */
  846. #if HAS_STEPPER_RESET
  847. void disableStepperDrivers() {
  848. OUT_WRITE(STEPPER_RESET_PIN, LOW); // drive it down to hold in reset motor driver chips
  849. }
  850. void enableStepperDrivers() { SET_INPUT(STEPPER_RESET_PIN); } // set to input, which allows it to be pulled high by pullups
  851. #endif
  852. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  853. void i2c_on_receive(int bytes) { // just echo all bytes received to serial
  854. i2c.receive(bytes);
  855. }
  856. void i2c_on_request() { // just send dummy data for now
  857. i2c.reply("Hello World!\n");
  858. }
  859. #endif
  860. #if HAS_COLOR_LEDS
  861. void set_led_color(
  862. const uint8_t r, const uint8_t g, const uint8_t b
  863. #if ENABLED(RGBW_LED)
  864. , const uint8_t w=0
  865. #endif
  866. ) {
  867. #if ENABLED(BLINKM)
  868. // This variant uses i2c to send the RGB components to the device.
  869. SendColors(r, g, b);
  870. #endif
  871. #if ENABLED(RGB_LED) || ENABLED(RGBW_LED)
  872. // This variant uses 3 separate pins for the RGB components.
  873. // If the pins can do PWM then their intensity will be set.
  874. WRITE(RGB_LED_R_PIN, r ? HIGH : LOW);
  875. WRITE(RGB_LED_G_PIN, g ? HIGH : LOW);
  876. WRITE(RGB_LED_B_PIN, b ? HIGH : LOW);
  877. analogWrite(RGB_LED_R_PIN, r);
  878. analogWrite(RGB_LED_G_PIN, g);
  879. analogWrite(RGB_LED_B_PIN, b);
  880. #if ENABLED(RGBW_LED)
  881. WRITE(RGB_LED_W_PIN, w ? HIGH : LOW);
  882. analogWrite(RGB_LED_W_PIN, w);
  883. #endif
  884. #endif
  885. #if ENABLED(PCA9632)
  886. // Update I2C LED driver
  887. PCA9632_SetColor(r, g, b);
  888. #endif
  889. }
  890. #endif // HAS_COLOR_LEDS
  891. void gcode_line_error(const char* err, bool doFlush = true) {
  892. SERIAL_ERROR_START();
  893. serialprintPGM(err);
  894. SERIAL_ERRORLN(gcode_LastN);
  895. //Serial.println(gcode_N);
  896. if (doFlush) FlushSerialRequestResend();
  897. serial_count = 0;
  898. }
  899. /**
  900. * Get all commands waiting on the serial port and queue them.
  901. * Exit when the buffer is full or when no more characters are
  902. * left on the serial port.
  903. */
  904. inline void get_serial_commands() {
  905. static char serial_line_buffer[MAX_CMD_SIZE];
  906. static bool serial_comment_mode = false;
  907. // If the command buffer is empty for too long,
  908. // send "wait" to indicate Marlin is still waiting.
  909. #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
  910. static millis_t last_command_time = 0;
  911. const millis_t ms = millis();
  912. if (commands_in_queue == 0 && !MYSERIAL.available() && ELAPSED(ms, last_command_time + NO_TIMEOUTS)) {
  913. SERIAL_ECHOLNPGM(MSG_WAIT);
  914. last_command_time = ms;
  915. }
  916. #endif
  917. /**
  918. * Loop while serial characters are incoming and the queue is not full
  919. */
  920. while (commands_in_queue < BUFSIZE && MYSERIAL.available() > 0) {
  921. char serial_char = MYSERIAL.read();
  922. /**
  923. * If the character ends the line
  924. */
  925. if (serial_char == '\n' || serial_char == '\r') {
  926. serial_comment_mode = false; // end of line == end of comment
  927. if (!serial_count) continue; // skip empty lines
  928. serial_line_buffer[serial_count] = 0; // terminate string
  929. serial_count = 0; //reset buffer
  930. char* command = serial_line_buffer;
  931. while (*command == ' ') command++; // skip any leading spaces
  932. char *npos = (*command == 'N') ? command : NULL, // Require the N parameter to start the line
  933. *apos = strchr(command, '*');
  934. if (npos) {
  935. bool M110 = strstr_P(command, PSTR("M110")) != NULL;
  936. if (M110) {
  937. char* n2pos = strchr(command + 4, 'N');
  938. if (n2pos) npos = n2pos;
  939. }
  940. gcode_N = strtol(npos + 1, NULL, 10);
  941. if (gcode_N != gcode_LastN + 1 && !M110) {
  942. gcode_line_error(PSTR(MSG_ERR_LINE_NO));
  943. return;
  944. }
  945. if (apos) {
  946. byte checksum = 0, count = 0;
  947. while (command[count] != '*') checksum ^= command[count++];
  948. if (strtol(apos + 1, NULL, 10) != checksum) {
  949. gcode_line_error(PSTR(MSG_ERR_CHECKSUM_MISMATCH));
  950. return;
  951. }
  952. // if no errors, continue parsing
  953. }
  954. else {
  955. gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM));
  956. return;
  957. }
  958. gcode_LastN = gcode_N;
  959. // if no errors, continue parsing
  960. }
  961. else if (apos) { // No '*' without 'N'
  962. gcode_line_error(PSTR(MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM), false);
  963. return;
  964. }
  965. // Movement commands alert when stopped
  966. if (IsStopped()) {
  967. char* gpos = strchr(command, 'G');
  968. if (gpos) {
  969. const int codenum = strtol(gpos + 1, NULL, 10);
  970. switch (codenum) {
  971. case 0:
  972. case 1:
  973. case 2:
  974. case 3:
  975. SERIAL_ERRORLNPGM(MSG_ERR_STOPPED);
  976. LCD_MESSAGEPGM(MSG_STOPPED);
  977. break;
  978. }
  979. }
  980. }
  981. #if DISABLED(EMERGENCY_PARSER)
  982. // If command was e-stop process now
  983. if (strcmp(command, "M108") == 0) {
  984. wait_for_heatup = false;
  985. #if ENABLED(ULTIPANEL)
  986. wait_for_user = false;
  987. #endif
  988. }
  989. if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
  990. if (strcmp(command, "M410") == 0) { quickstop_stepper(); }
  991. #endif
  992. #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
  993. last_command_time = ms;
  994. #endif
  995. // Add the command to the queue
  996. _enqueuecommand(serial_line_buffer, true);
  997. }
  998. else if (serial_count >= MAX_CMD_SIZE - 1) {
  999. // Keep fetching, but ignore normal characters beyond the max length
  1000. // The command will be injected when EOL is reached
  1001. }
  1002. else if (serial_char == '\\') { // Handle escapes
  1003. if (MYSERIAL.available() > 0) {
  1004. // if we have one more character, copy it over
  1005. serial_char = MYSERIAL.read();
  1006. if (!serial_comment_mode) serial_line_buffer[serial_count++] = serial_char;
  1007. }
  1008. // otherwise do nothing
  1009. }
  1010. else { // it's not a newline, carriage return or escape char
  1011. if (serial_char == ';') serial_comment_mode = true;
  1012. if (!serial_comment_mode) serial_line_buffer[serial_count++] = serial_char;
  1013. }
  1014. } // queue has space, serial has data
  1015. }
  1016. #if ENABLED(SDSUPPORT)
  1017. /**
  1018. * Get commands from the SD Card until the command buffer is full
  1019. * or until the end of the file is reached. The special character '#'
  1020. * can also interrupt buffering.
  1021. */
  1022. inline void get_sdcard_commands() {
  1023. static bool stop_buffering = false,
  1024. sd_comment_mode = false;
  1025. if (!card.sdprinting) return;
  1026. /**
  1027. * '#' stops reading from SD to the buffer prematurely, so procedural
  1028. * macro calls are possible. If it occurs, stop_buffering is triggered
  1029. * and the buffer is run dry; this character _can_ occur in serial com
  1030. * due to checksums, however, no checksums are used in SD printing.
  1031. */
  1032. if (commands_in_queue == 0) stop_buffering = false;
  1033. uint16_t sd_count = 0;
  1034. bool card_eof = card.eof();
  1035. while (commands_in_queue < BUFSIZE && !card_eof && !stop_buffering) {
  1036. const int16_t n = card.get();
  1037. char sd_char = (char)n;
  1038. card_eof = card.eof();
  1039. if (card_eof || n == -1
  1040. || sd_char == '\n' || sd_char == '\r'
  1041. || ((sd_char == '#' || sd_char == ':') && !sd_comment_mode)
  1042. ) {
  1043. if (card_eof) {
  1044. SERIAL_PROTOCOLLNPGM(MSG_FILE_PRINTED);
  1045. card.printingHasFinished();
  1046. #if ENABLED(PRINTER_EVENT_LEDS)
  1047. LCD_MESSAGEPGM(MSG_INFO_COMPLETED_PRINTS);
  1048. set_led_color(0, 255, 0); // Green
  1049. #if HAS_RESUME_CONTINUE
  1050. enqueue_and_echo_commands_P(PSTR("M0")); // end of the queue!
  1051. #else
  1052. safe_delay(1000);
  1053. #endif
  1054. set_led_color(0, 0, 0); // OFF
  1055. #endif
  1056. card.checkautostart(true);
  1057. }
  1058. else if (n == -1) {
  1059. SERIAL_ERROR_START();
  1060. SERIAL_ECHOLNPGM(MSG_SD_ERR_READ);
  1061. }
  1062. if (sd_char == '#') stop_buffering = true;
  1063. sd_comment_mode = false; // for new command
  1064. if (!sd_count) continue; // skip empty lines (and comment lines)
  1065. command_queue[cmd_queue_index_w][sd_count] = '\0'; // terminate string
  1066. sd_count = 0; // clear sd line buffer
  1067. _commit_command(false);
  1068. }
  1069. else if (sd_count >= MAX_CMD_SIZE - 1) {
  1070. /**
  1071. * Keep fetching, but ignore normal characters beyond the max length
  1072. * The command will be injected when EOL is reached
  1073. */
  1074. }
  1075. else {
  1076. if (sd_char == ';') sd_comment_mode = true;
  1077. if (!sd_comment_mode) command_queue[cmd_queue_index_w][sd_count++] = sd_char;
  1078. }
  1079. }
  1080. }
  1081. #endif // SDSUPPORT
  1082. /**
  1083. * Add to the circular command queue the next command from:
  1084. * - The command-injection queue (injected_commands_P)
  1085. * - The active serial input (usually USB)
  1086. * - The SD card file being actively printed
  1087. */
  1088. void get_available_commands() {
  1089. // if any immediate commands remain, don't get other commands yet
  1090. if (drain_injected_commands_P()) return;
  1091. get_serial_commands();
  1092. #if ENABLED(SDSUPPORT)
  1093. get_sdcard_commands();
  1094. #endif
  1095. }
  1096. /**
  1097. * Set target_extruder from the T parameter or the active_extruder
  1098. *
  1099. * Returns TRUE if the target is invalid
  1100. */
  1101. bool get_target_extruder_from_command(const uint16_t code) {
  1102. if (parser.seenval('T')) {
  1103. const int8_t e = parser.value_byte();
  1104. if (e >= EXTRUDERS) {
  1105. SERIAL_ECHO_START();
  1106. SERIAL_CHAR('M');
  1107. SERIAL_ECHO(code);
  1108. SERIAL_ECHOLNPAIR(" " MSG_INVALID_EXTRUDER " ", e);
  1109. return true;
  1110. }
  1111. target_extruder = e;
  1112. }
  1113. else
  1114. target_extruder = active_extruder;
  1115. return false;
  1116. }
  1117. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  1118. bool extruder_duplication_enabled = false; // Used in Dual X mode 2
  1119. #endif
  1120. #if ENABLED(DUAL_X_CARRIAGE)
  1121. static DualXMode dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
  1122. static float x_home_pos(const int extruder) {
  1123. if (extruder == 0)
  1124. return LOGICAL_X_POSITION(base_home_pos(X_AXIS));
  1125. else
  1126. /**
  1127. * In dual carriage mode the extruder offset provides an override of the
  1128. * second X-carriage position when homed - otherwise X2_HOME_POS is used.
  1129. * This allows soft recalibration of the second extruder home position
  1130. * without firmware reflash (through the M218 command).
  1131. */
  1132. return LOGICAL_X_POSITION(hotend_offset[X_AXIS][1] > 0 ? hotend_offset[X_AXIS][1] : X2_HOME_POS);
  1133. }
  1134. static int x_home_dir(const int extruder) { return extruder ? X2_HOME_DIR : X_HOME_DIR; }
  1135. static float inactive_extruder_x_pos = X2_MAX_POS; // used in mode 0 & 1
  1136. static bool active_extruder_parked = false; // used in mode 1 & 2
  1137. static float raised_parked_position[XYZE]; // used in mode 1
  1138. static millis_t delayed_move_time = 0; // used in mode 1
  1139. static float duplicate_extruder_x_offset = DEFAULT_DUPLICATION_X_OFFSET; // used in mode 2
  1140. static int16_t duplicate_extruder_temp_offset = 0; // used in mode 2
  1141. #endif // DUAL_X_CARRIAGE
  1142. #if HAS_WORKSPACE_OFFSET || ENABLED(DUAL_X_CARRIAGE)
  1143. /**
  1144. * Software endstops can be used to monitor the open end of
  1145. * an axis that has a hardware endstop on the other end. Or
  1146. * they can prevent axes from moving past endstops and grinding.
  1147. *
  1148. * To keep doing their job as the coordinate system changes,
  1149. * the software endstop positions must be refreshed to remain
  1150. * at the same positions relative to the machine.
  1151. */
  1152. void update_software_endstops(const AxisEnum axis) {
  1153. const float offs = 0.0
  1154. #if HAS_HOME_OFFSET
  1155. + home_offset[axis]
  1156. #endif
  1157. #if HAS_POSITION_SHIFT
  1158. + position_shift[axis]
  1159. #endif
  1160. ;
  1161. #if HAS_HOME_OFFSET && HAS_POSITION_SHIFT
  1162. workspace_offset[axis] = offs;
  1163. #endif
  1164. #if ENABLED(DUAL_X_CARRIAGE)
  1165. if (axis == X_AXIS) {
  1166. // In Dual X mode hotend_offset[X] is T1's home position
  1167. float dual_max_x = max(hotend_offset[X_AXIS][1], X2_MAX_POS);
  1168. if (active_extruder != 0) {
  1169. // T1 can move from X2_MIN_POS to X2_MAX_POS or X2 home position (whichever is larger)
  1170. soft_endstop_min[X_AXIS] = X2_MIN_POS + offs;
  1171. soft_endstop_max[X_AXIS] = dual_max_x + offs;
  1172. }
  1173. else if (dual_x_carriage_mode == DXC_DUPLICATION_MODE) {
  1174. // In Duplication Mode, T0 can move as far left as X_MIN_POS
  1175. // but not so far to the right that T1 would move past the end
  1176. soft_endstop_min[X_AXIS] = base_min_pos(X_AXIS) + offs;
  1177. soft_endstop_max[X_AXIS] = min(base_max_pos(X_AXIS), dual_max_x - duplicate_extruder_x_offset) + offs;
  1178. }
  1179. else {
  1180. // In other modes, T0 can move from X_MIN_POS to X_MAX_POS
  1181. soft_endstop_min[axis] = base_min_pos(axis) + offs;
  1182. soft_endstop_max[axis] = base_max_pos(axis) + offs;
  1183. }
  1184. }
  1185. #else
  1186. soft_endstop_min[axis] = base_min_pos(axis) + offs;
  1187. soft_endstop_max[axis] = base_max_pos(axis) + offs;
  1188. #endif
  1189. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1190. if (DEBUGGING(LEVELING)) {
  1191. SERIAL_ECHOPAIR("For ", axis_codes[axis]);
  1192. #if HAS_HOME_OFFSET
  1193. SERIAL_ECHOPAIR(" axis:\n home_offset = ", home_offset[axis]);
  1194. #endif
  1195. #if HAS_POSITION_SHIFT
  1196. SERIAL_ECHOPAIR("\n position_shift = ", position_shift[axis]);
  1197. #endif
  1198. SERIAL_ECHOPAIR("\n soft_endstop_min = ", soft_endstop_min[axis]);
  1199. SERIAL_ECHOLNPAIR("\n soft_endstop_max = ", soft_endstop_max[axis]);
  1200. }
  1201. #endif
  1202. #if ENABLED(DELTA)
  1203. if (axis == Z_AXIS)
  1204. delta_clip_start_height = soft_endstop_max[axis] - delta_safe_distance_from_top();
  1205. #endif
  1206. }
  1207. #endif // HAS_WORKSPACE_OFFSET || DUAL_X_CARRIAGE
  1208. #if HAS_M206_COMMAND
  1209. /**
  1210. * Change the home offset for an axis, update the current
  1211. * position and the software endstops to retain the same
  1212. * relative distance to the new home.
  1213. *
  1214. * Since this changes the current_position, code should
  1215. * call sync_plan_position soon after this.
  1216. */
  1217. static void set_home_offset(const AxisEnum axis, const float v) {
  1218. current_position[axis] += v - home_offset[axis];
  1219. home_offset[axis] = v;
  1220. update_software_endstops(axis);
  1221. }
  1222. #endif // HAS_M206_COMMAND
  1223. /**
  1224. * Set an axis' current position to its home position (after homing).
  1225. *
  1226. * For Core and Cartesian robots this applies one-to-one when an
  1227. * individual axis has been homed.
  1228. *
  1229. * DELTA should wait until all homing is done before setting the XYZ
  1230. * current_position to home, because homing is a single operation.
  1231. * In the case where the axis positions are already known and previously
  1232. * homed, DELTA could home to X or Y individually by moving either one
  1233. * to the center. However, homing Z always homes XY and Z.
  1234. *
  1235. * SCARA should wait until all XY homing is done before setting the XY
  1236. * current_position to home, because neither X nor Y is at home until
  1237. * both are at home. Z can however be homed individually.
  1238. *
  1239. * Callers must sync the planner position after calling this!
  1240. */
  1241. static void set_axis_is_at_home(const AxisEnum axis) {
  1242. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1243. if (DEBUGGING(LEVELING)) {
  1244. SERIAL_ECHOPAIR(">>> set_axis_is_at_home(", axis_codes[axis]);
  1245. SERIAL_CHAR(')');
  1246. SERIAL_EOL();
  1247. }
  1248. #endif
  1249. axis_known_position[axis] = axis_homed[axis] = true;
  1250. #if HAS_POSITION_SHIFT
  1251. position_shift[axis] = 0;
  1252. update_software_endstops(axis);
  1253. #endif
  1254. #if ENABLED(DUAL_X_CARRIAGE)
  1255. if (axis == X_AXIS && (active_extruder == 1 || dual_x_carriage_mode == DXC_DUPLICATION_MODE)) {
  1256. current_position[X_AXIS] = x_home_pos(active_extruder);
  1257. return;
  1258. }
  1259. #endif
  1260. #if ENABLED(MORGAN_SCARA)
  1261. /**
  1262. * Morgan SCARA homes XY at the same time
  1263. */
  1264. if (axis == X_AXIS || axis == Y_AXIS) {
  1265. float homeposition[XYZ];
  1266. LOOP_XYZ(i) homeposition[i] = LOGICAL_POSITION(base_home_pos((AxisEnum)i), i);
  1267. // SERIAL_ECHOPAIR("homeposition X:", homeposition[X_AXIS]);
  1268. // SERIAL_ECHOLNPAIR(" Y:", homeposition[Y_AXIS]);
  1269. /**
  1270. * Get Home position SCARA arm angles using inverse kinematics,
  1271. * and calculate homing offset using forward kinematics
  1272. */
  1273. inverse_kinematics(homeposition);
  1274. forward_kinematics_SCARA(delta[A_AXIS], delta[B_AXIS]);
  1275. // SERIAL_ECHOPAIR("Cartesian X:", cartes[X_AXIS]);
  1276. // SERIAL_ECHOLNPAIR(" Y:", cartes[Y_AXIS]);
  1277. current_position[axis] = LOGICAL_POSITION(cartes[axis], axis);
  1278. /**
  1279. * SCARA home positions are based on configuration since the actual
  1280. * limits are determined by the inverse kinematic transform.
  1281. */
  1282. soft_endstop_min[axis] = base_min_pos(axis); // + (cartes[axis] - base_home_pos(axis));
  1283. soft_endstop_max[axis] = base_max_pos(axis); // + (cartes[axis] - base_home_pos(axis));
  1284. }
  1285. else
  1286. #endif
  1287. {
  1288. current_position[axis] = LOGICAL_POSITION(base_home_pos(axis), axis);
  1289. }
  1290. /**
  1291. * Z Probe Z Homing? Account for the probe's Z offset.
  1292. */
  1293. #if HAS_BED_PROBE && Z_HOME_DIR < 0
  1294. if (axis == Z_AXIS) {
  1295. #if HOMING_Z_WITH_PROBE
  1296. current_position[Z_AXIS] -= zprobe_zoffset;
  1297. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1298. if (DEBUGGING(LEVELING)) {
  1299. SERIAL_ECHOLNPGM("*** Z HOMED WITH PROBE (Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) ***");
  1300. SERIAL_ECHOLNPAIR("> zprobe_zoffset = ", zprobe_zoffset);
  1301. }
  1302. #endif
  1303. #elif ENABLED(DEBUG_LEVELING_FEATURE)
  1304. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("*** Z HOMED TO ENDSTOP (Z_MIN_PROBE_ENDSTOP) ***");
  1305. #endif
  1306. }
  1307. #endif
  1308. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1309. if (DEBUGGING(LEVELING)) {
  1310. #if HAS_HOME_OFFSET
  1311. SERIAL_ECHOPAIR("> home_offset[", axis_codes[axis]);
  1312. SERIAL_ECHOLNPAIR("] = ", home_offset[axis]);
  1313. #endif
  1314. DEBUG_POS("", current_position);
  1315. SERIAL_ECHOPAIR("<<< set_axis_is_at_home(", axis_codes[axis]);
  1316. SERIAL_CHAR(')');
  1317. SERIAL_EOL();
  1318. }
  1319. #endif
  1320. #if ENABLED(I2C_POSITION_ENCODERS)
  1321. I2CPEM.homed(axis);
  1322. #endif
  1323. }
  1324. /**
  1325. * Some planner shorthand inline functions
  1326. */
  1327. inline float get_homing_bump_feedrate(const AxisEnum axis) {
  1328. static const uint8_t homing_bump_divisor[] PROGMEM = HOMING_BUMP_DIVISOR;
  1329. uint8_t hbd = pgm_read_byte(&homing_bump_divisor[axis]);
  1330. if (hbd < 1) {
  1331. hbd = 10;
  1332. SERIAL_ECHO_START();
  1333. SERIAL_ECHOLNPGM("Warning: Homing Bump Divisor < 1");
  1334. }
  1335. return homing_feedrate(axis) / hbd;
  1336. }
  1337. /**
  1338. * Move the planner to the current position from wherever it last moved
  1339. * (or from wherever it has been told it is located).
  1340. */
  1341. inline void line_to_current_position() {
  1342. planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], feedrate_mm_s, active_extruder);
  1343. }
  1344. /**
  1345. * Move the planner to the position stored in the destination array, which is
  1346. * used by G0/G1/G2/G3/G5 and many other functions to set a destination.
  1347. */
  1348. inline void line_to_destination(const float fr_mm_s) {
  1349. planner.buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], fr_mm_s, active_extruder);
  1350. }
  1351. inline void line_to_destination() { line_to_destination(feedrate_mm_s); }
  1352. inline void set_current_to_destination() { COPY(current_position, destination); }
  1353. inline void set_destination_to_current() { COPY(destination, current_position); }
  1354. #if IS_KINEMATIC
  1355. /**
  1356. * Calculate delta, start a line, and set current_position to destination
  1357. */
  1358. void prepare_uninterpolated_move_to_destination(const float fr_mm_s=0.0) {
  1359. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1360. if (DEBUGGING(LEVELING)) DEBUG_POS("prepare_uninterpolated_move_to_destination", destination);
  1361. #endif
  1362. refresh_cmd_timeout();
  1363. #if UBL_DELTA
  1364. // ubl segmented line will do z-only moves in single segment
  1365. ubl.prepare_segmented_line_to(destination, MMS_SCALED(fr_mm_s ? fr_mm_s : feedrate_mm_s));
  1366. #else
  1367. if ( current_position[X_AXIS] == destination[X_AXIS]
  1368. && current_position[Y_AXIS] == destination[Y_AXIS]
  1369. && current_position[Z_AXIS] == destination[Z_AXIS]
  1370. && current_position[E_AXIS] == destination[E_AXIS]
  1371. ) return;
  1372. planner.buffer_line_kinematic(destination, MMS_SCALED(fr_mm_s ? fr_mm_s : feedrate_mm_s), active_extruder);
  1373. #endif
  1374. set_current_to_destination();
  1375. }
  1376. #endif // IS_KINEMATIC
  1377. /**
  1378. * Plan a move to (X, Y, Z) and set the current_position
  1379. * The final current_position may not be the one that was requested
  1380. */
  1381. void do_blocking_move_to(const float &lx, const float &ly, const float &lz, const float &fr_mm_s/*=0.0*/) {
  1382. const float old_feedrate_mm_s = feedrate_mm_s;
  1383. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1384. if (DEBUGGING(LEVELING)) print_xyz(PSTR(">>> do_blocking_move_to"), NULL, lx, ly, lz);
  1385. #endif
  1386. #if ENABLED(DELTA)
  1387. if (!position_is_reachable_xy(lx, ly)) return;
  1388. feedrate_mm_s = fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  1389. set_destination_to_current(); // sync destination at the start
  1390. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1391. if (DEBUGGING(LEVELING)) DEBUG_POS("set_destination_to_current", destination);
  1392. #endif
  1393. // when in the danger zone
  1394. if (current_position[Z_AXIS] > delta_clip_start_height) {
  1395. if (lz > delta_clip_start_height) { // staying in the danger zone
  1396. destination[X_AXIS] = lx; // move directly (uninterpolated)
  1397. destination[Y_AXIS] = ly;
  1398. destination[Z_AXIS] = lz;
  1399. prepare_uninterpolated_move_to_destination(); // set_current_to_destination
  1400. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1401. if (DEBUGGING(LEVELING)) DEBUG_POS("danger zone move", current_position);
  1402. #endif
  1403. return;
  1404. }
  1405. else {
  1406. destination[Z_AXIS] = delta_clip_start_height;
  1407. prepare_uninterpolated_move_to_destination(); // set_current_to_destination
  1408. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1409. if (DEBUGGING(LEVELING)) DEBUG_POS("zone border move", current_position);
  1410. #endif
  1411. }
  1412. }
  1413. if (lz > current_position[Z_AXIS]) { // raising?
  1414. destination[Z_AXIS] = lz;
  1415. prepare_uninterpolated_move_to_destination(); // set_current_to_destination
  1416. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1417. if (DEBUGGING(LEVELING)) DEBUG_POS("z raise move", current_position);
  1418. #endif
  1419. }
  1420. destination[X_AXIS] = lx;
  1421. destination[Y_AXIS] = ly;
  1422. prepare_move_to_destination(); // set_current_to_destination
  1423. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1424. if (DEBUGGING(LEVELING)) DEBUG_POS("xy move", current_position);
  1425. #endif
  1426. if (lz < current_position[Z_AXIS]) { // lowering?
  1427. destination[Z_AXIS] = lz;
  1428. prepare_uninterpolated_move_to_destination(); // set_current_to_destination
  1429. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1430. if (DEBUGGING(LEVELING)) DEBUG_POS("z lower move", current_position);
  1431. #endif
  1432. }
  1433. #elif IS_SCARA
  1434. if (!position_is_reachable_xy(lx, ly)) return;
  1435. set_destination_to_current();
  1436. // If Z needs to raise, do it before moving XY
  1437. if (destination[Z_AXIS] < lz) {
  1438. destination[Z_AXIS] = lz;
  1439. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS));
  1440. }
  1441. destination[X_AXIS] = lx;
  1442. destination[Y_AXIS] = ly;
  1443. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S);
  1444. // If Z needs to lower, do it after moving XY
  1445. if (destination[Z_AXIS] > lz) {
  1446. destination[Z_AXIS] = lz;
  1447. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS));
  1448. }
  1449. #else
  1450. // If Z needs to raise, do it before moving XY
  1451. if (current_position[Z_AXIS] < lz) {
  1452. feedrate_mm_s = fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS);
  1453. current_position[Z_AXIS] = lz;
  1454. line_to_current_position();
  1455. }
  1456. feedrate_mm_s = fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  1457. current_position[X_AXIS] = lx;
  1458. current_position[Y_AXIS] = ly;
  1459. line_to_current_position();
  1460. // If Z needs to lower, do it after moving XY
  1461. if (current_position[Z_AXIS] > lz) {
  1462. feedrate_mm_s = fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS);
  1463. current_position[Z_AXIS] = lz;
  1464. line_to_current_position();
  1465. }
  1466. #endif
  1467. stepper.synchronize();
  1468. feedrate_mm_s = old_feedrate_mm_s;
  1469. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1470. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< do_blocking_move_to");
  1471. #endif
  1472. }
  1473. void do_blocking_move_to_x(const float &lx, const float &fr_mm_s/*=0.0*/) {
  1474. do_blocking_move_to(lx, current_position[Y_AXIS], current_position[Z_AXIS], fr_mm_s);
  1475. }
  1476. void do_blocking_move_to_z(const float &lz, const float &fr_mm_s/*=0.0*/) {
  1477. do_blocking_move_to(current_position[X_AXIS], current_position[Y_AXIS], lz, fr_mm_s);
  1478. }
  1479. void do_blocking_move_to_xy(const float &lx, const float &ly, const float &fr_mm_s/*=0.0*/) {
  1480. do_blocking_move_to(lx, ly, current_position[Z_AXIS], fr_mm_s);
  1481. }
  1482. //
  1483. // Prepare to do endstop or probe moves
  1484. // with custom feedrates.
  1485. //
  1486. // - Save current feedrates
  1487. // - Reset the rate multiplier
  1488. // - Reset the command timeout
  1489. // - Enable the endstops (for endstop moves)
  1490. //
  1491. static void setup_for_endstop_or_probe_move() {
  1492. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1493. if (DEBUGGING(LEVELING)) DEBUG_POS("setup_for_endstop_or_probe_move", current_position);
  1494. #endif
  1495. saved_feedrate_mm_s = feedrate_mm_s;
  1496. saved_feedrate_percentage = feedrate_percentage;
  1497. feedrate_percentage = 100;
  1498. refresh_cmd_timeout();
  1499. }
  1500. static void clean_up_after_endstop_or_probe_move() {
  1501. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1502. if (DEBUGGING(LEVELING)) DEBUG_POS("clean_up_after_endstop_or_probe_move", current_position);
  1503. #endif
  1504. feedrate_mm_s = saved_feedrate_mm_s;
  1505. feedrate_percentage = saved_feedrate_percentage;
  1506. refresh_cmd_timeout();
  1507. }
  1508. #if HAS_BED_PROBE
  1509. /**
  1510. * Raise Z to a minimum height to make room for a probe to move
  1511. */
  1512. inline void do_probe_raise(const float z_raise) {
  1513. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1514. if (DEBUGGING(LEVELING)) {
  1515. SERIAL_ECHOPAIR("do_probe_raise(", z_raise);
  1516. SERIAL_CHAR(')');
  1517. SERIAL_EOL();
  1518. }
  1519. #endif
  1520. float z_dest = LOGICAL_Z_POSITION(z_raise);
  1521. if (zprobe_zoffset < 0) z_dest -= zprobe_zoffset;
  1522. #if ENABLED(DELTA)
  1523. z_dest -= home_offset[Z_AXIS]; // Account for delta height adjustment
  1524. #endif
  1525. if (z_dest > current_position[Z_AXIS])
  1526. do_blocking_move_to_z(z_dest);
  1527. }
  1528. #endif // HAS_BED_PROBE
  1529. #if HAS_PROBING_PROCEDURE || HOTENDS > 1 || ENABLED(Z_PROBE_ALLEN_KEY) || ENABLED(Z_PROBE_SLED) || ENABLED(NOZZLE_CLEAN_FEATURE) || ENABLED(NOZZLE_PARK_FEATURE) || ENABLED(DELTA_AUTO_CALIBRATION)
  1530. bool axis_unhomed_error(const bool x/*=true*/, const bool y/*=true*/, const bool z/*=true*/) {
  1531. #if ENABLED(HOME_AFTER_DEACTIVATE)
  1532. const bool xx = x && !axis_known_position[X_AXIS],
  1533. yy = y && !axis_known_position[Y_AXIS],
  1534. zz = z && !axis_known_position[Z_AXIS];
  1535. #else
  1536. const bool xx = x && !axis_homed[X_AXIS],
  1537. yy = y && !axis_homed[Y_AXIS],
  1538. zz = z && !axis_homed[Z_AXIS];
  1539. #endif
  1540. if (xx || yy || zz) {
  1541. SERIAL_ECHO_START();
  1542. SERIAL_ECHOPGM(MSG_HOME " ");
  1543. if (xx) SERIAL_ECHOPGM(MSG_X);
  1544. if (yy) SERIAL_ECHOPGM(MSG_Y);
  1545. if (zz) SERIAL_ECHOPGM(MSG_Z);
  1546. SERIAL_ECHOLNPGM(" " MSG_FIRST);
  1547. #if ENABLED(ULTRA_LCD)
  1548. lcd_status_printf_P(0, PSTR(MSG_HOME " %s%s%s " MSG_FIRST), xx ? MSG_X : "", yy ? MSG_Y : "", zz ? MSG_Z : "");
  1549. #endif
  1550. return true;
  1551. }
  1552. return false;
  1553. }
  1554. #endif
  1555. #if ENABLED(Z_PROBE_SLED)
  1556. #ifndef SLED_DOCKING_OFFSET
  1557. #define SLED_DOCKING_OFFSET 0
  1558. #endif
  1559. /**
  1560. * Method to dock/undock a sled designed by Charles Bell.
  1561. *
  1562. * stow[in] If false, move to MAX_X and engage the solenoid
  1563. * If true, move to MAX_X and release the solenoid
  1564. */
  1565. static void dock_sled(bool stow) {
  1566. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1567. if (DEBUGGING(LEVELING)) {
  1568. SERIAL_ECHOPAIR("dock_sled(", stow);
  1569. SERIAL_CHAR(')');
  1570. SERIAL_EOL();
  1571. }
  1572. #endif
  1573. // Dock sled a bit closer to ensure proper capturing
  1574. do_blocking_move_to_x(X_MAX_POS + SLED_DOCKING_OFFSET - ((stow) ? 1 : 0));
  1575. #if HAS_SOLENOID_1 && DISABLED(EXT_SOLENOID)
  1576. WRITE(SOL1_PIN, !stow); // switch solenoid
  1577. #endif
  1578. }
  1579. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  1580. FORCE_INLINE void do_blocking_move_to(const float logical[XYZ], const float &fr_mm_s) {
  1581. do_blocking_move_to(logical[X_AXIS], logical[Y_AXIS], logical[Z_AXIS], fr_mm_s);
  1582. }
  1583. void run_deploy_moves_script() {
  1584. #if defined(Z_PROBE_ALLEN_KEY_DEPLOY_1_X) || defined(Z_PROBE_ALLEN_KEY_DEPLOY_1_Y) || defined(Z_PROBE_ALLEN_KEY_DEPLOY_1_Z)
  1585. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_X
  1586. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_X current_position[X_AXIS]
  1587. #endif
  1588. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_Y
  1589. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_Y current_position[Y_AXIS]
  1590. #endif
  1591. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_Z
  1592. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_Z current_position[Z_AXIS]
  1593. #endif
  1594. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE
  1595. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE 0.0
  1596. #endif
  1597. const float deploy_1[] = { Z_PROBE_ALLEN_KEY_DEPLOY_1_X, Z_PROBE_ALLEN_KEY_DEPLOY_1_Y, Z_PROBE_ALLEN_KEY_DEPLOY_1_Z };
  1598. do_blocking_move_to(deploy_1, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE));
  1599. #endif
  1600. #if defined(Z_PROBE_ALLEN_KEY_DEPLOY_2_X) || defined(Z_PROBE_ALLEN_KEY_DEPLOY_2_Y) || defined(Z_PROBE_ALLEN_KEY_DEPLOY_2_Z)
  1601. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_X
  1602. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_X current_position[X_AXIS]
  1603. #endif
  1604. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_Y
  1605. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Y current_position[Y_AXIS]
  1606. #endif
  1607. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_Z
  1608. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Z current_position[Z_AXIS]
  1609. #endif
  1610. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE
  1611. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE 0.0
  1612. #endif
  1613. const float deploy_2[] = { Z_PROBE_ALLEN_KEY_DEPLOY_2_X, Z_PROBE_ALLEN_KEY_DEPLOY_2_Y, Z_PROBE_ALLEN_KEY_DEPLOY_2_Z };
  1614. do_blocking_move_to(deploy_2, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE));
  1615. #endif
  1616. #if defined(Z_PROBE_ALLEN_KEY_DEPLOY_3_X) || defined(Z_PROBE_ALLEN_KEY_DEPLOY_3_Y) || defined(Z_PROBE_ALLEN_KEY_DEPLOY_3_Z)
  1617. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_X
  1618. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_X current_position[X_AXIS]
  1619. #endif
  1620. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_Y
  1621. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Y current_position[Y_AXIS]
  1622. #endif
  1623. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_Z
  1624. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Z current_position[Z_AXIS]
  1625. #endif
  1626. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE
  1627. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE 0.0
  1628. #endif
  1629. const float deploy_3[] = { Z_PROBE_ALLEN_KEY_DEPLOY_3_X, Z_PROBE_ALLEN_KEY_DEPLOY_3_Y, Z_PROBE_ALLEN_KEY_DEPLOY_3_Z };
  1630. do_blocking_move_to(deploy_3, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE));
  1631. #endif
  1632. #if defined(Z_PROBE_ALLEN_KEY_DEPLOY_4_X) || defined(Z_PROBE_ALLEN_KEY_DEPLOY_4_Y) || defined(Z_PROBE_ALLEN_KEY_DEPLOY_4_Z)
  1633. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_X
  1634. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_X current_position[X_AXIS]
  1635. #endif
  1636. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_Y
  1637. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_Y current_position[Y_AXIS]
  1638. #endif
  1639. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_Z
  1640. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_Z current_position[Z_AXIS]
  1641. #endif
  1642. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE
  1643. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE 0.0
  1644. #endif
  1645. const float deploy_4[] = { Z_PROBE_ALLEN_KEY_DEPLOY_4_X, Z_PROBE_ALLEN_KEY_DEPLOY_4_Y, Z_PROBE_ALLEN_KEY_DEPLOY_4_Z };
  1646. do_blocking_move_to(deploy_4, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE));
  1647. #endif
  1648. #if defined(Z_PROBE_ALLEN_KEY_DEPLOY_5_X) || defined(Z_PROBE_ALLEN_KEY_DEPLOY_5_Y) || defined(Z_PROBE_ALLEN_KEY_DEPLOY_5_Z)
  1649. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_X
  1650. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_X current_position[X_AXIS]
  1651. #endif
  1652. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_Y
  1653. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_Y current_position[Y_AXIS]
  1654. #endif
  1655. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_Z
  1656. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_Z current_position[Z_AXIS]
  1657. #endif
  1658. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE
  1659. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE 0.0
  1660. #endif
  1661. const float deploy_5[] = { Z_PROBE_ALLEN_KEY_DEPLOY_5_X, Z_PROBE_ALLEN_KEY_DEPLOY_5_Y, Z_PROBE_ALLEN_KEY_DEPLOY_5_Z };
  1662. do_blocking_move_to(deploy_5, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE));
  1663. #endif
  1664. }
  1665. void run_stow_moves_script() {
  1666. #if defined(Z_PROBE_ALLEN_KEY_STOW_1_X) || defined(Z_PROBE_ALLEN_KEY_STOW_1_Y) || defined(Z_PROBE_ALLEN_KEY_STOW_1_Z)
  1667. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_X
  1668. #define Z_PROBE_ALLEN_KEY_STOW_1_X current_position[X_AXIS]
  1669. #endif
  1670. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_Y
  1671. #define Z_PROBE_ALLEN_KEY_STOW_1_Y current_position[Y_AXIS]
  1672. #endif
  1673. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_Z
  1674. #define Z_PROBE_ALLEN_KEY_STOW_1_Z current_position[Z_AXIS]
  1675. #endif
  1676. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE
  1677. #define Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE 0.0
  1678. #endif
  1679. const float stow_1[] = { Z_PROBE_ALLEN_KEY_STOW_1_X, Z_PROBE_ALLEN_KEY_STOW_1_Y, Z_PROBE_ALLEN_KEY_STOW_1_Z };
  1680. do_blocking_move_to(stow_1, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE));
  1681. #endif
  1682. #if defined(Z_PROBE_ALLEN_KEY_STOW_2_X) || defined(Z_PROBE_ALLEN_KEY_STOW_2_Y) || defined(Z_PROBE_ALLEN_KEY_STOW_2_Z)
  1683. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_X
  1684. #define Z_PROBE_ALLEN_KEY_STOW_2_X current_position[X_AXIS]
  1685. #endif
  1686. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_Y
  1687. #define Z_PROBE_ALLEN_KEY_STOW_2_Y current_position[Y_AXIS]
  1688. #endif
  1689. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_Z
  1690. #define Z_PROBE_ALLEN_KEY_STOW_2_Z current_position[Z_AXIS]
  1691. #endif
  1692. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE
  1693. #define Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE 0.0
  1694. #endif
  1695. const float stow_2[] = { Z_PROBE_ALLEN_KEY_STOW_2_X, Z_PROBE_ALLEN_KEY_STOW_2_Y, Z_PROBE_ALLEN_KEY_STOW_2_Z };
  1696. do_blocking_move_to(stow_2, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE));
  1697. #endif
  1698. #if defined(Z_PROBE_ALLEN_KEY_STOW_3_X) || defined(Z_PROBE_ALLEN_KEY_STOW_3_Y) || defined(Z_PROBE_ALLEN_KEY_STOW_3_Z)
  1699. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_X
  1700. #define Z_PROBE_ALLEN_KEY_STOW_3_X current_position[X_AXIS]
  1701. #endif
  1702. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_Y
  1703. #define Z_PROBE_ALLEN_KEY_STOW_3_Y current_position[Y_AXIS]
  1704. #endif
  1705. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_Z
  1706. #define Z_PROBE_ALLEN_KEY_STOW_3_Z current_position[Z_AXIS]
  1707. #endif
  1708. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE
  1709. #define Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE 0.0
  1710. #endif
  1711. const float stow_3[] = { Z_PROBE_ALLEN_KEY_STOW_3_X, Z_PROBE_ALLEN_KEY_STOW_3_Y, Z_PROBE_ALLEN_KEY_STOW_3_Z };
  1712. do_blocking_move_to(stow_3, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE));
  1713. #endif
  1714. #if defined(Z_PROBE_ALLEN_KEY_STOW_4_X) || defined(Z_PROBE_ALLEN_KEY_STOW_4_Y) || defined(Z_PROBE_ALLEN_KEY_STOW_4_Z)
  1715. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_X
  1716. #define Z_PROBE_ALLEN_KEY_STOW_4_X current_position[X_AXIS]
  1717. #endif
  1718. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_Y
  1719. #define Z_PROBE_ALLEN_KEY_STOW_4_Y current_position[Y_AXIS]
  1720. #endif
  1721. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_Z
  1722. #define Z_PROBE_ALLEN_KEY_STOW_4_Z current_position[Z_AXIS]
  1723. #endif
  1724. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE
  1725. #define Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE 0.0
  1726. #endif
  1727. const float stow_4[] = { Z_PROBE_ALLEN_KEY_STOW_4_X, Z_PROBE_ALLEN_KEY_STOW_4_Y, Z_PROBE_ALLEN_KEY_STOW_4_Z };
  1728. do_blocking_move_to(stow_4, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE));
  1729. #endif
  1730. #if defined(Z_PROBE_ALLEN_KEY_STOW_5_X) || defined(Z_PROBE_ALLEN_KEY_STOW_5_Y) || defined(Z_PROBE_ALLEN_KEY_STOW_5_Z)
  1731. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_X
  1732. #define Z_PROBE_ALLEN_KEY_STOW_5_X current_position[X_AXIS]
  1733. #endif
  1734. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_Y
  1735. #define Z_PROBE_ALLEN_KEY_STOW_5_Y current_position[Y_AXIS]
  1736. #endif
  1737. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_Z
  1738. #define Z_PROBE_ALLEN_KEY_STOW_5_Z current_position[Z_AXIS]
  1739. #endif
  1740. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE
  1741. #define Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE 0.0
  1742. #endif
  1743. const float stow_5[] = { Z_PROBE_ALLEN_KEY_STOW_5_X, Z_PROBE_ALLEN_KEY_STOW_5_Y, Z_PROBE_ALLEN_KEY_STOW_5_Z };
  1744. do_blocking_move_to(stow_5, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE));
  1745. #endif
  1746. }
  1747. #endif
  1748. #if ENABLED(PROBING_FANS_OFF)
  1749. void fans_pause(const bool p) {
  1750. if (p != fans_paused) {
  1751. fans_paused = p;
  1752. if (p)
  1753. for (uint8_t x = 0; x < FAN_COUNT; x++) {
  1754. paused_fanSpeeds[x] = fanSpeeds[x];
  1755. fanSpeeds[x] = 0;
  1756. }
  1757. else
  1758. for (uint8_t x = 0; x < FAN_COUNT; x++)
  1759. fanSpeeds[x] = paused_fanSpeeds[x];
  1760. }
  1761. }
  1762. #endif // PROBING_FANS_OFF
  1763. #if HAS_BED_PROBE
  1764. // TRIGGERED_WHEN_STOWED_TEST can easily be extended to servo probes, ... if needed.
  1765. #if ENABLED(PROBE_IS_TRIGGERED_WHEN_STOWED_TEST)
  1766. #if ENABLED(Z_MIN_PROBE_ENDSTOP)
  1767. #define _TRIGGERED_WHEN_STOWED_TEST (READ(Z_MIN_PROBE_PIN) != Z_MIN_PROBE_ENDSTOP_INVERTING)
  1768. #else
  1769. #define _TRIGGERED_WHEN_STOWED_TEST (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING)
  1770. #endif
  1771. #endif
  1772. #if QUIET_PROBING
  1773. void probing_pause(const bool p) {
  1774. #if ENABLED(PROBING_HEATERS_OFF)
  1775. thermalManager.pause(p);
  1776. #endif
  1777. #if ENABLED(PROBING_FANS_OFF)
  1778. fans_pause(p);
  1779. #endif
  1780. if (p) safe_delay(25);
  1781. }
  1782. #endif // QUIET_PROBING
  1783. #if ENABLED(BLTOUCH)
  1784. void bltouch_command(int angle) {
  1785. servo[Z_ENDSTOP_SERVO_NR].move(angle); // Give the BL-Touch the command and wait
  1786. safe_delay(BLTOUCH_DELAY);
  1787. }
  1788. void set_bltouch_deployed(const bool deploy) {
  1789. if (deploy && TEST_BLTOUCH()) { // If BL-Touch says it's triggered
  1790. bltouch_command(BLTOUCH_RESET); // try to reset it.
  1791. bltouch_command(BLTOUCH_DEPLOY); // Also needs to deploy and stow to
  1792. bltouch_command(BLTOUCH_STOW); // clear the triggered condition.
  1793. safe_delay(1500); // Wait for internal self-test to complete.
  1794. // (Measured completion time was 0.65 seconds
  1795. // after reset, deploy, and stow sequence)
  1796. if (TEST_BLTOUCH()) { // If it still claims to be triggered...
  1797. SERIAL_ERROR_START();
  1798. SERIAL_ERRORLNPGM(MSG_STOP_BLTOUCH);
  1799. stop(); // punt!
  1800. }
  1801. }
  1802. bltouch_command(deploy ? BLTOUCH_DEPLOY : BLTOUCH_STOW);
  1803. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1804. if (DEBUGGING(LEVELING)) {
  1805. SERIAL_ECHOPAIR("set_bltouch_deployed(", deploy);
  1806. SERIAL_CHAR(')');
  1807. SERIAL_EOL();
  1808. }
  1809. #endif
  1810. }
  1811. #endif // BLTOUCH
  1812. // returns false for ok and true for failure
  1813. bool set_probe_deployed(bool deploy) {
  1814. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1815. if (DEBUGGING(LEVELING)) {
  1816. DEBUG_POS("set_probe_deployed", current_position);
  1817. SERIAL_ECHOLNPAIR("deploy: ", deploy);
  1818. }
  1819. #endif
  1820. if (endstops.z_probe_enabled == deploy) return false;
  1821. // Make room for probe
  1822. do_probe_raise(_Z_CLEARANCE_DEPLOY_PROBE);
  1823. // When deploying make sure BLTOUCH is not already triggered
  1824. #if ENABLED(BLTOUCH)
  1825. if (deploy && TEST_BLTOUCH()) { // If BL-Touch says it's triggered
  1826. bltouch_command(BLTOUCH_RESET); // try to reset it.
  1827. bltouch_command(BLTOUCH_DEPLOY); // Also needs to deploy and stow to
  1828. bltouch_command(BLTOUCH_STOW); // clear the triggered condition.
  1829. safe_delay(1500); // wait for internal self test to complete
  1830. // measured completion time was 0.65 seconds
  1831. // after reset, deploy & stow sequence
  1832. if (TEST_BLTOUCH()) { // If it still claims to be triggered...
  1833. SERIAL_ERROR_START();
  1834. SERIAL_ERRORLNPGM(MSG_STOP_BLTOUCH);
  1835. stop(); // punt!
  1836. return true;
  1837. }
  1838. }
  1839. #elif ENABLED(Z_PROBE_SLED) || ENABLED(Z_PROBE_ALLEN_KEY)
  1840. #if ENABLED(Z_PROBE_SLED)
  1841. #define _AUE_ARGS true, false, false
  1842. #else
  1843. #define _AUE_ARGS
  1844. #endif
  1845. if (axis_unhomed_error(_AUE_ARGS)) {
  1846. SERIAL_ERROR_START();
  1847. SERIAL_ERRORLNPGM(MSG_STOP_UNHOMED);
  1848. stop();
  1849. return true;
  1850. }
  1851. #endif
  1852. const float oldXpos = current_position[X_AXIS],
  1853. oldYpos = current_position[Y_AXIS];
  1854. #ifdef _TRIGGERED_WHEN_STOWED_TEST
  1855. // If endstop is already false, the Z probe is deployed
  1856. if (_TRIGGERED_WHEN_STOWED_TEST == deploy) { // closed after the probe specific actions.
  1857. // Would a goto be less ugly?
  1858. //while (!_TRIGGERED_WHEN_STOWED_TEST) idle(); // would offer the opportunity
  1859. // for a triggered when stowed manual probe.
  1860. if (!deploy) endstops.enable_z_probe(false); // Switch off triggered when stowed probes early
  1861. // otherwise an Allen-Key probe can't be stowed.
  1862. #endif
  1863. #if ENABLED(SOLENOID_PROBE)
  1864. #if HAS_SOLENOID_1
  1865. WRITE(SOL1_PIN, deploy);
  1866. #endif
  1867. #elif ENABLED(Z_PROBE_SLED)
  1868. dock_sled(!deploy);
  1869. #elif HAS_Z_SERVO_ENDSTOP && DISABLED(BLTOUCH)
  1870. servo[Z_ENDSTOP_SERVO_NR].move(z_servo_angle[deploy ? 0 : 1]);
  1871. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  1872. deploy ? run_deploy_moves_script() : run_stow_moves_script();
  1873. #endif
  1874. #ifdef _TRIGGERED_WHEN_STOWED_TEST
  1875. } // _TRIGGERED_WHEN_STOWED_TEST == deploy
  1876. if (_TRIGGERED_WHEN_STOWED_TEST == deploy) { // State hasn't changed?
  1877. if (IsRunning()) {
  1878. SERIAL_ERROR_START();
  1879. SERIAL_ERRORLNPGM("Z-Probe failed");
  1880. LCD_ALERTMESSAGEPGM("Err: ZPROBE");
  1881. }
  1882. stop();
  1883. return true;
  1884. } // _TRIGGERED_WHEN_STOWED_TEST == deploy
  1885. #endif
  1886. do_blocking_move_to(oldXpos, oldYpos, current_position[Z_AXIS]); // return to position before deploy
  1887. endstops.enable_z_probe(deploy);
  1888. return false;
  1889. }
  1890. static void do_probe_move(float z, float fr_mm_m) {
  1891. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1892. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> do_probe_move", current_position);
  1893. #endif
  1894. // Deploy BLTouch at the start of any probe
  1895. #if ENABLED(BLTOUCH)
  1896. set_bltouch_deployed(true);
  1897. #endif
  1898. #if QUIET_PROBING
  1899. probing_pause(true);
  1900. #endif
  1901. // Move down until probe triggered
  1902. do_blocking_move_to_z(LOGICAL_Z_POSITION(z), MMM_TO_MMS(fr_mm_m));
  1903. #if QUIET_PROBING
  1904. probing_pause(false);
  1905. #endif
  1906. // Retract BLTouch immediately after a probe
  1907. #if ENABLED(BLTOUCH)
  1908. set_bltouch_deployed(false);
  1909. #endif
  1910. // Clear endstop flags
  1911. endstops.hit_on_purpose();
  1912. // Get Z where the steppers were interrupted
  1913. set_current_from_steppers_for_axis(Z_AXIS);
  1914. // Tell the planner where we actually are
  1915. SYNC_PLAN_POSITION_KINEMATIC();
  1916. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1917. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< do_probe_move", current_position);
  1918. #endif
  1919. }
  1920. // Do a single Z probe and return with current_position[Z_AXIS]
  1921. // at the height where the probe triggered.
  1922. static float run_z_probe() {
  1923. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1924. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> run_z_probe", current_position);
  1925. #endif
  1926. // Prevent stepper_inactive_time from running out and EXTRUDER_RUNOUT_PREVENT from extruding
  1927. refresh_cmd_timeout();
  1928. #if ENABLED(PROBE_DOUBLE_TOUCH)
  1929. // Do a first probe at the fast speed
  1930. do_probe_move(-(Z_MAX_LENGTH) - 10, Z_PROBE_SPEED_FAST);
  1931. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1932. float first_probe_z = current_position[Z_AXIS];
  1933. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("1st Probe Z:", first_probe_z);
  1934. #endif
  1935. // move up by the bump distance
  1936. do_blocking_move_to_z(current_position[Z_AXIS] + home_bump_mm(Z_AXIS), MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  1937. #else
  1938. // If the nozzle is above the travel height then
  1939. // move down quickly before doing the slow probe
  1940. float z = LOGICAL_Z_POSITION(Z_CLEARANCE_BETWEEN_PROBES);
  1941. if (zprobe_zoffset < 0) z -= zprobe_zoffset;
  1942. #if ENABLED(DELTA)
  1943. z -= home_offset[Z_AXIS]; // Account for delta height adjustment
  1944. #endif
  1945. if (z < current_position[Z_AXIS])
  1946. do_blocking_move_to_z(z, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  1947. #endif
  1948. // move down slowly to find bed
  1949. do_probe_move(-(Z_MAX_LENGTH) - 10, Z_PROBE_SPEED_SLOW);
  1950. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1951. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< run_z_probe", current_position);
  1952. #endif
  1953. // Debug: compare probe heights
  1954. #if ENABLED(PROBE_DOUBLE_TOUCH) && ENABLED(DEBUG_LEVELING_FEATURE)
  1955. if (DEBUGGING(LEVELING)) {
  1956. SERIAL_ECHOPAIR("2nd Probe Z:", current_position[Z_AXIS]);
  1957. SERIAL_ECHOLNPAIR(" Discrepancy:", first_probe_z - current_position[Z_AXIS]);
  1958. }
  1959. #endif
  1960. return RAW_CURRENT_POSITION(Z) + zprobe_zoffset
  1961. #if ENABLED(DELTA)
  1962. + home_offset[Z_AXIS] // Account for delta height adjustment
  1963. #endif
  1964. ;
  1965. }
  1966. /**
  1967. * - Move to the given XY
  1968. * - Deploy the probe, if not already deployed
  1969. * - Probe the bed, get the Z position
  1970. * - Depending on the 'stow' flag
  1971. * - Stow the probe, or
  1972. * - Raise to the BETWEEN height
  1973. * - Return the probed Z position
  1974. */
  1975. float probe_pt(const float &x, const float &y, const bool stow/*=true*/, const int verbose_level/*=1*/) {
  1976. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1977. if (DEBUGGING(LEVELING)) {
  1978. SERIAL_ECHOPAIR(">>> probe_pt(", x);
  1979. SERIAL_ECHOPAIR(", ", y);
  1980. SERIAL_ECHOPAIR(", ", stow ? "" : "no ");
  1981. SERIAL_ECHOLNPGM("stow)");
  1982. DEBUG_POS("", current_position);
  1983. }
  1984. #endif
  1985. if (!position_is_reachable_by_probe_xy(x, y)) return NAN;
  1986. const float old_feedrate_mm_s = feedrate_mm_s;
  1987. #if ENABLED(DELTA)
  1988. if (current_position[Z_AXIS] > delta_clip_start_height)
  1989. do_blocking_move_to_z(delta_clip_start_height);
  1990. #endif
  1991. // Ensure a minimum height before moving the probe
  1992. do_probe_raise(Z_CLEARANCE_BETWEEN_PROBES);
  1993. feedrate_mm_s = XY_PROBE_FEEDRATE_MM_S;
  1994. // Move the probe to the given XY
  1995. do_blocking_move_to_xy(x - (X_PROBE_OFFSET_FROM_EXTRUDER), y - (Y_PROBE_OFFSET_FROM_EXTRUDER));
  1996. if (DEPLOY_PROBE()) return NAN;
  1997. const float measured_z = run_z_probe();
  1998. if (!stow)
  1999. do_probe_raise(Z_CLEARANCE_BETWEEN_PROBES);
  2000. else
  2001. if (STOW_PROBE()) return NAN;
  2002. if (verbose_level > 2) {
  2003. SERIAL_PROTOCOLPGM("Bed X: ");
  2004. SERIAL_PROTOCOL_F(x, 3);
  2005. SERIAL_PROTOCOLPGM(" Y: ");
  2006. SERIAL_PROTOCOL_F(y, 3);
  2007. SERIAL_PROTOCOLPGM(" Z: ");
  2008. SERIAL_PROTOCOL_F(measured_z, 3);
  2009. SERIAL_EOL();
  2010. }
  2011. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2012. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< probe_pt");
  2013. #endif
  2014. feedrate_mm_s = old_feedrate_mm_s;
  2015. return measured_z;
  2016. }
  2017. #endif // HAS_BED_PROBE
  2018. #if HAS_LEVELING
  2019. bool leveling_is_valid() {
  2020. return
  2021. #if ENABLED(MESH_BED_LEVELING)
  2022. mbl.has_mesh()
  2023. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2024. !!bilinear_grid_spacing[X_AXIS]
  2025. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2026. true
  2027. #else // 3POINT, LINEAR
  2028. true
  2029. #endif
  2030. ;
  2031. }
  2032. bool leveling_is_active() {
  2033. return
  2034. #if ENABLED(MESH_BED_LEVELING)
  2035. mbl.active()
  2036. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2037. ubl.state.active
  2038. #else
  2039. planner.abl_enabled
  2040. #endif
  2041. ;
  2042. }
  2043. /**
  2044. * Turn bed leveling on or off, fixing the current
  2045. * position as-needed.
  2046. *
  2047. * Disable: Current position = physical position
  2048. * Enable: Current position = "unleveled" physical position
  2049. */
  2050. void set_bed_leveling_enabled(const bool enable/*=true*/) {
  2051. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2052. const bool can_change = (!enable || leveling_is_valid());
  2053. #else
  2054. constexpr bool can_change = true;
  2055. #endif
  2056. if (can_change && enable != leveling_is_active()) {
  2057. #if ENABLED(MESH_BED_LEVELING)
  2058. if (!enable)
  2059. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS]);
  2060. const bool enabling = enable && leveling_is_valid();
  2061. mbl.set_active(enabling);
  2062. if (enabling) planner.unapply_leveling(current_position);
  2063. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2064. #if PLANNER_LEVELING
  2065. if (ubl.state.active) { // leveling from on to off
  2066. // change unleveled current_position to physical current_position without moving steppers.
  2067. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS]);
  2068. ubl.state.active = false; // disable only AFTER calling apply_leveling
  2069. }
  2070. else { // leveling from off to on
  2071. ubl.state.active = true; // enable BEFORE calling unapply_leveling, otherwise ignored
  2072. // change physical current_position to unleveled current_position without moving steppers.
  2073. planner.unapply_leveling(current_position);
  2074. }
  2075. #else
  2076. ubl.state.active = enable; // just flip the bit, current_position will be wrong until next move.
  2077. #endif
  2078. #else // ABL
  2079. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2080. // Force bilinear_z_offset to re-calculate next time
  2081. const float reset[XYZ] = { -9999.999, -9999.999, 0 };
  2082. (void)bilinear_z_offset(reset);
  2083. #endif
  2084. // Enable or disable leveling compensation in the planner
  2085. planner.abl_enabled = enable;
  2086. if (!enable)
  2087. // When disabling just get the current position from the steppers.
  2088. // This will yield the smallest error when first converted back to steps.
  2089. set_current_from_steppers_for_axis(
  2090. #if ABL_PLANAR
  2091. ALL_AXES
  2092. #else
  2093. Z_AXIS
  2094. #endif
  2095. );
  2096. else
  2097. // When enabling, remove compensation from the current position,
  2098. // so compensation will give the right stepper counts.
  2099. planner.unapply_leveling(current_position);
  2100. #endif // ABL
  2101. }
  2102. }
  2103. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  2104. void set_z_fade_height(const float zfh) {
  2105. const bool level_active = leveling_is_active();
  2106. #if ENABLED(AUTO_BED_LEVELING_UBL)
  2107. if (level_active)
  2108. set_bed_leveling_enabled(false); // turn off before changing fade height for proper apply/unapply leveling to maintain current_position
  2109. planner.z_fade_height = zfh;
  2110. planner.inverse_z_fade_height = RECIPROCAL(zfh);
  2111. if (level_active)
  2112. set_bed_leveling_enabled(true); // turn back on after changing fade height
  2113. #else
  2114. planner.z_fade_height = zfh;
  2115. planner.inverse_z_fade_height = RECIPROCAL(zfh);
  2116. if (level_active) {
  2117. set_current_from_steppers_for_axis(
  2118. #if ABL_PLANAR
  2119. ALL_AXES
  2120. #else
  2121. Z_AXIS
  2122. #endif
  2123. );
  2124. }
  2125. #endif
  2126. }
  2127. #endif // LEVELING_FADE_HEIGHT
  2128. /**
  2129. * Reset calibration results to zero.
  2130. */
  2131. void reset_bed_level() {
  2132. set_bed_leveling_enabled(false);
  2133. #if ENABLED(MESH_BED_LEVELING)
  2134. if (leveling_is_valid()) {
  2135. mbl.reset();
  2136. mbl.set_has_mesh(false);
  2137. }
  2138. #else
  2139. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2140. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("reset_bed_level");
  2141. #endif
  2142. #if ABL_PLANAR
  2143. planner.bed_level_matrix.set_to_identity();
  2144. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2145. bilinear_start[X_AXIS] = bilinear_start[Y_AXIS] =
  2146. bilinear_grid_spacing[X_AXIS] = bilinear_grid_spacing[Y_AXIS] = 0;
  2147. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
  2148. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
  2149. z_values[x][y] = NAN;
  2150. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2151. ubl.reset();
  2152. #endif
  2153. #endif
  2154. }
  2155. #endif // HAS_LEVELING
  2156. #if ENABLED(AUTO_BED_LEVELING_BILINEAR) || ENABLED(MESH_BED_LEVELING)
  2157. /**
  2158. * Enable to produce output in JSON format suitable
  2159. * for SCAD or JavaScript mesh visualizers.
  2160. *
  2161. * Visualize meshes in OpenSCAD using the included script.
  2162. *
  2163. * buildroot/shared/scripts/MarlinMesh.scad
  2164. */
  2165. //#define SCAD_MESH_OUTPUT
  2166. /**
  2167. * Print calibration results for plotting or manual frame adjustment.
  2168. */
  2169. static void print_2d_array(const uint8_t sx, const uint8_t sy, const uint8_t precision, float (*fn)(const uint8_t, const uint8_t)) {
  2170. #ifndef SCAD_MESH_OUTPUT
  2171. for (uint8_t x = 0; x < sx; x++) {
  2172. for (uint8_t i = 0; i < precision + 2 + (x < 10 ? 1 : 0); i++)
  2173. SERIAL_PROTOCOLCHAR(' ');
  2174. SERIAL_PROTOCOL((int)x);
  2175. }
  2176. SERIAL_EOL();
  2177. #endif
  2178. #ifdef SCAD_MESH_OUTPUT
  2179. SERIAL_PROTOCOLLNPGM("measured_z = ["); // open 2D array
  2180. #endif
  2181. for (uint8_t y = 0; y < sy; y++) {
  2182. #ifdef SCAD_MESH_OUTPUT
  2183. SERIAL_PROTOCOLPGM(" ["); // open sub-array
  2184. #else
  2185. if (y < 10) SERIAL_PROTOCOLCHAR(' ');
  2186. SERIAL_PROTOCOL((int)y);
  2187. #endif
  2188. for (uint8_t x = 0; x < sx; x++) {
  2189. SERIAL_PROTOCOLCHAR(' ');
  2190. const float offset = fn(x, y);
  2191. if (!isnan(offset)) {
  2192. if (offset >= 0) SERIAL_PROTOCOLCHAR('+');
  2193. SERIAL_PROTOCOL_F(offset, precision);
  2194. }
  2195. else {
  2196. #ifdef SCAD_MESH_OUTPUT
  2197. for (uint8_t i = 3; i < precision + 3; i++)
  2198. SERIAL_PROTOCOLCHAR(' ');
  2199. SERIAL_PROTOCOLPGM("NAN");
  2200. #else
  2201. for (uint8_t i = 0; i < precision + 3; i++)
  2202. SERIAL_PROTOCOLCHAR(i ? '=' : ' ');
  2203. #endif
  2204. }
  2205. #ifdef SCAD_MESH_OUTPUT
  2206. if (x < sx - 1) SERIAL_PROTOCOLCHAR(',');
  2207. #endif
  2208. }
  2209. #ifdef SCAD_MESH_OUTPUT
  2210. SERIAL_PROTOCOLCHAR(' ');
  2211. SERIAL_PROTOCOLCHAR(']'); // close sub-array
  2212. if (y < sy - 1) SERIAL_PROTOCOLCHAR(',');
  2213. #endif
  2214. SERIAL_EOL();
  2215. }
  2216. #ifdef SCAD_MESH_OUTPUT
  2217. SERIAL_PROTOCOLPGM("];"); // close 2D array
  2218. #endif
  2219. SERIAL_EOL();
  2220. }
  2221. #endif
  2222. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2223. /**
  2224. * Extrapolate a single point from its neighbors
  2225. */
  2226. static void extrapolate_one_point(const uint8_t x, const uint8_t y, const int8_t xdir, const int8_t ydir) {
  2227. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2228. if (DEBUGGING(LEVELING)) {
  2229. SERIAL_ECHOPGM("Extrapolate [");
  2230. if (x < 10) SERIAL_CHAR(' ');
  2231. SERIAL_ECHO((int)x);
  2232. SERIAL_CHAR(xdir ? (xdir > 0 ? '+' : '-') : ' ');
  2233. SERIAL_CHAR(' ');
  2234. if (y < 10) SERIAL_CHAR(' ');
  2235. SERIAL_ECHO((int)y);
  2236. SERIAL_CHAR(ydir ? (ydir > 0 ? '+' : '-') : ' ');
  2237. SERIAL_CHAR(']');
  2238. }
  2239. #endif
  2240. if (!isnan(z_values[x][y])) {
  2241. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2242. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM(" (done)");
  2243. #endif
  2244. return; // Don't overwrite good values.
  2245. }
  2246. SERIAL_EOL();
  2247. // Get X neighbors, Y neighbors, and XY neighbors
  2248. const uint8_t x1 = x + xdir, y1 = y + ydir, x2 = x1 + xdir, y2 = y1 + ydir;
  2249. float a1 = z_values[x1][y ], a2 = z_values[x2][y ],
  2250. b1 = z_values[x ][y1], b2 = z_values[x ][y2],
  2251. c1 = z_values[x1][y1], c2 = z_values[x2][y2];
  2252. // Treat far unprobed points as zero, near as equal to far
  2253. if (isnan(a2)) a2 = 0.0; if (isnan(a1)) a1 = a2;
  2254. if (isnan(b2)) b2 = 0.0; if (isnan(b1)) b1 = b2;
  2255. if (isnan(c2)) c2 = 0.0; if (isnan(c1)) c1 = c2;
  2256. const float a = 2 * a1 - a2, b = 2 * b1 - b2, c = 2 * c1 - c2;
  2257. // Take the average instead of the median
  2258. z_values[x][y] = (a + b + c) / 3.0;
  2259. // Median is robust (ignores outliers).
  2260. // z_values[x][y] = (a < b) ? ((b < c) ? b : (c < a) ? a : c)
  2261. // : ((c < b) ? b : (a < c) ? a : c);
  2262. }
  2263. //Enable this if your SCARA uses 180° of total area
  2264. //#define EXTRAPOLATE_FROM_EDGE
  2265. #if ENABLED(EXTRAPOLATE_FROM_EDGE)
  2266. #if GRID_MAX_POINTS_X < GRID_MAX_POINTS_Y
  2267. #define HALF_IN_X
  2268. #elif GRID_MAX_POINTS_Y < GRID_MAX_POINTS_X
  2269. #define HALF_IN_Y
  2270. #endif
  2271. #endif
  2272. /**
  2273. * Fill in the unprobed points (corners of circular print surface)
  2274. * using linear extrapolation, away from the center.
  2275. */
  2276. static void extrapolate_unprobed_bed_level() {
  2277. #ifdef HALF_IN_X
  2278. constexpr uint8_t ctrx2 = 0, xlen = GRID_MAX_POINTS_X - 1;
  2279. #else
  2280. constexpr uint8_t ctrx1 = (GRID_MAX_POINTS_X - 1) / 2, // left-of-center
  2281. ctrx2 = (GRID_MAX_POINTS_X) / 2, // right-of-center
  2282. xlen = ctrx1;
  2283. #endif
  2284. #ifdef HALF_IN_Y
  2285. constexpr uint8_t ctry2 = 0, ylen = GRID_MAX_POINTS_Y - 1;
  2286. #else
  2287. constexpr uint8_t ctry1 = (GRID_MAX_POINTS_Y - 1) / 2, // top-of-center
  2288. ctry2 = (GRID_MAX_POINTS_Y) / 2, // bottom-of-center
  2289. ylen = ctry1;
  2290. #endif
  2291. for (uint8_t xo = 0; xo <= xlen; xo++)
  2292. for (uint8_t yo = 0; yo <= ylen; yo++) {
  2293. uint8_t x2 = ctrx2 + xo, y2 = ctry2 + yo;
  2294. #ifndef HALF_IN_X
  2295. const uint8_t x1 = ctrx1 - xo;
  2296. #endif
  2297. #ifndef HALF_IN_Y
  2298. const uint8_t y1 = ctry1 - yo;
  2299. #ifndef HALF_IN_X
  2300. extrapolate_one_point(x1, y1, +1, +1); // left-below + +
  2301. #endif
  2302. extrapolate_one_point(x2, y1, -1, +1); // right-below - +
  2303. #endif
  2304. #ifndef HALF_IN_X
  2305. extrapolate_one_point(x1, y2, +1, -1); // left-above + -
  2306. #endif
  2307. extrapolate_one_point(x2, y2, -1, -1); // right-above - -
  2308. }
  2309. }
  2310. static void print_bilinear_leveling_grid() {
  2311. SERIAL_ECHOLNPGM("Bilinear Leveling Grid:");
  2312. print_2d_array(GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y, 3,
  2313. [](const uint8_t ix, const uint8_t iy) { return z_values[ix][iy]; }
  2314. );
  2315. }
  2316. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  2317. #define ABL_GRID_POINTS_VIRT_X (GRID_MAX_POINTS_X - 1) * (BILINEAR_SUBDIVISIONS) + 1
  2318. #define ABL_GRID_POINTS_VIRT_Y (GRID_MAX_POINTS_Y - 1) * (BILINEAR_SUBDIVISIONS) + 1
  2319. #define ABL_TEMP_POINTS_X (GRID_MAX_POINTS_X + 2)
  2320. #define ABL_TEMP_POINTS_Y (GRID_MAX_POINTS_Y + 2)
  2321. float z_values_virt[ABL_GRID_POINTS_VIRT_X][ABL_GRID_POINTS_VIRT_Y];
  2322. int bilinear_grid_spacing_virt[2] = { 0 };
  2323. float bilinear_grid_factor_virt[2] = { 0 };
  2324. static void bed_level_virt_print() {
  2325. SERIAL_ECHOLNPGM("Subdivided with CATMULL ROM Leveling Grid:");
  2326. print_2d_array(ABL_GRID_POINTS_VIRT_X, ABL_GRID_POINTS_VIRT_Y, 5,
  2327. [](const uint8_t ix, const uint8_t iy) { return z_values_virt[ix][iy]; }
  2328. );
  2329. }
  2330. #define LINEAR_EXTRAPOLATION(E, I) ((E) * 2 - (I))
  2331. float bed_level_virt_coord(const uint8_t x, const uint8_t y) {
  2332. uint8_t ep = 0, ip = 1;
  2333. if (!x || x == ABL_TEMP_POINTS_X - 1) {
  2334. if (x) {
  2335. ep = GRID_MAX_POINTS_X - 1;
  2336. ip = GRID_MAX_POINTS_X - 2;
  2337. }
  2338. if (WITHIN(y, 1, ABL_TEMP_POINTS_Y - 2))
  2339. return LINEAR_EXTRAPOLATION(
  2340. z_values[ep][y - 1],
  2341. z_values[ip][y - 1]
  2342. );
  2343. else
  2344. return LINEAR_EXTRAPOLATION(
  2345. bed_level_virt_coord(ep + 1, y),
  2346. bed_level_virt_coord(ip + 1, y)
  2347. );
  2348. }
  2349. if (!y || y == ABL_TEMP_POINTS_Y - 1) {
  2350. if (y) {
  2351. ep = GRID_MAX_POINTS_Y - 1;
  2352. ip = GRID_MAX_POINTS_Y - 2;
  2353. }
  2354. if (WITHIN(x, 1, ABL_TEMP_POINTS_X - 2))
  2355. return LINEAR_EXTRAPOLATION(
  2356. z_values[x - 1][ep],
  2357. z_values[x - 1][ip]
  2358. );
  2359. else
  2360. return LINEAR_EXTRAPOLATION(
  2361. bed_level_virt_coord(x, ep + 1),
  2362. bed_level_virt_coord(x, ip + 1)
  2363. );
  2364. }
  2365. return z_values[x - 1][y - 1];
  2366. }
  2367. static float bed_level_virt_cmr(const float p[4], const uint8_t i, const float t) {
  2368. return (
  2369. p[i-1] * -t * sq(1 - t)
  2370. + p[i] * (2 - 5 * sq(t) + 3 * t * sq(t))
  2371. + p[i+1] * t * (1 + 4 * t - 3 * sq(t))
  2372. - p[i+2] * sq(t) * (1 - t)
  2373. ) * 0.5;
  2374. }
  2375. static float bed_level_virt_2cmr(const uint8_t x, const uint8_t y, const float &tx, const float &ty) {
  2376. float row[4], column[4];
  2377. for (uint8_t i = 0; i < 4; i++) {
  2378. for (uint8_t j = 0; j < 4; j++) {
  2379. column[j] = bed_level_virt_coord(i + x - 1, j + y - 1);
  2380. }
  2381. row[i] = bed_level_virt_cmr(column, 1, ty);
  2382. }
  2383. return bed_level_virt_cmr(row, 1, tx);
  2384. }
  2385. void bed_level_virt_interpolate() {
  2386. bilinear_grid_spacing_virt[X_AXIS] = bilinear_grid_spacing[X_AXIS] / (BILINEAR_SUBDIVISIONS);
  2387. bilinear_grid_spacing_virt[Y_AXIS] = bilinear_grid_spacing[Y_AXIS] / (BILINEAR_SUBDIVISIONS);
  2388. bilinear_grid_factor_virt[X_AXIS] = RECIPROCAL(bilinear_grid_spacing_virt[X_AXIS]);
  2389. bilinear_grid_factor_virt[Y_AXIS] = RECIPROCAL(bilinear_grid_spacing_virt[Y_AXIS]);
  2390. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
  2391. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
  2392. for (uint8_t ty = 0; ty < BILINEAR_SUBDIVISIONS; ty++)
  2393. for (uint8_t tx = 0; tx < BILINEAR_SUBDIVISIONS; tx++) {
  2394. if ((ty && y == GRID_MAX_POINTS_Y - 1) || (tx && x == GRID_MAX_POINTS_X - 1))
  2395. continue;
  2396. z_values_virt[x * (BILINEAR_SUBDIVISIONS) + tx][y * (BILINEAR_SUBDIVISIONS) + ty] =
  2397. bed_level_virt_2cmr(
  2398. x + 1,
  2399. y + 1,
  2400. (float)tx / (BILINEAR_SUBDIVISIONS),
  2401. (float)ty / (BILINEAR_SUBDIVISIONS)
  2402. );
  2403. }
  2404. }
  2405. #endif // ABL_BILINEAR_SUBDIVISION
  2406. // Refresh after other values have been updated
  2407. void refresh_bed_level() {
  2408. bilinear_grid_factor[X_AXIS] = RECIPROCAL(bilinear_grid_spacing[X_AXIS]);
  2409. bilinear_grid_factor[Y_AXIS] = RECIPROCAL(bilinear_grid_spacing[Y_AXIS]);
  2410. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  2411. bed_level_virt_interpolate();
  2412. #endif
  2413. }
  2414. #endif // AUTO_BED_LEVELING_BILINEAR
  2415. /**
  2416. * Home an individual linear axis
  2417. */
  2418. static void do_homing_move(const AxisEnum axis, const float distance, const float fr_mm_s=0.0) {
  2419. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2420. if (DEBUGGING(LEVELING)) {
  2421. SERIAL_ECHOPAIR(">>> do_homing_move(", axis_codes[axis]);
  2422. SERIAL_ECHOPAIR(", ", distance);
  2423. SERIAL_ECHOPAIR(", ", fr_mm_s);
  2424. SERIAL_CHAR(')');
  2425. SERIAL_EOL();
  2426. }
  2427. #endif
  2428. #if HOMING_Z_WITH_PROBE && ENABLED(BLTOUCH)
  2429. const bool deploy_bltouch = (axis == Z_AXIS && distance < 0);
  2430. if (deploy_bltouch) set_bltouch_deployed(true);
  2431. #endif
  2432. #if QUIET_PROBING
  2433. if (axis == Z_AXIS) probing_pause(true);
  2434. #endif
  2435. // Tell the planner we're at Z=0
  2436. current_position[axis] = 0;
  2437. #if IS_SCARA
  2438. SYNC_PLAN_POSITION_KINEMATIC();
  2439. current_position[axis] = distance;
  2440. inverse_kinematics(current_position);
  2441. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], current_position[E_AXIS], fr_mm_s ? fr_mm_s : homing_feedrate(axis), active_extruder);
  2442. #else
  2443. sync_plan_position();
  2444. current_position[axis] = distance;
  2445. planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], fr_mm_s ? fr_mm_s : homing_feedrate(axis), active_extruder);
  2446. #endif
  2447. stepper.synchronize();
  2448. #if QUIET_PROBING
  2449. if (axis == Z_AXIS) probing_pause(false);
  2450. #endif
  2451. #if HOMING_Z_WITH_PROBE && ENABLED(BLTOUCH)
  2452. if (deploy_bltouch) set_bltouch_deployed(false);
  2453. #endif
  2454. endstops.hit_on_purpose();
  2455. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2456. if (DEBUGGING(LEVELING)) {
  2457. SERIAL_ECHOPAIR("<<< do_homing_move(", axis_codes[axis]);
  2458. SERIAL_CHAR(')');
  2459. SERIAL_EOL();
  2460. }
  2461. #endif
  2462. }
  2463. /**
  2464. * TMC2130 specific sensorless homing using stallGuard2.
  2465. * stallGuard2 only works when in spreadCycle mode.
  2466. * spreadCycle and stealthChop are mutually exclusive.
  2467. */
  2468. #if ENABLED(SENSORLESS_HOMING)
  2469. void tmc2130_sensorless_homing(TMC2130Stepper &st, bool enable=true) {
  2470. #if ENABLED(STEALTHCHOP)
  2471. if (enable) {
  2472. st.coolstep_min_speed(1024UL * 1024UL - 1UL);
  2473. st.stealthChop(0);
  2474. }
  2475. else {
  2476. st.coolstep_min_speed(0);
  2477. st.stealthChop(1);
  2478. }
  2479. #endif
  2480. st.diag1_stall(enable ? 1 : 0);
  2481. }
  2482. #endif
  2483. /**
  2484. * Home an individual "raw axis" to its endstop.
  2485. * This applies to XYZ on Cartesian and Core robots, and
  2486. * to the individual ABC steppers on DELTA and SCARA.
  2487. *
  2488. * At the end of the procedure the axis is marked as
  2489. * homed and the current position of that axis is updated.
  2490. * Kinematic robots should wait till all axes are homed
  2491. * before updating the current position.
  2492. */
  2493. #define HOMEAXIS(LETTER) homeaxis(LETTER##_AXIS)
  2494. static void homeaxis(const AxisEnum axis) {
  2495. #if IS_SCARA
  2496. // Only Z homing (with probe) is permitted
  2497. if (axis != Z_AXIS) { BUZZ(100, 880); return; }
  2498. #else
  2499. #define CAN_HOME(A) \
  2500. (axis == A##_AXIS && ((A##_MIN_PIN > -1 && A##_HOME_DIR < 0) || (A##_MAX_PIN > -1 && A##_HOME_DIR > 0)))
  2501. if (!CAN_HOME(X) && !CAN_HOME(Y) && !CAN_HOME(Z)) return;
  2502. #endif
  2503. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2504. if (DEBUGGING(LEVELING)) {
  2505. SERIAL_ECHOPAIR(">>> homeaxis(", axis_codes[axis]);
  2506. SERIAL_CHAR(')');
  2507. SERIAL_EOL();
  2508. }
  2509. #endif
  2510. const int axis_home_dir =
  2511. #if ENABLED(DUAL_X_CARRIAGE)
  2512. (axis == X_AXIS) ? x_home_dir(active_extruder) :
  2513. #endif
  2514. home_dir(axis);
  2515. // Homing Z towards the bed? Deploy the Z probe or endstop.
  2516. #if HOMING_Z_WITH_PROBE
  2517. if (axis == Z_AXIS && DEPLOY_PROBE()) return;
  2518. #endif
  2519. // Set a flag for Z motor locking
  2520. #if ENABLED(Z_DUAL_ENDSTOPS)
  2521. if (axis == Z_AXIS) stepper.set_homing_flag(true);
  2522. #endif
  2523. // Disable stealthChop if used. Enable diag1 pin on driver.
  2524. #if ENABLED(SENSORLESS_HOMING)
  2525. #if ENABLED(X_IS_TMC2130)
  2526. if (axis == X_AXIS) tmc2130_sensorless_homing(stepperX);
  2527. #endif
  2528. #if ENABLED(Y_IS_TMC2130)
  2529. if (axis == Y_AXIS) tmc2130_sensorless_homing(stepperY);
  2530. #endif
  2531. #endif
  2532. // Fast move towards endstop until triggered
  2533. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2534. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Home 1 Fast:");
  2535. #endif
  2536. do_homing_move(axis, 1.5 * max_length(axis) * axis_home_dir);
  2537. // When homing Z with probe respect probe clearance
  2538. const float bump = axis_home_dir * (
  2539. #if HOMING_Z_WITH_PROBE
  2540. (axis == Z_AXIS) ? max(Z_CLEARANCE_BETWEEN_PROBES, home_bump_mm(Z_AXIS)) :
  2541. #endif
  2542. home_bump_mm(axis)
  2543. );
  2544. // If a second homing move is configured...
  2545. if (bump) {
  2546. // Move away from the endstop by the axis HOME_BUMP_MM
  2547. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2548. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Move Away:");
  2549. #endif
  2550. do_homing_move(axis, -bump);
  2551. // Slow move towards endstop until triggered
  2552. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2553. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Home 2 Slow:");
  2554. #endif
  2555. do_homing_move(axis, 2 * bump, get_homing_bump_feedrate(axis));
  2556. }
  2557. #if ENABLED(Z_DUAL_ENDSTOPS)
  2558. if (axis == Z_AXIS) {
  2559. float adj = FABS(z_endstop_adj);
  2560. bool lockZ1;
  2561. if (axis_home_dir > 0) {
  2562. adj = -adj;
  2563. lockZ1 = (z_endstop_adj > 0);
  2564. }
  2565. else
  2566. lockZ1 = (z_endstop_adj < 0);
  2567. if (lockZ1) stepper.set_z_lock(true); else stepper.set_z2_lock(true);
  2568. // Move to the adjusted endstop height
  2569. do_homing_move(axis, adj);
  2570. if (lockZ1) stepper.set_z_lock(false); else stepper.set_z2_lock(false);
  2571. stepper.set_homing_flag(false);
  2572. } // Z_AXIS
  2573. #endif
  2574. #if IS_SCARA
  2575. set_axis_is_at_home(axis);
  2576. SYNC_PLAN_POSITION_KINEMATIC();
  2577. #elif ENABLED(DELTA)
  2578. // Delta has already moved all three towers up in G28
  2579. // so here it re-homes each tower in turn.
  2580. // Delta homing treats the axes as normal linear axes.
  2581. // retrace by the amount specified in endstop_adj + additional 0.1mm in order to have minimum steps
  2582. if (endstop_adj[axis] * Z_HOME_DIR <= 0) {
  2583. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2584. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("endstop_adj:");
  2585. #endif
  2586. do_homing_move(axis, endstop_adj[axis] - 0.1);
  2587. }
  2588. #else
  2589. // For cartesian/core machines,
  2590. // set the axis to its home position
  2591. set_axis_is_at_home(axis);
  2592. sync_plan_position();
  2593. destination[axis] = current_position[axis];
  2594. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2595. if (DEBUGGING(LEVELING)) DEBUG_POS("> AFTER set_axis_is_at_home", current_position);
  2596. #endif
  2597. #endif
  2598. // Re-enable stealthChop if used. Disable diag1 pin on driver.
  2599. #if ENABLED(SENSORLESS_HOMING)
  2600. #if ENABLED(X_IS_TMC2130)
  2601. if (axis == X_AXIS) tmc2130_sensorless_homing(stepperX, false);
  2602. #endif
  2603. #if ENABLED(Y_IS_TMC2130)
  2604. if (axis == Y_AXIS) tmc2130_sensorless_homing(stepperY, false);
  2605. #endif
  2606. #endif
  2607. // Put away the Z probe
  2608. #if HOMING_Z_WITH_PROBE
  2609. if (axis == Z_AXIS && STOW_PROBE()) return;
  2610. #endif
  2611. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2612. if (DEBUGGING(LEVELING)) {
  2613. SERIAL_ECHOPAIR("<<< homeaxis(", axis_codes[axis]);
  2614. SERIAL_CHAR(')');
  2615. SERIAL_EOL();
  2616. }
  2617. #endif
  2618. } // homeaxis()
  2619. #if ENABLED(FWRETRACT)
  2620. void retract(const bool retracting, const bool swapping = false) {
  2621. static float hop_height;
  2622. if (retracting == retracted[active_extruder]) return;
  2623. const float old_feedrate_mm_s = feedrate_mm_s;
  2624. set_destination_to_current();
  2625. if (retracting) {
  2626. feedrate_mm_s = retract_feedrate_mm_s;
  2627. current_position[E_AXIS] += (swapping ? retract_length_swap : retract_length) / volumetric_multiplier[active_extruder];
  2628. sync_plan_position_e();
  2629. prepare_move_to_destination();
  2630. if (retract_zlift > 0.01) {
  2631. hop_height = current_position[Z_AXIS];
  2632. // Pretend current position is lower
  2633. current_position[Z_AXIS] -= retract_zlift;
  2634. SYNC_PLAN_POSITION_KINEMATIC();
  2635. // Raise up to the old current_position
  2636. prepare_move_to_destination();
  2637. }
  2638. }
  2639. else {
  2640. // If the height hasn't been lowered, undo the Z hop
  2641. if (retract_zlift > 0.01 && hop_height <= current_position[Z_AXIS]) {
  2642. // Pretend current position is higher. Z will lower on the next move
  2643. current_position[Z_AXIS] += retract_zlift;
  2644. SYNC_PLAN_POSITION_KINEMATIC();
  2645. // Lower Z
  2646. prepare_move_to_destination();
  2647. }
  2648. feedrate_mm_s = retract_recover_feedrate_mm_s;
  2649. const float move_e = swapping ? retract_length_swap + retract_recover_length_swap : retract_length + retract_recover_length;
  2650. current_position[E_AXIS] -= move_e / volumetric_multiplier[active_extruder];
  2651. sync_plan_position_e();
  2652. // Recover E
  2653. prepare_move_to_destination();
  2654. }
  2655. feedrate_mm_s = old_feedrate_mm_s;
  2656. retracted[active_extruder] = retracting;
  2657. } // retract()
  2658. #endif // FWRETRACT
  2659. #if ENABLED(MIXING_EXTRUDER)
  2660. void normalize_mix() {
  2661. float mix_total = 0.0;
  2662. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) mix_total += RECIPROCAL(mixing_factor[i]);
  2663. // Scale all values if they don't add up to ~1.0
  2664. if (!NEAR(mix_total, 1.0)) {
  2665. SERIAL_PROTOCOLLNPGM("Warning: Mix factors must add up to 1.0. Scaling.");
  2666. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) mixing_factor[i] *= mix_total;
  2667. }
  2668. }
  2669. #if ENABLED(DIRECT_MIXING_IN_G1)
  2670. // Get mixing parameters from the GCode
  2671. // The total "must" be 1.0 (but it will be normalized)
  2672. // If no mix factors are given, the old mix is preserved
  2673. void gcode_get_mix() {
  2674. const char* mixing_codes = "ABCDHI";
  2675. byte mix_bits = 0;
  2676. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) {
  2677. if (parser.seenval(mixing_codes[i])) {
  2678. SBI(mix_bits, i);
  2679. float v = parser.value_float();
  2680. NOLESS(v, 0.0);
  2681. mixing_factor[i] = RECIPROCAL(v);
  2682. }
  2683. }
  2684. // If any mixing factors were included, clear the rest
  2685. // If none were included, preserve the last mix
  2686. if (mix_bits) {
  2687. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  2688. if (!TEST(mix_bits, i)) mixing_factor[i] = 0.0;
  2689. normalize_mix();
  2690. }
  2691. }
  2692. #endif
  2693. #endif
  2694. /**
  2695. * ***************************************************************************
  2696. * ***************************** G-CODE HANDLING *****************************
  2697. * ***************************************************************************
  2698. */
  2699. /**
  2700. * Set XYZE destination and feedrate from the current GCode command
  2701. *
  2702. * - Set destination from included axis codes
  2703. * - Set to current for missing axis codes
  2704. * - Set the feedrate, if included
  2705. */
  2706. void gcode_get_destination() {
  2707. LOOP_XYZE(i) {
  2708. if (parser.seen(axis_codes[i]))
  2709. destination[i] = parser.value_axis_units((AxisEnum)i) + (axis_relative_modes[i] || relative_mode ? current_position[i] : 0);
  2710. else
  2711. destination[i] = current_position[i];
  2712. }
  2713. if (parser.linearval('F') > 0.0)
  2714. feedrate_mm_s = MMM_TO_MMS(parser.value_feedrate());
  2715. #if ENABLED(PRINTCOUNTER)
  2716. if (!DEBUGGING(DRYRUN))
  2717. print_job_timer.incFilamentUsed(destination[E_AXIS] - current_position[E_AXIS]);
  2718. #endif
  2719. // Get ABCDHI mixing factors
  2720. #if ENABLED(MIXING_EXTRUDER) && ENABLED(DIRECT_MIXING_IN_G1)
  2721. gcode_get_mix();
  2722. #endif
  2723. }
  2724. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  2725. /**
  2726. * Output a "busy" message at regular intervals
  2727. * while the machine is not accepting commands.
  2728. */
  2729. void host_keepalive() {
  2730. const millis_t ms = millis();
  2731. if (host_keepalive_interval && busy_state != NOT_BUSY) {
  2732. if (PENDING(ms, next_busy_signal_ms)) return;
  2733. switch (busy_state) {
  2734. case IN_HANDLER:
  2735. case IN_PROCESS:
  2736. SERIAL_ECHO_START();
  2737. SERIAL_ECHOLNPGM(MSG_BUSY_PROCESSING);
  2738. break;
  2739. case PAUSED_FOR_USER:
  2740. SERIAL_ECHO_START();
  2741. SERIAL_ECHOLNPGM(MSG_BUSY_PAUSED_FOR_USER);
  2742. break;
  2743. case PAUSED_FOR_INPUT:
  2744. SERIAL_ECHO_START();
  2745. SERIAL_ECHOLNPGM(MSG_BUSY_PAUSED_FOR_INPUT);
  2746. break;
  2747. default:
  2748. break;
  2749. }
  2750. }
  2751. next_busy_signal_ms = ms + host_keepalive_interval * 1000UL;
  2752. }
  2753. #endif // HOST_KEEPALIVE_FEATURE
  2754. /**************************************************
  2755. ***************** GCode Handlers *****************
  2756. **************************************************/
  2757. /**
  2758. * G0, G1: Coordinated movement of X Y Z E axes
  2759. */
  2760. inline void gcode_G0_G1(
  2761. #if IS_SCARA
  2762. bool fast_move=false
  2763. #endif
  2764. ) {
  2765. if (IsRunning()) {
  2766. gcode_get_destination(); // For X Y Z E F
  2767. #if ENABLED(FWRETRACT)
  2768. if (autoretract_enabled && !(parser.seen('X') || parser.seen('Y') || parser.seen('Z')) && parser.seen('E')) {
  2769. const float echange = destination[E_AXIS] - current_position[E_AXIS];
  2770. // Is this move an attempt to retract or recover?
  2771. if ((echange < -MIN_RETRACT && !retracted[active_extruder]) || (echange > MIN_RETRACT && retracted[active_extruder])) {
  2772. current_position[E_AXIS] = destination[E_AXIS]; // hide the slicer-generated retract/recover from calculations
  2773. sync_plan_position_e(); // AND from the planner
  2774. retract(!retracted[active_extruder]);
  2775. return;
  2776. }
  2777. }
  2778. #endif // FWRETRACT
  2779. #if IS_SCARA
  2780. fast_move ? prepare_uninterpolated_move_to_destination() : prepare_move_to_destination();
  2781. #else
  2782. prepare_move_to_destination();
  2783. #endif
  2784. }
  2785. }
  2786. /**
  2787. * G2: Clockwise Arc
  2788. * G3: Counterclockwise Arc
  2789. *
  2790. * This command has two forms: IJ-form and R-form.
  2791. *
  2792. * - I specifies an X offset. J specifies a Y offset.
  2793. * At least one of the IJ parameters is required.
  2794. * X and Y can be omitted to do a complete circle.
  2795. * The given XY is not error-checked. The arc ends
  2796. * based on the angle of the destination.
  2797. * Mixing I or J with R will throw an error.
  2798. *
  2799. * - R specifies the radius. X or Y is required.
  2800. * Omitting both X and Y will throw an error.
  2801. * X or Y must differ from the current XY.
  2802. * Mixing R with I or J will throw an error.
  2803. *
  2804. * - P specifies the number of full circles to do
  2805. * before the specified arc move.
  2806. *
  2807. * Examples:
  2808. *
  2809. * G2 I10 ; CW circle centered at X+10
  2810. * G3 X20 Y12 R14 ; CCW circle with r=14 ending at X20 Y12
  2811. */
  2812. #if ENABLED(ARC_SUPPORT)
  2813. inline void gcode_G2_G3(bool clockwise) {
  2814. if (IsRunning()) {
  2815. #if ENABLED(SF_ARC_FIX)
  2816. const bool relative_mode_backup = relative_mode;
  2817. relative_mode = true;
  2818. #endif
  2819. gcode_get_destination();
  2820. #if ENABLED(SF_ARC_FIX)
  2821. relative_mode = relative_mode_backup;
  2822. #endif
  2823. float arc_offset[2] = { 0.0, 0.0 };
  2824. if (parser.seenval('R')) {
  2825. const float r = parser.value_linear_units(),
  2826. p1 = current_position[X_AXIS], q1 = current_position[Y_AXIS],
  2827. p2 = destination[X_AXIS], q2 = destination[Y_AXIS];
  2828. if (r && (p2 != p1 || q2 != q1)) {
  2829. const float e = clockwise ^ (r < 0) ? -1 : 1, // clockwise -1/1, counterclockwise 1/-1
  2830. dx = p2 - p1, dy = q2 - q1, // X and Y differences
  2831. d = HYPOT(dx, dy), // Linear distance between the points
  2832. h = SQRT(sq(r) - sq(d * 0.5)), // Distance to the arc pivot-point
  2833. mx = (p1 + p2) * 0.5, my = (q1 + q2) * 0.5, // Point between the two points
  2834. sx = -dy / d, sy = dx / d, // Slope of the perpendicular bisector
  2835. cx = mx + e * h * sx, cy = my + e * h * sy; // Pivot-point of the arc
  2836. arc_offset[0] = cx - p1;
  2837. arc_offset[1] = cy - q1;
  2838. }
  2839. }
  2840. else {
  2841. if (parser.seenval('I')) arc_offset[0] = parser.value_linear_units();
  2842. if (parser.seenval('J')) arc_offset[1] = parser.value_linear_units();
  2843. }
  2844. if (arc_offset[0] || arc_offset[1]) {
  2845. #if ENABLED(ARC_P_CIRCLES)
  2846. // P indicates number of circles to do
  2847. int8_t circles_to_do = parser.byteval('P');
  2848. if (!WITHIN(circles_to_do, 0, 100)) {
  2849. SERIAL_ERROR_START();
  2850. SERIAL_ERRORLNPGM(MSG_ERR_ARC_ARGS);
  2851. }
  2852. while (circles_to_do--)
  2853. plan_arc(current_position, arc_offset, clockwise);
  2854. #endif
  2855. // Send the arc to the planner
  2856. plan_arc(destination, arc_offset, clockwise);
  2857. refresh_cmd_timeout();
  2858. }
  2859. else {
  2860. // Bad arguments
  2861. SERIAL_ERROR_START();
  2862. SERIAL_ERRORLNPGM(MSG_ERR_ARC_ARGS);
  2863. }
  2864. }
  2865. }
  2866. #endif // ARC_SUPPORT
  2867. /**
  2868. * G4: Dwell S<seconds> or P<milliseconds>
  2869. */
  2870. inline void gcode_G4() {
  2871. millis_t dwell_ms = 0;
  2872. if (parser.seenval('P')) dwell_ms = parser.value_millis(); // milliseconds to wait
  2873. if (parser.seenval('S')) dwell_ms = parser.value_millis_from_seconds(); // seconds to wait
  2874. stepper.synchronize();
  2875. refresh_cmd_timeout();
  2876. dwell_ms += previous_cmd_ms; // keep track of when we started waiting
  2877. if (!lcd_hasstatus()) LCD_MESSAGEPGM(MSG_DWELL);
  2878. while (PENDING(millis(), dwell_ms)) idle();
  2879. }
  2880. #if ENABLED(BEZIER_CURVE_SUPPORT)
  2881. /**
  2882. * Parameters interpreted according to:
  2883. * http://linuxcnc.org/docs/2.6/html/gcode/gcode.html#sec:G5-Cubic-Spline
  2884. * However I, J omission is not supported at this point; all
  2885. * parameters can be omitted and default to zero.
  2886. */
  2887. /**
  2888. * G5: Cubic B-spline
  2889. */
  2890. inline void gcode_G5() {
  2891. if (IsRunning()) {
  2892. gcode_get_destination();
  2893. const float offset[] = {
  2894. parser.linearval('I'),
  2895. parser.linearval('J'),
  2896. parser.linearval('P'),
  2897. parser.linearval('Q')
  2898. };
  2899. plan_cubic_move(offset);
  2900. }
  2901. }
  2902. #endif // BEZIER_CURVE_SUPPORT
  2903. #if ENABLED(FWRETRACT)
  2904. /**
  2905. * G10 - Retract filament according to settings of M207
  2906. * G11 - Recover filament according to settings of M208
  2907. */
  2908. inline void gcode_G10_G11(bool doRetract=false) {
  2909. #if EXTRUDERS > 1
  2910. if (doRetract)
  2911. retracted_swap[active_extruder] = parser.boolval('S'); // checks for swap retract argument
  2912. #endif
  2913. retract(doRetract
  2914. #if EXTRUDERS > 1
  2915. , retracted_swap[active_extruder]
  2916. #endif
  2917. );
  2918. }
  2919. #endif // FWRETRACT
  2920. #if ENABLED(NOZZLE_CLEAN_FEATURE)
  2921. /**
  2922. * G12: Clean the nozzle
  2923. */
  2924. inline void gcode_G12() {
  2925. // Don't allow nozzle cleaning without homing first
  2926. if (axis_unhomed_error()) return;
  2927. const uint8_t pattern = parser.ushortval('P', 0),
  2928. strokes = parser.ushortval('S', NOZZLE_CLEAN_STROKES),
  2929. objects = parser.ushortval('T', NOZZLE_CLEAN_TRIANGLES);
  2930. const float radius = parser.floatval('R', NOZZLE_CLEAN_CIRCLE_RADIUS);
  2931. Nozzle::clean(pattern, strokes, radius, objects);
  2932. }
  2933. #endif
  2934. #if ENABLED(CNC_WORKSPACE_PLANES)
  2935. void report_workspace_plane() {
  2936. SERIAL_ECHO_START();
  2937. SERIAL_ECHOPGM("Workspace Plane ");
  2938. serialprintPGM(workspace_plane == PLANE_YZ ? PSTR("YZ\n") : workspace_plane == PLANE_ZX ? PSTR("ZX\n") : PSTR("XY\n"));
  2939. }
  2940. /**
  2941. * G17: Select Plane XY
  2942. * G18: Select Plane ZX
  2943. * G19: Select Plane YZ
  2944. */
  2945. inline void gcode_G17() { workspace_plane = PLANE_XY; }
  2946. inline void gcode_G18() { workspace_plane = PLANE_ZX; }
  2947. inline void gcode_G19() { workspace_plane = PLANE_YZ; }
  2948. #endif // CNC_WORKSPACE_PLANES
  2949. #if ENABLED(INCH_MODE_SUPPORT)
  2950. /**
  2951. * G20: Set input mode to inches
  2952. */
  2953. inline void gcode_G20() { parser.set_input_linear_units(LINEARUNIT_INCH); }
  2954. /**
  2955. * G21: Set input mode to millimeters
  2956. */
  2957. inline void gcode_G21() { parser.set_input_linear_units(LINEARUNIT_MM); }
  2958. #endif
  2959. #if ENABLED(NOZZLE_PARK_FEATURE)
  2960. /**
  2961. * G27: Park the nozzle
  2962. */
  2963. inline void gcode_G27() {
  2964. // Don't allow nozzle parking without homing first
  2965. if (axis_unhomed_error()) return;
  2966. Nozzle::park(parser.ushortval('P'));
  2967. }
  2968. #endif // NOZZLE_PARK_FEATURE
  2969. #if ENABLED(QUICK_HOME)
  2970. static void quick_home_xy() {
  2971. // Pretend the current position is 0,0
  2972. current_position[X_AXIS] = current_position[Y_AXIS] = 0.0;
  2973. sync_plan_position();
  2974. const int x_axis_home_dir =
  2975. #if ENABLED(DUAL_X_CARRIAGE)
  2976. x_home_dir(active_extruder)
  2977. #else
  2978. home_dir(X_AXIS)
  2979. #endif
  2980. ;
  2981. const float mlx = max_length(X_AXIS),
  2982. mly = max_length(Y_AXIS),
  2983. mlratio = mlx > mly ? mly / mlx : mlx / mly,
  2984. fr_mm_s = min(homing_feedrate(X_AXIS), homing_feedrate(Y_AXIS)) * SQRT(sq(mlratio) + 1.0);
  2985. do_blocking_move_to_xy(1.5 * mlx * x_axis_home_dir, 1.5 * mly * home_dir(Y_AXIS), fr_mm_s);
  2986. endstops.hit_on_purpose(); // clear endstop hit flags
  2987. current_position[X_AXIS] = current_position[Y_AXIS] = 0.0;
  2988. }
  2989. #endif // QUICK_HOME
  2990. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2991. void log_machine_info() {
  2992. SERIAL_ECHOPGM("Machine Type: ");
  2993. #if ENABLED(DELTA)
  2994. SERIAL_ECHOLNPGM("Delta");
  2995. #elif IS_SCARA
  2996. SERIAL_ECHOLNPGM("SCARA");
  2997. #elif IS_CORE
  2998. SERIAL_ECHOLNPGM("Core");
  2999. #else
  3000. SERIAL_ECHOLNPGM("Cartesian");
  3001. #endif
  3002. SERIAL_ECHOPGM("Probe: ");
  3003. #if ENABLED(PROBE_MANUALLY)
  3004. SERIAL_ECHOLNPGM("PROBE_MANUALLY");
  3005. #elif ENABLED(FIX_MOUNTED_PROBE)
  3006. SERIAL_ECHOLNPGM("FIX_MOUNTED_PROBE");
  3007. #elif ENABLED(BLTOUCH)
  3008. SERIAL_ECHOLNPGM("BLTOUCH");
  3009. #elif HAS_Z_SERVO_ENDSTOP
  3010. SERIAL_ECHOLNPGM("SERVO PROBE");
  3011. #elif ENABLED(Z_PROBE_SLED)
  3012. SERIAL_ECHOLNPGM("Z_PROBE_SLED");
  3013. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  3014. SERIAL_ECHOLNPGM("Z_PROBE_ALLEN_KEY");
  3015. #else
  3016. SERIAL_ECHOLNPGM("NONE");
  3017. #endif
  3018. #if HAS_BED_PROBE
  3019. SERIAL_ECHOPAIR("Probe Offset X:", X_PROBE_OFFSET_FROM_EXTRUDER);
  3020. SERIAL_ECHOPAIR(" Y:", Y_PROBE_OFFSET_FROM_EXTRUDER);
  3021. SERIAL_ECHOPAIR(" Z:", zprobe_zoffset);
  3022. #if X_PROBE_OFFSET_FROM_EXTRUDER > 0
  3023. SERIAL_ECHOPGM(" (Right");
  3024. #elif X_PROBE_OFFSET_FROM_EXTRUDER < 0
  3025. SERIAL_ECHOPGM(" (Left");
  3026. #elif Y_PROBE_OFFSET_FROM_EXTRUDER != 0
  3027. SERIAL_ECHOPGM(" (Middle");
  3028. #else
  3029. SERIAL_ECHOPGM(" (Aligned With");
  3030. #endif
  3031. #if Y_PROBE_OFFSET_FROM_EXTRUDER > 0
  3032. SERIAL_ECHOPGM("-Back");
  3033. #elif Y_PROBE_OFFSET_FROM_EXTRUDER < 0
  3034. SERIAL_ECHOPGM("-Front");
  3035. #elif X_PROBE_OFFSET_FROM_EXTRUDER != 0
  3036. SERIAL_ECHOPGM("-Center");
  3037. #endif
  3038. if (zprobe_zoffset < 0)
  3039. SERIAL_ECHOPGM(" & Below");
  3040. else if (zprobe_zoffset > 0)
  3041. SERIAL_ECHOPGM(" & Above");
  3042. else
  3043. SERIAL_ECHOPGM(" & Same Z as");
  3044. SERIAL_ECHOLNPGM(" Nozzle)");
  3045. #endif
  3046. #if HAS_ABL
  3047. SERIAL_ECHOPGM("Auto Bed Leveling: ");
  3048. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3049. SERIAL_ECHOPGM("LINEAR");
  3050. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3051. SERIAL_ECHOPGM("BILINEAR");
  3052. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  3053. SERIAL_ECHOPGM("3POINT");
  3054. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  3055. SERIAL_ECHOPGM("UBL");
  3056. #endif
  3057. if (leveling_is_active()) {
  3058. SERIAL_ECHOLNPGM(" (enabled)");
  3059. #if ABL_PLANAR
  3060. const float diff[XYZ] = {
  3061. stepper.get_axis_position_mm(X_AXIS) - current_position[X_AXIS],
  3062. stepper.get_axis_position_mm(Y_AXIS) - current_position[Y_AXIS],
  3063. stepper.get_axis_position_mm(Z_AXIS) - current_position[Z_AXIS]
  3064. };
  3065. SERIAL_ECHOPGM("ABL Adjustment X");
  3066. if (diff[X_AXIS] > 0) SERIAL_CHAR('+');
  3067. SERIAL_ECHO(diff[X_AXIS]);
  3068. SERIAL_ECHOPGM(" Y");
  3069. if (diff[Y_AXIS] > 0) SERIAL_CHAR('+');
  3070. SERIAL_ECHO(diff[Y_AXIS]);
  3071. SERIAL_ECHOPGM(" Z");
  3072. if (diff[Z_AXIS] > 0) SERIAL_CHAR('+');
  3073. SERIAL_ECHO(diff[Z_AXIS]);
  3074. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  3075. SERIAL_ECHOPAIR("UBL Adjustment Z", stepper.get_axis_position_mm(Z_AXIS) - current_position[Z_AXIS]);
  3076. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3077. SERIAL_ECHOPAIR("ABL Adjustment Z", bilinear_z_offset(current_position));
  3078. #endif
  3079. }
  3080. else
  3081. SERIAL_ECHOLNPGM(" (disabled)");
  3082. SERIAL_EOL();
  3083. #elif ENABLED(MESH_BED_LEVELING)
  3084. SERIAL_ECHOPGM("Mesh Bed Leveling");
  3085. if (leveling_is_active()) {
  3086. float lz = current_position[Z_AXIS];
  3087. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], lz);
  3088. SERIAL_ECHOLNPGM(" (enabled)");
  3089. SERIAL_ECHOPAIR("MBL Adjustment Z", lz);
  3090. }
  3091. else
  3092. SERIAL_ECHOPGM(" (disabled)");
  3093. SERIAL_EOL();
  3094. #endif // MESH_BED_LEVELING
  3095. }
  3096. #endif // DEBUG_LEVELING_FEATURE
  3097. #if ENABLED(DELTA)
  3098. /**
  3099. * A delta can only safely home all axes at the same time
  3100. * This is like quick_home_xy() but for 3 towers.
  3101. */
  3102. inline void home_delta() {
  3103. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3104. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> home_delta", current_position);
  3105. #endif
  3106. // Init the current position of all carriages to 0,0,0
  3107. ZERO(current_position);
  3108. sync_plan_position();
  3109. // Move all carriages together linearly until an endstop is hit.
  3110. current_position[X_AXIS] = current_position[Y_AXIS] = current_position[Z_AXIS] = (Z_MAX_LENGTH + 10);
  3111. feedrate_mm_s = homing_feedrate(X_AXIS);
  3112. line_to_current_position();
  3113. stepper.synchronize();
  3114. endstops.hit_on_purpose(); // clear endstop hit flags
  3115. // At least one carriage has reached the top.
  3116. // Now re-home each carriage separately.
  3117. HOMEAXIS(A);
  3118. HOMEAXIS(B);
  3119. HOMEAXIS(C);
  3120. // Set all carriages to their home positions
  3121. // Do this here all at once for Delta, because
  3122. // XYZ isn't ABC. Applying this per-tower would
  3123. // give the impression that they are the same.
  3124. LOOP_XYZ(i) set_axis_is_at_home((AxisEnum)i);
  3125. SYNC_PLAN_POSITION_KINEMATIC();
  3126. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3127. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< home_delta", current_position);
  3128. #endif
  3129. }
  3130. #endif // DELTA
  3131. #if ENABLED(Z_SAFE_HOMING)
  3132. inline void home_z_safely() {
  3133. // Disallow Z homing if X or Y are unknown
  3134. if (!axis_known_position[X_AXIS] || !axis_known_position[Y_AXIS]) {
  3135. LCD_MESSAGEPGM(MSG_ERR_Z_HOMING);
  3136. SERIAL_ECHO_START();
  3137. SERIAL_ECHOLNPGM(MSG_ERR_Z_HOMING);
  3138. return;
  3139. }
  3140. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3141. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Z_SAFE_HOMING >>>");
  3142. #endif
  3143. SYNC_PLAN_POSITION_KINEMATIC();
  3144. /**
  3145. * Move the Z probe (or just the nozzle) to the safe homing point
  3146. */
  3147. destination[X_AXIS] = LOGICAL_X_POSITION(Z_SAFE_HOMING_X_POINT);
  3148. destination[Y_AXIS] = LOGICAL_Y_POSITION(Z_SAFE_HOMING_Y_POINT);
  3149. destination[Z_AXIS] = current_position[Z_AXIS]; // Z is already at the right height
  3150. #if HOMING_Z_WITH_PROBE
  3151. destination[X_AXIS] -= X_PROBE_OFFSET_FROM_EXTRUDER;
  3152. destination[Y_AXIS] -= Y_PROBE_OFFSET_FROM_EXTRUDER;
  3153. #endif
  3154. if (position_is_reachable_xy(destination[X_AXIS], destination[Y_AXIS])) {
  3155. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3156. if (DEBUGGING(LEVELING)) DEBUG_POS("Z_SAFE_HOMING", destination);
  3157. #endif
  3158. // This causes the carriage on Dual X to unpark
  3159. #if ENABLED(DUAL_X_CARRIAGE)
  3160. active_extruder_parked = false;
  3161. #endif
  3162. do_blocking_move_to_xy(destination[X_AXIS], destination[Y_AXIS]);
  3163. HOMEAXIS(Z);
  3164. }
  3165. else {
  3166. LCD_MESSAGEPGM(MSG_ZPROBE_OUT);
  3167. SERIAL_ECHO_START();
  3168. SERIAL_ECHOLNPGM(MSG_ZPROBE_OUT);
  3169. }
  3170. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3171. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< Z_SAFE_HOMING");
  3172. #endif
  3173. }
  3174. #endif // Z_SAFE_HOMING
  3175. #if ENABLED(PROBE_MANUALLY)
  3176. bool g29_in_progress = false;
  3177. #else
  3178. constexpr bool g29_in_progress = false;
  3179. #endif
  3180. /**
  3181. * G28: Home all axes according to settings
  3182. *
  3183. * Parameters
  3184. *
  3185. * None Home to all axes with no parameters.
  3186. * With QUICK_HOME enabled XY will home together, then Z.
  3187. *
  3188. * Cartesian parameters
  3189. *
  3190. * X Home to the X endstop
  3191. * Y Home to the Y endstop
  3192. * Z Home to the Z endstop
  3193. *
  3194. */
  3195. inline void gcode_G28(const bool always_home_all) {
  3196. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3197. if (DEBUGGING(LEVELING)) {
  3198. SERIAL_ECHOLNPGM(">>> gcode_G28");
  3199. log_machine_info();
  3200. }
  3201. #endif
  3202. // Wait for planner moves to finish!
  3203. stepper.synchronize();
  3204. // Cancel the active G29 session
  3205. #if ENABLED(PROBE_MANUALLY)
  3206. g29_in_progress = false;
  3207. #endif
  3208. // Disable the leveling matrix before homing
  3209. #if HAS_LEVELING
  3210. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3211. const bool ubl_state_at_entry = leveling_is_active();
  3212. #endif
  3213. set_bed_leveling_enabled(false);
  3214. #endif
  3215. #if ENABLED(CNC_WORKSPACE_PLANES)
  3216. workspace_plane = PLANE_XY;
  3217. #endif
  3218. // Always home with tool 0 active
  3219. #if HOTENDS > 1
  3220. const uint8_t old_tool_index = active_extruder;
  3221. tool_change(0, 0, true);
  3222. #endif
  3223. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  3224. extruder_duplication_enabled = false;
  3225. #endif
  3226. setup_for_endstop_or_probe_move();
  3227. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3228. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> endstops.enable(true)");
  3229. #endif
  3230. endstops.enable(true); // Enable endstops for next homing move
  3231. #if ENABLED(DELTA)
  3232. home_delta();
  3233. UNUSED(always_home_all);
  3234. #else // NOT DELTA
  3235. const bool homeX = always_home_all || parser.seen('X'),
  3236. homeY = always_home_all || parser.seen('Y'),
  3237. homeZ = always_home_all || parser.seen('Z'),
  3238. home_all = (!homeX && !homeY && !homeZ) || (homeX && homeY && homeZ);
  3239. set_destination_to_current();
  3240. #if Z_HOME_DIR > 0 // If homing away from BED do Z first
  3241. if (home_all || homeZ) {
  3242. HOMEAXIS(Z);
  3243. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3244. if (DEBUGGING(LEVELING)) DEBUG_POS("> HOMEAXIS(Z)", current_position);
  3245. #endif
  3246. }
  3247. #else
  3248. if (home_all || homeX || homeY) {
  3249. // Raise Z before homing any other axes and z is not already high enough (never lower z)
  3250. destination[Z_AXIS] = LOGICAL_Z_POSITION(Z_HOMING_HEIGHT);
  3251. if (destination[Z_AXIS] > current_position[Z_AXIS]) {
  3252. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3253. if (DEBUGGING(LEVELING))
  3254. SERIAL_ECHOLNPAIR("Raise Z (before homing) to ", destination[Z_AXIS]);
  3255. #endif
  3256. do_blocking_move_to_z(destination[Z_AXIS]);
  3257. }
  3258. }
  3259. #endif
  3260. #if ENABLED(QUICK_HOME)
  3261. if (home_all || (homeX && homeY)) quick_home_xy();
  3262. #endif
  3263. #if ENABLED(HOME_Y_BEFORE_X)
  3264. // Home Y
  3265. if (home_all || homeY) {
  3266. HOMEAXIS(Y);
  3267. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3268. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeY", current_position);
  3269. #endif
  3270. }
  3271. #endif
  3272. // Home X
  3273. if (home_all || homeX) {
  3274. #if ENABLED(DUAL_X_CARRIAGE)
  3275. // Always home the 2nd (right) extruder first
  3276. active_extruder = 1;
  3277. HOMEAXIS(X);
  3278. // Remember this extruder's position for later tool change
  3279. inactive_extruder_x_pos = RAW_X_POSITION(current_position[X_AXIS]);
  3280. // Home the 1st (left) extruder
  3281. active_extruder = 0;
  3282. HOMEAXIS(X);
  3283. // Consider the active extruder to be parked
  3284. COPY(raised_parked_position, current_position);
  3285. delayed_move_time = 0;
  3286. active_extruder_parked = true;
  3287. #else
  3288. HOMEAXIS(X);
  3289. #endif
  3290. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3291. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeX", current_position);
  3292. #endif
  3293. }
  3294. #if DISABLED(HOME_Y_BEFORE_X)
  3295. // Home Y
  3296. if (home_all || homeY) {
  3297. HOMEAXIS(Y);
  3298. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3299. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeY", current_position);
  3300. #endif
  3301. }
  3302. #endif
  3303. // Home Z last if homing towards the bed
  3304. #if Z_HOME_DIR < 0
  3305. if (home_all || homeZ) {
  3306. #if ENABLED(Z_SAFE_HOMING)
  3307. home_z_safely();
  3308. #else
  3309. HOMEAXIS(Z);
  3310. #endif
  3311. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3312. if (DEBUGGING(LEVELING)) DEBUG_POS("> (home_all || homeZ) > final", current_position);
  3313. #endif
  3314. } // home_all || homeZ
  3315. #endif // Z_HOME_DIR < 0
  3316. SYNC_PLAN_POSITION_KINEMATIC();
  3317. #endif // !DELTA (gcode_G28)
  3318. endstops.not_homing();
  3319. #if ENABLED(DELTA) && ENABLED(DELTA_HOME_TO_SAFE_ZONE)
  3320. // move to a height where we can use the full xy-area
  3321. do_blocking_move_to_z(delta_clip_start_height);
  3322. #endif
  3323. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3324. set_bed_leveling_enabled(ubl_state_at_entry);
  3325. #endif
  3326. clean_up_after_endstop_or_probe_move();
  3327. // Restore the active tool after homing
  3328. #if HOTENDS > 1
  3329. tool_change(old_tool_index, 0, true);
  3330. #endif
  3331. lcd_refresh();
  3332. report_current_position();
  3333. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3334. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G28");
  3335. #endif
  3336. } // G28
  3337. void home_all_axes() { gcode_G28(true); }
  3338. #if HAS_PROBING_PROCEDURE
  3339. void out_of_range_error(const char* p_edge) {
  3340. SERIAL_PROTOCOLPGM("?Probe ");
  3341. serialprintPGM(p_edge);
  3342. SERIAL_PROTOCOLLNPGM(" position out of range.");
  3343. }
  3344. #endif
  3345. #if ENABLED(MESH_BED_LEVELING) || ENABLED(PROBE_MANUALLY)
  3346. #if ENABLED(PROBE_MANUALLY) && ENABLED(LCD_BED_LEVELING)
  3347. extern bool lcd_wait_for_move;
  3348. #endif
  3349. inline void _manual_goto_xy(const float &x, const float &y) {
  3350. const float old_feedrate_mm_s = feedrate_mm_s;
  3351. #if MANUAL_PROBE_HEIGHT > 0
  3352. feedrate_mm_s = homing_feedrate(Z_AXIS);
  3353. current_position[Z_AXIS] = LOGICAL_Z_POSITION(Z_MIN_POS) + MANUAL_PROBE_HEIGHT;
  3354. line_to_current_position();
  3355. #endif
  3356. feedrate_mm_s = MMM_TO_MMS(XY_PROBE_SPEED);
  3357. current_position[X_AXIS] = LOGICAL_X_POSITION(x);
  3358. current_position[Y_AXIS] = LOGICAL_Y_POSITION(y);
  3359. line_to_current_position();
  3360. #if MANUAL_PROBE_HEIGHT > 0
  3361. feedrate_mm_s = homing_feedrate(Z_AXIS);
  3362. current_position[Z_AXIS] = LOGICAL_Z_POSITION(Z_MIN_POS); // just slightly over the bed
  3363. line_to_current_position();
  3364. #endif
  3365. feedrate_mm_s = old_feedrate_mm_s;
  3366. stepper.synchronize();
  3367. #if ENABLED(PROBE_MANUALLY) && ENABLED(LCD_BED_LEVELING)
  3368. lcd_wait_for_move = false;
  3369. #endif
  3370. }
  3371. #endif
  3372. #if ENABLED(MESH_BED_LEVELING)
  3373. // Save 130 bytes with non-duplication of PSTR
  3374. void echo_not_entered() { SERIAL_PROTOCOLLNPGM(" not entered."); }
  3375. void mbl_mesh_report() {
  3376. SERIAL_PROTOCOLLNPGM("Num X,Y: " STRINGIFY(GRID_MAX_POINTS_X) "," STRINGIFY(GRID_MAX_POINTS_Y));
  3377. SERIAL_PROTOCOLPGM("Z offset: "); SERIAL_PROTOCOL_F(mbl.z_offset, 5);
  3378. SERIAL_PROTOCOLLNPGM("\nMeasured points:");
  3379. print_2d_array(GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y, 5,
  3380. [](const uint8_t ix, const uint8_t iy) { return mbl.z_values[ix][iy]; }
  3381. );
  3382. }
  3383. void mesh_probing_done() {
  3384. mbl.set_has_mesh(true);
  3385. home_all_axes();
  3386. set_bed_leveling_enabled(true);
  3387. #if ENABLED(MESH_G28_REST_ORIGIN)
  3388. current_position[Z_AXIS] = LOGICAL_Z_POSITION(Z_MIN_POS);
  3389. set_destination_to_current();
  3390. line_to_destination(homing_feedrate(Z_AXIS));
  3391. stepper.synchronize();
  3392. #endif
  3393. }
  3394. /**
  3395. * G29: Mesh-based Z probe, probes a grid and produces a
  3396. * mesh to compensate for variable bed height
  3397. *
  3398. * Parameters With MESH_BED_LEVELING:
  3399. *
  3400. * S0 Produce a mesh report
  3401. * S1 Start probing mesh points
  3402. * S2 Probe the next mesh point
  3403. * S3 Xn Yn Zn.nn Manually modify a single point
  3404. * S4 Zn.nn Set z offset. Positive away from bed, negative closer to bed.
  3405. * S5 Reset and disable mesh
  3406. *
  3407. * The S0 report the points as below
  3408. *
  3409. * +----> X-axis 1-n
  3410. * |
  3411. * |
  3412. * v Y-axis 1-n
  3413. *
  3414. */
  3415. inline void gcode_G29() {
  3416. static int mbl_probe_index = -1;
  3417. #if HAS_SOFTWARE_ENDSTOPS
  3418. static bool enable_soft_endstops;
  3419. #endif
  3420. const MeshLevelingState state = (MeshLevelingState)parser.byteval('S', (int8_t)MeshReport);
  3421. if (!WITHIN(state, 0, 5)) {
  3422. SERIAL_PROTOCOLLNPGM("S out of range (0-5).");
  3423. return;
  3424. }
  3425. int8_t px, py;
  3426. switch (state) {
  3427. case MeshReport:
  3428. if (leveling_is_valid()) {
  3429. SERIAL_PROTOCOLLNPAIR("State: ", leveling_is_active() ? MSG_ON : MSG_OFF);
  3430. mbl_mesh_report();
  3431. }
  3432. else
  3433. SERIAL_PROTOCOLLNPGM("Mesh bed leveling has no data.");
  3434. break;
  3435. case MeshStart:
  3436. mbl.reset();
  3437. mbl_probe_index = 0;
  3438. enqueue_and_echo_commands_P(PSTR("G28\nG29 S2"));
  3439. break;
  3440. case MeshNext:
  3441. if (mbl_probe_index < 0) {
  3442. SERIAL_PROTOCOLLNPGM("Start mesh probing with \"G29 S1\" first.");
  3443. return;
  3444. }
  3445. // For each G29 S2...
  3446. if (mbl_probe_index == 0) {
  3447. #if HAS_SOFTWARE_ENDSTOPS
  3448. // For the initial G29 S2 save software endstop state
  3449. enable_soft_endstops = soft_endstops_enabled;
  3450. #endif
  3451. }
  3452. else {
  3453. // For G29 S2 after adjusting Z.
  3454. mbl.set_zigzag_z(mbl_probe_index - 1, current_position[Z_AXIS]);
  3455. #if HAS_SOFTWARE_ENDSTOPS
  3456. soft_endstops_enabled = enable_soft_endstops;
  3457. #endif
  3458. }
  3459. // If there's another point to sample, move there with optional lift.
  3460. if (mbl_probe_index < GRID_MAX_POINTS) {
  3461. mbl.zigzag(mbl_probe_index, px, py);
  3462. _manual_goto_xy(mbl.index_to_xpos[px], mbl.index_to_ypos[py]);
  3463. #if HAS_SOFTWARE_ENDSTOPS
  3464. // Disable software endstops to allow manual adjustment
  3465. // If G29 is not completed, they will not be re-enabled
  3466. soft_endstops_enabled = false;
  3467. #endif
  3468. mbl_probe_index++;
  3469. }
  3470. else {
  3471. // One last "return to the bed" (as originally coded) at completion
  3472. current_position[Z_AXIS] = LOGICAL_Z_POSITION(Z_MIN_POS) + MANUAL_PROBE_HEIGHT;
  3473. line_to_current_position();
  3474. stepper.synchronize();
  3475. // After recording the last point, activate home and activate
  3476. mbl_probe_index = -1;
  3477. SERIAL_PROTOCOLLNPGM("Mesh probing done.");
  3478. BUZZ(100, 659);
  3479. BUZZ(100, 698);
  3480. mesh_probing_done();
  3481. }
  3482. break;
  3483. case MeshSet:
  3484. if (parser.seenval('X')) {
  3485. px = parser.value_int() - 1;
  3486. if (!WITHIN(px, 0, GRID_MAX_POINTS_X - 1)) {
  3487. SERIAL_PROTOCOLLNPGM("X out of range (1-" STRINGIFY(GRID_MAX_POINTS_X) ").");
  3488. return;
  3489. }
  3490. }
  3491. else {
  3492. SERIAL_CHAR('X'); echo_not_entered();
  3493. return;
  3494. }
  3495. if (parser.seenval('Y')) {
  3496. py = parser.value_int() - 1;
  3497. if (!WITHIN(py, 0, GRID_MAX_POINTS_Y - 1)) {
  3498. SERIAL_PROTOCOLLNPGM("Y out of range (1-" STRINGIFY(GRID_MAX_POINTS_Y) ").");
  3499. return;
  3500. }
  3501. }
  3502. else {
  3503. SERIAL_CHAR('Y'); echo_not_entered();
  3504. return;
  3505. }
  3506. if (parser.seenval('Z')) {
  3507. mbl.z_values[px][py] = parser.value_linear_units();
  3508. }
  3509. else {
  3510. SERIAL_CHAR('Z'); echo_not_entered();
  3511. return;
  3512. }
  3513. break;
  3514. case MeshSetZOffset:
  3515. if (parser.seenval('Z')) {
  3516. mbl.z_offset = parser.value_linear_units();
  3517. }
  3518. else {
  3519. SERIAL_CHAR('Z'); echo_not_entered();
  3520. return;
  3521. }
  3522. break;
  3523. case MeshReset:
  3524. reset_bed_level();
  3525. break;
  3526. } // switch(state)
  3527. report_current_position();
  3528. }
  3529. #elif HAS_ABL && DISABLED(AUTO_BED_LEVELING_UBL)
  3530. #if ABL_GRID
  3531. #if ENABLED(PROBE_Y_FIRST)
  3532. #define PR_OUTER_VAR xCount
  3533. #define PR_OUTER_END abl_grid_points_x
  3534. #define PR_INNER_VAR yCount
  3535. #define PR_INNER_END abl_grid_points_y
  3536. #else
  3537. #define PR_OUTER_VAR yCount
  3538. #define PR_OUTER_END abl_grid_points_y
  3539. #define PR_INNER_VAR xCount
  3540. #define PR_INNER_END abl_grid_points_x
  3541. #endif
  3542. #endif
  3543. /**
  3544. * G29: Detailed Z probe, probes the bed at 3 or more points.
  3545. * Will fail if the printer has not been homed with G28.
  3546. *
  3547. * Enhanced G29 Auto Bed Leveling Probe Routine
  3548. *
  3549. * D Dry-Run mode. Just evaluate the bed Topology - Don't apply
  3550. * or alter the bed level data. Useful to check the topology
  3551. * after a first run of G29.
  3552. *
  3553. * J Jettison current bed leveling data
  3554. *
  3555. * V Set the verbose level (0-4). Example: "G29 V3"
  3556. *
  3557. * Parameters With LINEAR leveling only:
  3558. *
  3559. * P Set the size of the grid that will be probed (P x P points).
  3560. * Example: "G29 P4"
  3561. *
  3562. * X Set the X size of the grid that will be probed (X x Y points).
  3563. * Example: "G29 X7 Y5"
  3564. *
  3565. * Y Set the Y size of the grid that will be probed (X x Y points).
  3566. *
  3567. * T Generate a Bed Topology Report. Example: "G29 P5 T" for a detailed report.
  3568. * This is useful for manual bed leveling and finding flaws in the bed (to
  3569. * assist with part placement).
  3570. * Not supported by non-linear delta printer bed leveling.
  3571. *
  3572. * Parameters With LINEAR and BILINEAR leveling only:
  3573. *
  3574. * S Set the XY travel speed between probe points (in units/min)
  3575. *
  3576. * F Set the Front limit of the probing grid
  3577. * B Set the Back limit of the probing grid
  3578. * L Set the Left limit of the probing grid
  3579. * R Set the Right limit of the probing grid
  3580. *
  3581. * Parameters with DEBUG_LEVELING_FEATURE only:
  3582. *
  3583. * C Make a totally fake grid with no actual probing.
  3584. * For use in testing when no probing is possible.
  3585. *
  3586. * Parameters with BILINEAR leveling only:
  3587. *
  3588. * Z Supply an additional Z probe offset
  3589. *
  3590. * Extra parameters with PROBE_MANUALLY:
  3591. *
  3592. * To do manual probing simply repeat G29 until the procedure is complete.
  3593. * The first G29 accepts parameters. 'G29 Q' for status, 'G29 A' to abort.
  3594. *
  3595. * Q Query leveling and G29 state
  3596. *
  3597. * A Abort current leveling procedure
  3598. *
  3599. * W Write a mesh point. (Ignored during leveling.)
  3600. * X Required X for mesh point
  3601. * Y Required Y for mesh point
  3602. * Z Z for mesh point. Otherwise, current Z minus Z probe offset.
  3603. *
  3604. * Without PROBE_MANUALLY:
  3605. *
  3606. * E By default G29 will engage the Z probe, test the bed, then disengage.
  3607. * Include "E" to engage/disengage the Z probe for each sample.
  3608. * There's no extra effect if you have a fixed Z probe.
  3609. *
  3610. */
  3611. inline void gcode_G29() {
  3612. // G29 Q is also available if debugging
  3613. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3614. const bool query = parser.seen('Q');
  3615. const uint8_t old_debug_flags = marlin_debug_flags;
  3616. if (query) marlin_debug_flags |= DEBUG_LEVELING;
  3617. if (DEBUGGING(LEVELING)) {
  3618. DEBUG_POS(">>> gcode_G29", current_position);
  3619. log_machine_info();
  3620. }
  3621. marlin_debug_flags = old_debug_flags;
  3622. #if DISABLED(PROBE_MANUALLY)
  3623. if (query) return;
  3624. #endif
  3625. #endif
  3626. #if ENABLED(PROBE_MANUALLY)
  3627. const bool seenA = parser.seen('A'), seenQ = parser.seen('Q'), no_action = seenA || seenQ;
  3628. #endif
  3629. #if ENABLED(DEBUG_LEVELING_FEATURE) && DISABLED(PROBE_MANUALLY)
  3630. const bool faux = parser.boolval('C');
  3631. #elif ENABLED(PROBE_MANUALLY)
  3632. const bool faux = no_action;
  3633. #else
  3634. bool constexpr faux = false;
  3635. #endif
  3636. // Don't allow auto-leveling without homing first
  3637. if (axis_unhomed_error()) return;
  3638. // Define local vars 'static' for manual probing, 'auto' otherwise
  3639. #if ENABLED(PROBE_MANUALLY)
  3640. #define ABL_VAR static
  3641. #else
  3642. #define ABL_VAR
  3643. #endif
  3644. ABL_VAR int verbose_level;
  3645. ABL_VAR float xProbe, yProbe, measured_z;
  3646. ABL_VAR bool dryrun, abl_should_enable;
  3647. #if ENABLED(PROBE_MANUALLY) || ENABLED(AUTO_BED_LEVELING_LINEAR)
  3648. ABL_VAR int abl_probe_index;
  3649. #endif
  3650. #if HAS_SOFTWARE_ENDSTOPS && ENABLED(PROBE_MANUALLY)
  3651. ABL_VAR bool enable_soft_endstops = true;
  3652. #endif
  3653. #if ABL_GRID
  3654. #if ENABLED(PROBE_MANUALLY)
  3655. ABL_VAR uint8_t PR_OUTER_VAR;
  3656. ABL_VAR int8_t PR_INNER_VAR;
  3657. #endif
  3658. ABL_VAR int left_probe_bed_position, right_probe_bed_position, front_probe_bed_position, back_probe_bed_position;
  3659. ABL_VAR float xGridSpacing, yGridSpacing;
  3660. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3661. ABL_VAR uint8_t abl_grid_points_x = GRID_MAX_POINTS_X,
  3662. abl_grid_points_y = GRID_MAX_POINTS_Y;
  3663. ABL_VAR bool do_topography_map;
  3664. #else // Bilinear
  3665. uint8_t constexpr abl_grid_points_x = GRID_MAX_POINTS_X,
  3666. abl_grid_points_y = GRID_MAX_POINTS_Y;
  3667. #endif
  3668. #if ENABLED(AUTO_BED_LEVELING_LINEAR) || ENABLED(PROBE_MANUALLY)
  3669. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3670. ABL_VAR int abl2;
  3671. #else // Bilinear
  3672. int constexpr abl2 = GRID_MAX_POINTS;
  3673. #endif
  3674. #endif
  3675. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3676. ABL_VAR float zoffset;
  3677. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  3678. ABL_VAR int indexIntoAB[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
  3679. ABL_VAR float eqnAMatrix[GRID_MAX_POINTS * 3], // "A" matrix of the linear system of equations
  3680. eqnBVector[GRID_MAX_POINTS], // "B" vector of Z points
  3681. mean;
  3682. #endif
  3683. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  3684. int constexpr abl2 = 3;
  3685. // Probe at 3 arbitrary points
  3686. ABL_VAR vector_3 points[3] = {
  3687. vector_3(ABL_PROBE_PT_1_X, ABL_PROBE_PT_1_Y, 0),
  3688. vector_3(ABL_PROBE_PT_2_X, ABL_PROBE_PT_2_Y, 0),
  3689. vector_3(ABL_PROBE_PT_3_X, ABL_PROBE_PT_3_Y, 0)
  3690. };
  3691. #endif // AUTO_BED_LEVELING_3POINT
  3692. /**
  3693. * On the initial G29 fetch command parameters.
  3694. */
  3695. if (!g29_in_progress) {
  3696. #if ENABLED(PROBE_MANUALLY) || ENABLED(AUTO_BED_LEVELING_LINEAR)
  3697. abl_probe_index = -1;
  3698. #endif
  3699. abl_should_enable = leveling_is_active();
  3700. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3701. if (parser.seen('W')) {
  3702. if (!leveling_is_valid()) {
  3703. SERIAL_ERROR_START();
  3704. SERIAL_ERRORLNPGM("No bilinear grid");
  3705. return;
  3706. }
  3707. const float z = parser.floatval('Z', RAW_CURRENT_POSITION(Z));
  3708. if (!WITHIN(z, -10, 10)) {
  3709. SERIAL_ERROR_START();
  3710. SERIAL_ERRORLNPGM("Bad Z value");
  3711. return;
  3712. }
  3713. const float x = parser.floatval('X', NAN),
  3714. y = parser.floatval('Y', NAN);
  3715. int8_t i = parser.byteval('I', -1),
  3716. j = parser.byteval('J', -1);
  3717. if (!isnan(x) && !isnan(y)) {
  3718. // Get nearest i / j from x / y
  3719. i = (x - LOGICAL_X_POSITION(bilinear_start[X_AXIS]) + 0.5 * xGridSpacing) / xGridSpacing;
  3720. j = (y - LOGICAL_Y_POSITION(bilinear_start[Y_AXIS]) + 0.5 * yGridSpacing) / yGridSpacing;
  3721. i = constrain(i, 0, GRID_MAX_POINTS_X - 1);
  3722. j = constrain(j, 0, GRID_MAX_POINTS_Y - 1);
  3723. }
  3724. if (WITHIN(i, 0, GRID_MAX_POINTS_X - 1) && WITHIN(j, 0, GRID_MAX_POINTS_Y)) {
  3725. set_bed_leveling_enabled(false);
  3726. z_values[i][j] = z;
  3727. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  3728. bed_level_virt_interpolate();
  3729. #endif
  3730. set_bed_leveling_enabled(abl_should_enable);
  3731. }
  3732. return;
  3733. } // parser.seen('W')
  3734. #endif
  3735. #if HAS_LEVELING
  3736. // Jettison bed leveling data
  3737. if (parser.seen('J')) {
  3738. reset_bed_level();
  3739. return;
  3740. }
  3741. #endif
  3742. verbose_level = parser.intval('V');
  3743. if (!WITHIN(verbose_level, 0, 4)) {
  3744. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-4).");
  3745. return;
  3746. }
  3747. dryrun = parser.boolval('D')
  3748. #if ENABLED(PROBE_MANUALLY)
  3749. || no_action
  3750. #endif
  3751. ;
  3752. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3753. do_topography_map = verbose_level > 2 || parser.boolval('T');
  3754. // X and Y specify points in each direction, overriding the default
  3755. // These values may be saved with the completed mesh
  3756. abl_grid_points_x = parser.intval('X', GRID_MAX_POINTS_X);
  3757. abl_grid_points_y = parser.intval('Y', GRID_MAX_POINTS_Y);
  3758. if (parser.seenval('P')) abl_grid_points_x = abl_grid_points_y = parser.value_int();
  3759. if (abl_grid_points_x < 2 || abl_grid_points_y < 2) {
  3760. SERIAL_PROTOCOLLNPGM("?Number of probe points is implausible (2 minimum).");
  3761. return;
  3762. }
  3763. abl2 = abl_grid_points_x * abl_grid_points_y;
  3764. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3765. zoffset = parser.linearval('Z');
  3766. #endif
  3767. #if ABL_GRID
  3768. xy_probe_feedrate_mm_s = MMM_TO_MMS(parser.linearval('S', XY_PROBE_SPEED));
  3769. left_probe_bed_position = (int)parser.linearval('L', LOGICAL_X_POSITION(LEFT_PROBE_BED_POSITION));
  3770. right_probe_bed_position = (int)parser.linearval('R', LOGICAL_X_POSITION(RIGHT_PROBE_BED_POSITION));
  3771. front_probe_bed_position = (int)parser.linearval('F', LOGICAL_Y_POSITION(FRONT_PROBE_BED_POSITION));
  3772. back_probe_bed_position = (int)parser.linearval('B', LOGICAL_Y_POSITION(BACK_PROBE_BED_POSITION));
  3773. const bool left_out_l = left_probe_bed_position < LOGICAL_X_POSITION(MIN_PROBE_X),
  3774. left_out = left_out_l || left_probe_bed_position > right_probe_bed_position - (MIN_PROBE_EDGE),
  3775. right_out_r = right_probe_bed_position > LOGICAL_X_POSITION(MAX_PROBE_X),
  3776. right_out = right_out_r || right_probe_bed_position < left_probe_bed_position + MIN_PROBE_EDGE,
  3777. front_out_f = front_probe_bed_position < LOGICAL_Y_POSITION(MIN_PROBE_Y),
  3778. front_out = front_out_f || front_probe_bed_position > back_probe_bed_position - (MIN_PROBE_EDGE),
  3779. back_out_b = back_probe_bed_position > LOGICAL_Y_POSITION(MAX_PROBE_Y),
  3780. back_out = back_out_b || back_probe_bed_position < front_probe_bed_position + MIN_PROBE_EDGE;
  3781. if (left_out || right_out || front_out || back_out) {
  3782. if (left_out) {
  3783. out_of_range_error(PSTR("(L)eft"));
  3784. left_probe_bed_position = left_out_l ? LOGICAL_X_POSITION(MIN_PROBE_X) : right_probe_bed_position - (MIN_PROBE_EDGE);
  3785. }
  3786. if (right_out) {
  3787. out_of_range_error(PSTR("(R)ight"));
  3788. right_probe_bed_position = right_out_r ? LOGICAL_Y_POSITION(MAX_PROBE_X) : left_probe_bed_position + MIN_PROBE_EDGE;
  3789. }
  3790. if (front_out) {
  3791. out_of_range_error(PSTR("(F)ront"));
  3792. front_probe_bed_position = front_out_f ? LOGICAL_Y_POSITION(MIN_PROBE_Y) : back_probe_bed_position - (MIN_PROBE_EDGE);
  3793. }
  3794. if (back_out) {
  3795. out_of_range_error(PSTR("(B)ack"));
  3796. back_probe_bed_position = back_out_b ? LOGICAL_Y_POSITION(MAX_PROBE_Y) : front_probe_bed_position + MIN_PROBE_EDGE;
  3797. }
  3798. return;
  3799. }
  3800. // probe at the points of a lattice grid
  3801. xGridSpacing = (right_probe_bed_position - left_probe_bed_position) / (abl_grid_points_x - 1);
  3802. yGridSpacing = (back_probe_bed_position - front_probe_bed_position) / (abl_grid_points_y - 1);
  3803. #endif // ABL_GRID
  3804. if (verbose_level > 0) {
  3805. SERIAL_PROTOCOLLNPGM("G29 Auto Bed Leveling");
  3806. if (dryrun) SERIAL_PROTOCOLLNPGM("Running in DRY-RUN mode");
  3807. }
  3808. stepper.synchronize();
  3809. // Disable auto bed leveling during G29
  3810. planner.abl_enabled = false;
  3811. if (!dryrun) {
  3812. // Re-orient the current position without leveling
  3813. // based on where the steppers are positioned.
  3814. set_current_from_steppers_for_axis(ALL_AXES);
  3815. // Sync the planner to where the steppers stopped
  3816. SYNC_PLAN_POSITION_KINEMATIC();
  3817. }
  3818. if (!faux) setup_for_endstop_or_probe_move();
  3819. //xProbe = yProbe = measured_z = 0;
  3820. #if HAS_BED_PROBE
  3821. // Deploy the probe. Probe will raise if needed.
  3822. if (DEPLOY_PROBE()) {
  3823. planner.abl_enabled = abl_should_enable;
  3824. return;
  3825. }
  3826. #endif
  3827. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3828. if ( xGridSpacing != bilinear_grid_spacing[X_AXIS]
  3829. || yGridSpacing != bilinear_grid_spacing[Y_AXIS]
  3830. || left_probe_bed_position != LOGICAL_X_POSITION(bilinear_start[X_AXIS])
  3831. || front_probe_bed_position != LOGICAL_Y_POSITION(bilinear_start[Y_AXIS])
  3832. ) {
  3833. if (dryrun) {
  3834. // Before reset bed level, re-enable to correct the position
  3835. planner.abl_enabled = abl_should_enable;
  3836. }
  3837. // Reset grid to 0.0 or "not probed". (Also disables ABL)
  3838. reset_bed_level();
  3839. // Initialize a grid with the given dimensions
  3840. bilinear_grid_spacing[X_AXIS] = xGridSpacing;
  3841. bilinear_grid_spacing[Y_AXIS] = yGridSpacing;
  3842. bilinear_start[X_AXIS] = RAW_X_POSITION(left_probe_bed_position);
  3843. bilinear_start[Y_AXIS] = RAW_Y_POSITION(front_probe_bed_position);
  3844. // Can't re-enable (on error) until the new grid is written
  3845. abl_should_enable = false;
  3846. }
  3847. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  3848. mean = 0.0;
  3849. #endif // AUTO_BED_LEVELING_LINEAR
  3850. #if ENABLED(AUTO_BED_LEVELING_3POINT)
  3851. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3852. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> 3-point Leveling");
  3853. #endif
  3854. // Probe at 3 arbitrary points
  3855. points[0].z = points[1].z = points[2].z = 0;
  3856. #endif // AUTO_BED_LEVELING_3POINT
  3857. } // !g29_in_progress
  3858. #if ENABLED(PROBE_MANUALLY)
  3859. // For manual probing, get the next index to probe now.
  3860. // On the first probe this will be incremented to 0.
  3861. if (!no_action) {
  3862. ++abl_probe_index;
  3863. g29_in_progress = true;
  3864. }
  3865. // Abort current G29 procedure, go back to idle state
  3866. if (seenA && g29_in_progress) {
  3867. SERIAL_PROTOCOLLNPGM("Manual G29 aborted");
  3868. #if HAS_SOFTWARE_ENDSTOPS
  3869. soft_endstops_enabled = enable_soft_endstops;
  3870. #endif
  3871. planner.abl_enabled = abl_should_enable;
  3872. g29_in_progress = false;
  3873. #if ENABLED(LCD_BED_LEVELING)
  3874. lcd_wait_for_move = false;
  3875. #endif
  3876. }
  3877. // Query G29 status
  3878. if (verbose_level || seenQ) {
  3879. SERIAL_PROTOCOLPGM("Manual G29 ");
  3880. if (g29_in_progress) {
  3881. SERIAL_PROTOCOLPAIR("point ", min(abl_probe_index + 1, abl2));
  3882. SERIAL_PROTOCOLLNPAIR(" of ", abl2);
  3883. }
  3884. else
  3885. SERIAL_PROTOCOLLNPGM("idle");
  3886. }
  3887. if (no_action) return;
  3888. if (abl_probe_index == 0) {
  3889. // For the initial G29 save software endstop state
  3890. #if HAS_SOFTWARE_ENDSTOPS
  3891. enable_soft_endstops = soft_endstops_enabled;
  3892. #endif
  3893. }
  3894. else {
  3895. // For G29 after adjusting Z.
  3896. // Save the previous Z before going to the next point
  3897. measured_z = current_position[Z_AXIS];
  3898. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3899. mean += measured_z;
  3900. eqnBVector[abl_probe_index] = measured_z;
  3901. eqnAMatrix[abl_probe_index + 0 * abl2] = xProbe;
  3902. eqnAMatrix[abl_probe_index + 1 * abl2] = yProbe;
  3903. eqnAMatrix[abl_probe_index + 2 * abl2] = 1;
  3904. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3905. z_values[xCount][yCount] = measured_z + zoffset;
  3906. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3907. if (DEBUGGING(LEVELING)) {
  3908. SERIAL_PROTOCOLPAIR("Save X", xCount);
  3909. SERIAL_PROTOCOLPAIR(" Y", yCount);
  3910. SERIAL_PROTOCOLLNPAIR(" Z", measured_z + zoffset);
  3911. }
  3912. #endif
  3913. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  3914. points[abl_probe_index].z = measured_z;
  3915. #endif
  3916. }
  3917. //
  3918. // If there's another point to sample, move there with optional lift.
  3919. //
  3920. #if ABL_GRID
  3921. // Skip any unreachable points
  3922. while (abl_probe_index < abl2) {
  3923. // Set xCount, yCount based on abl_probe_index, with zig-zag
  3924. PR_OUTER_VAR = abl_probe_index / PR_INNER_END;
  3925. PR_INNER_VAR = abl_probe_index - (PR_OUTER_VAR * PR_INNER_END);
  3926. // Probe in reverse order for every other row/column
  3927. bool zig = (PR_OUTER_VAR & 1); // != ((PR_OUTER_END) & 1);
  3928. if (zig) PR_INNER_VAR = (PR_INNER_END - 1) - PR_INNER_VAR;
  3929. const float xBase = xCount * xGridSpacing + left_probe_bed_position,
  3930. yBase = yCount * yGridSpacing + front_probe_bed_position;
  3931. xProbe = FLOOR(xBase + (xBase < 0 ? 0 : 0.5));
  3932. yProbe = FLOOR(yBase + (yBase < 0 ? 0 : 0.5));
  3933. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3934. indexIntoAB[xCount][yCount] = abl_probe_index;
  3935. #endif
  3936. // Keep looping till a reachable point is found
  3937. if (position_is_reachable_xy(xProbe, yProbe)) break;
  3938. ++abl_probe_index;
  3939. }
  3940. // Is there a next point to move to?
  3941. if (abl_probe_index < abl2) {
  3942. _manual_goto_xy(xProbe, yProbe); // Can be used here too!
  3943. #if HAS_SOFTWARE_ENDSTOPS
  3944. // Disable software endstops to allow manual adjustment
  3945. // If G29 is not completed, they will not be re-enabled
  3946. soft_endstops_enabled = false;
  3947. #endif
  3948. return;
  3949. }
  3950. else {
  3951. // Leveling done! Fall through to G29 finishing code below
  3952. SERIAL_PROTOCOLLNPGM("Grid probing done.");
  3953. // Re-enable software endstops, if needed
  3954. #if HAS_SOFTWARE_ENDSTOPS
  3955. soft_endstops_enabled = enable_soft_endstops;
  3956. #endif
  3957. }
  3958. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  3959. // Probe at 3 arbitrary points
  3960. if (abl_probe_index < 3) {
  3961. xProbe = LOGICAL_X_POSITION(points[abl_probe_index].x);
  3962. yProbe = LOGICAL_Y_POSITION(points[abl_probe_index].y);
  3963. #if HAS_SOFTWARE_ENDSTOPS
  3964. // Disable software endstops to allow manual adjustment
  3965. // If G29 is not completed, they will not be re-enabled
  3966. soft_endstops_enabled = false;
  3967. #endif
  3968. return;
  3969. }
  3970. else {
  3971. SERIAL_PROTOCOLLNPGM("3-point probing done.");
  3972. // Re-enable software endstops, if needed
  3973. #if HAS_SOFTWARE_ENDSTOPS
  3974. soft_endstops_enabled = enable_soft_endstops;
  3975. #endif
  3976. if (!dryrun) {
  3977. vector_3 planeNormal = vector_3::cross(points[0] - points[1], points[2] - points[1]).get_normal();
  3978. if (planeNormal.z < 0) {
  3979. planeNormal.x *= -1;
  3980. planeNormal.y *= -1;
  3981. planeNormal.z *= -1;
  3982. }
  3983. planner.bed_level_matrix = matrix_3x3::create_look_at(planeNormal);
  3984. // Can't re-enable (on error) until the new grid is written
  3985. abl_should_enable = false;
  3986. }
  3987. }
  3988. #endif // AUTO_BED_LEVELING_3POINT
  3989. #else // !PROBE_MANUALLY
  3990. const bool stow_probe_after_each = parser.boolval('E');
  3991. #if ABL_GRID
  3992. bool zig = PR_OUTER_END & 1; // Always end at RIGHT and BACK_PROBE_BED_POSITION
  3993. // Outer loop is Y with PROBE_Y_FIRST disabled
  3994. for (uint8_t PR_OUTER_VAR = 0; PR_OUTER_VAR < PR_OUTER_END; PR_OUTER_VAR++) {
  3995. int8_t inStart, inStop, inInc;
  3996. if (zig) { // away from origin
  3997. inStart = 0;
  3998. inStop = PR_INNER_END;
  3999. inInc = 1;
  4000. }
  4001. else { // towards origin
  4002. inStart = PR_INNER_END - 1;
  4003. inStop = -1;
  4004. inInc = -1;
  4005. }
  4006. zig ^= true; // zag
  4007. // Inner loop is Y with PROBE_Y_FIRST enabled
  4008. for (int8_t PR_INNER_VAR = inStart; PR_INNER_VAR != inStop; PR_INNER_VAR += inInc) {
  4009. float xBase = left_probe_bed_position + xGridSpacing * xCount,
  4010. yBase = front_probe_bed_position + yGridSpacing * yCount;
  4011. xProbe = FLOOR(xBase + (xBase < 0 ? 0 : 0.5));
  4012. yProbe = FLOOR(yBase + (yBase < 0 ? 0 : 0.5));
  4013. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4014. indexIntoAB[xCount][yCount] = ++abl_probe_index; // 0...
  4015. #endif
  4016. #if IS_KINEMATIC
  4017. // Avoid probing outside the round or hexagonal area
  4018. if (!position_is_reachable_by_probe_xy(xProbe, yProbe)) continue;
  4019. #endif
  4020. measured_z = faux ? 0.001 * random(-100, 101) : probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
  4021. if (isnan(measured_z)) {
  4022. planner.abl_enabled = abl_should_enable;
  4023. return;
  4024. }
  4025. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4026. mean += measured_z;
  4027. eqnBVector[abl_probe_index] = measured_z;
  4028. eqnAMatrix[abl_probe_index + 0 * abl2] = xProbe;
  4029. eqnAMatrix[abl_probe_index + 1 * abl2] = yProbe;
  4030. eqnAMatrix[abl_probe_index + 2 * abl2] = 1;
  4031. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4032. z_values[xCount][yCount] = measured_z + zoffset;
  4033. #endif
  4034. abl_should_enable = false;
  4035. idle();
  4036. } // inner
  4037. } // outer
  4038. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  4039. // Probe at 3 arbitrary points
  4040. for (uint8_t i = 0; i < 3; ++i) {
  4041. // Retain the last probe position
  4042. xProbe = LOGICAL_X_POSITION(points[i].x);
  4043. yProbe = LOGICAL_Y_POSITION(points[i].y);
  4044. measured_z = faux ? 0.001 * random(-100, 101) : probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
  4045. if (isnan(measured_z)) {
  4046. planner.abl_enabled = abl_should_enable;
  4047. return;
  4048. }
  4049. points[i].z = measured_z;
  4050. }
  4051. if (!dryrun) {
  4052. vector_3 planeNormal = vector_3::cross(points[0] - points[1], points[2] - points[1]).get_normal();
  4053. if (planeNormal.z < 0) {
  4054. planeNormal.x *= -1;
  4055. planeNormal.y *= -1;
  4056. planeNormal.z *= -1;
  4057. }
  4058. planner.bed_level_matrix = matrix_3x3::create_look_at(planeNormal);
  4059. // Can't re-enable (on error) until the new grid is written
  4060. abl_should_enable = false;
  4061. }
  4062. #endif // AUTO_BED_LEVELING_3POINT
  4063. // Raise to _Z_CLEARANCE_DEPLOY_PROBE. Stow the probe.
  4064. if (STOW_PROBE()) {
  4065. planner.abl_enabled = abl_should_enable;
  4066. return;
  4067. }
  4068. #endif // !PROBE_MANUALLY
  4069. //
  4070. // G29 Finishing Code
  4071. //
  4072. // Unless this is a dry run, auto bed leveling will
  4073. // definitely be enabled after this point.
  4074. //
  4075. // If code above wants to continue leveling, it should
  4076. // return or loop before this point.
  4077. //
  4078. // Restore state after probing
  4079. if (!faux) clean_up_after_endstop_or_probe_move();
  4080. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4081. if (DEBUGGING(LEVELING)) DEBUG_POS("> probing complete", current_position);
  4082. #endif
  4083. #if ENABLED(PROBE_MANUALLY)
  4084. g29_in_progress = false;
  4085. #if ENABLED(LCD_BED_LEVELING)
  4086. lcd_wait_for_move = false;
  4087. #endif
  4088. #endif
  4089. // Calculate leveling, print reports, correct the position
  4090. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4091. if (!dryrun) extrapolate_unprobed_bed_level();
  4092. print_bilinear_leveling_grid();
  4093. refresh_bed_level();
  4094. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  4095. bed_level_virt_print();
  4096. #endif
  4097. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  4098. // For LINEAR leveling calculate matrix, print reports, correct the position
  4099. /**
  4100. * solve the plane equation ax + by + d = z
  4101. * A is the matrix with rows [x y 1] for all the probed points
  4102. * B is the vector of the Z positions
  4103. * the normal vector to the plane is formed by the coefficients of the
  4104. * plane equation in the standard form, which is Vx*x+Vy*y+Vz*z+d = 0
  4105. * so Vx = -a Vy = -b Vz = 1 (we want the vector facing towards positive Z
  4106. */
  4107. float plane_equation_coefficients[3];
  4108. qr_solve(plane_equation_coefficients, abl2, 3, eqnAMatrix, eqnBVector);
  4109. mean /= abl2;
  4110. if (verbose_level) {
  4111. SERIAL_PROTOCOLPGM("Eqn coefficients: a: ");
  4112. SERIAL_PROTOCOL_F(plane_equation_coefficients[0], 8);
  4113. SERIAL_PROTOCOLPGM(" b: ");
  4114. SERIAL_PROTOCOL_F(plane_equation_coefficients[1], 8);
  4115. SERIAL_PROTOCOLPGM(" d: ");
  4116. SERIAL_PROTOCOL_F(plane_equation_coefficients[2], 8);
  4117. SERIAL_EOL();
  4118. if (verbose_level > 2) {
  4119. SERIAL_PROTOCOLPGM("Mean of sampled points: ");
  4120. SERIAL_PROTOCOL_F(mean, 8);
  4121. SERIAL_EOL();
  4122. }
  4123. }
  4124. // Create the matrix but don't correct the position yet
  4125. if (!dryrun) {
  4126. planner.bed_level_matrix = matrix_3x3::create_look_at(
  4127. vector_3(-plane_equation_coefficients[0], -plane_equation_coefficients[1], 1)
  4128. );
  4129. }
  4130. // Show the Topography map if enabled
  4131. if (do_topography_map) {
  4132. SERIAL_PROTOCOLLNPGM("\nBed Height Topography:\n"
  4133. " +--- BACK --+\n"
  4134. " | |\n"
  4135. " L | (+) | R\n"
  4136. " E | | I\n"
  4137. " F | (-) N (+) | G\n"
  4138. " T | | H\n"
  4139. " | (-) | T\n"
  4140. " | |\n"
  4141. " O-- FRONT --+\n"
  4142. " (0,0)");
  4143. float min_diff = 999;
  4144. for (int8_t yy = abl_grid_points_y - 1; yy >= 0; yy--) {
  4145. for (uint8_t xx = 0; xx < abl_grid_points_x; xx++) {
  4146. int ind = indexIntoAB[xx][yy];
  4147. float diff = eqnBVector[ind] - mean,
  4148. x_tmp = eqnAMatrix[ind + 0 * abl2],
  4149. y_tmp = eqnAMatrix[ind + 1 * abl2],
  4150. z_tmp = 0;
  4151. apply_rotation_xyz(planner.bed_level_matrix, x_tmp, y_tmp, z_tmp);
  4152. NOMORE(min_diff, eqnBVector[ind] - z_tmp);
  4153. if (diff >= 0.0)
  4154. SERIAL_PROTOCOLPGM(" +"); // Include + for column alignment
  4155. else
  4156. SERIAL_PROTOCOLCHAR(' ');
  4157. SERIAL_PROTOCOL_F(diff, 5);
  4158. } // xx
  4159. SERIAL_EOL();
  4160. } // yy
  4161. SERIAL_EOL();
  4162. if (verbose_level > 3) {
  4163. SERIAL_PROTOCOLLNPGM("\nCorrected Bed Height vs. Bed Topology:");
  4164. for (int8_t yy = abl_grid_points_y - 1; yy >= 0; yy--) {
  4165. for (uint8_t xx = 0; xx < abl_grid_points_x; xx++) {
  4166. int ind = indexIntoAB[xx][yy];
  4167. float x_tmp = eqnAMatrix[ind + 0 * abl2],
  4168. y_tmp = eqnAMatrix[ind + 1 * abl2],
  4169. z_tmp = 0;
  4170. apply_rotation_xyz(planner.bed_level_matrix, x_tmp, y_tmp, z_tmp);
  4171. float diff = eqnBVector[ind] - z_tmp - min_diff;
  4172. if (diff >= 0.0)
  4173. SERIAL_PROTOCOLPGM(" +");
  4174. // Include + for column alignment
  4175. else
  4176. SERIAL_PROTOCOLCHAR(' ');
  4177. SERIAL_PROTOCOL_F(diff, 5);
  4178. } // xx
  4179. SERIAL_EOL();
  4180. } // yy
  4181. SERIAL_EOL();
  4182. }
  4183. } //do_topography_map
  4184. #endif // AUTO_BED_LEVELING_LINEAR
  4185. #if ABL_PLANAR
  4186. // For LINEAR and 3POINT leveling correct the current position
  4187. if (verbose_level > 0)
  4188. planner.bed_level_matrix.debug(PSTR("\n\nBed Level Correction Matrix:"));
  4189. if (!dryrun) {
  4190. //
  4191. // Correct the current XYZ position based on the tilted plane.
  4192. //
  4193. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4194. if (DEBUGGING(LEVELING)) DEBUG_POS("G29 uncorrected XYZ", current_position);
  4195. #endif
  4196. float converted[XYZ];
  4197. COPY(converted, current_position);
  4198. planner.abl_enabled = true;
  4199. planner.unapply_leveling(converted); // use conversion machinery
  4200. planner.abl_enabled = false;
  4201. // Use the last measured distance to the bed, if possible
  4202. if ( NEAR(current_position[X_AXIS], xProbe - (X_PROBE_OFFSET_FROM_EXTRUDER))
  4203. && NEAR(current_position[Y_AXIS], yProbe - (Y_PROBE_OFFSET_FROM_EXTRUDER))
  4204. ) {
  4205. const float simple_z = current_position[Z_AXIS] - measured_z;
  4206. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4207. if (DEBUGGING(LEVELING)) {
  4208. SERIAL_ECHOPAIR("Z from Probe:", simple_z);
  4209. SERIAL_ECHOPAIR(" Matrix:", converted[Z_AXIS]);
  4210. SERIAL_ECHOLNPAIR(" Discrepancy:", simple_z - converted[Z_AXIS]);
  4211. }
  4212. #endif
  4213. converted[Z_AXIS] = simple_z;
  4214. }
  4215. // The rotated XY and corrected Z are now current_position
  4216. COPY(current_position, converted);
  4217. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4218. if (DEBUGGING(LEVELING)) DEBUG_POS("G29 corrected XYZ", current_position);
  4219. #endif
  4220. }
  4221. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4222. if (!dryrun) {
  4223. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4224. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("G29 uncorrected Z:", current_position[Z_AXIS]);
  4225. #endif
  4226. // Unapply the offset because it is going to be immediately applied
  4227. // and cause compensation movement in Z
  4228. current_position[Z_AXIS] -= bilinear_z_offset(current_position);
  4229. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4230. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR(" corrected Z:", current_position[Z_AXIS]);
  4231. #endif
  4232. }
  4233. #endif // ABL_PLANAR
  4234. #ifdef Z_PROBE_END_SCRIPT
  4235. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4236. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("Z Probe End Script: ", Z_PROBE_END_SCRIPT);
  4237. #endif
  4238. enqueue_and_echo_commands_P(PSTR(Z_PROBE_END_SCRIPT));
  4239. stepper.synchronize();
  4240. #endif
  4241. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4242. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G29");
  4243. #endif
  4244. report_current_position();
  4245. KEEPALIVE_STATE(IN_HANDLER);
  4246. // Auto Bed Leveling is complete! Enable if possible.
  4247. planner.abl_enabled = dryrun ? abl_should_enable : true;
  4248. if (planner.abl_enabled)
  4249. SYNC_PLAN_POSITION_KINEMATIC();
  4250. }
  4251. #endif // HAS_ABL && !AUTO_BED_LEVELING_UBL
  4252. #if HAS_BED_PROBE
  4253. /**
  4254. * G30: Do a single Z probe at the current XY
  4255. *
  4256. * Parameters:
  4257. *
  4258. * X Probe X position (default current X)
  4259. * Y Probe Y position (default current Y)
  4260. * S0 Leave the probe deployed
  4261. */
  4262. inline void gcode_G30() {
  4263. const float xpos = parser.linearval('X', current_position[X_AXIS] + X_PROBE_OFFSET_FROM_EXTRUDER),
  4264. ypos = parser.linearval('Y', current_position[Y_AXIS] + Y_PROBE_OFFSET_FROM_EXTRUDER);
  4265. if (!position_is_reachable_by_probe_xy(xpos, ypos)) return;
  4266. // Disable leveling so the planner won't mess with us
  4267. #if HAS_LEVELING
  4268. set_bed_leveling_enabled(false);
  4269. #endif
  4270. setup_for_endstop_or_probe_move();
  4271. const float measured_z = probe_pt(xpos, ypos, parser.boolval('S', true), 1);
  4272. if (!isnan(measured_z)) {
  4273. SERIAL_PROTOCOLPAIR("Bed X: ", FIXFLOAT(xpos));
  4274. SERIAL_PROTOCOLPAIR(" Y: ", FIXFLOAT(ypos));
  4275. SERIAL_PROTOCOLLNPAIR(" Z: ", FIXFLOAT(measured_z));
  4276. }
  4277. clean_up_after_endstop_or_probe_move();
  4278. report_current_position();
  4279. }
  4280. #if ENABLED(Z_PROBE_SLED)
  4281. /**
  4282. * G31: Deploy the Z probe
  4283. */
  4284. inline void gcode_G31() { DEPLOY_PROBE(); }
  4285. /**
  4286. * G32: Stow the Z probe
  4287. */
  4288. inline void gcode_G32() { STOW_PROBE(); }
  4289. #endif // Z_PROBE_SLED
  4290. #if ENABLED(DELTA_AUTO_CALIBRATION)
  4291. /**
  4292. * G33 - Delta '1-4-7-point' Auto-Calibration
  4293. * Calibrate height, endstops, delta radius, and tower angles.
  4294. *
  4295. * Parameters:
  4296. *
  4297. * Pn Number of probe points:
  4298. *
  4299. * P1 Probe center and set height only.
  4300. * P2 Probe center and towers. Set height, endstops, and delta radius.
  4301. * P3 Probe all positions: center, towers and opposite towers. Set all.
  4302. * P4-P7 Probe all positions at different locations and average them.
  4303. *
  4304. * T Don't calibrate tower angle corrections
  4305. *
  4306. * Cn.nn Calibration precision; when omitted calibrates to maximum precision
  4307. *
  4308. * Fn Force to run at least n iterations and takes the best result
  4309. *
  4310. * Vn Verbose level:
  4311. *
  4312. * V0 Dry-run mode. Report settings and probe results. No calibration.
  4313. * V1 Report settings
  4314. * V2 Report settings and probe results
  4315. *
  4316. * E Engage the probe for each point
  4317. */
  4318. void print_signed_float(const char * const prefix, const float &f) {
  4319. SERIAL_PROTOCOLPGM(" ");
  4320. serialprintPGM(prefix);
  4321. SERIAL_PROTOCOLCHAR(':');
  4322. if (f >= 0) SERIAL_CHAR('+');
  4323. SERIAL_PROTOCOL_F(f, 2);
  4324. }
  4325. inline void gcode_G33() {
  4326. const int8_t probe_points = parser.intval('P', DELTA_CALIBRATION_DEFAULT_POINTS);
  4327. if (!WITHIN(probe_points, 1, 7)) {
  4328. SERIAL_PROTOCOLLNPGM("?(P)oints is implausible (1 to 7).");
  4329. return;
  4330. }
  4331. const int8_t verbose_level = parser.byteval('V', 1);
  4332. if (!WITHIN(verbose_level, 0, 2)) {
  4333. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-2).");
  4334. return;
  4335. }
  4336. const float calibration_precision = parser.floatval('C');
  4337. if (calibration_precision < 0) {
  4338. SERIAL_PROTOCOLLNPGM("?(C)alibration precision is implausible (>0).");
  4339. return;
  4340. }
  4341. const int8_t force_iterations = parser.intval('F', 1);
  4342. if (!WITHIN(force_iterations, 1, 30)) {
  4343. SERIAL_PROTOCOLLNPGM("?(F)orce iteration is implausible (1-30).");
  4344. return;
  4345. }
  4346. const bool towers_set = !parser.boolval('T'),
  4347. stow_after_each = parser.boolval('E'),
  4348. _1p_calibration = probe_points == 1,
  4349. _4p_calibration = probe_points == 2,
  4350. _4p_towers_points = _4p_calibration && towers_set,
  4351. _4p_opposite_points = _4p_calibration && !towers_set,
  4352. _7p_calibration = probe_points >= 3,
  4353. _7p_half_circle = probe_points == 3,
  4354. _7p_double_circle = probe_points == 5,
  4355. _7p_triple_circle = probe_points == 6,
  4356. _7p_quadruple_circle = probe_points == 7,
  4357. _7p_multi_circle = _7p_double_circle || _7p_triple_circle || _7p_quadruple_circle,
  4358. _7p_intermed_points = _7p_calibration && !_7p_half_circle;
  4359. if (!_1p_calibration) { // test if the outer radius is reachable
  4360. const float circles = (_7p_quadruple_circle ? 1.5 :
  4361. _7p_triple_circle ? 1.0 :
  4362. _7p_double_circle ? 0.5 : 0),
  4363. radius = (1 + circles * 0.1) * delta_calibration_radius;
  4364. for (uint8_t axis = 1; axis < 13; ++axis) {
  4365. if (!position_is_reachable_xy(cos(RADIANS(180 + 30 * axis)) * radius, sin(RADIANS(180 + 30 * axis)) * radius)) {
  4366. SERIAL_PROTOCOLLNPGM("?(M665 B)ed radius is implausible.");
  4367. return;
  4368. }
  4369. }
  4370. }
  4371. const static char save_message[] PROGMEM = "Save with M500 and/or copy to Configuration.h";
  4372. const float dx = (X_PROBE_OFFSET_FROM_EXTRUDER),
  4373. dy = (Y_PROBE_OFFSET_FROM_EXTRUDER);
  4374. int8_t iterations = 0;
  4375. float test_precision,
  4376. zero_std_dev = (verbose_level ? 999.0 : 0.0), // 0.0 in dry-run mode : forced end
  4377. zero_std_dev_old = zero_std_dev,
  4378. zero_std_dev_min = zero_std_dev,
  4379. e_old[XYZ] = {
  4380. endstop_adj[A_AXIS],
  4381. endstop_adj[B_AXIS],
  4382. endstop_adj[C_AXIS]
  4383. },
  4384. dr_old = delta_radius,
  4385. zh_old = home_offset[Z_AXIS],
  4386. alpha_old = delta_tower_angle_trim[A_AXIS],
  4387. beta_old = delta_tower_angle_trim[B_AXIS];
  4388. SERIAL_PROTOCOLLNPGM("G33 Auto Calibrate");
  4389. stepper.synchronize();
  4390. #if HAS_LEVELING
  4391. reset_bed_level(); // After calibration bed-level data is no longer valid
  4392. #endif
  4393. #if HOTENDS > 1
  4394. const uint8_t old_tool_index = active_extruder;
  4395. tool_change(0, 0, true);
  4396. #endif
  4397. setup_for_endstop_or_probe_move();
  4398. DEPLOY_PROBE();
  4399. endstops.enable(true);
  4400. home_delta();
  4401. endstops.not_homing();
  4402. // print settings
  4403. SERIAL_PROTOCOLPGM("Checking... AC");
  4404. if (verbose_level == 0) SERIAL_PROTOCOLPGM(" (DRY-RUN)");
  4405. SERIAL_EOL();
  4406. LCD_MESSAGEPGM("Checking... AC"); // TODO: Make translatable string
  4407. SERIAL_PROTOCOLPAIR(".Height:", DELTA_HEIGHT + home_offset[Z_AXIS]);
  4408. if (!_1p_calibration) {
  4409. print_signed_float(PSTR(" Ex"), endstop_adj[A_AXIS]);
  4410. print_signed_float(PSTR("Ey"), endstop_adj[B_AXIS]);
  4411. print_signed_float(PSTR("Ez"), endstop_adj[C_AXIS]);
  4412. SERIAL_PROTOCOLPAIR(" Radius:", delta_radius);
  4413. }
  4414. SERIAL_EOL();
  4415. if (_7p_calibration && towers_set) {
  4416. SERIAL_PROTOCOLPGM(".Tower angle : ");
  4417. print_signed_float(PSTR("Tx"), delta_tower_angle_trim[A_AXIS]);
  4418. print_signed_float(PSTR("Ty"), delta_tower_angle_trim[B_AXIS]);
  4419. SERIAL_PROTOCOLPGM(" Tz:+0.00");
  4420. SERIAL_EOL();
  4421. }
  4422. home_offset[Z_AXIS] -= probe_pt(dx, dy, stow_after_each, 1); // 1st probe to set height
  4423. do_probe_raise(Z_CLEARANCE_BETWEEN_PROBES);
  4424. do {
  4425. float z_at_pt[13] = { 0.0 }, S1 = 0.0, S2 = 0.0;
  4426. int16_t N = 0;
  4427. test_precision = zero_std_dev_old != 999.0 ? (zero_std_dev + zero_std_dev_old) / 2 : zero_std_dev;
  4428. iterations++;
  4429. // Probe the points
  4430. if (!_7p_half_circle && !_7p_triple_circle) { // probe the center
  4431. z_at_pt[0] += probe_pt(dx, dy, stow_after_each, 1);
  4432. }
  4433. if (_7p_calibration) { // probe extra center points
  4434. for (int8_t axis = _7p_multi_circle ? 11 : 9; axis > 0; axis -= _7p_multi_circle ? 2 : 4) {
  4435. const float a = RADIANS(180 + 30 * axis), r = delta_calibration_radius * 0.1;
  4436. z_at_pt[0] += probe_pt(cos(a) * r + dx, sin(a) * r + dy, stow_after_each, 1);
  4437. }
  4438. z_at_pt[0] /= float(_7p_double_circle ? 7 : probe_points);
  4439. }
  4440. if (!_1p_calibration) { // probe the radius
  4441. bool zig_zag = true;
  4442. const uint8_t start = _4p_opposite_points ? 3 : 1,
  4443. step = _4p_calibration ? 4 : _7p_half_circle ? 2 : 1;
  4444. for (uint8_t axis = start; axis < 13; axis += step) {
  4445. const float zigadd = (zig_zag ? 0.5 : 0.0),
  4446. offset_circles = _7p_quadruple_circle ? zigadd + 1.0 :
  4447. _7p_triple_circle ? zigadd + 0.5 :
  4448. _7p_double_circle ? zigadd : 0;
  4449. for (float circles = -offset_circles ; circles <= offset_circles; circles++) {
  4450. const float a = RADIANS(180 + 30 * axis),
  4451. r = delta_calibration_radius * (1 + circles * (zig_zag ? 0.1 : -0.1));
  4452. z_at_pt[axis] += probe_pt(cos(a) * r + dx, sin(a) * r + dy, stow_after_each, 1);
  4453. }
  4454. zig_zag = !zig_zag;
  4455. z_at_pt[axis] /= (2 * offset_circles + 1);
  4456. }
  4457. }
  4458. if (_7p_intermed_points) // average intermediates to tower and opposites
  4459. for (uint8_t axis = 1; axis <= 11; axis += 2)
  4460. z_at_pt[axis] = (z_at_pt[axis] + (z_at_pt[axis + 1] + z_at_pt[(axis + 10) % 12 + 1]) / 2.0) / 2.0;
  4461. S1 += z_at_pt[0];
  4462. S2 += sq(z_at_pt[0]);
  4463. N++;
  4464. if (!_1p_calibration) // std dev from zero plane
  4465. for (uint8_t axis = (_4p_opposite_points ? 3 : 1); axis < 13; axis += (_4p_calibration ? 4 : 2)) {
  4466. S1 += z_at_pt[axis];
  4467. S2 += sq(z_at_pt[axis]);
  4468. N++;
  4469. }
  4470. zero_std_dev_old = zero_std_dev;
  4471. NOMORE(zero_std_dev_min, zero_std_dev);
  4472. zero_std_dev = round(sqrt(S2 / N) * 1000.0) / 1000.0 + 0.00001;
  4473. // Solve matrices
  4474. if ((zero_std_dev < test_precision && zero_std_dev > calibration_precision) || iterations <= force_iterations) {
  4475. if (zero_std_dev < zero_std_dev_min) {
  4476. COPY(e_old, endstop_adj);
  4477. dr_old = delta_radius;
  4478. zh_old = home_offset[Z_AXIS];
  4479. alpha_old = delta_tower_angle_trim[A_AXIS];
  4480. beta_old = delta_tower_angle_trim[B_AXIS];
  4481. }
  4482. float e_delta[XYZ] = { 0.0 }, r_delta = 0.0, t_alpha = 0.0, t_beta = 0.0;
  4483. const float r_diff = delta_radius - delta_calibration_radius,
  4484. h_factor = 1.00 + r_diff * 0.001, //1.02 for r_diff = 20mm
  4485. r_factor = -(1.75 + 0.005 * r_diff + 0.001 * sq(r_diff)), //2.25 for r_diff = 20mm
  4486. a_factor = 100.0 / delta_calibration_radius; //1.25 for cal_rd = 80mm
  4487. #define ZP(N,I) ((N) * z_at_pt[I])
  4488. #define Z1000(I) ZP(1.00, I)
  4489. #define Z1050(I) ZP(h_factor, I)
  4490. #define Z0700(I) ZP(h_factor * 2.0 / 3.00, I)
  4491. #define Z0350(I) ZP(h_factor / 3.00, I)
  4492. #define Z0175(I) ZP(h_factor / 6.00, I)
  4493. #define Z2250(I) ZP(r_factor, I)
  4494. #define Z0750(I) ZP(r_factor / 3.00, I)
  4495. #define Z0375(I) ZP(r_factor / 6.00, I)
  4496. #define Z0444(I) ZP(a_factor * 4.0 / 9.0, I)
  4497. #define Z0888(I) ZP(a_factor * 8.0 / 9.0, I)
  4498. switch (probe_points) {
  4499. case 1:
  4500. test_precision = 0.00;
  4501. LOOP_XYZ(i) e_delta[i] = Z1000(0);
  4502. break;
  4503. case 2:
  4504. if (towers_set) {
  4505. e_delta[X_AXIS] = Z1050(0) + Z0700(1) - Z0350(5) - Z0350(9);
  4506. e_delta[Y_AXIS] = Z1050(0) - Z0350(1) + Z0700(5) - Z0350(9);
  4507. e_delta[Z_AXIS] = Z1050(0) - Z0350(1) - Z0350(5) + Z0700(9);
  4508. r_delta = Z2250(0) - Z0750(1) - Z0750(5) - Z0750(9);
  4509. }
  4510. else {
  4511. e_delta[X_AXIS] = Z1050(0) - Z0700(7) + Z0350(11) + Z0350(3);
  4512. e_delta[Y_AXIS] = Z1050(0) + Z0350(7) - Z0700(11) + Z0350(3);
  4513. e_delta[Z_AXIS] = Z1050(0) + Z0350(7) + Z0350(11) - Z0700(3);
  4514. r_delta = Z2250(0) - Z0750(7) - Z0750(11) - Z0750(3);
  4515. }
  4516. break;
  4517. default:
  4518. e_delta[X_AXIS] = Z1050(0) + Z0350(1) - Z0175(5) - Z0175(9) - Z0350(7) + Z0175(11) + Z0175(3);
  4519. e_delta[Y_AXIS] = Z1050(0) - Z0175(1) + Z0350(5) - Z0175(9) + Z0175(7) - Z0350(11) + Z0175(3);
  4520. e_delta[Z_AXIS] = Z1050(0) - Z0175(1) - Z0175(5) + Z0350(9) + Z0175(7) + Z0175(11) - Z0350(3);
  4521. r_delta = Z2250(0) - Z0375(1) - Z0375(5) - Z0375(9) - Z0375(7) - Z0375(11) - Z0375(3);
  4522. if (towers_set) {
  4523. t_alpha = Z0444(1) - Z0888(5) + Z0444(9) + Z0444(7) - Z0888(11) + Z0444(3);
  4524. t_beta = Z0888(1) - Z0444(5) - Z0444(9) + Z0888(7) - Z0444(11) - Z0444(3);
  4525. }
  4526. break;
  4527. }
  4528. LOOP_XYZ(axis) endstop_adj[axis] += e_delta[axis];
  4529. delta_radius += r_delta;
  4530. delta_tower_angle_trim[A_AXIS] += t_alpha;
  4531. delta_tower_angle_trim[B_AXIS] += t_beta;
  4532. // adjust delta_height and endstops by the max amount
  4533. const float z_temp = MAX3(endstop_adj[A_AXIS], endstop_adj[B_AXIS], endstop_adj[C_AXIS]);
  4534. home_offset[Z_AXIS] -= z_temp;
  4535. LOOP_XYZ(i) endstop_adj[i] -= z_temp;
  4536. recalc_delta_settings(delta_radius, delta_diagonal_rod);
  4537. }
  4538. else if (zero_std_dev >= test_precision) { // step one back
  4539. COPY(endstop_adj, e_old);
  4540. delta_radius = dr_old;
  4541. home_offset[Z_AXIS] = zh_old;
  4542. delta_tower_angle_trim[A_AXIS] = alpha_old;
  4543. delta_tower_angle_trim[B_AXIS] = beta_old;
  4544. recalc_delta_settings(delta_radius, delta_diagonal_rod);
  4545. }
  4546. // print report
  4547. if (verbose_level != 1) {
  4548. SERIAL_PROTOCOLPGM(". ");
  4549. print_signed_float(PSTR("c"), z_at_pt[0]);
  4550. if (_4p_towers_points || _7p_calibration) {
  4551. print_signed_float(PSTR(" x"), z_at_pt[1]);
  4552. print_signed_float(PSTR(" y"), z_at_pt[5]);
  4553. print_signed_float(PSTR(" z"), z_at_pt[9]);
  4554. }
  4555. if (!_4p_opposite_points) SERIAL_EOL();
  4556. if ((_4p_opposite_points) || _7p_calibration) {
  4557. if (_7p_calibration) {
  4558. SERIAL_CHAR('.');
  4559. SERIAL_PROTOCOL_SP(13);
  4560. }
  4561. print_signed_float(PSTR(" yz"), z_at_pt[7]);
  4562. print_signed_float(PSTR("zx"), z_at_pt[11]);
  4563. print_signed_float(PSTR("xy"), z_at_pt[3]);
  4564. SERIAL_EOL();
  4565. }
  4566. }
  4567. if (test_precision != 0.0) { // !forced end
  4568. if ((zero_std_dev >= test_precision || zero_std_dev <= calibration_precision) && iterations > force_iterations) { // end iterations
  4569. SERIAL_PROTOCOLPGM("Calibration OK");
  4570. SERIAL_PROTOCOL_SP(36);
  4571. if (zero_std_dev >= test_precision)
  4572. SERIAL_PROTOCOLPGM("rolling back.");
  4573. else {
  4574. SERIAL_PROTOCOLPGM("std dev:");
  4575. SERIAL_PROTOCOL_F(zero_std_dev, 3);
  4576. }
  4577. SERIAL_EOL();
  4578. LCD_MESSAGEPGM("Calibration OK"); // TODO: Make translatable string
  4579. }
  4580. else { // !end iterations
  4581. char mess[15] = "No convergence";
  4582. if (iterations < 31)
  4583. sprintf_P(mess, PSTR("Iteration : %02i"), (int)iterations);
  4584. SERIAL_PROTOCOL(mess);
  4585. SERIAL_PROTOCOL_SP(36);
  4586. SERIAL_PROTOCOLPGM("std dev:");
  4587. SERIAL_PROTOCOL_F(zero_std_dev, 3);
  4588. SERIAL_EOL();
  4589. lcd_setstatus(mess);
  4590. }
  4591. SERIAL_PROTOCOLPAIR(".Height:", DELTA_HEIGHT + home_offset[Z_AXIS]);
  4592. if (!_1p_calibration) {
  4593. print_signed_float(PSTR(" Ex"), endstop_adj[A_AXIS]);
  4594. print_signed_float(PSTR("Ey"), endstop_adj[B_AXIS]);
  4595. print_signed_float(PSTR("Ez"), endstop_adj[C_AXIS]);
  4596. SERIAL_PROTOCOLPAIR(" Radius:", delta_radius);
  4597. }
  4598. SERIAL_EOL();
  4599. if (_7p_calibration && towers_set) {
  4600. SERIAL_PROTOCOLPGM(".Tower angle : ");
  4601. print_signed_float(PSTR("Tx"), delta_tower_angle_trim[A_AXIS]);
  4602. print_signed_float(PSTR("Ty"), delta_tower_angle_trim[B_AXIS]);
  4603. SERIAL_PROTOCOLPGM(" Tz:+0.00");
  4604. SERIAL_EOL();
  4605. }
  4606. if ((zero_std_dev >= test_precision || zero_std_dev <= calibration_precision) && iterations > force_iterations)
  4607. serialprintPGM(save_message);
  4608. SERIAL_EOL();
  4609. }
  4610. else { // forced end
  4611. if (verbose_level == 0) {
  4612. SERIAL_PROTOCOLPGM("End DRY-RUN");
  4613. SERIAL_PROTOCOL_SP(39);
  4614. SERIAL_PROTOCOLPGM("std dev:");
  4615. SERIAL_PROTOCOL_F(zero_std_dev, 3);
  4616. SERIAL_EOL();
  4617. }
  4618. else {
  4619. SERIAL_PROTOCOLLNPGM("Calibration OK");
  4620. LCD_MESSAGEPGM("Calibration OK"); // TODO: Make translatable string
  4621. SERIAL_PROTOCOLPAIR(".Height:", DELTA_HEIGHT + home_offset[Z_AXIS]);
  4622. SERIAL_EOL();
  4623. serialprintPGM(save_message);
  4624. SERIAL_EOL();
  4625. }
  4626. }
  4627. endstops.enable(true);
  4628. home_delta();
  4629. endstops.not_homing();
  4630. }
  4631. while ((zero_std_dev < test_precision && zero_std_dev > calibration_precision && iterations < 31) || iterations <= force_iterations);
  4632. #if ENABLED(DELTA_HOME_TO_SAFE_ZONE)
  4633. do_blocking_move_to_z(delta_clip_start_height);
  4634. #endif
  4635. STOW_PROBE();
  4636. clean_up_after_endstop_or_probe_move();
  4637. #if HOTENDS > 1
  4638. tool_change(old_tool_index, 0, true);
  4639. #endif
  4640. }
  4641. #endif // DELTA_AUTO_CALIBRATION
  4642. #endif // HAS_BED_PROBE
  4643. #if ENABLED(G38_PROBE_TARGET)
  4644. static bool G38_run_probe() {
  4645. bool G38_pass_fail = false;
  4646. // Get direction of move and retract
  4647. float retract_mm[XYZ];
  4648. LOOP_XYZ(i) {
  4649. float dist = destination[i] - current_position[i];
  4650. retract_mm[i] = FABS(dist) < G38_MINIMUM_MOVE ? 0 : home_bump_mm((AxisEnum)i) * (dist > 0 ? -1 : 1);
  4651. }
  4652. stepper.synchronize(); // wait until the machine is idle
  4653. // Move until destination reached or target hit
  4654. endstops.enable(true);
  4655. G38_move = true;
  4656. G38_endstop_hit = false;
  4657. prepare_move_to_destination();
  4658. stepper.synchronize();
  4659. G38_move = false;
  4660. endstops.hit_on_purpose();
  4661. set_current_from_steppers_for_axis(ALL_AXES);
  4662. SYNC_PLAN_POSITION_KINEMATIC();
  4663. if (G38_endstop_hit) {
  4664. G38_pass_fail = true;
  4665. #if ENABLED(PROBE_DOUBLE_TOUCH)
  4666. // Move away by the retract distance
  4667. set_destination_to_current();
  4668. LOOP_XYZ(i) destination[i] += retract_mm[i];
  4669. endstops.enable(false);
  4670. prepare_move_to_destination();
  4671. stepper.synchronize();
  4672. feedrate_mm_s /= 4;
  4673. // Bump the target more slowly
  4674. LOOP_XYZ(i) destination[i] -= retract_mm[i] * 2;
  4675. endstops.enable(true);
  4676. G38_move = true;
  4677. prepare_move_to_destination();
  4678. stepper.synchronize();
  4679. G38_move = false;
  4680. set_current_from_steppers_for_axis(ALL_AXES);
  4681. SYNC_PLAN_POSITION_KINEMATIC();
  4682. #endif
  4683. }
  4684. endstops.hit_on_purpose();
  4685. endstops.not_homing();
  4686. return G38_pass_fail;
  4687. }
  4688. /**
  4689. * G38.2 - probe toward workpiece, stop on contact, signal error if failure
  4690. * G38.3 - probe toward workpiece, stop on contact
  4691. *
  4692. * Like G28 except uses Z min probe for all axes
  4693. */
  4694. inline void gcode_G38(bool is_38_2) {
  4695. // Get X Y Z E F
  4696. gcode_get_destination();
  4697. setup_for_endstop_or_probe_move();
  4698. // If any axis has enough movement, do the move
  4699. LOOP_XYZ(i)
  4700. if (FABS(destination[i] - current_position[i]) >= G38_MINIMUM_MOVE) {
  4701. if (!parser.seenval('F')) feedrate_mm_s = homing_feedrate(i);
  4702. // If G38.2 fails throw an error
  4703. if (!G38_run_probe() && is_38_2) {
  4704. SERIAL_ERROR_START();
  4705. SERIAL_ERRORLNPGM("Failed to reach target");
  4706. }
  4707. break;
  4708. }
  4709. clean_up_after_endstop_or_probe_move();
  4710. }
  4711. #endif // G38_PROBE_TARGET
  4712. #if ENABLED(AUTO_BED_LEVELING_BILINEAR) || ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(MESH_BED_LEVELING)
  4713. /**
  4714. * G42: Move X & Y axes to mesh coordinates (I & J)
  4715. */
  4716. inline void gcode_G42() {
  4717. if (IsRunning()) {
  4718. const bool hasI = parser.seenval('I');
  4719. const int8_t ix = hasI ? parser.value_int() : 0;
  4720. const bool hasJ = parser.seenval('J');
  4721. const int8_t iy = hasJ ? parser.value_int() : 0;
  4722. if ((hasI && !WITHIN(ix, 0, GRID_MAX_POINTS_X - 1)) || (hasJ && !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1))) {
  4723. SERIAL_ECHOLNPGM(MSG_ERR_MESH_XY);
  4724. return;
  4725. }
  4726. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4727. #define _GET_MESH_X(I) bilinear_start[X_AXIS] + I * bilinear_grid_spacing[X_AXIS]
  4728. #define _GET_MESH_Y(J) bilinear_start[Y_AXIS] + J * bilinear_grid_spacing[Y_AXIS]
  4729. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  4730. #define _GET_MESH_X(I) ubl.mesh_index_to_xpos(I)
  4731. #define _GET_MESH_Y(J) ubl.mesh_index_to_ypos(J)
  4732. #elif ENABLED(MESH_BED_LEVELING)
  4733. #define _GET_MESH_X(I) mbl.index_to_xpos[I]
  4734. #define _GET_MESH_Y(J) mbl.index_to_ypos[J]
  4735. #endif
  4736. set_destination_to_current();
  4737. if (hasI) destination[X_AXIS] = LOGICAL_X_POSITION(_GET_MESH_X(ix));
  4738. if (hasJ) destination[Y_AXIS] = LOGICAL_Y_POSITION(_GET_MESH_Y(iy));
  4739. if (parser.boolval('P')) {
  4740. if (hasI) destination[X_AXIS] -= X_PROBE_OFFSET_FROM_EXTRUDER;
  4741. if (hasJ) destination[Y_AXIS] -= Y_PROBE_OFFSET_FROM_EXTRUDER;
  4742. }
  4743. const float fval = parser.linearval('F');
  4744. if (fval > 0.0) feedrate_mm_s = MMM_TO_MMS(fval);
  4745. // SCARA kinematic has "safe" XY raw moves
  4746. #if IS_SCARA
  4747. prepare_uninterpolated_move_to_destination();
  4748. #else
  4749. prepare_move_to_destination();
  4750. #endif
  4751. }
  4752. }
  4753. #endif // AUTO_BED_LEVELING_UBL
  4754. /**
  4755. * G92: Set current position to given X Y Z E
  4756. */
  4757. inline void gcode_G92() {
  4758. bool didXYZ = false,
  4759. didE = parser.seenval('E');
  4760. if (!didE) stepper.synchronize();
  4761. LOOP_XYZE(i) {
  4762. if (parser.seenval(axis_codes[i])) {
  4763. #if IS_SCARA
  4764. current_position[i] = parser.value_axis_units((AxisEnum)i);
  4765. if (i != E_AXIS) didXYZ = true;
  4766. #else
  4767. #if HAS_POSITION_SHIFT
  4768. const float p = current_position[i];
  4769. #endif
  4770. const float v = parser.value_axis_units((AxisEnum)i);
  4771. current_position[i] = v;
  4772. if (i != E_AXIS) {
  4773. didXYZ = true;
  4774. #if HAS_POSITION_SHIFT
  4775. position_shift[i] += v - p; // Offset the coordinate space
  4776. update_software_endstops((AxisEnum)i);
  4777. #if ENABLED(I2C_POSITION_ENCODERS)
  4778. I2CPEM.encoders[I2CPEM.idx_from_axis((AxisEnum)i)].set_axis_offset(position_shift[i]);
  4779. #endif
  4780. #endif
  4781. }
  4782. #endif
  4783. }
  4784. }
  4785. if (didXYZ)
  4786. SYNC_PLAN_POSITION_KINEMATIC();
  4787. else if (didE)
  4788. sync_plan_position_e();
  4789. report_current_position();
  4790. }
  4791. #if HAS_RESUME_CONTINUE
  4792. /**
  4793. * M0: Unconditional stop - Wait for user button press on LCD
  4794. * M1: Conditional stop - Wait for user button press on LCD
  4795. */
  4796. inline void gcode_M0_M1() {
  4797. const char * const args = parser.string_arg;
  4798. millis_t ms = 0;
  4799. bool hasP = false, hasS = false;
  4800. if (parser.seenval('P')) {
  4801. ms = parser.value_millis(); // milliseconds to wait
  4802. hasP = ms > 0;
  4803. }
  4804. if (parser.seenval('S')) {
  4805. ms = parser.value_millis_from_seconds(); // seconds to wait
  4806. hasS = ms > 0;
  4807. }
  4808. #if ENABLED(ULTIPANEL)
  4809. if (!hasP && !hasS && args && *args)
  4810. lcd_setstatus(args, true);
  4811. else {
  4812. LCD_MESSAGEPGM(MSG_USERWAIT);
  4813. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  4814. dontExpireStatus();
  4815. #endif
  4816. }
  4817. #else
  4818. if (!hasP && !hasS && args && *args) {
  4819. SERIAL_ECHO_START();
  4820. SERIAL_ECHOLN(args);
  4821. }
  4822. #endif
  4823. KEEPALIVE_STATE(PAUSED_FOR_USER);
  4824. wait_for_user = true;
  4825. stepper.synchronize();
  4826. refresh_cmd_timeout();
  4827. if (ms > 0) {
  4828. ms += previous_cmd_ms; // wait until this time for a click
  4829. while (PENDING(millis(), ms) && wait_for_user) idle();
  4830. }
  4831. else {
  4832. #if ENABLED(ULTIPANEL)
  4833. if (lcd_detected()) {
  4834. while (wait_for_user) idle();
  4835. IS_SD_PRINTING ? LCD_MESSAGEPGM(MSG_RESUMING) : LCD_MESSAGEPGM(WELCOME_MSG);
  4836. }
  4837. #else
  4838. while (wait_for_user) idle();
  4839. #endif
  4840. }
  4841. wait_for_user = false;
  4842. KEEPALIVE_STATE(IN_HANDLER);
  4843. }
  4844. #endif // HAS_RESUME_CONTINUE
  4845. #if ENABLED(SPINDLE_LASER_ENABLE)
  4846. /**
  4847. * M3: Spindle Clockwise
  4848. * M4: Spindle Counter-clockwise
  4849. *
  4850. * S0 turns off spindle.
  4851. *
  4852. * If no speed PWM output is defined then M3/M4 just turns it on.
  4853. *
  4854. * At least 12.8KHz (50Hz * 256) is needed for spindle PWM.
  4855. * Hardware PWM is required. ISRs are too slow.
  4856. *
  4857. * NOTE: WGM for timers 3, 4, and 5 must be either Mode 1 or Mode 5.
  4858. * No other settings give a PWM signal that goes from 0 to 5 volts.
  4859. *
  4860. * The system automatically sets WGM to Mode 1, so no special
  4861. * initialization is needed.
  4862. *
  4863. * WGM bits for timer 2 are automatically set by the system to
  4864. * Mode 1. This produces an acceptable 0 to 5 volt signal.
  4865. * No special initialization is needed.
  4866. *
  4867. * NOTE: A minimum PWM frequency of 50 Hz is needed. All prescaler
  4868. * factors for timers 2, 3, 4, and 5 are acceptable.
  4869. *
  4870. * SPINDLE_LASER_ENABLE_PIN needs an external pullup or it may power on
  4871. * the spindle/laser during power-up or when connecting to the host
  4872. * (usually goes through a reset which sets all I/O pins to tri-state)
  4873. *
  4874. * PWM duty cycle goes from 0 (off) to 255 (always on).
  4875. */
  4876. // Wait for spindle to come up to speed
  4877. inline void delay_for_power_up() {
  4878. refresh_cmd_timeout();
  4879. while (PENDING(millis(), SPINDLE_LASER_POWERUP_DELAY + previous_cmd_ms)) idle();
  4880. }
  4881. // Wait for spindle to stop turning
  4882. inline void delay_for_power_down() {
  4883. refresh_cmd_timeout();
  4884. while (PENDING(millis(), SPINDLE_LASER_POWERDOWN_DELAY + previous_cmd_ms + 1)) idle();
  4885. }
  4886. /**
  4887. * ocr_val_mode() is used for debugging and to get the points needed to compute the RPM vs ocr_val line
  4888. *
  4889. * it accepts inputs of 0-255
  4890. */
  4891. inline void ocr_val_mode() {
  4892. uint8_t spindle_laser_power = parser.value_byte();
  4893. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low)
  4894. if (SPINDLE_LASER_PWM_INVERT) spindle_laser_power = 255 - spindle_laser_power;
  4895. analogWrite(SPINDLE_LASER_PWM_PIN, spindle_laser_power);
  4896. }
  4897. inline void gcode_M3_M4(bool is_M3) {
  4898. stepper.synchronize(); // wait until previous movement commands (G0/G0/G2/G3) have completed before playing with the spindle
  4899. #if SPINDLE_DIR_CHANGE
  4900. const bool rotation_dir = (is_M3 && !SPINDLE_INVERT_DIR || !is_M3 && SPINDLE_INVERT_DIR) ? HIGH : LOW;
  4901. if (SPINDLE_STOP_ON_DIR_CHANGE \
  4902. && READ(SPINDLE_LASER_ENABLE_PIN) == SPINDLE_LASER_ENABLE_INVERT \
  4903. && READ(SPINDLE_DIR_PIN) != rotation_dir
  4904. ) {
  4905. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // turn spindle off
  4906. delay_for_power_down();
  4907. }
  4908. digitalWrite(SPINDLE_DIR_PIN, rotation_dir);
  4909. #endif
  4910. /**
  4911. * Our final value for ocr_val is an unsigned 8 bit value between 0 and 255 which usually means uint8_t.
  4912. * Went to uint16_t because some of the uint8_t calculations would sometimes give 1000 0000 rather than 1111 1111.
  4913. * Then needed to AND the uint16_t result with 0x00FF to make sure we only wrote the byte of interest.
  4914. */
  4915. #if ENABLED(SPINDLE_LASER_PWM)
  4916. if (parser.seen('O')) ocr_val_mode();
  4917. else {
  4918. const float spindle_laser_power = parser.floatval('S');
  4919. if (spindle_laser_power == 0) {
  4920. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // turn spindle off (active low)
  4921. delay_for_power_down();
  4922. }
  4923. else {
  4924. int16_t ocr_val = (spindle_laser_power - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // convert RPM to PWM duty cycle
  4925. NOMORE(ocr_val, 255); // limit to max the Atmel PWM will support
  4926. if (spindle_laser_power <= SPEED_POWER_MIN)
  4927. ocr_val = (SPEED_POWER_MIN - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // minimum setting
  4928. if (spindle_laser_power >= SPEED_POWER_MAX)
  4929. ocr_val = (SPEED_POWER_MAX - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // limit to max RPM
  4930. if (SPINDLE_LASER_PWM_INVERT) ocr_val = 255 - ocr_val;
  4931. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low)
  4932. analogWrite(SPINDLE_LASER_PWM_PIN, ocr_val & 0xFF); // only write low byte
  4933. delay_for_power_up();
  4934. }
  4935. }
  4936. #else
  4937. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low) if spindle speed option not enabled
  4938. delay_for_power_up();
  4939. #endif
  4940. }
  4941. /**
  4942. * M5 turn off spindle
  4943. */
  4944. inline void gcode_M5() {
  4945. stepper.synchronize();
  4946. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT);
  4947. delay_for_power_down();
  4948. }
  4949. #endif // SPINDLE_LASER_ENABLE
  4950. /**
  4951. * M17: Enable power on all stepper motors
  4952. */
  4953. inline void gcode_M17() {
  4954. LCD_MESSAGEPGM(MSG_NO_MOVE);
  4955. enable_all_steppers();
  4956. }
  4957. #if IS_KINEMATIC
  4958. #define RUNPLAN(RATE_MM_S) planner.buffer_line_kinematic(destination, RATE_MM_S, active_extruder)
  4959. #else
  4960. #define RUNPLAN(RATE_MM_S) line_to_destination(RATE_MM_S)
  4961. #endif
  4962. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  4963. static float resume_position[XYZE];
  4964. static bool move_away_flag = false;
  4965. #if ENABLED(SDSUPPORT)
  4966. static bool sd_print_paused = false;
  4967. #endif
  4968. static void filament_change_beep(const int8_t max_beep_count, const bool init=false) {
  4969. static millis_t next_buzz = 0;
  4970. static int8_t runout_beep = 0;
  4971. if (init) next_buzz = runout_beep = 0;
  4972. const millis_t ms = millis();
  4973. if (ELAPSED(ms, next_buzz)) {
  4974. if (max_beep_count < 0 || runout_beep < max_beep_count + 5) { // Only beep as long as we're supposed to
  4975. next_buzz = ms + ((max_beep_count < 0 || runout_beep < max_beep_count) ? 2500 : 400);
  4976. BUZZ(300, 2000);
  4977. runout_beep++;
  4978. }
  4979. }
  4980. }
  4981. static void ensure_safe_temperature() {
  4982. bool heaters_heating = true;
  4983. wait_for_heatup = true; // M108 will clear this
  4984. while (wait_for_heatup && heaters_heating) {
  4985. idle();
  4986. heaters_heating = false;
  4987. HOTEND_LOOP() {
  4988. if (thermalManager.degTargetHotend(e) && abs(thermalManager.degHotend(e) - thermalManager.degTargetHotend(e)) > TEMP_HYSTERESIS) {
  4989. heaters_heating = true;
  4990. #if ENABLED(ULTIPANEL)
  4991. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_WAIT_FOR_NOZZLES_TO_HEAT);
  4992. #endif
  4993. break;
  4994. }
  4995. }
  4996. }
  4997. }
  4998. static bool pause_print(const float &retract, const float &z_lift, const float &x_pos, const float &y_pos,
  4999. const float &unload_length = 0 , const int8_t max_beep_count = 0, const bool show_lcd = false
  5000. ) {
  5001. if (move_away_flag) return false; // already paused
  5002. if (!DEBUGGING(DRYRUN) && (unload_length != 0 || retract != 0)) {
  5003. #if ENABLED(PREVENT_COLD_EXTRUSION)
  5004. if (!thermalManager.allow_cold_extrude &&
  5005. thermalManager.degTargetHotend(active_extruder) < thermalManager.extrude_min_temp) {
  5006. SERIAL_ERROR_START();
  5007. SERIAL_ERRORLNPGM(MSG_TOO_COLD_FOR_M600);
  5008. return false;
  5009. }
  5010. #endif
  5011. ensure_safe_temperature(); // wait for extruder to heat up before unloading
  5012. }
  5013. // Indicate that the printer is paused
  5014. move_away_flag = true;
  5015. // Pause the print job and timer
  5016. #if ENABLED(SDSUPPORT)
  5017. if (card.sdprinting) {
  5018. card.pauseSDPrint();
  5019. sd_print_paused = true;
  5020. }
  5021. #endif
  5022. print_job_timer.pause();
  5023. // Show initial message and wait for synchronize steppers
  5024. if (show_lcd) {
  5025. #if ENABLED(ULTIPANEL)
  5026. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INIT);
  5027. #endif
  5028. }
  5029. stepper.synchronize();
  5030. // Save current position
  5031. COPY(resume_position, current_position);
  5032. set_destination_to_current();
  5033. if (retract) {
  5034. // Initial retract before move to filament change position
  5035. destination[E_AXIS] += retract;
  5036. RUNPLAN(PAUSE_PARK_RETRACT_FEEDRATE);
  5037. }
  5038. // Lift Z axis
  5039. if (z_lift > 0) {
  5040. destination[Z_AXIS] += z_lift;
  5041. NOMORE(destination[Z_AXIS], Z_MAX_POS);
  5042. RUNPLAN(PAUSE_PARK_Z_FEEDRATE);
  5043. }
  5044. // Move XY axes to filament exchange position
  5045. destination[X_AXIS] = x_pos;
  5046. destination[Y_AXIS] = y_pos;
  5047. clamp_to_software_endstops(destination);
  5048. RUNPLAN(PAUSE_PARK_XY_FEEDRATE);
  5049. stepper.synchronize();
  5050. if (unload_length != 0) {
  5051. if (show_lcd) {
  5052. #if ENABLED(ULTIPANEL)
  5053. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_UNLOAD);
  5054. idle();
  5055. #endif
  5056. }
  5057. // Unload filament
  5058. destination[E_AXIS] += unload_length;
  5059. RUNPLAN(FILAMENT_CHANGE_UNLOAD_FEEDRATE);
  5060. stepper.synchronize();
  5061. }
  5062. if (show_lcd) {
  5063. #if ENABLED(ULTIPANEL)
  5064. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5065. #endif
  5066. }
  5067. #if HAS_BUZZER
  5068. filament_change_beep(max_beep_count, true);
  5069. #endif
  5070. idle();
  5071. // Disable extruders steppers for manual filament changing (only on boards that have separate ENABLE_PINS)
  5072. #if E0_ENABLE_PIN != X_ENABLE_PIN && E1_ENABLE_PIN != Y_ENABLE_PIN
  5073. disable_e_steppers();
  5074. safe_delay(100);
  5075. #endif
  5076. // Start the heater idle timers
  5077. const millis_t nozzle_timeout = (millis_t)(PAUSE_PARK_NOZZLE_TIMEOUT) * 1000UL;
  5078. HOTEND_LOOP()
  5079. thermalManager.start_heater_idle_timer(e, nozzle_timeout);
  5080. return true;
  5081. }
  5082. static void wait_for_filament_reload(const int8_t max_beep_count = 0) {
  5083. bool nozzle_timed_out = false;
  5084. // Wait for filament insert by user and press button
  5085. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5086. wait_for_user = true; // LCD click or M108 will clear this
  5087. while (wait_for_user) {
  5088. #if HAS_BUZZER
  5089. filament_change_beep(max_beep_count);
  5090. #endif
  5091. // If the nozzle has timed out, wait for the user to press the button to re-heat the nozzle, then
  5092. // re-heat the nozzle, re-show the insert screen, restart the idle timers, and start over
  5093. if (!nozzle_timed_out)
  5094. HOTEND_LOOP()
  5095. nozzle_timed_out |= thermalManager.is_heater_idle(e);
  5096. if (nozzle_timed_out) {
  5097. #if ENABLED(ULTIPANEL)
  5098. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_CLICK_TO_HEAT_NOZZLE);
  5099. #endif
  5100. // Wait for LCD click or M108
  5101. while (wait_for_user) idle(true);
  5102. // Re-enable the heaters if they timed out
  5103. HOTEND_LOOP() thermalManager.reset_heater_idle_timer(e);
  5104. // Wait for the heaters to reach the target temperatures
  5105. ensure_safe_temperature();
  5106. #if ENABLED(ULTIPANEL)
  5107. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5108. #endif
  5109. // Start the heater idle timers
  5110. const millis_t nozzle_timeout = (millis_t)(PAUSE_PARK_NOZZLE_TIMEOUT) * 1000UL;
  5111. HOTEND_LOOP()
  5112. thermalManager.start_heater_idle_timer(e, nozzle_timeout);
  5113. wait_for_user = true; /* Wait for user to load filament */
  5114. nozzle_timed_out = false;
  5115. #if HAS_BUZZER
  5116. filament_change_beep(max_beep_count, true);
  5117. #endif
  5118. }
  5119. idle(true);
  5120. }
  5121. KEEPALIVE_STATE(IN_HANDLER);
  5122. }
  5123. static void resume_print(const float &load_length = 0, const float &initial_extrude_length = 0, const int8_t max_beep_count = 0) {
  5124. bool nozzle_timed_out = false;
  5125. if (!move_away_flag) return;
  5126. // Re-enable the heaters if they timed out
  5127. HOTEND_LOOP() {
  5128. nozzle_timed_out |= thermalManager.is_heater_idle(e);
  5129. thermalManager.reset_heater_idle_timer(e);
  5130. }
  5131. if (nozzle_timed_out) ensure_safe_temperature();
  5132. #if HAS_BUZZER
  5133. filament_change_beep(max_beep_count, true);
  5134. #endif
  5135. if (load_length != 0) {
  5136. #if ENABLED(ULTIPANEL)
  5137. // Show "insert filament"
  5138. if (nozzle_timed_out)
  5139. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5140. #endif
  5141. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5142. wait_for_user = true; // LCD click or M108 will clear this
  5143. while (wait_for_user && nozzle_timed_out) {
  5144. #if HAS_BUZZER
  5145. filament_change_beep(max_beep_count);
  5146. #endif
  5147. idle(true);
  5148. }
  5149. KEEPALIVE_STATE(IN_HANDLER);
  5150. #if ENABLED(ULTIPANEL)
  5151. // Show "load" message
  5152. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_LOAD);
  5153. #endif
  5154. // Load filament
  5155. destination[E_AXIS] += load_length;
  5156. RUNPLAN(FILAMENT_CHANGE_LOAD_FEEDRATE);
  5157. stepper.synchronize();
  5158. }
  5159. #if ENABLED(ULTIPANEL) && ADVANCED_PAUSE_EXTRUDE_LENGTH > 0
  5160. float extrude_length = initial_extrude_length;
  5161. do {
  5162. if (extrude_length > 0) {
  5163. // "Wait for filament extrude"
  5164. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_EXTRUDE);
  5165. // Extrude filament to get into hotend
  5166. destination[E_AXIS] += extrude_length;
  5167. RUNPLAN(ADVANCED_PAUSE_EXTRUDE_FEEDRATE);
  5168. stepper.synchronize();
  5169. }
  5170. // Show "Extrude More" / "Resume" menu and wait for reply
  5171. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5172. wait_for_user = false;
  5173. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_OPTION);
  5174. while (advanced_pause_menu_response == ADVANCED_PAUSE_RESPONSE_WAIT_FOR) idle(true);
  5175. KEEPALIVE_STATE(IN_HANDLER);
  5176. extrude_length = ADVANCED_PAUSE_EXTRUDE_LENGTH;
  5177. // Keep looping if "Extrude More" was selected
  5178. } while (advanced_pause_menu_response == ADVANCED_PAUSE_RESPONSE_EXTRUDE_MORE);
  5179. #endif
  5180. #if ENABLED(ULTIPANEL)
  5181. // "Wait for print to resume"
  5182. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_RESUME);
  5183. #endif
  5184. // Set extruder to saved position
  5185. destination[E_AXIS] = current_position[E_AXIS] = resume_position[E_AXIS];
  5186. planner.set_e_position_mm(current_position[E_AXIS]);
  5187. #if IS_KINEMATIC
  5188. // Move XYZ to starting position
  5189. planner.buffer_line_kinematic(resume_position, PAUSE_PARK_XY_FEEDRATE, active_extruder);
  5190. #else
  5191. // Move XY to starting position, then Z
  5192. destination[X_AXIS] = resume_position[X_AXIS];
  5193. destination[Y_AXIS] = resume_position[Y_AXIS];
  5194. RUNPLAN(PAUSE_PARK_XY_FEEDRATE);
  5195. destination[Z_AXIS] = resume_position[Z_AXIS];
  5196. RUNPLAN(PAUSE_PARK_Z_FEEDRATE);
  5197. #endif
  5198. stepper.synchronize();
  5199. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  5200. filament_ran_out = false;
  5201. #endif
  5202. #if ENABLED(ULTIPANEL)
  5203. // Show status screen
  5204. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_STATUS);
  5205. #endif
  5206. #if ENABLED(SDSUPPORT)
  5207. if (sd_print_paused) {
  5208. card.startFileprint();
  5209. sd_print_paused = false;
  5210. }
  5211. #endif
  5212. move_away_flag = false;
  5213. }
  5214. #endif // ADVANCED_PAUSE_FEATURE
  5215. #if ENABLED(SDSUPPORT)
  5216. /**
  5217. * M20: List SD card to serial output
  5218. */
  5219. inline void gcode_M20() {
  5220. SERIAL_PROTOCOLLNPGM(MSG_BEGIN_FILE_LIST);
  5221. card.ls();
  5222. SERIAL_PROTOCOLLNPGM(MSG_END_FILE_LIST);
  5223. }
  5224. /**
  5225. * M21: Init SD Card
  5226. */
  5227. inline void gcode_M21() { card.initsd(); }
  5228. /**
  5229. * M22: Release SD Card
  5230. */
  5231. inline void gcode_M22() { card.release(); }
  5232. /**
  5233. * M23: Open a file
  5234. */
  5235. inline void gcode_M23() { card.openFile(parser.string_arg, true); }
  5236. /**
  5237. * M24: Start or Resume SD Print
  5238. */
  5239. inline void gcode_M24() {
  5240. #if ENABLED(PARK_HEAD_ON_PAUSE)
  5241. resume_print();
  5242. #endif
  5243. card.startFileprint();
  5244. print_job_timer.start();
  5245. }
  5246. /**
  5247. * M25: Pause SD Print
  5248. */
  5249. inline void gcode_M25() {
  5250. card.pauseSDPrint();
  5251. print_job_timer.pause();
  5252. #if ENABLED(PARK_HEAD_ON_PAUSE)
  5253. enqueue_and_echo_commands_P(PSTR("M125")); // Must be enqueued with pauseSDPrint set to be last in the buffer
  5254. #endif
  5255. }
  5256. /**
  5257. * M26: Set SD Card file index
  5258. */
  5259. inline void gcode_M26() {
  5260. if (card.cardOK && parser.seenval('S'))
  5261. card.setIndex(parser.value_long());
  5262. }
  5263. /**
  5264. * M27: Get SD Card status
  5265. */
  5266. inline void gcode_M27() { card.getStatus(); }
  5267. /**
  5268. * M28: Start SD Write
  5269. */
  5270. inline void gcode_M28() { card.openFile(parser.string_arg, false); }
  5271. /**
  5272. * M29: Stop SD Write
  5273. * Processed in write to file routine above
  5274. */
  5275. inline void gcode_M29() {
  5276. // card.saving = false;
  5277. }
  5278. /**
  5279. * M30 <filename>: Delete SD Card file
  5280. */
  5281. inline void gcode_M30() {
  5282. if (card.cardOK) {
  5283. card.closefile();
  5284. card.removeFile(parser.string_arg);
  5285. }
  5286. }
  5287. #endif // SDSUPPORT
  5288. /**
  5289. * M31: Get the time since the start of SD Print (or last M109)
  5290. */
  5291. inline void gcode_M31() {
  5292. char buffer[21];
  5293. duration_t elapsed = print_job_timer.duration();
  5294. elapsed.toString(buffer);
  5295. lcd_setstatus(buffer);
  5296. SERIAL_ECHO_START();
  5297. SERIAL_ECHOLNPAIR("Print time: ", buffer);
  5298. }
  5299. #if ENABLED(SDSUPPORT)
  5300. /**
  5301. * M32: Select file and start SD Print
  5302. */
  5303. inline void gcode_M32() {
  5304. if (card.sdprinting)
  5305. stepper.synchronize();
  5306. char* namestartpos = parser.string_arg;
  5307. const bool call_procedure = parser.boolval('P');
  5308. if (card.cardOK) {
  5309. card.openFile(namestartpos, true, call_procedure);
  5310. if (parser.seenval('S'))
  5311. card.setIndex(parser.value_long());
  5312. card.startFileprint();
  5313. // Procedure calls count as normal print time.
  5314. if (!call_procedure) print_job_timer.start();
  5315. }
  5316. }
  5317. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  5318. /**
  5319. * M33: Get the long full path of a file or folder
  5320. *
  5321. * Parameters:
  5322. * <dospath> Case-insensitive DOS-style path to a file or folder
  5323. *
  5324. * Example:
  5325. * M33 miscel~1/armchair/armcha~1.gco
  5326. *
  5327. * Output:
  5328. * /Miscellaneous/Armchair/Armchair.gcode
  5329. */
  5330. inline void gcode_M33() {
  5331. card.printLongPath(parser.string_arg);
  5332. }
  5333. #endif
  5334. #if ENABLED(SDCARD_SORT_ALPHA) && ENABLED(SDSORT_GCODE)
  5335. /**
  5336. * M34: Set SD Card Sorting Options
  5337. */
  5338. inline void gcode_M34() {
  5339. if (parser.seen('S')) card.setSortOn(parser.value_bool());
  5340. if (parser.seenval('F')) {
  5341. const int v = parser.value_long();
  5342. card.setSortFolders(v < 0 ? -1 : v > 0 ? 1 : 0);
  5343. }
  5344. //if (parser.seen('R')) card.setSortReverse(parser.value_bool());
  5345. }
  5346. #endif // SDCARD_SORT_ALPHA && SDSORT_GCODE
  5347. /**
  5348. * M928: Start SD Write
  5349. */
  5350. inline void gcode_M928() {
  5351. card.openLogFile(parser.string_arg);
  5352. }
  5353. #endif // SDSUPPORT
  5354. /**
  5355. * Sensitive pin test for M42, M226
  5356. */
  5357. static bool pin_is_protected(const int8_t pin) {
  5358. static const int8_t sensitive_pins[] PROGMEM = SENSITIVE_PINS;
  5359. for (uint8_t i = 0; i < COUNT(sensitive_pins); i++)
  5360. if (pin == (int8_t)pgm_read_byte(&sensitive_pins[i])) return true;
  5361. return false;
  5362. }
  5363. /**
  5364. * M42: Change pin status via GCode
  5365. *
  5366. * P<pin> Pin number (LED if omitted)
  5367. * S<byte> Pin status from 0 - 255
  5368. */
  5369. inline void gcode_M42() {
  5370. if (!parser.seenval('S')) return;
  5371. const byte pin_status = parser.value_byte();
  5372. const int pin_number = parser.intval('P', LED_PIN);
  5373. if (pin_number < 0) return;
  5374. if (pin_is_protected(pin_number)) {
  5375. SERIAL_ERROR_START();
  5376. SERIAL_ERRORLNPGM(MSG_ERR_PROTECTED_PIN);
  5377. return;
  5378. }
  5379. pinMode(pin_number, OUTPUT);
  5380. digitalWrite(pin_number, pin_status);
  5381. analogWrite(pin_number, pin_status);
  5382. #if FAN_COUNT > 0
  5383. switch (pin_number) {
  5384. #if HAS_FAN0
  5385. case FAN_PIN: fanSpeeds[0] = pin_status; break;
  5386. #endif
  5387. #if HAS_FAN1
  5388. case FAN1_PIN: fanSpeeds[1] = pin_status; break;
  5389. #endif
  5390. #if HAS_FAN2
  5391. case FAN2_PIN: fanSpeeds[2] = pin_status; break;
  5392. #endif
  5393. }
  5394. #endif
  5395. }
  5396. #if ENABLED(PINS_DEBUGGING)
  5397. #include "pinsDebug.h"
  5398. inline void toggle_pins() {
  5399. const bool I_flag = parser.boolval('I');
  5400. const int repeat = parser.intval('R', 1),
  5401. start = parser.intval('S'),
  5402. end = parser.intval('E', NUM_DIGITAL_PINS - 1),
  5403. wait = parser.intval('W', 500);
  5404. for (uint8_t pin = start; pin <= end; pin++) {
  5405. //report_pin_state_extended(pin, I_flag, false);
  5406. if (!I_flag && pin_is_protected(pin)) {
  5407. report_pin_state_extended(pin, I_flag, true, "Untouched ");
  5408. SERIAL_EOL();
  5409. }
  5410. else {
  5411. report_pin_state_extended(pin, I_flag, true, "Pulsing ");
  5412. #if AVR_AT90USB1286_FAMILY // Teensy IDEs don't know about these pins so must use FASTIO
  5413. if (pin == 46) {
  5414. SET_OUTPUT(46);
  5415. for (int16_t j = 0; j < repeat; j++) {
  5416. WRITE(46, 0); safe_delay(wait);
  5417. WRITE(46, 1); safe_delay(wait);
  5418. WRITE(46, 0); safe_delay(wait);
  5419. }
  5420. }
  5421. else if (pin == 47) {
  5422. SET_OUTPUT(47);
  5423. for (int16_t j = 0; j < repeat; j++) {
  5424. WRITE(47, 0); safe_delay(wait);
  5425. WRITE(47, 1); safe_delay(wait);
  5426. WRITE(47, 0); safe_delay(wait);
  5427. }
  5428. }
  5429. else
  5430. #endif
  5431. {
  5432. pinMode(pin, OUTPUT);
  5433. for (int16_t j = 0; j < repeat; j++) {
  5434. digitalWrite(pin, 0); safe_delay(wait);
  5435. digitalWrite(pin, 1); safe_delay(wait);
  5436. digitalWrite(pin, 0); safe_delay(wait);
  5437. }
  5438. }
  5439. }
  5440. SERIAL_EOL();
  5441. }
  5442. SERIAL_ECHOLNPGM("Done.");
  5443. } // toggle_pins
  5444. inline void servo_probe_test() {
  5445. #if !(NUM_SERVOS > 0 && HAS_SERVO_0)
  5446. SERIAL_ERROR_START();
  5447. SERIAL_ERRORLNPGM("SERVO not setup");
  5448. #elif !HAS_Z_SERVO_ENDSTOP
  5449. SERIAL_ERROR_START();
  5450. SERIAL_ERRORLNPGM("Z_ENDSTOP_SERVO_NR not setup");
  5451. #else
  5452. const uint8_t probe_index = parser.byteval('P', Z_ENDSTOP_SERVO_NR);
  5453. SERIAL_PROTOCOLLNPGM("Servo probe test");
  5454. SERIAL_PROTOCOLLNPAIR(". using index: ", probe_index);
  5455. SERIAL_PROTOCOLLNPAIR(". deploy angle: ", z_servo_angle[0]);
  5456. SERIAL_PROTOCOLLNPAIR(". stow angle: ", z_servo_angle[1]);
  5457. bool probe_inverting;
  5458. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  5459. #define PROBE_TEST_PIN Z_MIN_PIN
  5460. SERIAL_PROTOCOLLNPAIR(". probe uses Z_MIN pin: ", PROBE_TEST_PIN);
  5461. SERIAL_PROTOCOLLNPGM(". uses Z_MIN_ENDSTOP_INVERTING (ignores Z_MIN_PROBE_ENDSTOP_INVERTING)");
  5462. SERIAL_PROTOCOLPGM(". Z_MIN_ENDSTOP_INVERTING: ");
  5463. #if Z_MIN_ENDSTOP_INVERTING
  5464. SERIAL_PROTOCOLLNPGM("true");
  5465. #else
  5466. SERIAL_PROTOCOLLNPGM("false");
  5467. #endif
  5468. probe_inverting = Z_MIN_ENDSTOP_INVERTING;
  5469. #elif ENABLED(Z_MIN_PROBE_ENDSTOP)
  5470. #define PROBE_TEST_PIN Z_MIN_PROBE_PIN
  5471. SERIAL_PROTOCOLLNPAIR(". probe uses Z_MIN_PROBE_PIN: ", PROBE_TEST_PIN);
  5472. SERIAL_PROTOCOLLNPGM(". uses Z_MIN_PROBE_ENDSTOP_INVERTING (ignores Z_MIN_ENDSTOP_INVERTING)");
  5473. SERIAL_PROTOCOLPGM(". Z_MIN_PROBE_ENDSTOP_INVERTING: ");
  5474. #if Z_MIN_PROBE_ENDSTOP_INVERTING
  5475. SERIAL_PROTOCOLLNPGM("true");
  5476. #else
  5477. SERIAL_PROTOCOLLNPGM("false");
  5478. #endif
  5479. probe_inverting = Z_MIN_PROBE_ENDSTOP_INVERTING;
  5480. #endif
  5481. SERIAL_PROTOCOLLNPGM(". deploy & stow 4 times");
  5482. SET_INPUT_PULLUP(PROBE_TEST_PIN);
  5483. bool deploy_state, stow_state;
  5484. for (uint8_t i = 0; i < 4; i++) {
  5485. servo[probe_index].move(z_servo_angle[0]); //deploy
  5486. safe_delay(500);
  5487. deploy_state = digitalRead(PROBE_TEST_PIN);
  5488. servo[probe_index].move(z_servo_angle[1]); //stow
  5489. safe_delay(500);
  5490. stow_state = digitalRead(PROBE_TEST_PIN);
  5491. }
  5492. if (probe_inverting != deploy_state) SERIAL_PROTOCOLLNPGM("WARNING - INVERTING setting probably backwards");
  5493. refresh_cmd_timeout();
  5494. if (deploy_state != stow_state) {
  5495. SERIAL_PROTOCOLLNPGM("BLTouch clone detected");
  5496. if (deploy_state) {
  5497. SERIAL_PROTOCOLLNPGM(". DEPLOYED state: HIGH (logic 1)");
  5498. SERIAL_PROTOCOLLNPGM(". STOWED (triggered) state: LOW (logic 0)");
  5499. }
  5500. else {
  5501. SERIAL_PROTOCOLLNPGM(". DEPLOYED state: LOW (logic 0)");
  5502. SERIAL_PROTOCOLLNPGM(". STOWED (triggered) state: HIGH (logic 1)");
  5503. }
  5504. #if ENABLED(BLTOUCH)
  5505. SERIAL_PROTOCOLLNPGM("ERROR: BLTOUCH enabled - set this device up as a Z Servo Probe with inverting as true.");
  5506. #endif
  5507. }
  5508. else { // measure active signal length
  5509. servo[probe_index].move(z_servo_angle[0]); // deploy
  5510. safe_delay(500);
  5511. SERIAL_PROTOCOLLNPGM("please trigger probe");
  5512. uint16_t probe_counter = 0;
  5513. // Allow 30 seconds max for operator to trigger probe
  5514. for (uint16_t j = 0; j < 500 * 30 && probe_counter == 0 ; j++) {
  5515. safe_delay(2);
  5516. if (0 == j % (500 * 1)) // keep cmd_timeout happy
  5517. refresh_cmd_timeout();
  5518. if (deploy_state != digitalRead(PROBE_TEST_PIN)) { // probe triggered
  5519. for (probe_counter = 1; probe_counter < 50 && deploy_state != digitalRead(PROBE_TEST_PIN); ++probe_counter)
  5520. safe_delay(2);
  5521. if (probe_counter == 50)
  5522. SERIAL_PROTOCOLLNPGM("Z Servo Probe detected"); // >= 100mS active time
  5523. else if (probe_counter >= 2)
  5524. SERIAL_PROTOCOLLNPAIR("BLTouch compatible probe detected - pulse width (+/- 4mS): ", probe_counter * 2); // allow 4 - 100mS pulse
  5525. else
  5526. SERIAL_PROTOCOLLNPGM("noise detected - please re-run test"); // less than 2mS pulse
  5527. servo[probe_index].move(z_servo_angle[1]); //stow
  5528. } // pulse detected
  5529. } // for loop waiting for trigger
  5530. if (probe_counter == 0) SERIAL_PROTOCOLLNPGM("trigger not detected");
  5531. } // measure active signal length
  5532. #endif
  5533. } // servo_probe_test
  5534. /**
  5535. * M43: Pin debug - report pin state, watch pins, toggle pins and servo probe test/report
  5536. *
  5537. * M43 - report name and state of pin(s)
  5538. * P<pin> Pin to read or watch. If omitted, reads all pins.
  5539. * I Flag to ignore Marlin's pin protection.
  5540. *
  5541. * M43 W - Watch pins -reporting changes- until reset, click, or M108.
  5542. * P<pin> Pin to read or watch. If omitted, read/watch all pins.
  5543. * I Flag to ignore Marlin's pin protection.
  5544. *
  5545. * M43 E<bool> - Enable / disable background endstop monitoring
  5546. * - Machine continues to operate
  5547. * - Reports changes to endstops
  5548. * - Toggles LED_PIN when an endstop changes
  5549. * - Can not reliably catch the 5mS pulse from BLTouch type probes
  5550. *
  5551. * M43 T - Toggle pin(s) and report which pin is being toggled
  5552. * S<pin> - Start Pin number. If not given, will default to 0
  5553. * L<pin> - End Pin number. If not given, will default to last pin defined for this board
  5554. * I<bool> - Flag to ignore Marlin's pin protection. Use with caution!!!!
  5555. * R - Repeat pulses on each pin this number of times before continueing to next pin
  5556. * W - Wait time (in miliseconds) between pulses. If not given will default to 500
  5557. *
  5558. * M43 S - Servo probe test
  5559. * P<index> - Probe index (optional - defaults to 0
  5560. */
  5561. inline void gcode_M43() {
  5562. if (parser.seen('T')) { // must be first or else its "S" and "E" parameters will execute endstop or servo test
  5563. toggle_pins();
  5564. return;
  5565. }
  5566. // Enable or disable endstop monitoring
  5567. if (parser.seen('E')) {
  5568. endstop_monitor_flag = parser.value_bool();
  5569. SERIAL_PROTOCOLPGM("endstop monitor ");
  5570. SERIAL_PROTOCOL(endstop_monitor_flag ? "en" : "dis");
  5571. SERIAL_PROTOCOLLNPGM("abled");
  5572. return;
  5573. }
  5574. if (parser.seen('S')) {
  5575. servo_probe_test();
  5576. return;
  5577. }
  5578. // Get the range of pins to test or watch
  5579. const uint8_t first_pin = parser.byteval('P'),
  5580. last_pin = parser.seenval('P') ? first_pin : NUM_DIGITAL_PINS - 1;
  5581. if (first_pin > last_pin) return;
  5582. const bool ignore_protection = parser.boolval('I');
  5583. // Watch until click, M108, or reset
  5584. if (parser.boolval('W')) {
  5585. SERIAL_PROTOCOLLNPGM("Watching pins");
  5586. byte pin_state[last_pin - first_pin + 1];
  5587. for (int8_t pin = first_pin; pin <= last_pin; pin++) {
  5588. if (pin_is_protected(pin) && !ignore_protection) continue;
  5589. pinMode(pin, INPUT_PULLUP);
  5590. delay(1);
  5591. /*
  5592. if (IS_ANALOG(pin))
  5593. pin_state[pin - first_pin] = analogRead(pin - analogInputToDigitalPin(0)); // int16_t pin_state[...]
  5594. else
  5595. //*/
  5596. pin_state[pin - first_pin] = digitalRead(pin);
  5597. }
  5598. #if HAS_RESUME_CONTINUE
  5599. wait_for_user = true;
  5600. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5601. #endif
  5602. for (;;) {
  5603. for (int8_t pin = first_pin; pin <= last_pin; pin++) {
  5604. if (pin_is_protected(pin) && !ignore_protection) continue;
  5605. const byte val =
  5606. /*
  5607. IS_ANALOG(pin)
  5608. ? analogRead(pin - analogInputToDigitalPin(0)) : // int16_t val
  5609. :
  5610. //*/
  5611. digitalRead(pin);
  5612. if (val != pin_state[pin - first_pin]) {
  5613. report_pin_state_extended(pin, ignore_protection, false);
  5614. pin_state[pin - first_pin] = val;
  5615. }
  5616. }
  5617. #if HAS_RESUME_CONTINUE
  5618. if (!wait_for_user) {
  5619. KEEPALIVE_STATE(IN_HANDLER);
  5620. break;
  5621. }
  5622. #endif
  5623. safe_delay(200);
  5624. }
  5625. return;
  5626. }
  5627. // Report current state of selected pin(s)
  5628. for (uint8_t pin = first_pin; pin <= last_pin; pin++)
  5629. report_pin_state_extended(pin, ignore_protection, true);
  5630. }
  5631. #endif // PINS_DEBUGGING
  5632. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  5633. /**
  5634. * M48: Z probe repeatability measurement function.
  5635. *
  5636. * Usage:
  5637. * M48 <P#> <X#> <Y#> <V#> <E> <L#>
  5638. * P = Number of sampled points (4-50, default 10)
  5639. * X = Sample X position
  5640. * Y = Sample Y position
  5641. * V = Verbose level (0-4, default=1)
  5642. * E = Engage Z probe for each reading
  5643. * L = Number of legs of movement before probe
  5644. * S = Schizoid (Or Star if you prefer)
  5645. *
  5646. * This function assumes the bed has been homed. Specifically, that a G28 command
  5647. * as been issued prior to invoking the M48 Z probe repeatability measurement function.
  5648. * Any information generated by a prior G29 Bed leveling command will be lost and need to be
  5649. * regenerated.
  5650. */
  5651. inline void gcode_M48() {
  5652. if (axis_unhomed_error()) return;
  5653. const int8_t verbose_level = parser.byteval('V', 1);
  5654. if (!WITHIN(verbose_level, 0, 4)) {
  5655. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-4).");
  5656. return;
  5657. }
  5658. if (verbose_level > 0)
  5659. SERIAL_PROTOCOLLNPGM("M48 Z-Probe Repeatability Test");
  5660. const int8_t n_samples = parser.byteval('P', 10);
  5661. if (!WITHIN(n_samples, 4, 50)) {
  5662. SERIAL_PROTOCOLLNPGM("?Sample size not plausible (4-50).");
  5663. return;
  5664. }
  5665. const bool stow_probe_after_each = parser.boolval('E');
  5666. float X_current = current_position[X_AXIS],
  5667. Y_current = current_position[Y_AXIS];
  5668. const float X_probe_location = parser.linearval('X', X_current + X_PROBE_OFFSET_FROM_EXTRUDER),
  5669. Y_probe_location = parser.linearval('Y', Y_current + Y_PROBE_OFFSET_FROM_EXTRUDER);
  5670. #if DISABLED(DELTA)
  5671. if (!WITHIN(X_probe_location, LOGICAL_X_POSITION(MIN_PROBE_X), LOGICAL_X_POSITION(MAX_PROBE_X))) {
  5672. out_of_range_error(PSTR("X"));
  5673. return;
  5674. }
  5675. if (!WITHIN(Y_probe_location, LOGICAL_Y_POSITION(MIN_PROBE_Y), LOGICAL_Y_POSITION(MAX_PROBE_Y))) {
  5676. out_of_range_error(PSTR("Y"));
  5677. return;
  5678. }
  5679. #else
  5680. if (!position_is_reachable_by_probe_xy(X_probe_location, Y_probe_location)) {
  5681. SERIAL_PROTOCOLLNPGM("? (X,Y) location outside of probeable radius.");
  5682. return;
  5683. }
  5684. #endif
  5685. bool seen_L = parser.seen('L');
  5686. uint8_t n_legs = seen_L ? parser.value_byte() : 0;
  5687. if (n_legs > 15) {
  5688. SERIAL_PROTOCOLLNPGM("?Number of legs in movement not plausible (0-15).");
  5689. return;
  5690. }
  5691. if (n_legs == 1) n_legs = 2;
  5692. const bool schizoid_flag = parser.boolval('S');
  5693. if (schizoid_flag && !seen_L) n_legs = 7;
  5694. /**
  5695. * Now get everything to the specified probe point So we can safely do a
  5696. * probe to get us close to the bed. If the Z-Axis is far from the bed,
  5697. * we don't want to use that as a starting point for each probe.
  5698. */
  5699. if (verbose_level > 2)
  5700. SERIAL_PROTOCOLLNPGM("Positioning the probe...");
  5701. // Disable bed level correction in M48 because we want the raw data when we probe
  5702. #if HAS_LEVELING
  5703. const bool was_enabled = leveling_is_active();
  5704. set_bed_leveling_enabled(false);
  5705. #endif
  5706. setup_for_endstop_or_probe_move();
  5707. // Move to the first point, deploy, and probe
  5708. const float t = probe_pt(X_probe_location, Y_probe_location, stow_probe_after_each, verbose_level);
  5709. if (isnan(t)) return;
  5710. randomSeed(millis());
  5711. double mean = 0.0, sigma = 0.0, min = 99999.9, max = -99999.9, sample_set[n_samples];
  5712. for (uint8_t n = 0; n < n_samples; n++) {
  5713. if (n_legs) {
  5714. int dir = (random(0, 10) > 5.0) ? -1 : 1; // clockwise or counter clockwise
  5715. float angle = random(0.0, 360.0),
  5716. radius = random(
  5717. #if ENABLED(DELTA)
  5718. DELTA_PROBEABLE_RADIUS / 8, DELTA_PROBEABLE_RADIUS / 3
  5719. #else
  5720. 5, X_MAX_LENGTH / 8
  5721. #endif
  5722. );
  5723. if (verbose_level > 3) {
  5724. SERIAL_ECHOPAIR("Starting radius: ", radius);
  5725. SERIAL_ECHOPAIR(" angle: ", angle);
  5726. SERIAL_ECHOPGM(" Direction: ");
  5727. if (dir > 0) SERIAL_ECHOPGM("Counter-");
  5728. SERIAL_ECHOLNPGM("Clockwise");
  5729. }
  5730. for (uint8_t l = 0; l < n_legs - 1; l++) {
  5731. double delta_angle;
  5732. if (schizoid_flag)
  5733. // The points of a 5 point star are 72 degrees apart. We need to
  5734. // skip a point and go to the next one on the star.
  5735. delta_angle = dir * 2.0 * 72.0;
  5736. else
  5737. // If we do this line, we are just trying to move further
  5738. // around the circle.
  5739. delta_angle = dir * (float) random(25, 45);
  5740. angle += delta_angle;
  5741. while (angle > 360.0) // We probably do not need to keep the angle between 0 and 2*PI, but the
  5742. angle -= 360.0; // Arduino documentation says the trig functions should not be given values
  5743. while (angle < 0.0) // outside of this range. It looks like they behave correctly with
  5744. angle += 360.0; // numbers outside of the range, but just to be safe we clamp them.
  5745. X_current = X_probe_location - (X_PROBE_OFFSET_FROM_EXTRUDER) + cos(RADIANS(angle)) * radius;
  5746. Y_current = Y_probe_location - (Y_PROBE_OFFSET_FROM_EXTRUDER) + sin(RADIANS(angle)) * radius;
  5747. #if DISABLED(DELTA)
  5748. X_current = constrain(X_current, X_MIN_POS, X_MAX_POS);
  5749. Y_current = constrain(Y_current, Y_MIN_POS, Y_MAX_POS);
  5750. #else
  5751. // If we have gone out too far, we can do a simple fix and scale the numbers
  5752. // back in closer to the origin.
  5753. while (!position_is_reachable_by_probe_xy(X_current, Y_current)) {
  5754. X_current *= 0.8;
  5755. Y_current *= 0.8;
  5756. if (verbose_level > 3) {
  5757. SERIAL_ECHOPAIR("Pulling point towards center:", X_current);
  5758. SERIAL_ECHOLNPAIR(", ", Y_current);
  5759. }
  5760. }
  5761. #endif
  5762. if (verbose_level > 3) {
  5763. SERIAL_PROTOCOLPGM("Going to:");
  5764. SERIAL_ECHOPAIR(" X", X_current);
  5765. SERIAL_ECHOPAIR(" Y", Y_current);
  5766. SERIAL_ECHOLNPAIR(" Z", current_position[Z_AXIS]);
  5767. }
  5768. do_blocking_move_to_xy(X_current, Y_current);
  5769. } // n_legs loop
  5770. } // n_legs
  5771. // Probe a single point
  5772. sample_set[n] = probe_pt(X_probe_location, Y_probe_location, stow_probe_after_each, 0);
  5773. /**
  5774. * Get the current mean for the data points we have so far
  5775. */
  5776. double sum = 0.0;
  5777. for (uint8_t j = 0; j <= n; j++) sum += sample_set[j];
  5778. mean = sum / (n + 1);
  5779. NOMORE(min, sample_set[n]);
  5780. NOLESS(max, sample_set[n]);
  5781. /**
  5782. * Now, use that mean to calculate the standard deviation for the
  5783. * data points we have so far
  5784. */
  5785. sum = 0.0;
  5786. for (uint8_t j = 0; j <= n; j++)
  5787. sum += sq(sample_set[j] - mean);
  5788. sigma = SQRT(sum / (n + 1));
  5789. if (verbose_level > 0) {
  5790. if (verbose_level > 1) {
  5791. SERIAL_PROTOCOL(n + 1);
  5792. SERIAL_PROTOCOLPGM(" of ");
  5793. SERIAL_PROTOCOL((int)n_samples);
  5794. SERIAL_PROTOCOLPGM(": z: ");
  5795. SERIAL_PROTOCOL_F(sample_set[n], 3);
  5796. if (verbose_level > 2) {
  5797. SERIAL_PROTOCOLPGM(" mean: ");
  5798. SERIAL_PROTOCOL_F(mean, 4);
  5799. SERIAL_PROTOCOLPGM(" sigma: ");
  5800. SERIAL_PROTOCOL_F(sigma, 6);
  5801. SERIAL_PROTOCOLPGM(" min: ");
  5802. SERIAL_PROTOCOL_F(min, 3);
  5803. SERIAL_PROTOCOLPGM(" max: ");
  5804. SERIAL_PROTOCOL_F(max, 3);
  5805. SERIAL_PROTOCOLPGM(" range: ");
  5806. SERIAL_PROTOCOL_F(max-min, 3);
  5807. }
  5808. SERIAL_EOL();
  5809. }
  5810. }
  5811. } // End of probe loop
  5812. if (STOW_PROBE()) return;
  5813. SERIAL_PROTOCOLPGM("Finished!");
  5814. SERIAL_EOL();
  5815. if (verbose_level > 0) {
  5816. SERIAL_PROTOCOLPGM("Mean: ");
  5817. SERIAL_PROTOCOL_F(mean, 6);
  5818. SERIAL_PROTOCOLPGM(" Min: ");
  5819. SERIAL_PROTOCOL_F(min, 3);
  5820. SERIAL_PROTOCOLPGM(" Max: ");
  5821. SERIAL_PROTOCOL_F(max, 3);
  5822. SERIAL_PROTOCOLPGM(" Range: ");
  5823. SERIAL_PROTOCOL_F(max-min, 3);
  5824. SERIAL_EOL();
  5825. }
  5826. SERIAL_PROTOCOLPGM("Standard Deviation: ");
  5827. SERIAL_PROTOCOL_F(sigma, 6);
  5828. SERIAL_EOL();
  5829. SERIAL_EOL();
  5830. clean_up_after_endstop_or_probe_move();
  5831. // Re-enable bed level correction if it had been on
  5832. #if HAS_LEVELING
  5833. set_bed_leveling_enabled(was_enabled);
  5834. #endif
  5835. report_current_position();
  5836. }
  5837. #endif // Z_MIN_PROBE_REPEATABILITY_TEST
  5838. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
  5839. inline void gcode_M49() {
  5840. ubl.g26_debug_flag ^= true;
  5841. SERIAL_PROTOCOLPGM("UBL Debug Flag turned ");
  5842. serialprintPGM(ubl.g26_debug_flag ? PSTR("on.") : PSTR("off."));
  5843. }
  5844. #endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION
  5845. /**
  5846. * M75: Start print timer
  5847. */
  5848. inline void gcode_M75() { print_job_timer.start(); }
  5849. /**
  5850. * M76: Pause print timer
  5851. */
  5852. inline void gcode_M76() { print_job_timer.pause(); }
  5853. /**
  5854. * M77: Stop print timer
  5855. */
  5856. inline void gcode_M77() { print_job_timer.stop(); }
  5857. #if ENABLED(PRINTCOUNTER)
  5858. /**
  5859. * M78: Show print statistics
  5860. */
  5861. inline void gcode_M78() {
  5862. // "M78 S78" will reset the statistics
  5863. if (parser.intval('S') == 78)
  5864. print_job_timer.initStats();
  5865. else
  5866. print_job_timer.showStats();
  5867. }
  5868. #endif
  5869. /**
  5870. * M104: Set hot end temperature
  5871. */
  5872. inline void gcode_M104() {
  5873. if (get_target_extruder_from_command(104)) return;
  5874. if (DEBUGGING(DRYRUN)) return;
  5875. #if ENABLED(SINGLENOZZLE)
  5876. if (target_extruder != active_extruder) return;
  5877. #endif
  5878. if (parser.seenval('S')) {
  5879. const int16_t temp = parser.value_celsius();
  5880. thermalManager.setTargetHotend(temp, target_extruder);
  5881. #if ENABLED(DUAL_X_CARRIAGE)
  5882. if (dual_x_carriage_mode == DXC_DUPLICATION_MODE && target_extruder == 0)
  5883. thermalManager.setTargetHotend(temp ? temp + duplicate_extruder_temp_offset : 0, 1);
  5884. #endif
  5885. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  5886. /**
  5887. * Stop the timer at the end of print. Start is managed by 'heat and wait' M109.
  5888. * We use half EXTRUDE_MINTEMP here to allow nozzles to be put into hot
  5889. * standby mode, for instance in a dual extruder setup, without affecting
  5890. * the running print timer.
  5891. */
  5892. if (parser.value_celsius() <= (EXTRUDE_MINTEMP) / 2) {
  5893. print_job_timer.stop();
  5894. LCD_MESSAGEPGM(WELCOME_MSG);
  5895. }
  5896. #endif
  5897. if (parser.value_celsius() > thermalManager.degHotend(target_extruder))
  5898. lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
  5899. }
  5900. #if ENABLED(AUTOTEMP)
  5901. planner.autotemp_M104_M109();
  5902. #endif
  5903. }
  5904. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  5905. void print_heater_state(const float &c, const float &t,
  5906. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  5907. const float r,
  5908. #endif
  5909. const int8_t e=-2
  5910. ) {
  5911. SERIAL_PROTOCOLCHAR(' ');
  5912. SERIAL_PROTOCOLCHAR(
  5913. #if HAS_TEMP_BED && HAS_TEMP_HOTEND
  5914. e == -1 ? 'B' : 'T'
  5915. #elif HAS_TEMP_HOTEND
  5916. 'T'
  5917. #else
  5918. 'B'
  5919. #endif
  5920. );
  5921. #if HOTENDS > 1
  5922. if (e >= 0) SERIAL_PROTOCOLCHAR('0' + e);
  5923. #endif
  5924. SERIAL_PROTOCOLCHAR(':');
  5925. SERIAL_PROTOCOL(c);
  5926. SERIAL_PROTOCOLPAIR(" /" , t);
  5927. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  5928. SERIAL_PROTOCOLPAIR(" (", r / OVERSAMPLENR);
  5929. SERIAL_PROTOCOLCHAR(')');
  5930. #endif
  5931. }
  5932. void print_heaterstates() {
  5933. #if HAS_TEMP_HOTEND
  5934. print_heater_state(thermalManager.degHotend(target_extruder), thermalManager.degTargetHotend(target_extruder)
  5935. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  5936. , thermalManager.rawHotendTemp(target_extruder)
  5937. #endif
  5938. );
  5939. #endif
  5940. #if HAS_TEMP_BED
  5941. print_heater_state(thermalManager.degBed(), thermalManager.degTargetBed(),
  5942. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  5943. thermalManager.rawBedTemp(),
  5944. #endif
  5945. -1 // BED
  5946. );
  5947. #endif
  5948. #if HOTENDS > 1
  5949. HOTEND_LOOP() print_heater_state(thermalManager.degHotend(e), thermalManager.degTargetHotend(e),
  5950. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  5951. thermalManager.rawHotendTemp(e),
  5952. #endif
  5953. e
  5954. );
  5955. #endif
  5956. SERIAL_PROTOCOLPGM(" @:");
  5957. SERIAL_PROTOCOL(thermalManager.getHeaterPower(target_extruder));
  5958. #if HAS_TEMP_BED
  5959. SERIAL_PROTOCOLPGM(" B@:");
  5960. SERIAL_PROTOCOL(thermalManager.getHeaterPower(-1));
  5961. #endif
  5962. #if HOTENDS > 1
  5963. HOTEND_LOOP() {
  5964. SERIAL_PROTOCOLPAIR(" @", e);
  5965. SERIAL_PROTOCOLCHAR(':');
  5966. SERIAL_PROTOCOL(thermalManager.getHeaterPower(e));
  5967. }
  5968. #endif
  5969. }
  5970. #endif
  5971. /**
  5972. * M105: Read hot end and bed temperature
  5973. */
  5974. inline void gcode_M105() {
  5975. if (get_target_extruder_from_command(105)) return;
  5976. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  5977. SERIAL_PROTOCOLPGM(MSG_OK);
  5978. print_heaterstates();
  5979. #else // !HAS_TEMP_HOTEND && !HAS_TEMP_BED
  5980. SERIAL_ERROR_START();
  5981. SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
  5982. #endif
  5983. SERIAL_EOL();
  5984. }
  5985. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  5986. static uint8_t auto_report_temp_interval;
  5987. static millis_t next_temp_report_ms;
  5988. /**
  5989. * M155: Set temperature auto-report interval. M155 S<seconds>
  5990. */
  5991. inline void gcode_M155() {
  5992. if (parser.seenval('S')) {
  5993. auto_report_temp_interval = parser.value_byte();
  5994. NOMORE(auto_report_temp_interval, 60);
  5995. next_temp_report_ms = millis() + 1000UL * auto_report_temp_interval;
  5996. }
  5997. }
  5998. inline void auto_report_temperatures() {
  5999. if (auto_report_temp_interval && ELAPSED(millis(), next_temp_report_ms)) {
  6000. next_temp_report_ms = millis() + 1000UL * auto_report_temp_interval;
  6001. print_heaterstates();
  6002. SERIAL_EOL();
  6003. }
  6004. }
  6005. #endif // AUTO_REPORT_TEMPERATURES
  6006. #if FAN_COUNT > 0
  6007. /**
  6008. * M106: Set Fan Speed
  6009. *
  6010. * S<int> Speed between 0-255
  6011. * P<index> Fan index, if more than one fan
  6012. */
  6013. inline void gcode_M106() {
  6014. uint16_t s = parser.ushortval('S', 255);
  6015. NOMORE(s, 255);
  6016. const uint8_t p = parser.byteval('P', 0);
  6017. if (p < FAN_COUNT) fanSpeeds[p] = s;
  6018. }
  6019. /**
  6020. * M107: Fan Off
  6021. */
  6022. inline void gcode_M107() {
  6023. const uint16_t p = parser.ushortval('P');
  6024. if (p < FAN_COUNT) fanSpeeds[p] = 0;
  6025. }
  6026. #endif // FAN_COUNT > 0
  6027. #if DISABLED(EMERGENCY_PARSER)
  6028. /**
  6029. * M108: Stop the waiting for heaters in M109, M190, M303. Does not affect the target temperature.
  6030. */
  6031. inline void gcode_M108() { wait_for_heatup = false; }
  6032. /**
  6033. * M112: Emergency Stop
  6034. */
  6035. inline void gcode_M112() { kill(PSTR(MSG_KILLED)); }
  6036. /**
  6037. * M410: Quickstop - Abort all planned moves
  6038. *
  6039. * This will stop the carriages mid-move, so most likely they
  6040. * will be out of sync with the stepper position after this.
  6041. */
  6042. inline void gcode_M410() { quickstop_stepper(); }
  6043. #endif
  6044. /**
  6045. * M109: Sxxx Wait for extruder(s) to reach temperature. Waits only when heating.
  6046. * Rxxx Wait for extruder(s) to reach temperature. Waits when heating and cooling.
  6047. */
  6048. #ifndef MIN_COOLING_SLOPE_DEG
  6049. #define MIN_COOLING_SLOPE_DEG 1.50
  6050. #endif
  6051. #ifndef MIN_COOLING_SLOPE_TIME
  6052. #define MIN_COOLING_SLOPE_TIME 60
  6053. #endif
  6054. inline void gcode_M109() {
  6055. if (get_target_extruder_from_command(109)) return;
  6056. if (DEBUGGING(DRYRUN)) return;
  6057. #if ENABLED(SINGLENOZZLE)
  6058. if (target_extruder != active_extruder) return;
  6059. #endif
  6060. const bool no_wait_for_cooling = parser.seenval('S');
  6061. if (no_wait_for_cooling || parser.seenval('R')) {
  6062. const int16_t temp = parser.value_celsius();
  6063. thermalManager.setTargetHotend(temp, target_extruder);
  6064. #if ENABLED(DUAL_X_CARRIAGE)
  6065. if (dual_x_carriage_mode == DXC_DUPLICATION_MODE && target_extruder == 0)
  6066. thermalManager.setTargetHotend(temp ? temp + duplicate_extruder_temp_offset : 0, 1);
  6067. #endif
  6068. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  6069. /**
  6070. * Use half EXTRUDE_MINTEMP to allow nozzles to be put into hot
  6071. * standby mode, (e.g., in a dual extruder setup) without affecting
  6072. * the running print timer.
  6073. */
  6074. if (parser.value_celsius() <= (EXTRUDE_MINTEMP) / 2) {
  6075. print_job_timer.stop();
  6076. LCD_MESSAGEPGM(WELCOME_MSG);
  6077. }
  6078. else
  6079. print_job_timer.start();
  6080. #endif
  6081. if (thermalManager.isHeatingHotend(target_extruder)) lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
  6082. }
  6083. else return;
  6084. #if ENABLED(AUTOTEMP)
  6085. planner.autotemp_M104_M109();
  6086. #endif
  6087. #if TEMP_RESIDENCY_TIME > 0
  6088. millis_t residency_start_ms = 0;
  6089. // Loop until the temperature has stabilized
  6090. #define TEMP_CONDITIONS (!residency_start_ms || PENDING(now, residency_start_ms + (TEMP_RESIDENCY_TIME) * 1000UL))
  6091. #else
  6092. // Loop until the temperature is very close target
  6093. #define TEMP_CONDITIONS (wants_to_cool ? thermalManager.isCoolingHotend(target_extruder) : thermalManager.isHeatingHotend(target_extruder))
  6094. #endif
  6095. float target_temp = -1.0, old_temp = 9999.0;
  6096. bool wants_to_cool = false;
  6097. wait_for_heatup = true;
  6098. millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
  6099. KEEPALIVE_STATE(NOT_BUSY);
  6100. #if ENABLED(PRINTER_EVENT_LEDS)
  6101. const float start_temp = thermalManager.degHotend(target_extruder);
  6102. uint8_t old_blue = 0;
  6103. #endif
  6104. do {
  6105. // Target temperature might be changed during the loop
  6106. if (target_temp != thermalManager.degTargetHotend(target_extruder)) {
  6107. wants_to_cool = thermalManager.isCoolingHotend(target_extruder);
  6108. target_temp = thermalManager.degTargetHotend(target_extruder);
  6109. // Exit if S<lower>, continue if S<higher>, R<lower>, or R<higher>
  6110. if (no_wait_for_cooling && wants_to_cool) break;
  6111. }
  6112. now = millis();
  6113. if (ELAPSED(now, next_temp_ms)) { //Print temp & remaining time every 1s while waiting
  6114. next_temp_ms = now + 1000UL;
  6115. print_heaterstates();
  6116. #if TEMP_RESIDENCY_TIME > 0
  6117. SERIAL_PROTOCOLPGM(" W:");
  6118. if (residency_start_ms)
  6119. SERIAL_PROTOCOL(long((((TEMP_RESIDENCY_TIME) * 1000UL) - (now - residency_start_ms)) / 1000UL));
  6120. else
  6121. SERIAL_PROTOCOLCHAR('?');
  6122. #endif
  6123. SERIAL_EOL();
  6124. }
  6125. idle();
  6126. refresh_cmd_timeout(); // to prevent stepper_inactive_time from running out
  6127. const float temp = thermalManager.degHotend(target_extruder);
  6128. #if ENABLED(PRINTER_EVENT_LEDS)
  6129. // Gradually change LED strip from violet to red as nozzle heats up
  6130. if (!wants_to_cool) {
  6131. const uint8_t blue = map(constrain(temp, start_temp, target_temp), start_temp, target_temp, 255, 0);
  6132. if (blue != old_blue) set_led_color(255, 0, (old_blue = blue));
  6133. }
  6134. #endif
  6135. #if TEMP_RESIDENCY_TIME > 0
  6136. const float temp_diff = FABS(target_temp - temp);
  6137. if (!residency_start_ms) {
  6138. // Start the TEMP_RESIDENCY_TIME timer when we reach target temp for the first time.
  6139. if (temp_diff < TEMP_WINDOW) residency_start_ms = now;
  6140. }
  6141. else if (temp_diff > TEMP_HYSTERESIS) {
  6142. // Restart the timer whenever the temperature falls outside the hysteresis.
  6143. residency_start_ms = now;
  6144. }
  6145. #endif
  6146. // Prevent a wait-forever situation if R is misused i.e. M109 R0
  6147. if (wants_to_cool) {
  6148. // break after MIN_COOLING_SLOPE_TIME seconds
  6149. // if the temperature did not drop at least MIN_COOLING_SLOPE_DEG
  6150. if (!next_cool_check_ms || ELAPSED(now, next_cool_check_ms)) {
  6151. if (old_temp - temp < MIN_COOLING_SLOPE_DEG) break;
  6152. next_cool_check_ms = now + 1000UL * MIN_COOLING_SLOPE_TIME;
  6153. old_temp = temp;
  6154. }
  6155. }
  6156. } while (wait_for_heatup && TEMP_CONDITIONS);
  6157. if (wait_for_heatup) {
  6158. LCD_MESSAGEPGM(MSG_HEATING_COMPLETE);
  6159. #if ENABLED(PRINTER_EVENT_LEDS)
  6160. #if ENABLED(RGBW_LED)
  6161. set_led_color(0, 0, 0, 255); // Turn on the WHITE LED
  6162. #else
  6163. set_led_color(255, 255, 255); // Set LEDs All On
  6164. #endif
  6165. #endif
  6166. }
  6167. KEEPALIVE_STATE(IN_HANDLER);
  6168. }
  6169. #if HAS_TEMP_BED
  6170. #ifndef MIN_COOLING_SLOPE_DEG_BED
  6171. #define MIN_COOLING_SLOPE_DEG_BED 1.50
  6172. #endif
  6173. #ifndef MIN_COOLING_SLOPE_TIME_BED
  6174. #define MIN_COOLING_SLOPE_TIME_BED 60
  6175. #endif
  6176. /**
  6177. * M190: Sxxx Wait for bed current temp to reach target temp. Waits only when heating
  6178. * Rxxx Wait for bed current temp to reach target temp. Waits when heating and cooling
  6179. */
  6180. inline void gcode_M190() {
  6181. if (DEBUGGING(DRYRUN)) return;
  6182. LCD_MESSAGEPGM(MSG_BED_HEATING);
  6183. const bool no_wait_for_cooling = parser.seenval('S');
  6184. if (no_wait_for_cooling || parser.seenval('R')) {
  6185. thermalManager.setTargetBed(parser.value_celsius());
  6186. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  6187. if (parser.value_celsius() > BED_MINTEMP)
  6188. print_job_timer.start();
  6189. #endif
  6190. }
  6191. else return;
  6192. #if TEMP_BED_RESIDENCY_TIME > 0
  6193. millis_t residency_start_ms = 0;
  6194. // Loop until the temperature has stabilized
  6195. #define TEMP_BED_CONDITIONS (!residency_start_ms || PENDING(now, residency_start_ms + (TEMP_BED_RESIDENCY_TIME) * 1000UL))
  6196. #else
  6197. // Loop until the temperature is very close target
  6198. #define TEMP_BED_CONDITIONS (wants_to_cool ? thermalManager.isCoolingBed() : thermalManager.isHeatingBed())
  6199. #endif
  6200. float target_temp = -1.0, old_temp = 9999.0;
  6201. bool wants_to_cool = false;
  6202. wait_for_heatup = true;
  6203. millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
  6204. KEEPALIVE_STATE(NOT_BUSY);
  6205. target_extruder = active_extruder; // for print_heaterstates
  6206. #if ENABLED(PRINTER_EVENT_LEDS)
  6207. const float start_temp = thermalManager.degBed();
  6208. uint8_t old_red = 255;
  6209. #endif
  6210. do {
  6211. // Target temperature might be changed during the loop
  6212. if (target_temp != thermalManager.degTargetBed()) {
  6213. wants_to_cool = thermalManager.isCoolingBed();
  6214. target_temp = thermalManager.degTargetBed();
  6215. // Exit if S<lower>, continue if S<higher>, R<lower>, or R<higher>
  6216. if (no_wait_for_cooling && wants_to_cool) break;
  6217. }
  6218. now = millis();
  6219. if (ELAPSED(now, next_temp_ms)) { //Print Temp Reading every 1 second while heating up.
  6220. next_temp_ms = now + 1000UL;
  6221. print_heaterstates();
  6222. #if TEMP_BED_RESIDENCY_TIME > 0
  6223. SERIAL_PROTOCOLPGM(" W:");
  6224. if (residency_start_ms)
  6225. SERIAL_PROTOCOL(long((((TEMP_BED_RESIDENCY_TIME) * 1000UL) - (now - residency_start_ms)) / 1000UL));
  6226. else
  6227. SERIAL_PROTOCOLCHAR('?');
  6228. #endif
  6229. SERIAL_EOL();
  6230. }
  6231. idle();
  6232. refresh_cmd_timeout(); // to prevent stepper_inactive_time from running out
  6233. const float temp = thermalManager.degBed();
  6234. #if ENABLED(PRINTER_EVENT_LEDS)
  6235. // Gradually change LED strip from blue to violet as bed heats up
  6236. if (!wants_to_cool) {
  6237. const uint8_t red = map(constrain(temp, start_temp, target_temp), start_temp, target_temp, 0, 255);
  6238. if (red != old_red) set_led_color((old_red = red), 0, 255);
  6239. }
  6240. #endif
  6241. #if TEMP_BED_RESIDENCY_TIME > 0
  6242. const float temp_diff = FABS(target_temp - temp);
  6243. if (!residency_start_ms) {
  6244. // Start the TEMP_BED_RESIDENCY_TIME timer when we reach target temp for the first time.
  6245. if (temp_diff < TEMP_BED_WINDOW) residency_start_ms = now;
  6246. }
  6247. else if (temp_diff > TEMP_BED_HYSTERESIS) {
  6248. // Restart the timer whenever the temperature falls outside the hysteresis.
  6249. residency_start_ms = now;
  6250. }
  6251. #endif // TEMP_BED_RESIDENCY_TIME > 0
  6252. // Prevent a wait-forever situation if R is misused i.e. M190 R0
  6253. if (wants_to_cool) {
  6254. // Break after MIN_COOLING_SLOPE_TIME_BED seconds
  6255. // if the temperature did not drop at least MIN_COOLING_SLOPE_DEG_BED
  6256. if (!next_cool_check_ms || ELAPSED(now, next_cool_check_ms)) {
  6257. if (old_temp - temp < MIN_COOLING_SLOPE_DEG_BED) break;
  6258. next_cool_check_ms = now + 1000UL * MIN_COOLING_SLOPE_TIME_BED;
  6259. old_temp = temp;
  6260. }
  6261. }
  6262. } while (wait_for_heatup && TEMP_BED_CONDITIONS);
  6263. if (wait_for_heatup) LCD_MESSAGEPGM(MSG_BED_DONE);
  6264. KEEPALIVE_STATE(IN_HANDLER);
  6265. }
  6266. #endif // HAS_TEMP_BED
  6267. /**
  6268. * M110: Set Current Line Number
  6269. */
  6270. inline void gcode_M110() {
  6271. if (parser.seenval('N')) gcode_LastN = parser.value_long();
  6272. }
  6273. /**
  6274. * M111: Set the debug level
  6275. */
  6276. inline void gcode_M111() {
  6277. marlin_debug_flags = parser.byteval('S', (uint8_t)DEBUG_NONE);
  6278. const static char str_debug_1[] PROGMEM = MSG_DEBUG_ECHO;
  6279. const static char str_debug_2[] PROGMEM = MSG_DEBUG_INFO;
  6280. const static char str_debug_4[] PROGMEM = MSG_DEBUG_ERRORS;
  6281. const static char str_debug_8[] PROGMEM = MSG_DEBUG_DRYRUN;
  6282. const static char str_debug_16[] PROGMEM = MSG_DEBUG_COMMUNICATION;
  6283. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6284. const static char str_debug_32[] PROGMEM = MSG_DEBUG_LEVELING;
  6285. #endif
  6286. const static char* const debug_strings[] PROGMEM = {
  6287. str_debug_1, str_debug_2, str_debug_4, str_debug_8, str_debug_16
  6288. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6289. , str_debug_32
  6290. #endif
  6291. };
  6292. SERIAL_ECHO_START();
  6293. SERIAL_ECHOPGM(MSG_DEBUG_PREFIX);
  6294. if (marlin_debug_flags) {
  6295. uint8_t comma = 0;
  6296. for (uint8_t i = 0; i < COUNT(debug_strings); i++) {
  6297. if (TEST(marlin_debug_flags, i)) {
  6298. if (comma++) SERIAL_CHAR(',');
  6299. serialprintPGM((char*)pgm_read_word(&debug_strings[i]));
  6300. }
  6301. }
  6302. }
  6303. else {
  6304. SERIAL_ECHOPGM(MSG_DEBUG_OFF);
  6305. }
  6306. SERIAL_EOL();
  6307. }
  6308. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  6309. /**
  6310. * M113: Get or set Host Keepalive interval (0 to disable)
  6311. *
  6312. * S<seconds> Optional. Set the keepalive interval.
  6313. */
  6314. inline void gcode_M113() {
  6315. if (parser.seenval('S')) {
  6316. host_keepalive_interval = parser.value_byte();
  6317. NOMORE(host_keepalive_interval, 60);
  6318. }
  6319. else {
  6320. SERIAL_ECHO_START();
  6321. SERIAL_ECHOLNPAIR("M113 S", (unsigned long)host_keepalive_interval);
  6322. }
  6323. }
  6324. #endif
  6325. #if ENABLED(BARICUDA)
  6326. #if HAS_HEATER_1
  6327. /**
  6328. * M126: Heater 1 valve open
  6329. */
  6330. inline void gcode_M126() { baricuda_valve_pressure = parser.byteval('S', 255); }
  6331. /**
  6332. * M127: Heater 1 valve close
  6333. */
  6334. inline void gcode_M127() { baricuda_valve_pressure = 0; }
  6335. #endif
  6336. #if HAS_HEATER_2
  6337. /**
  6338. * M128: Heater 2 valve open
  6339. */
  6340. inline void gcode_M128() { baricuda_e_to_p_pressure = parser.byteval('S', 255); }
  6341. /**
  6342. * M129: Heater 2 valve close
  6343. */
  6344. inline void gcode_M129() { baricuda_e_to_p_pressure = 0; }
  6345. #endif
  6346. #endif // BARICUDA
  6347. /**
  6348. * M140: Set bed temperature
  6349. */
  6350. inline void gcode_M140() {
  6351. if (DEBUGGING(DRYRUN)) return;
  6352. if (parser.seenval('S')) thermalManager.setTargetBed(parser.value_celsius());
  6353. }
  6354. #if ENABLED(ULTIPANEL)
  6355. /**
  6356. * M145: Set the heatup state for a material in the LCD menu
  6357. *
  6358. * S<material> (0=PLA, 1=ABS)
  6359. * H<hotend temp>
  6360. * B<bed temp>
  6361. * F<fan speed>
  6362. */
  6363. inline void gcode_M145() {
  6364. const uint8_t material = (uint8_t)parser.intval('S');
  6365. if (material >= COUNT(lcd_preheat_hotend_temp)) {
  6366. SERIAL_ERROR_START();
  6367. SERIAL_ERRORLNPGM(MSG_ERR_MATERIAL_INDEX);
  6368. }
  6369. else {
  6370. int v;
  6371. if (parser.seenval('H')) {
  6372. v = parser.value_int();
  6373. lcd_preheat_hotend_temp[material] = constrain(v, EXTRUDE_MINTEMP, HEATER_0_MAXTEMP - 15);
  6374. }
  6375. if (parser.seenval('F')) {
  6376. v = parser.value_int();
  6377. lcd_preheat_fan_speed[material] = constrain(v, 0, 255);
  6378. }
  6379. #if TEMP_SENSOR_BED != 0
  6380. if (parser.seenval('B')) {
  6381. v = parser.value_int();
  6382. lcd_preheat_bed_temp[material] = constrain(v, BED_MINTEMP, BED_MAXTEMP - 15);
  6383. }
  6384. #endif
  6385. }
  6386. }
  6387. #endif // ULTIPANEL
  6388. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  6389. /**
  6390. * M149: Set temperature units
  6391. */
  6392. inline void gcode_M149() {
  6393. if (parser.seenval('C')) parser.set_input_temp_units(TEMPUNIT_C);
  6394. else if (parser.seenval('K')) parser.set_input_temp_units(TEMPUNIT_K);
  6395. else if (parser.seenval('F')) parser.set_input_temp_units(TEMPUNIT_F);
  6396. }
  6397. #endif
  6398. #if HAS_POWER_SWITCH
  6399. /**
  6400. * M80 : Turn on the Power Supply
  6401. * M80 S : Report the current state and exit
  6402. */
  6403. inline void gcode_M80() {
  6404. // S: Report the current power supply state and exit
  6405. if (parser.seen('S')) {
  6406. serialprintPGM(powersupply_on ? PSTR("PS:1\n") : PSTR("PS:0\n"));
  6407. return;
  6408. }
  6409. OUT_WRITE(PS_ON_PIN, PS_ON_AWAKE); // GND
  6410. /**
  6411. * If you have a switch on suicide pin, this is useful
  6412. * if you want to start another print with suicide feature after
  6413. * a print without suicide...
  6414. */
  6415. #if HAS_SUICIDE
  6416. OUT_WRITE(SUICIDE_PIN, HIGH);
  6417. #endif
  6418. #if ENABLED(HAVE_TMC2130)
  6419. delay(100);
  6420. tmc2130_init(); // Settings only stick when the driver has power
  6421. #endif
  6422. powersupply_on = true;
  6423. #if ENABLED(ULTIPANEL)
  6424. LCD_MESSAGEPGM(WELCOME_MSG);
  6425. #endif
  6426. }
  6427. #endif // HAS_POWER_SWITCH
  6428. /**
  6429. * M81: Turn off Power, including Power Supply, if there is one.
  6430. *
  6431. * This code should ALWAYS be available for EMERGENCY SHUTDOWN!
  6432. */
  6433. inline void gcode_M81() {
  6434. thermalManager.disable_all_heaters();
  6435. stepper.finish_and_disable();
  6436. #if FAN_COUNT > 0
  6437. for (uint8_t i = 0; i < FAN_COUNT; i++) fanSpeeds[i] = 0;
  6438. #if ENABLED(PROBING_FANS_OFF)
  6439. fans_paused = false;
  6440. ZERO(paused_fanSpeeds);
  6441. #endif
  6442. #endif
  6443. safe_delay(1000); // Wait 1 second before switching off
  6444. #if HAS_SUICIDE
  6445. stepper.synchronize();
  6446. suicide();
  6447. #elif HAS_POWER_SWITCH
  6448. OUT_WRITE(PS_ON_PIN, PS_ON_ASLEEP);
  6449. powersupply_on = false;
  6450. #endif
  6451. #if ENABLED(ULTIPANEL)
  6452. LCD_MESSAGEPGM(MACHINE_NAME " " MSG_OFF ".");
  6453. #endif
  6454. }
  6455. /**
  6456. * M82: Set E codes absolute (default)
  6457. */
  6458. inline void gcode_M82() { axis_relative_modes[E_AXIS] = false; }
  6459. /**
  6460. * M83: Set E codes relative while in Absolute Coordinates (G90) mode
  6461. */
  6462. inline void gcode_M83() { axis_relative_modes[E_AXIS] = true; }
  6463. /**
  6464. * M18, M84: Disable stepper motors
  6465. */
  6466. inline void gcode_M18_M84() {
  6467. if (parser.seenval('S')) {
  6468. stepper_inactive_time = parser.value_millis_from_seconds();
  6469. }
  6470. else {
  6471. bool all_axis = !((parser.seen('X')) || (parser.seen('Y')) || (parser.seen('Z')) || (parser.seen('E')));
  6472. if (all_axis) {
  6473. stepper.finish_and_disable();
  6474. }
  6475. else {
  6476. stepper.synchronize();
  6477. if (parser.seen('X')) disable_X();
  6478. if (parser.seen('Y')) disable_Y();
  6479. if (parser.seen('Z')) disable_Z();
  6480. #if E0_ENABLE_PIN != X_ENABLE_PIN && E1_ENABLE_PIN != Y_ENABLE_PIN // Only enable on boards that have separate ENABLE_PINS
  6481. if (parser.seen('E')) disable_e_steppers();
  6482. #endif
  6483. }
  6484. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTRA_LCD) // Only needed with an LCD
  6485. ubl_lcd_map_control = defer_return_to_status = false;
  6486. #endif
  6487. }
  6488. }
  6489. /**
  6490. * M85: Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
  6491. */
  6492. inline void gcode_M85() {
  6493. if (parser.seen('S')) max_inactive_time = parser.value_millis_from_seconds();
  6494. }
  6495. /**
  6496. * Multi-stepper support for M92, M201, M203
  6497. */
  6498. #if ENABLED(DISTINCT_E_FACTORS)
  6499. #define GET_TARGET_EXTRUDER(CMD) if (get_target_extruder_from_command(CMD)) return
  6500. #define TARGET_EXTRUDER target_extruder
  6501. #else
  6502. #define GET_TARGET_EXTRUDER(CMD) NOOP
  6503. #define TARGET_EXTRUDER 0
  6504. #endif
  6505. /**
  6506. * M92: Set axis steps-per-unit for one or more axes, X, Y, Z, and E.
  6507. * (Follows the same syntax as G92)
  6508. *
  6509. * With multiple extruders use T to specify which one.
  6510. */
  6511. inline void gcode_M92() {
  6512. GET_TARGET_EXTRUDER(92);
  6513. LOOP_XYZE(i) {
  6514. if (parser.seen(axis_codes[i])) {
  6515. if (i == E_AXIS) {
  6516. const float value = parser.value_per_axis_unit((AxisEnum)(E_AXIS + TARGET_EXTRUDER));
  6517. if (value < 20.0) {
  6518. float factor = planner.axis_steps_per_mm[E_AXIS + TARGET_EXTRUDER] / value; // increase e constants if M92 E14 is given for netfab.
  6519. planner.max_jerk[E_AXIS] *= factor;
  6520. planner.max_feedrate_mm_s[E_AXIS + TARGET_EXTRUDER] *= factor;
  6521. planner.max_acceleration_steps_per_s2[E_AXIS + TARGET_EXTRUDER] *= factor;
  6522. }
  6523. planner.axis_steps_per_mm[E_AXIS + TARGET_EXTRUDER] = value;
  6524. }
  6525. else {
  6526. planner.axis_steps_per_mm[i] = parser.value_per_axis_unit((AxisEnum)i);
  6527. }
  6528. }
  6529. }
  6530. planner.refresh_positioning();
  6531. }
  6532. /**
  6533. * Output the current position to serial
  6534. */
  6535. void report_current_position() {
  6536. SERIAL_PROTOCOLPGM("X:");
  6537. SERIAL_PROTOCOL(current_position[X_AXIS]);
  6538. SERIAL_PROTOCOLPGM(" Y:");
  6539. SERIAL_PROTOCOL(current_position[Y_AXIS]);
  6540. SERIAL_PROTOCOLPGM(" Z:");
  6541. SERIAL_PROTOCOL(current_position[Z_AXIS]);
  6542. SERIAL_PROTOCOLPGM(" E:");
  6543. SERIAL_PROTOCOL(current_position[E_AXIS]);
  6544. stepper.report_positions();
  6545. #if IS_SCARA
  6546. SERIAL_PROTOCOLPAIR("SCARA Theta:", stepper.get_axis_position_degrees(A_AXIS));
  6547. SERIAL_PROTOCOLLNPAIR(" Psi+Theta:", stepper.get_axis_position_degrees(B_AXIS));
  6548. SERIAL_EOL();
  6549. #endif
  6550. }
  6551. #ifdef M114_DETAIL
  6552. void report_xyze(const float pos[XYZE], const uint8_t n = 4, const uint8_t precision = 3) {
  6553. char str[12];
  6554. for (uint8_t i = 0; i < n; i++) {
  6555. SERIAL_CHAR(' ');
  6556. SERIAL_CHAR(axis_codes[i]);
  6557. SERIAL_CHAR(':');
  6558. SERIAL_PROTOCOL(dtostrf(pos[i], 8, precision, str));
  6559. }
  6560. SERIAL_EOL();
  6561. }
  6562. inline void report_xyz(const float pos[XYZ]) { report_xyze(pos, 3); }
  6563. void report_current_position_detail() {
  6564. stepper.synchronize();
  6565. SERIAL_PROTOCOLPGM("\nLogical:");
  6566. report_xyze(current_position);
  6567. SERIAL_PROTOCOLPGM("Raw: ");
  6568. const float raw[XYZ] = { RAW_X_POSITION(current_position[X_AXIS]), RAW_Y_POSITION(current_position[Y_AXIS]), RAW_Z_POSITION(current_position[Z_AXIS]) };
  6569. report_xyz(raw);
  6570. SERIAL_PROTOCOLPGM("Leveled:");
  6571. float leveled[XYZ] = { current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS] };
  6572. planner.apply_leveling(leveled);
  6573. report_xyz(leveled);
  6574. SERIAL_PROTOCOLPGM("UnLevel:");
  6575. float unleveled[XYZ] = { leveled[X_AXIS], leveled[Y_AXIS], leveled[Z_AXIS] };
  6576. planner.unapply_leveling(unleveled);
  6577. report_xyz(unleveled);
  6578. #if IS_KINEMATIC
  6579. #if IS_SCARA
  6580. SERIAL_PROTOCOLPGM("ScaraK: ");
  6581. #else
  6582. SERIAL_PROTOCOLPGM("DeltaK: ");
  6583. #endif
  6584. inverse_kinematics(leveled); // writes delta[]
  6585. report_xyz(delta);
  6586. #endif
  6587. SERIAL_PROTOCOLPGM("Stepper:");
  6588. const float step_count[XYZE] = { stepper.position(X_AXIS), stepper.position(Y_AXIS), stepper.position(Z_AXIS), stepper.position(E_AXIS) };
  6589. report_xyze(step_count, 4, 0);
  6590. #if IS_SCARA
  6591. const float deg[XYZ] = {
  6592. stepper.get_axis_position_degrees(A_AXIS),
  6593. stepper.get_axis_position_degrees(B_AXIS)
  6594. };
  6595. SERIAL_PROTOCOLPGM("Degrees:");
  6596. report_xyze(deg, 2);
  6597. #endif
  6598. SERIAL_PROTOCOLPGM("FromStp:");
  6599. get_cartesian_from_steppers(); // writes cartes[XYZ] (with forward kinematics)
  6600. const float from_steppers[XYZE] = { cartes[X_AXIS], cartes[Y_AXIS], cartes[Z_AXIS], stepper.get_axis_position_mm(E_AXIS) };
  6601. report_xyze(from_steppers);
  6602. const float diff[XYZE] = {
  6603. from_steppers[X_AXIS] - leveled[X_AXIS],
  6604. from_steppers[Y_AXIS] - leveled[Y_AXIS],
  6605. from_steppers[Z_AXIS] - leveled[Z_AXIS],
  6606. from_steppers[E_AXIS] - current_position[E_AXIS]
  6607. };
  6608. SERIAL_PROTOCOLPGM("Differ: ");
  6609. report_xyze(diff);
  6610. }
  6611. #endif // M114_DETAIL
  6612. /**
  6613. * M114: Report current position to host
  6614. */
  6615. inline void gcode_M114() {
  6616. #ifdef M114_DETAIL
  6617. if (parser.seen('D')) {
  6618. report_current_position_detail();
  6619. return;
  6620. }
  6621. #endif
  6622. stepper.synchronize();
  6623. report_current_position();
  6624. }
  6625. /**
  6626. * M115: Capabilities string
  6627. */
  6628. inline void gcode_M115() {
  6629. SERIAL_PROTOCOLLNPGM(MSG_M115_REPORT);
  6630. #if ENABLED(EXTENDED_CAPABILITIES_REPORT)
  6631. // EEPROM (M500, M501)
  6632. #if ENABLED(EEPROM_SETTINGS)
  6633. SERIAL_PROTOCOLLNPGM("Cap:EEPROM:1");
  6634. #else
  6635. SERIAL_PROTOCOLLNPGM("Cap:EEPROM:0");
  6636. #endif
  6637. // AUTOREPORT_TEMP (M155)
  6638. #if ENABLED(AUTO_REPORT_TEMPERATURES)
  6639. SERIAL_PROTOCOLLNPGM("Cap:AUTOREPORT_TEMP:1");
  6640. #else
  6641. SERIAL_PROTOCOLLNPGM("Cap:AUTOREPORT_TEMP:0");
  6642. #endif
  6643. // PROGRESS (M530 S L, M531 <file>, M532 X L)
  6644. SERIAL_PROTOCOLLNPGM("Cap:PROGRESS:0");
  6645. // AUTOLEVEL (G29)
  6646. #if HAS_ABL
  6647. SERIAL_PROTOCOLLNPGM("Cap:AUTOLEVEL:1");
  6648. #else
  6649. SERIAL_PROTOCOLLNPGM("Cap:AUTOLEVEL:0");
  6650. #endif
  6651. // Z_PROBE (G30)
  6652. #if HAS_BED_PROBE
  6653. SERIAL_PROTOCOLLNPGM("Cap:Z_PROBE:1");
  6654. #else
  6655. SERIAL_PROTOCOLLNPGM("Cap:Z_PROBE:0");
  6656. #endif
  6657. // MESH_REPORT (M420 V)
  6658. #if HAS_LEVELING
  6659. SERIAL_PROTOCOLLNPGM("Cap:LEVELING_DATA:1");
  6660. #else
  6661. SERIAL_PROTOCOLLNPGM("Cap:LEVELING_DATA:0");
  6662. #endif
  6663. // SOFTWARE_POWER (M80, M81)
  6664. #if HAS_POWER_SWITCH
  6665. SERIAL_PROTOCOLLNPGM("Cap:SOFTWARE_POWER:1");
  6666. #else
  6667. SERIAL_PROTOCOLLNPGM("Cap:SOFTWARE_POWER:0");
  6668. #endif
  6669. // CASE LIGHTS (M355)
  6670. #if HAS_CASE_LIGHT
  6671. SERIAL_PROTOCOLLNPGM("Cap:TOGGLE_LIGHTS:1");
  6672. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) {
  6673. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:1");
  6674. }
  6675. else
  6676. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:0");
  6677. #else
  6678. SERIAL_PROTOCOLLNPGM("Cap:TOGGLE_LIGHTS:0");
  6679. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:0");
  6680. #endif
  6681. // EMERGENCY_PARSER (M108, M112, M410)
  6682. #if ENABLED(EMERGENCY_PARSER)
  6683. SERIAL_PROTOCOLLNPGM("Cap:EMERGENCY_PARSER:1");
  6684. #else
  6685. SERIAL_PROTOCOLLNPGM("Cap:EMERGENCY_PARSER:0");
  6686. #endif
  6687. #endif // EXTENDED_CAPABILITIES_REPORT
  6688. }
  6689. /**
  6690. * M117: Set LCD Status Message
  6691. */
  6692. inline void gcode_M117() { lcd_setstatus(parser.string_arg); }
  6693. /**
  6694. * M118: Display a message in the host console.
  6695. *
  6696. * A Append '// ' for an action command, as in OctoPrint
  6697. * E Have the host 'echo:' the text
  6698. */
  6699. inline void gcode_M118() {
  6700. if (parser.boolval('E')) SERIAL_ECHO_START();
  6701. if (parser.boolval('A')) SERIAL_ECHOPGM("// ");
  6702. SERIAL_ECHOLN(parser.string_arg);
  6703. }
  6704. /**
  6705. * M119: Output endstop states to serial output
  6706. */
  6707. inline void gcode_M119() { endstops.M119(); }
  6708. /**
  6709. * M120: Enable endstops and set non-homing endstop state to "enabled"
  6710. */
  6711. inline void gcode_M120() { endstops.enable_globally(true); }
  6712. /**
  6713. * M121: Disable endstops and set non-homing endstop state to "disabled"
  6714. */
  6715. inline void gcode_M121() { endstops.enable_globally(false); }
  6716. #if ENABLED(PARK_HEAD_ON_PAUSE)
  6717. /**
  6718. * M125: Store current position and move to filament change position.
  6719. * Called on pause (by M25) to prevent material leaking onto the
  6720. * object. On resume (M24) the head will be moved back and the
  6721. * print will resume.
  6722. *
  6723. * If Marlin is compiled without SD Card support, M125 can be
  6724. * used directly to pause the print and move to park position,
  6725. * resuming with a button click or M108.
  6726. *
  6727. * L = override retract length
  6728. * X = override X
  6729. * Y = override Y
  6730. * Z = override Z raise
  6731. */
  6732. inline void gcode_M125() {
  6733. // Initial retract before move to filament change position
  6734. const float retract = parser.seen('L') ? parser.value_axis_units(E_AXIS) : 0
  6735. #if defined(PAUSE_PARK_RETRACT_LENGTH) && PAUSE_PARK_RETRACT_LENGTH > 0
  6736. - (PAUSE_PARK_RETRACT_LENGTH)
  6737. #endif
  6738. ;
  6739. // Lift Z axis
  6740. const float z_lift = parser.linearval('Z')
  6741. #if PAUSE_PARK_Z_ADD > 0
  6742. + PAUSE_PARK_Z_ADD
  6743. #endif
  6744. ;
  6745. // Move XY axes to filament change position or given position
  6746. const float x_pos = parser.linearval('X')
  6747. #ifdef PAUSE_PARK_X_POS
  6748. + PAUSE_PARK_X_POS
  6749. #endif
  6750. #if HOTENDS > 1 && DISABLED(DUAL_X_CARRIAGE)
  6751. + (active_extruder ? hotend_offset[X_AXIS][active_extruder] : 0)
  6752. #endif
  6753. ;
  6754. const float y_pos = parser.linearval('Y')
  6755. #ifdef PAUSE_PARK_Y_POS
  6756. + PAUSE_PARK_Y_POS
  6757. #endif
  6758. #if HOTENDS > 1 && DISABLED(DUAL_X_CARRIAGE)
  6759. + (active_extruder ? hotend_offset[Y_AXIS][active_extruder] : 0)
  6760. #endif
  6761. ;
  6762. const bool job_running = print_job_timer.isRunning();
  6763. if (pause_print(retract, z_lift, x_pos, y_pos)) {
  6764. #if DISABLED(SDSUPPORT)
  6765. // Wait for lcd click or M108
  6766. wait_for_filament_reload();
  6767. // Return to print position and continue
  6768. resume_print();
  6769. if (job_running) print_job_timer.start();
  6770. #endif
  6771. }
  6772. }
  6773. #endif // PARK_HEAD_ON_PAUSE
  6774. #if HAS_COLOR_LEDS
  6775. /**
  6776. * M150: Set Status LED Color - Use R-U-B-W for R-G-B-W
  6777. *
  6778. * Always sets all 3 or 4 components. If a component is left out, set to 0.
  6779. *
  6780. * Examples:
  6781. *
  6782. * M150 R255 ; Turn LED red
  6783. * M150 R255 U127 ; Turn LED orange (PWM only)
  6784. * M150 ; Turn LED off
  6785. * M150 R U B ; Turn LED white
  6786. * M150 W ; Turn LED white using a white LED
  6787. *
  6788. */
  6789. inline void gcode_M150() {
  6790. set_led_color(
  6791. parser.seen('R') ? (parser.has_value() ? parser.value_byte() : 255) : 0,
  6792. parser.seen('U') ? (parser.has_value() ? parser.value_byte() : 255) : 0,
  6793. parser.seen('B') ? (parser.has_value() ? parser.value_byte() : 255) : 0
  6794. #if ENABLED(RGBW_LED)
  6795. , parser.seen('W') ? (parser.has_value() ? parser.value_byte() : 255) : 0
  6796. #endif
  6797. );
  6798. }
  6799. #endif // HAS_COLOR_LEDS
  6800. /**
  6801. * M200: Set filament diameter and set E axis units to cubic units
  6802. *
  6803. * T<extruder> - Optional extruder number. Current extruder if omitted.
  6804. * D<linear> - Diameter of the filament. Use "D0" to switch back to linear units on the E axis.
  6805. */
  6806. inline void gcode_M200() {
  6807. if (get_target_extruder_from_command(200)) return;
  6808. if (parser.seen('D')) {
  6809. // setting any extruder filament size disables volumetric on the assumption that
  6810. // slicers either generate in extruder values as cubic mm or as as filament feeds
  6811. // for all extruders
  6812. volumetric_enabled = (parser.value_linear_units() != 0.0);
  6813. if (volumetric_enabled) {
  6814. filament_size[target_extruder] = parser.value_linear_units();
  6815. // make sure all extruders have some sane value for the filament size
  6816. for (uint8_t i = 0; i < COUNT(filament_size); i++)
  6817. if (! filament_size[i]) filament_size[i] = DEFAULT_NOMINAL_FILAMENT_DIA;
  6818. }
  6819. }
  6820. calculate_volumetric_multipliers();
  6821. }
  6822. /**
  6823. * M201: Set max acceleration in units/s^2 for print moves (M201 X1000 Y1000)
  6824. *
  6825. * With multiple extruders use T to specify which one.
  6826. */
  6827. inline void gcode_M201() {
  6828. GET_TARGET_EXTRUDER(201);
  6829. LOOP_XYZE(i) {
  6830. if (parser.seen(axis_codes[i])) {
  6831. const uint8_t a = i + (i == E_AXIS ? TARGET_EXTRUDER : 0);
  6832. planner.max_acceleration_mm_per_s2[a] = parser.value_axis_units((AxisEnum)a);
  6833. }
  6834. }
  6835. // steps per sq second need to be updated to agree with the units per sq second (as they are what is used in the planner)
  6836. planner.reset_acceleration_rates();
  6837. }
  6838. #if 0 // Not used for Sprinter/grbl gen6
  6839. inline void gcode_M202() {
  6840. LOOP_XYZE(i) {
  6841. if (parser.seen(axis_codes[i])) axis_travel_steps_per_sqr_second[i] = parser.value_axis_units((AxisEnum)i) * planner.axis_steps_per_mm[i];
  6842. }
  6843. }
  6844. #endif
  6845. /**
  6846. * M203: Set maximum feedrate that your machine can sustain (M203 X200 Y200 Z300 E10000) in units/sec
  6847. *
  6848. * With multiple extruders use T to specify which one.
  6849. */
  6850. inline void gcode_M203() {
  6851. GET_TARGET_EXTRUDER(203);
  6852. LOOP_XYZE(i)
  6853. if (parser.seen(axis_codes[i])) {
  6854. const uint8_t a = i + (i == E_AXIS ? TARGET_EXTRUDER : 0);
  6855. planner.max_feedrate_mm_s[a] = parser.value_axis_units((AxisEnum)a);
  6856. }
  6857. }
  6858. /**
  6859. * M204: Set Accelerations in units/sec^2 (M204 P1200 R3000 T3000)
  6860. *
  6861. * P = Printing moves
  6862. * R = Retract only (no X, Y, Z) moves
  6863. * T = Travel (non printing) moves
  6864. *
  6865. * Also sets minimum segment time in ms (B20000) to prevent buffer under-runs and M20 minimum feedrate
  6866. */
  6867. inline void gcode_M204() {
  6868. if (parser.seen('S')) { // Kept for legacy compatibility. Should NOT BE USED for new developments.
  6869. planner.travel_acceleration = planner.acceleration = parser.value_linear_units();
  6870. SERIAL_ECHOLNPAIR("Setting Print and Travel Acceleration: ", planner.acceleration);
  6871. }
  6872. if (parser.seen('P')) {
  6873. planner.acceleration = parser.value_linear_units();
  6874. SERIAL_ECHOLNPAIR("Setting Print Acceleration: ", planner.acceleration);
  6875. }
  6876. if (parser.seen('R')) {
  6877. planner.retract_acceleration = parser.value_linear_units();
  6878. SERIAL_ECHOLNPAIR("Setting Retract Acceleration: ", planner.retract_acceleration);
  6879. }
  6880. if (parser.seen('T')) {
  6881. planner.travel_acceleration = parser.value_linear_units();
  6882. SERIAL_ECHOLNPAIR("Setting Travel Acceleration: ", planner.travel_acceleration);
  6883. }
  6884. }
  6885. /**
  6886. * M205: Set Advanced Settings
  6887. *
  6888. * S = Min Feed Rate (units/s)
  6889. * T = Min Travel Feed Rate (units/s)
  6890. * B = Min Segment Time (µs)
  6891. * X = Max X Jerk (units/sec^2)
  6892. * Y = Max Y Jerk (units/sec^2)
  6893. * Z = Max Z Jerk (units/sec^2)
  6894. * E = Max E Jerk (units/sec^2)
  6895. */
  6896. inline void gcode_M205() {
  6897. if (parser.seen('S')) planner.min_feedrate_mm_s = parser.value_linear_units();
  6898. if (parser.seen('T')) planner.min_travel_feedrate_mm_s = parser.value_linear_units();
  6899. if (parser.seen('B')) planner.min_segment_time = parser.value_millis();
  6900. if (parser.seen('X')) planner.max_jerk[X_AXIS] = parser.value_linear_units();
  6901. if (parser.seen('Y')) planner.max_jerk[Y_AXIS] = parser.value_linear_units();
  6902. if (parser.seen('Z')) planner.max_jerk[Z_AXIS] = parser.value_linear_units();
  6903. if (parser.seen('E')) planner.max_jerk[E_AXIS] = parser.value_linear_units();
  6904. }
  6905. #if HAS_M206_COMMAND
  6906. /**
  6907. * M206: Set Additional Homing Offset (X Y Z). SCARA aliases T=X, P=Y
  6908. *
  6909. * *** @thinkyhead: I recommend deprecating M206 for SCARA in favor of M665.
  6910. * *** M206 for SCARA will remain enabled in 1.1.x for compatibility.
  6911. * *** In the next 1.2 release, it will simply be disabled by default.
  6912. */
  6913. inline void gcode_M206() {
  6914. LOOP_XYZ(i)
  6915. if (parser.seen(axis_codes[i]))
  6916. set_home_offset((AxisEnum)i, parser.value_linear_units());
  6917. #if ENABLED(MORGAN_SCARA)
  6918. if (parser.seen('T')) set_home_offset(A_AXIS, parser.value_linear_units()); // Theta
  6919. if (parser.seen('P')) set_home_offset(B_AXIS, parser.value_linear_units()); // Psi
  6920. #endif
  6921. SYNC_PLAN_POSITION_KINEMATIC();
  6922. report_current_position();
  6923. }
  6924. #endif // HAS_M206_COMMAND
  6925. #if ENABLED(DELTA)
  6926. /**
  6927. * M665: Set delta configurations
  6928. *
  6929. * H = delta height
  6930. * L = diagonal rod
  6931. * R = delta radius
  6932. * S = segments per second
  6933. * B = delta calibration radius
  6934. * X = Alpha (Tower 1) angle trim
  6935. * Y = Beta (Tower 2) angle trim
  6936. * Z = Rotate A and B by this angle
  6937. */
  6938. inline void gcode_M665() {
  6939. if (parser.seen('H')) {
  6940. home_offset[Z_AXIS] = parser.value_linear_units() - DELTA_HEIGHT;
  6941. update_software_endstops(Z_AXIS);
  6942. }
  6943. if (parser.seen('L')) delta_diagonal_rod = parser.value_linear_units();
  6944. if (parser.seen('R')) delta_radius = parser.value_linear_units();
  6945. if (parser.seen('S')) delta_segments_per_second = parser.value_float();
  6946. if (parser.seen('B')) delta_calibration_radius = parser.value_float();
  6947. if (parser.seen('X')) delta_tower_angle_trim[A_AXIS] = parser.value_float();
  6948. if (parser.seen('Y')) delta_tower_angle_trim[B_AXIS] = parser.value_float();
  6949. if (parser.seen('Z')) { // rotate all 3 axis for Z = 0
  6950. delta_tower_angle_trim[A_AXIS] -= parser.value_float();
  6951. delta_tower_angle_trim[B_AXIS] -= parser.value_float();
  6952. }
  6953. recalc_delta_settings(delta_radius, delta_diagonal_rod);
  6954. }
  6955. /**
  6956. * M666: Set delta endstop adjustment
  6957. */
  6958. inline void gcode_M666() {
  6959. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6960. if (DEBUGGING(LEVELING)) {
  6961. SERIAL_ECHOLNPGM(">>> gcode_M666");
  6962. }
  6963. #endif
  6964. LOOP_XYZ(i) {
  6965. if (parser.seen(axis_codes[i])) {
  6966. endstop_adj[i] = parser.value_linear_units();
  6967. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6968. if (DEBUGGING(LEVELING)) {
  6969. SERIAL_ECHOPAIR("endstop_adj[", axis_codes[i]);
  6970. SERIAL_ECHOLNPAIR("] = ", endstop_adj[i]);
  6971. }
  6972. #endif
  6973. }
  6974. }
  6975. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6976. if (DEBUGGING(LEVELING)) {
  6977. SERIAL_ECHOLNPGM("<<< gcode_M666");
  6978. }
  6979. #endif
  6980. // normalize endstops so all are <=0; set the residue to delta height
  6981. const float z_temp = MAX3(endstop_adj[A_AXIS], endstop_adj[B_AXIS], endstop_adj[C_AXIS]);
  6982. home_offset[Z_AXIS] -= z_temp;
  6983. LOOP_XYZ(i) endstop_adj[i] -= z_temp;
  6984. }
  6985. #elif IS_SCARA
  6986. /**
  6987. * M665: Set SCARA settings
  6988. *
  6989. * Parameters:
  6990. *
  6991. * S[segments-per-second] - Segments-per-second
  6992. * P[theta-psi-offset] - Theta-Psi offset, added to the shoulder (A/X) angle
  6993. * T[theta-offset] - Theta offset, added to the elbow (B/Y) angle
  6994. *
  6995. * A, P, and X are all aliases for the shoulder angle
  6996. * B, T, and Y are all aliases for the elbow angle
  6997. */
  6998. inline void gcode_M665() {
  6999. if (parser.seen('S')) delta_segments_per_second = parser.value_float();
  7000. const bool hasA = parser.seen('A'), hasP = parser.seen('P'), hasX = parser.seen('X');
  7001. const uint8_t sumAPX = hasA + hasP + hasX;
  7002. if (sumAPX == 1)
  7003. home_offset[A_AXIS] = parser.value_float();
  7004. else if (sumAPX > 1) {
  7005. SERIAL_ERROR_START();
  7006. SERIAL_ERRORLNPGM("Only one of A, P, or X is allowed.");
  7007. return;
  7008. }
  7009. const bool hasB = parser.seen('B'), hasT = parser.seen('T'), hasY = parser.seen('Y');
  7010. const uint8_t sumBTY = hasB + hasT + hasY;
  7011. if (sumBTY == 1)
  7012. home_offset[B_AXIS] = parser.value_float();
  7013. else if (sumBTY > 1) {
  7014. SERIAL_ERROR_START();
  7015. SERIAL_ERRORLNPGM("Only one of B, T, or Y is allowed.");
  7016. return;
  7017. }
  7018. }
  7019. #elif ENABLED(Z_DUAL_ENDSTOPS) // !DELTA && ENABLED(Z_DUAL_ENDSTOPS)
  7020. /**
  7021. * M666: For Z Dual Endstop setup, set z axis offset to the z2 axis.
  7022. */
  7023. inline void gcode_M666() {
  7024. if (parser.seen('Z')) z_endstop_adj = parser.value_linear_units();
  7025. SERIAL_ECHOLNPAIR("Z Endstop Adjustment set to (mm):", z_endstop_adj);
  7026. }
  7027. #endif // !DELTA && Z_DUAL_ENDSTOPS
  7028. #if ENABLED(FWRETRACT)
  7029. /**
  7030. * M207: Set firmware retraction values
  7031. *
  7032. * S[+units] retract_length
  7033. * W[+units] retract_length_swap (multi-extruder)
  7034. * F[units/min] retract_feedrate_mm_s
  7035. * Z[units] retract_zlift
  7036. */
  7037. inline void gcode_M207() {
  7038. if (parser.seen('S')) retract_length = parser.value_axis_units(E_AXIS);
  7039. if (parser.seen('F')) retract_feedrate_mm_s = MMM_TO_MMS(parser.value_axis_units(E_AXIS));
  7040. if (parser.seen('Z')) retract_zlift = parser.value_linear_units();
  7041. #if EXTRUDERS > 1
  7042. if (parser.seen('W')) retract_length_swap = parser.value_axis_units(E_AXIS);
  7043. #endif
  7044. }
  7045. /**
  7046. * M208: Set firmware un-retraction values
  7047. *
  7048. * S[+units] retract_recover_length (in addition to M207 S*)
  7049. * W[+units] retract_recover_length_swap (multi-extruder)
  7050. * F[units/min] retract_recover_feedrate_mm_s
  7051. */
  7052. inline void gcode_M208() {
  7053. if (parser.seen('S')) retract_recover_length = parser.value_axis_units(E_AXIS);
  7054. if (parser.seen('F')) retract_recover_feedrate_mm_s = MMM_TO_MMS(parser.value_axis_units(E_AXIS));
  7055. #if EXTRUDERS > 1
  7056. if (parser.seen('W')) retract_recover_length_swap = parser.value_axis_units(E_AXIS);
  7057. #endif
  7058. }
  7059. /**
  7060. * M209: Enable automatic retract (M209 S1)
  7061. * For slicers that don't support G10/11, reversed extrude-only
  7062. * moves will be classified as retraction.
  7063. */
  7064. inline void gcode_M209() {
  7065. if (parser.seen('S')) {
  7066. autoretract_enabled = parser.value_bool();
  7067. for (int i = 0; i < EXTRUDERS; i++) retracted[i] = false;
  7068. }
  7069. }
  7070. #endif // FWRETRACT
  7071. /**
  7072. * M211: Enable, Disable, and/or Report software endstops
  7073. *
  7074. * Usage: M211 S1 to enable, M211 S0 to disable, M211 alone for report
  7075. */
  7076. inline void gcode_M211() {
  7077. SERIAL_ECHO_START();
  7078. #if HAS_SOFTWARE_ENDSTOPS
  7079. if (parser.seen('S')) soft_endstops_enabled = parser.value_bool();
  7080. SERIAL_ECHOPGM(MSG_SOFT_ENDSTOPS);
  7081. serialprintPGM(soft_endstops_enabled ? PSTR(MSG_ON) : PSTR(MSG_OFF));
  7082. #else
  7083. SERIAL_ECHOPGM(MSG_SOFT_ENDSTOPS);
  7084. SERIAL_ECHOPGM(MSG_OFF);
  7085. #endif
  7086. SERIAL_ECHOPGM(MSG_SOFT_MIN);
  7087. SERIAL_ECHOPAIR( MSG_X, soft_endstop_min[X_AXIS]);
  7088. SERIAL_ECHOPAIR(" " MSG_Y, soft_endstop_min[Y_AXIS]);
  7089. SERIAL_ECHOPAIR(" " MSG_Z, soft_endstop_min[Z_AXIS]);
  7090. SERIAL_ECHOPGM(MSG_SOFT_MAX);
  7091. SERIAL_ECHOPAIR( MSG_X, soft_endstop_max[X_AXIS]);
  7092. SERIAL_ECHOPAIR(" " MSG_Y, soft_endstop_max[Y_AXIS]);
  7093. SERIAL_ECHOLNPAIR(" " MSG_Z, soft_endstop_max[Z_AXIS]);
  7094. }
  7095. #if HOTENDS > 1
  7096. /**
  7097. * M218 - set hotend offset (in linear units)
  7098. *
  7099. * T<tool>
  7100. * X<xoffset>
  7101. * Y<yoffset>
  7102. * Z<zoffset> - Available with DUAL_X_CARRIAGE and SWITCHING_NOZZLE
  7103. */
  7104. inline void gcode_M218() {
  7105. if (get_target_extruder_from_command(218) || target_extruder == 0) return;
  7106. if (parser.seenval('X')) hotend_offset[X_AXIS][target_extruder] = parser.value_linear_units();
  7107. if (parser.seenval('Y')) hotend_offset[Y_AXIS][target_extruder] = parser.value_linear_units();
  7108. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE)
  7109. if (parser.seenval('Z')) hotend_offset[Z_AXIS][target_extruder] = parser.value_linear_units();
  7110. #endif
  7111. SERIAL_ECHO_START();
  7112. SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
  7113. HOTEND_LOOP() {
  7114. SERIAL_CHAR(' ');
  7115. SERIAL_ECHO(hotend_offset[X_AXIS][e]);
  7116. SERIAL_CHAR(',');
  7117. SERIAL_ECHO(hotend_offset[Y_AXIS][e]);
  7118. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE)
  7119. SERIAL_CHAR(',');
  7120. SERIAL_ECHO(hotend_offset[Z_AXIS][e]);
  7121. #endif
  7122. }
  7123. SERIAL_EOL();
  7124. }
  7125. #endif // HOTENDS > 1
  7126. /**
  7127. * M220: Set speed percentage factor, aka "Feed Rate" (M220 S95)
  7128. */
  7129. inline void gcode_M220() {
  7130. if (parser.seenval('S')) feedrate_percentage = parser.value_int();
  7131. }
  7132. /**
  7133. * M221: Set extrusion percentage (M221 T0 S95)
  7134. */
  7135. inline void gcode_M221() {
  7136. if (get_target_extruder_from_command(221)) return;
  7137. if (parser.seenval('S'))
  7138. flow_percentage[target_extruder] = parser.value_int();
  7139. }
  7140. /**
  7141. * M226: Wait until the specified pin reaches the state required (M226 P<pin> S<state>)
  7142. */
  7143. inline void gcode_M226() {
  7144. if (parser.seen('P')) {
  7145. const int pin_number = parser.value_int(),
  7146. pin_state = parser.intval('S', -1); // required pin state - default is inverted
  7147. if (WITHIN(pin_state, -1, 1) && pin_number > -1 && !pin_is_protected(pin_number)) {
  7148. int target = LOW;
  7149. stepper.synchronize();
  7150. pinMode(pin_number, INPUT);
  7151. switch (pin_state) {
  7152. case 1:
  7153. target = HIGH;
  7154. break;
  7155. case 0:
  7156. target = LOW;
  7157. break;
  7158. case -1:
  7159. target = !digitalRead(pin_number);
  7160. break;
  7161. }
  7162. while (digitalRead(pin_number) != target) idle();
  7163. } // pin_state -1 0 1 && pin_number > -1
  7164. } // parser.seen('P')
  7165. }
  7166. #if ENABLED(EXPERIMENTAL_I2CBUS)
  7167. /**
  7168. * M260: Send data to a I2C slave device
  7169. *
  7170. * This is a PoC, the formating and arguments for the GCODE will
  7171. * change to be more compatible, the current proposal is:
  7172. *
  7173. * M260 A<slave device address base 10> ; Sets the I2C slave address the data will be sent to
  7174. *
  7175. * M260 B<byte-1 value in base 10>
  7176. * M260 B<byte-2 value in base 10>
  7177. * M260 B<byte-3 value in base 10>
  7178. *
  7179. * M260 S1 ; Send the buffered data and reset the buffer
  7180. * M260 R1 ; Reset the buffer without sending data
  7181. *
  7182. */
  7183. inline void gcode_M260() {
  7184. // Set the target address
  7185. if (parser.seen('A')) i2c.address(parser.value_byte());
  7186. // Add a new byte to the buffer
  7187. if (parser.seen('B')) i2c.addbyte(parser.value_byte());
  7188. // Flush the buffer to the bus
  7189. if (parser.seen('S')) i2c.send();
  7190. // Reset and rewind the buffer
  7191. else if (parser.seen('R')) i2c.reset();
  7192. }
  7193. /**
  7194. * M261: Request X bytes from I2C slave device
  7195. *
  7196. * Usage: M261 A<slave device address base 10> B<number of bytes>
  7197. */
  7198. inline void gcode_M261() {
  7199. if (parser.seen('A')) i2c.address(parser.value_byte());
  7200. uint8_t bytes = parser.byteval('B', 1);
  7201. if (i2c.addr && bytes && bytes <= TWIBUS_BUFFER_SIZE) {
  7202. i2c.relay(bytes);
  7203. }
  7204. else {
  7205. SERIAL_ERROR_START();
  7206. SERIAL_ERRORLN("Bad i2c request");
  7207. }
  7208. }
  7209. #endif // EXPERIMENTAL_I2CBUS
  7210. #if HAS_SERVOS
  7211. /**
  7212. * M280: Get or set servo position. P<index> [S<angle>]
  7213. */
  7214. inline void gcode_M280() {
  7215. if (!parser.seen('P')) return;
  7216. const int servo_index = parser.value_int();
  7217. if (WITHIN(servo_index, 0, NUM_SERVOS - 1)) {
  7218. if (parser.seen('S'))
  7219. MOVE_SERVO(servo_index, parser.value_int());
  7220. else {
  7221. SERIAL_ECHO_START();
  7222. SERIAL_ECHOPAIR(" Servo ", servo_index);
  7223. SERIAL_ECHOLNPAIR(": ", servo[servo_index].read());
  7224. }
  7225. }
  7226. else {
  7227. SERIAL_ERROR_START();
  7228. SERIAL_ECHOPAIR("Servo ", servo_index);
  7229. SERIAL_ECHOLNPGM(" out of range");
  7230. }
  7231. }
  7232. #endif // HAS_SERVOS
  7233. #if HAS_BUZZER
  7234. /**
  7235. * M300: Play beep sound S<frequency Hz> P<duration ms>
  7236. */
  7237. inline void gcode_M300() {
  7238. uint16_t const frequency = parser.ushortval('S', 260);
  7239. uint16_t duration = parser.ushortval('P', 1000);
  7240. // Limits the tone duration to 0-5 seconds.
  7241. NOMORE(duration, 5000);
  7242. BUZZ(duration, frequency);
  7243. }
  7244. #endif // HAS_BUZZER
  7245. #if ENABLED(PIDTEMP)
  7246. /**
  7247. * M301: Set PID parameters P I D (and optionally C, L)
  7248. *
  7249. * P[float] Kp term
  7250. * I[float] Ki term (unscaled)
  7251. * D[float] Kd term (unscaled)
  7252. *
  7253. * With PID_EXTRUSION_SCALING:
  7254. *
  7255. * C[float] Kc term
  7256. * L[float] LPQ length
  7257. */
  7258. inline void gcode_M301() {
  7259. // multi-extruder PID patch: M301 updates or prints a single extruder's PID values
  7260. // default behaviour (omitting E parameter) is to update for extruder 0 only
  7261. const uint8_t e = parser.byteval('E'); // extruder being updated
  7262. if (e < HOTENDS) { // catch bad input value
  7263. if (parser.seen('P')) PID_PARAM(Kp, e) = parser.value_float();
  7264. if (parser.seen('I')) PID_PARAM(Ki, e) = scalePID_i(parser.value_float());
  7265. if (parser.seen('D')) PID_PARAM(Kd, e) = scalePID_d(parser.value_float());
  7266. #if ENABLED(PID_EXTRUSION_SCALING)
  7267. if (parser.seen('C')) PID_PARAM(Kc, e) = parser.value_float();
  7268. if (parser.seen('L')) lpq_len = parser.value_float();
  7269. NOMORE(lpq_len, LPQ_MAX_LEN);
  7270. #endif
  7271. thermalManager.updatePID();
  7272. SERIAL_ECHO_START();
  7273. #if ENABLED(PID_PARAMS_PER_HOTEND)
  7274. SERIAL_ECHOPAIR(" e:", e); // specify extruder in serial output
  7275. #endif // PID_PARAMS_PER_HOTEND
  7276. SERIAL_ECHOPAIR(" p:", PID_PARAM(Kp, e));
  7277. SERIAL_ECHOPAIR(" i:", unscalePID_i(PID_PARAM(Ki, e)));
  7278. SERIAL_ECHOPAIR(" d:", unscalePID_d(PID_PARAM(Kd, e)));
  7279. #if ENABLED(PID_EXTRUSION_SCALING)
  7280. //Kc does not have scaling applied above, or in resetting defaults
  7281. SERIAL_ECHOPAIR(" c:", PID_PARAM(Kc, e));
  7282. #endif
  7283. SERIAL_EOL();
  7284. }
  7285. else {
  7286. SERIAL_ERROR_START();
  7287. SERIAL_ERRORLN(MSG_INVALID_EXTRUDER);
  7288. }
  7289. }
  7290. #endif // PIDTEMP
  7291. #if ENABLED(PIDTEMPBED)
  7292. inline void gcode_M304() {
  7293. if (parser.seen('P')) thermalManager.bedKp = parser.value_float();
  7294. if (parser.seen('I')) thermalManager.bedKi = scalePID_i(parser.value_float());
  7295. if (parser.seen('D')) thermalManager.bedKd = scalePID_d(parser.value_float());
  7296. thermalManager.updatePID();
  7297. SERIAL_ECHO_START();
  7298. SERIAL_ECHOPAIR(" p:", thermalManager.bedKp);
  7299. SERIAL_ECHOPAIR(" i:", unscalePID_i(thermalManager.bedKi));
  7300. SERIAL_ECHOLNPAIR(" d:", unscalePID_d(thermalManager.bedKd));
  7301. }
  7302. #endif // PIDTEMPBED
  7303. #if defined(CHDK) || HAS_PHOTOGRAPH
  7304. /**
  7305. * M240: Trigger a camera by emulating a Canon RC-1
  7306. * See http://www.doc-diy.net/photo/rc-1_hacked/
  7307. */
  7308. inline void gcode_M240() {
  7309. #ifdef CHDK
  7310. OUT_WRITE(CHDK, HIGH);
  7311. chdkHigh = millis();
  7312. chdkActive = true;
  7313. #elif HAS_PHOTOGRAPH
  7314. const uint8_t NUM_PULSES = 16;
  7315. const float PULSE_LENGTH = 0.01524;
  7316. for (int i = 0; i < NUM_PULSES; i++) {
  7317. WRITE(PHOTOGRAPH_PIN, HIGH);
  7318. _delay_ms(PULSE_LENGTH);
  7319. WRITE(PHOTOGRAPH_PIN, LOW);
  7320. _delay_ms(PULSE_LENGTH);
  7321. }
  7322. delay(7.33);
  7323. for (int i = 0; i < NUM_PULSES; i++) {
  7324. WRITE(PHOTOGRAPH_PIN, HIGH);
  7325. _delay_ms(PULSE_LENGTH);
  7326. WRITE(PHOTOGRAPH_PIN, LOW);
  7327. _delay_ms(PULSE_LENGTH);
  7328. }
  7329. #endif // !CHDK && HAS_PHOTOGRAPH
  7330. }
  7331. #endif // CHDK || PHOTOGRAPH_PIN
  7332. #if HAS_LCD_CONTRAST
  7333. /**
  7334. * M250: Read and optionally set the LCD contrast
  7335. */
  7336. inline void gcode_M250() {
  7337. if (parser.seen('C')) set_lcd_contrast(parser.value_int());
  7338. SERIAL_PROTOCOLPGM("lcd contrast value: ");
  7339. SERIAL_PROTOCOL(lcd_contrast);
  7340. SERIAL_EOL();
  7341. }
  7342. #endif // HAS_LCD_CONTRAST
  7343. #if ENABLED(PREVENT_COLD_EXTRUSION)
  7344. /**
  7345. * M302: Allow cold extrudes, or set the minimum extrude temperature
  7346. *
  7347. * S<temperature> sets the minimum extrude temperature
  7348. * P<bool> enables (1) or disables (0) cold extrusion
  7349. *
  7350. * Examples:
  7351. *
  7352. * M302 ; report current cold extrusion state
  7353. * M302 P0 ; enable cold extrusion checking
  7354. * M302 P1 ; disables cold extrusion checking
  7355. * M302 S0 ; always allow extrusion (disables checking)
  7356. * M302 S170 ; only allow extrusion above 170
  7357. * M302 S170 P1 ; set min extrude temp to 170 but leave disabled
  7358. */
  7359. inline void gcode_M302() {
  7360. const bool seen_S = parser.seen('S');
  7361. if (seen_S) {
  7362. thermalManager.extrude_min_temp = parser.value_celsius();
  7363. thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0);
  7364. }
  7365. if (parser.seen('P'))
  7366. thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0) || parser.value_bool();
  7367. else if (!seen_S) {
  7368. // Report current state
  7369. SERIAL_ECHO_START();
  7370. SERIAL_ECHOPAIR("Cold extrudes are ", (thermalManager.allow_cold_extrude ? "en" : "dis"));
  7371. SERIAL_ECHOPAIR("abled (min temp ", thermalManager.extrude_min_temp);
  7372. SERIAL_ECHOLNPGM("C)");
  7373. }
  7374. }
  7375. #endif // PREVENT_COLD_EXTRUSION
  7376. /**
  7377. * M303: PID relay autotune
  7378. *
  7379. * S<temperature> sets the target temperature. (default 150C)
  7380. * E<extruder> (-1 for the bed) (default 0)
  7381. * C<cycles>
  7382. * U<bool> with a non-zero value will apply the result to current settings
  7383. */
  7384. inline void gcode_M303() {
  7385. #if HAS_PID_HEATING
  7386. const int e = parser.intval('E'), c = parser.intval('C', 5);
  7387. const bool u = parser.boolval('U');
  7388. int16_t temp = parser.celsiusval('S', e < 0 ? 70 : 150);
  7389. if (WITHIN(e, 0, HOTENDS - 1))
  7390. target_extruder = e;
  7391. KEEPALIVE_STATE(NOT_BUSY); // don't send "busy: processing" messages during autotune output
  7392. thermalManager.PID_autotune(temp, e, c, u);
  7393. KEEPALIVE_STATE(IN_HANDLER);
  7394. #else
  7395. SERIAL_ERROR_START();
  7396. SERIAL_ERRORLNPGM(MSG_ERR_M303_DISABLED);
  7397. #endif
  7398. }
  7399. #if ENABLED(MORGAN_SCARA)
  7400. bool SCARA_move_to_cal(uint8_t delta_a, uint8_t delta_b) {
  7401. if (IsRunning()) {
  7402. forward_kinematics_SCARA(delta_a, delta_b);
  7403. destination[X_AXIS] = LOGICAL_X_POSITION(cartes[X_AXIS]);
  7404. destination[Y_AXIS] = LOGICAL_Y_POSITION(cartes[Y_AXIS]);
  7405. destination[Z_AXIS] = current_position[Z_AXIS];
  7406. prepare_move_to_destination();
  7407. return true;
  7408. }
  7409. return false;
  7410. }
  7411. /**
  7412. * M360: SCARA calibration: Move to cal-position ThetaA (0 deg calibration)
  7413. */
  7414. inline bool gcode_M360() {
  7415. SERIAL_ECHOLNPGM(" Cal: Theta 0");
  7416. return SCARA_move_to_cal(0, 120);
  7417. }
  7418. /**
  7419. * M361: SCARA calibration: Move to cal-position ThetaB (90 deg calibration - steps per degree)
  7420. */
  7421. inline bool gcode_M361() {
  7422. SERIAL_ECHOLNPGM(" Cal: Theta 90");
  7423. return SCARA_move_to_cal(90, 130);
  7424. }
  7425. /**
  7426. * M362: SCARA calibration: Move to cal-position PsiA (0 deg calibration)
  7427. */
  7428. inline bool gcode_M362() {
  7429. SERIAL_ECHOLNPGM(" Cal: Psi 0");
  7430. return SCARA_move_to_cal(60, 180);
  7431. }
  7432. /**
  7433. * M363: SCARA calibration: Move to cal-position PsiB (90 deg calibration - steps per degree)
  7434. */
  7435. inline bool gcode_M363() {
  7436. SERIAL_ECHOLNPGM(" Cal: Psi 90");
  7437. return SCARA_move_to_cal(50, 90);
  7438. }
  7439. /**
  7440. * M364: SCARA calibration: Move to cal-position PsiC (90 deg to Theta calibration position)
  7441. */
  7442. inline bool gcode_M364() {
  7443. SERIAL_ECHOLNPGM(" Cal: Theta-Psi 90");
  7444. return SCARA_move_to_cal(45, 135);
  7445. }
  7446. #endif // SCARA
  7447. #if ENABLED(EXT_SOLENOID)
  7448. void enable_solenoid(const uint8_t num) {
  7449. switch (num) {
  7450. case 0:
  7451. OUT_WRITE(SOL0_PIN, HIGH);
  7452. break;
  7453. #if HAS_SOLENOID_1 && EXTRUDERS > 1
  7454. case 1:
  7455. OUT_WRITE(SOL1_PIN, HIGH);
  7456. break;
  7457. #endif
  7458. #if HAS_SOLENOID_2 && EXTRUDERS > 2
  7459. case 2:
  7460. OUT_WRITE(SOL2_PIN, HIGH);
  7461. break;
  7462. #endif
  7463. #if HAS_SOLENOID_3 && EXTRUDERS > 3
  7464. case 3:
  7465. OUT_WRITE(SOL3_PIN, HIGH);
  7466. break;
  7467. #endif
  7468. #if HAS_SOLENOID_4 && EXTRUDERS > 4
  7469. case 4:
  7470. OUT_WRITE(SOL4_PIN, HIGH);
  7471. break;
  7472. #endif
  7473. default:
  7474. SERIAL_ECHO_START();
  7475. SERIAL_ECHOLNPGM(MSG_INVALID_SOLENOID);
  7476. break;
  7477. }
  7478. }
  7479. void enable_solenoid_on_active_extruder() { enable_solenoid(active_extruder); }
  7480. void disable_all_solenoids() {
  7481. OUT_WRITE(SOL0_PIN, LOW);
  7482. #if HAS_SOLENOID_1 && EXTRUDERS > 1
  7483. OUT_WRITE(SOL1_PIN, LOW);
  7484. #endif
  7485. #if HAS_SOLENOID_2 && EXTRUDERS > 2
  7486. OUT_WRITE(SOL2_PIN, LOW);
  7487. #endif
  7488. #if HAS_SOLENOID_3 && EXTRUDERS > 3
  7489. OUT_WRITE(SOL3_PIN, LOW);
  7490. #endif
  7491. #if HAS_SOLENOID_4 && EXTRUDERS > 4
  7492. OUT_WRITE(SOL4_PIN, LOW);
  7493. #endif
  7494. }
  7495. /**
  7496. * M380: Enable solenoid on the active extruder
  7497. */
  7498. inline void gcode_M380() { enable_solenoid_on_active_extruder(); }
  7499. /**
  7500. * M381: Disable all solenoids
  7501. */
  7502. inline void gcode_M381() { disable_all_solenoids(); }
  7503. #endif // EXT_SOLENOID
  7504. /**
  7505. * M400: Finish all moves
  7506. */
  7507. inline void gcode_M400() { stepper.synchronize(); }
  7508. #if HAS_BED_PROBE
  7509. /**
  7510. * M401: Engage Z Servo endstop if available
  7511. */
  7512. inline void gcode_M401() { DEPLOY_PROBE(); }
  7513. /**
  7514. * M402: Retract Z Servo endstop if enabled
  7515. */
  7516. inline void gcode_M402() { STOW_PROBE(); }
  7517. #endif // HAS_BED_PROBE
  7518. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  7519. /**
  7520. * M404: Display or set (in current units) the nominal filament width (3mm, 1.75mm ) W<3.0>
  7521. */
  7522. inline void gcode_M404() {
  7523. if (parser.seen('W')) {
  7524. filament_width_nominal = parser.value_linear_units();
  7525. }
  7526. else {
  7527. SERIAL_PROTOCOLPGM("Filament dia (nominal mm):");
  7528. SERIAL_PROTOCOLLN(filament_width_nominal);
  7529. }
  7530. }
  7531. /**
  7532. * M405: Turn on filament sensor for control
  7533. */
  7534. inline void gcode_M405() {
  7535. // This is technically a linear measurement, but since it's quantized to centimeters and is a different
  7536. // unit than everything else, it uses parser.value_byte() instead of parser.value_linear_units().
  7537. if (parser.seen('D')) {
  7538. meas_delay_cm = parser.value_byte();
  7539. NOMORE(meas_delay_cm, MAX_MEASUREMENT_DELAY);
  7540. }
  7541. if (filwidth_delay_index[1] == -1) { // Initialize the ring buffer if not done since startup
  7542. const uint8_t temp_ratio = thermalManager.widthFil_to_size_ratio() - 100; // -100 to scale within a signed byte
  7543. for (uint8_t i = 0; i < COUNT(measurement_delay); ++i)
  7544. measurement_delay[i] = temp_ratio;
  7545. filwidth_delay_index[0] = filwidth_delay_index[1] = 0;
  7546. }
  7547. filament_sensor = true;
  7548. //SERIAL_PROTOCOLPGM("Filament dia (measured mm):");
  7549. //SERIAL_PROTOCOL(filament_width_meas);
  7550. //SERIAL_PROTOCOLPGM("Extrusion ratio(%):");
  7551. //SERIAL_PROTOCOL(flow_percentage[active_extruder]);
  7552. }
  7553. /**
  7554. * M406: Turn off filament sensor for control
  7555. */
  7556. inline void gcode_M406() { filament_sensor = false; }
  7557. /**
  7558. * M407: Get measured filament diameter on serial output
  7559. */
  7560. inline void gcode_M407() {
  7561. SERIAL_PROTOCOLPGM("Filament dia (measured mm):");
  7562. SERIAL_PROTOCOLLN(filament_width_meas);
  7563. }
  7564. #endif // FILAMENT_WIDTH_SENSOR
  7565. void quickstop_stepper() {
  7566. stepper.quick_stop();
  7567. stepper.synchronize();
  7568. set_current_from_steppers_for_axis(ALL_AXES);
  7569. SYNC_PLAN_POSITION_KINEMATIC();
  7570. }
  7571. #if HAS_LEVELING
  7572. /**
  7573. * M420: Enable/Disable Bed Leveling and/or set the Z fade height.
  7574. *
  7575. * S[bool] Turns leveling on or off
  7576. * Z[height] Sets the Z fade height (0 or none to disable)
  7577. * V[bool] Verbose - Print the leveling grid
  7578. *
  7579. * With AUTO_BED_LEVELING_UBL only:
  7580. *
  7581. * L[index] Load UBL mesh from index (0 is default)
  7582. */
  7583. inline void gcode_M420() {
  7584. #if ENABLED(AUTO_BED_LEVELING_UBL)
  7585. // L to load a mesh from the EEPROM
  7586. if (parser.seen('L')) {
  7587. #if ENABLED(EEPROM_SETTINGS)
  7588. const int8_t storage_slot = parser.has_value() ? parser.value_int() : ubl.state.storage_slot;
  7589. const int16_t a = settings.calc_num_meshes();
  7590. if (!a) {
  7591. SERIAL_PROTOCOLLNPGM("?EEPROM storage not available.");
  7592. return;
  7593. }
  7594. if (!WITHIN(storage_slot, 0, a - 1)) {
  7595. SERIAL_PROTOCOLLNPGM("?Invalid storage slot.");
  7596. SERIAL_PROTOCOLLNPAIR("?Use 0 to ", a - 1);
  7597. return;
  7598. }
  7599. settings.load_mesh(storage_slot);
  7600. ubl.state.storage_slot = storage_slot;
  7601. #else
  7602. SERIAL_PROTOCOLLNPGM("?EEPROM storage not available.");
  7603. return;
  7604. #endif
  7605. }
  7606. // L to load a mesh from the EEPROM
  7607. if (parser.seen('L') || parser.seen('V')) {
  7608. ubl.display_map(0); // Currently only supports one map type
  7609. SERIAL_ECHOLNPAIR("UBL_MESH_VALID = ", UBL_MESH_VALID);
  7610. SERIAL_ECHOLNPAIR("ubl.state.storage_slot = ", ubl.state.storage_slot);
  7611. }
  7612. #endif // AUTO_BED_LEVELING_UBL
  7613. // V to print the matrix or mesh
  7614. if (parser.seen('V')) {
  7615. #if ABL_PLANAR
  7616. planner.bed_level_matrix.debug(PSTR("Bed Level Correction Matrix:"));
  7617. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  7618. if (leveling_is_valid()) {
  7619. print_bilinear_leveling_grid();
  7620. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  7621. bed_level_virt_print();
  7622. #endif
  7623. }
  7624. #elif ENABLED(MESH_BED_LEVELING)
  7625. if (leveling_is_valid()) {
  7626. SERIAL_ECHOLNPGM("Mesh Bed Level data:");
  7627. mbl_mesh_report();
  7628. }
  7629. #endif
  7630. }
  7631. const bool to_enable = parser.boolval('S');
  7632. if (parser.seen('S'))
  7633. set_bed_leveling_enabled(to_enable);
  7634. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  7635. if (parser.seen('Z')) set_z_fade_height(parser.value_linear_units());
  7636. #endif
  7637. const bool new_status = leveling_is_active();
  7638. if (to_enable && !new_status) {
  7639. SERIAL_ERROR_START();
  7640. SERIAL_ERRORLNPGM(MSG_ERR_M420_FAILED);
  7641. }
  7642. SERIAL_ECHO_START();
  7643. SERIAL_ECHOLNPAIR("Bed Leveling ", new_status ? MSG_ON : MSG_OFF);
  7644. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  7645. SERIAL_ECHO_START();
  7646. SERIAL_ECHOPGM("Fade Height ");
  7647. if (planner.z_fade_height > 0.0)
  7648. SERIAL_ECHOLN(planner.z_fade_height);
  7649. else
  7650. SERIAL_ECHOLNPGM(MSG_OFF);
  7651. #endif
  7652. }
  7653. #endif
  7654. #if ENABLED(MESH_BED_LEVELING)
  7655. /**
  7656. * M421: Set a single Mesh Bed Leveling Z coordinate
  7657. *
  7658. * Usage:
  7659. * M421 X<linear> Y<linear> Z<linear>
  7660. * M421 X<linear> Y<linear> Q<offset>
  7661. * M421 I<xindex> J<yindex> Z<linear>
  7662. * M421 I<xindex> J<yindex> Q<offset>
  7663. */
  7664. inline void gcode_M421() {
  7665. const bool hasX = parser.seen('X'), hasI = parser.seen('I');
  7666. const int8_t ix = hasI ? parser.value_int() : hasX ? mbl.probe_index_x(RAW_X_POSITION(parser.value_linear_units())) : -1;
  7667. const bool hasY = parser.seen('Y'), hasJ = parser.seen('J');
  7668. const int8_t iy = hasJ ? parser.value_int() : hasY ? mbl.probe_index_y(RAW_Y_POSITION(parser.value_linear_units())) : -1;
  7669. const bool hasZ = parser.seen('Z'), hasQ = !hasZ && parser.seen('Q');
  7670. if (int(hasI && hasJ) + int(hasX && hasY) != 1 || !(hasZ || hasQ)) {
  7671. SERIAL_ERROR_START();
  7672. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  7673. }
  7674. else if (ix < 0 || iy < 0) {
  7675. SERIAL_ERROR_START();
  7676. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  7677. }
  7678. else
  7679. mbl.set_z(ix, iy, parser.value_linear_units() + (hasQ ? mbl.z_values[ix][iy] : 0));
  7680. }
  7681. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  7682. /**
  7683. * M421: Set a single Mesh Bed Leveling Z coordinate
  7684. *
  7685. * Usage:
  7686. * M421 I<xindex> J<yindex> Z<linear>
  7687. * M421 I<xindex> J<yindex> Q<offset>
  7688. */
  7689. inline void gcode_M421() {
  7690. int8_t ix = parser.intval('I', -1), iy = parser.intval('J', -1);
  7691. const bool hasI = ix >= 0,
  7692. hasJ = iy >= 0,
  7693. hasZ = parser.seen('Z'),
  7694. hasQ = !hasZ && parser.seen('Q');
  7695. if (!hasI || !hasJ || !(hasZ || hasQ)) {
  7696. SERIAL_ERROR_START();
  7697. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  7698. }
  7699. else if (!WITHIN(ix, 0, GRID_MAX_POINTS_X - 1) || !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1)) {
  7700. SERIAL_ERROR_START();
  7701. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  7702. }
  7703. else {
  7704. z_values[ix][iy] = parser.value_linear_units() + (hasQ ? z_values[ix][iy] : 0);
  7705. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  7706. bed_level_virt_interpolate();
  7707. #endif
  7708. }
  7709. }
  7710. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  7711. /**
  7712. * M421: Set a single Mesh Bed Leveling Z coordinate
  7713. *
  7714. * Usage:
  7715. * M421 I<xindex> J<yindex> Z<linear>
  7716. * M421 I<xindex> J<yindex> Q<offset>
  7717. * M421 C Z<linear>
  7718. * M421 C Q<offset>
  7719. */
  7720. inline void gcode_M421() {
  7721. int8_t ix = parser.intval('I', -1), iy = parser.intval('J', -1);
  7722. const bool hasI = ix >= 0,
  7723. hasJ = iy >= 0,
  7724. hasC = parser.seen('C'),
  7725. hasZ = parser.seen('Z'),
  7726. hasQ = !hasZ && parser.seen('Q');
  7727. if (hasC) {
  7728. const mesh_index_pair location = ubl.find_closest_mesh_point_of_type(REAL, current_position[X_AXIS], current_position[Y_AXIS], USE_NOZZLE_AS_REFERENCE, NULL, false);
  7729. ix = location.x_index;
  7730. iy = location.y_index;
  7731. }
  7732. if (int(hasC) + int(hasI && hasJ) != 1 || !(hasZ || hasQ)) {
  7733. SERIAL_ERROR_START();
  7734. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  7735. }
  7736. else if (!WITHIN(ix, 0, GRID_MAX_POINTS_X - 1) || !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1)) {
  7737. SERIAL_ERROR_START();
  7738. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  7739. }
  7740. else
  7741. ubl.z_values[ix][iy] = parser.value_linear_units() + (hasQ ? ubl.z_values[ix][iy] : 0);
  7742. }
  7743. #endif // AUTO_BED_LEVELING_UBL
  7744. #if HAS_M206_COMMAND
  7745. /**
  7746. * M428: Set home_offset based on the distance between the
  7747. * current_position and the nearest "reference point."
  7748. * If an axis is past center its endstop position
  7749. * is the reference-point. Otherwise it uses 0. This allows
  7750. * the Z offset to be set near the bed when using a max endstop.
  7751. *
  7752. * M428 can't be used more than 2cm away from 0 or an endstop.
  7753. *
  7754. * Use M206 to set these values directly.
  7755. */
  7756. inline void gcode_M428() {
  7757. bool err = false;
  7758. LOOP_XYZ(i) {
  7759. if (axis_homed[i]) {
  7760. const float base = (current_position[i] > (soft_endstop_min[i] + soft_endstop_max[i]) * 0.5) ? base_home_pos((AxisEnum)i) : 0,
  7761. diff = base - RAW_POSITION(current_position[i], i);
  7762. if (WITHIN(diff, -20, 20)) {
  7763. set_home_offset((AxisEnum)i, diff);
  7764. }
  7765. else {
  7766. SERIAL_ERROR_START();
  7767. SERIAL_ERRORLNPGM(MSG_ERR_M428_TOO_FAR);
  7768. LCD_ALERTMESSAGEPGM("Err: Too far!");
  7769. BUZZ(200, 40);
  7770. err = true;
  7771. break;
  7772. }
  7773. }
  7774. }
  7775. if (!err) {
  7776. SYNC_PLAN_POSITION_KINEMATIC();
  7777. report_current_position();
  7778. LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
  7779. BUZZ(100, 659);
  7780. BUZZ(100, 698);
  7781. }
  7782. }
  7783. #endif // HAS_M206_COMMAND
  7784. /**
  7785. * M500: Store settings in EEPROM
  7786. */
  7787. inline void gcode_M500() {
  7788. (void)settings.save();
  7789. }
  7790. /**
  7791. * M501: Read settings from EEPROM
  7792. */
  7793. inline void gcode_M501() {
  7794. (void)settings.load();
  7795. }
  7796. /**
  7797. * M502: Revert to default settings
  7798. */
  7799. inline void gcode_M502() {
  7800. (void)settings.reset();
  7801. }
  7802. #if DISABLED(DISABLE_M503)
  7803. /**
  7804. * M503: print settings currently in memory
  7805. */
  7806. inline void gcode_M503() {
  7807. (void)settings.report(!parser.boolval('S', true));
  7808. }
  7809. #endif
  7810. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  7811. /**
  7812. * M540: Set whether SD card print should abort on endstop hit (M540 S<0|1>)
  7813. */
  7814. inline void gcode_M540() {
  7815. if (parser.seen('S')) stepper.abort_on_endstop_hit = parser.value_bool();
  7816. }
  7817. #endif // ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
  7818. #if HAS_BED_PROBE
  7819. void refresh_zprobe_zoffset(const bool no_babystep/*=false*/) {
  7820. static float last_zoffset = NAN;
  7821. if (!isnan(last_zoffset)) {
  7822. #if ENABLED(AUTO_BED_LEVELING_BILINEAR) || ENABLED(BABYSTEP_ZPROBE_OFFSET) || ENABLED(DELTA)
  7823. const float diff = zprobe_zoffset - last_zoffset;
  7824. #endif
  7825. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  7826. // Correct bilinear grid for new probe offset
  7827. if (diff) {
  7828. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
  7829. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
  7830. z_values[x][y] -= diff;
  7831. }
  7832. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  7833. bed_level_virt_interpolate();
  7834. #endif
  7835. #endif
  7836. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  7837. if (!no_babystep && leveling_is_active())
  7838. thermalManager.babystep_axis(Z_AXIS, -LROUND(diff * planner.axis_steps_per_mm[Z_AXIS]));
  7839. #else
  7840. UNUSED(no_babystep);
  7841. #endif
  7842. #if ENABLED(DELTA) // correct the delta_height
  7843. home_offset[Z_AXIS] -= diff;
  7844. #endif
  7845. }
  7846. last_zoffset = zprobe_zoffset;
  7847. }
  7848. inline void gcode_M851() {
  7849. SERIAL_ECHO_START();
  7850. SERIAL_ECHOPGM(MSG_ZPROBE_ZOFFSET " ");
  7851. if (parser.seen('Z')) {
  7852. const float value = parser.value_linear_units();
  7853. if (WITHIN(value, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX)) {
  7854. zprobe_zoffset = value;
  7855. refresh_zprobe_zoffset();
  7856. SERIAL_ECHO(zprobe_zoffset);
  7857. }
  7858. else
  7859. SERIAL_ECHOPGM(MSG_Z_MIN " " STRINGIFY(Z_PROBE_OFFSET_RANGE_MIN) " " MSG_Z_MAX " " STRINGIFY(Z_PROBE_OFFSET_RANGE_MAX));
  7860. }
  7861. else
  7862. SERIAL_ECHOPAIR(": ", zprobe_zoffset);
  7863. SERIAL_EOL();
  7864. }
  7865. #endif // HAS_BED_PROBE
  7866. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  7867. /**
  7868. * M600: Pause for filament change
  7869. *
  7870. * E[distance] - Retract the filament this far (negative value)
  7871. * Z[distance] - Move the Z axis by this distance
  7872. * X[position] - Move to this X position, with Y
  7873. * Y[position] - Move to this Y position, with X
  7874. * U[distance] - Retract distance for removal (negative value) (manual reload)
  7875. * L[distance] - Extrude distance for insertion (positive value) (manual reload)
  7876. * B[count] - Number of times to beep, -1 for indefinite (if equipped with a buzzer)
  7877. *
  7878. * Default values are used for omitted arguments.
  7879. *
  7880. */
  7881. inline void gcode_M600() {
  7882. #if ENABLED(HOME_BEFORE_FILAMENT_CHANGE)
  7883. // Don't allow filament change without homing first
  7884. if (axis_unhomed_error()) home_all_axes();
  7885. #endif
  7886. // Initial retract before move to filament change position
  7887. const float retract = parser.seen('E') ? parser.value_axis_units(E_AXIS) : 0
  7888. #if defined(PAUSE_PARK_RETRACT_LENGTH) && PAUSE_PARK_RETRACT_LENGTH > 0
  7889. - (PAUSE_PARK_RETRACT_LENGTH)
  7890. #endif
  7891. ;
  7892. // Lift Z axis
  7893. const float z_lift = parser.linearval('Z', 0
  7894. #if defined(PAUSE_PARK_Z_ADD) && PAUSE_PARK_Z_ADD > 0
  7895. + PAUSE_PARK_Z_ADD
  7896. #endif
  7897. );
  7898. // Move XY axes to filament exchange position
  7899. const float x_pos = parser.linearval('X', 0
  7900. #ifdef PAUSE_PARK_X_POS
  7901. + PAUSE_PARK_X_POS
  7902. #endif
  7903. );
  7904. const float y_pos = parser.linearval('Y', 0
  7905. #ifdef PAUSE_PARK_Y_POS
  7906. + PAUSE_PARK_Y_POS
  7907. #endif
  7908. );
  7909. // Unload filament
  7910. const float unload_length = parser.seen('U') ? parser.value_axis_units(E_AXIS) : 0
  7911. #if defined(FILAMENT_CHANGE_UNLOAD_LENGTH) && FILAMENT_CHANGE_UNLOAD_LENGTH > 0
  7912. - (FILAMENT_CHANGE_UNLOAD_LENGTH)
  7913. #endif
  7914. ;
  7915. // Load filament
  7916. const float load_length = parser.seen('L') ? parser.value_axis_units(E_AXIS) : 0
  7917. #ifdef FILAMENT_CHANGE_LOAD_LENGTH
  7918. + FILAMENT_CHANGE_LOAD_LENGTH
  7919. #endif
  7920. ;
  7921. const int beep_count = parser.intval('B',
  7922. #ifdef FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS
  7923. FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS
  7924. #else
  7925. -1
  7926. #endif
  7927. );
  7928. const bool job_running = print_job_timer.isRunning();
  7929. if (pause_print(retract, z_lift, x_pos, y_pos, unload_length, beep_count, true)) {
  7930. wait_for_filament_reload(beep_count);
  7931. resume_print(load_length, ADVANCED_PAUSE_EXTRUDE_LENGTH, beep_count);
  7932. }
  7933. // Resume the print job timer if it was running
  7934. if (job_running) print_job_timer.start();
  7935. }
  7936. #endif // ADVANCED_PAUSE_FEATURE
  7937. #if ENABLED(MK2_MULTIPLEXER)
  7938. inline void select_multiplexed_stepper(const uint8_t e) {
  7939. stepper.synchronize();
  7940. disable_e_steppers();
  7941. WRITE(E_MUX0_PIN, TEST(e, 0) ? HIGH : LOW);
  7942. WRITE(E_MUX1_PIN, TEST(e, 1) ? HIGH : LOW);
  7943. WRITE(E_MUX2_PIN, TEST(e, 2) ? HIGH : LOW);
  7944. safe_delay(100);
  7945. }
  7946. /**
  7947. * M702: Unload all extruders
  7948. */
  7949. inline void gcode_M702() {
  7950. for (uint8_t s = 0; s < E_STEPPERS; s++) {
  7951. select_multiplexed_stepper(e);
  7952. // TODO: standard unload filament function
  7953. // MK2 firmware behavior:
  7954. // - Make sure temperature is high enough
  7955. // - Raise Z to at least 15 to make room
  7956. // - Extrude 1cm of filament in 1 second
  7957. // - Under 230C quickly purge ~12mm, over 230C purge ~10mm
  7958. // - Change E max feedrate to 80, eject the filament from the tube. Sync.
  7959. // - Restore E max feedrate to 50
  7960. }
  7961. // Go back to the last active extruder
  7962. select_multiplexed_stepper(active_extruder);
  7963. disable_e_steppers();
  7964. }
  7965. #endif // MK2_MULTIPLEXER
  7966. #if ENABLED(DUAL_X_CARRIAGE)
  7967. /**
  7968. * M605: Set dual x-carriage movement mode
  7969. *
  7970. * M605 S0: Full control mode. The slicer has full control over x-carriage movement
  7971. * M605 S1: Auto-park mode. The inactive head will auto park/unpark without slicer involvement
  7972. * M605 S2 [Xnnn] [Rmmm]: Duplication mode. The second extruder will duplicate the first with nnn
  7973. * units x-offset and an optional differential hotend temperature of
  7974. * mmm degrees. E.g., with "M605 S2 X100 R2" the second extruder will duplicate
  7975. * the first with a spacing of 100mm in the x direction and 2 degrees hotter.
  7976. *
  7977. * Note: the X axis should be homed after changing dual x-carriage mode.
  7978. */
  7979. inline void gcode_M605() {
  7980. stepper.synchronize();
  7981. if (parser.seen('S')) dual_x_carriage_mode = (DualXMode)parser.value_byte();
  7982. switch (dual_x_carriage_mode) {
  7983. case DXC_FULL_CONTROL_MODE:
  7984. case DXC_AUTO_PARK_MODE:
  7985. break;
  7986. case DXC_DUPLICATION_MODE:
  7987. if (parser.seen('X')) duplicate_extruder_x_offset = max(parser.value_linear_units(), X2_MIN_POS - x_home_pos(0));
  7988. if (parser.seen('R')) duplicate_extruder_temp_offset = parser.value_celsius_diff();
  7989. SERIAL_ECHO_START();
  7990. SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
  7991. SERIAL_CHAR(' ');
  7992. SERIAL_ECHO(hotend_offset[X_AXIS][0]);
  7993. SERIAL_CHAR(',');
  7994. SERIAL_ECHO(hotend_offset[Y_AXIS][0]);
  7995. SERIAL_CHAR(' ');
  7996. SERIAL_ECHO(duplicate_extruder_x_offset);
  7997. SERIAL_CHAR(',');
  7998. SERIAL_ECHOLN(hotend_offset[Y_AXIS][1]);
  7999. break;
  8000. default:
  8001. dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
  8002. break;
  8003. }
  8004. active_extruder_parked = false;
  8005. extruder_duplication_enabled = false;
  8006. delayed_move_time = 0;
  8007. }
  8008. #elif ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  8009. inline void gcode_M605() {
  8010. stepper.synchronize();
  8011. extruder_duplication_enabled = parser.intval('S') == (int)DXC_DUPLICATION_MODE;
  8012. SERIAL_ECHO_START();
  8013. SERIAL_ECHOLNPAIR(MSG_DUPLICATION_MODE, extruder_duplication_enabled ? MSG_ON : MSG_OFF);
  8014. }
  8015. #endif // DUAL_NOZZLE_DUPLICATION_MODE
  8016. #if ENABLED(LIN_ADVANCE)
  8017. /**
  8018. * M900: Set and/or Get advance K factor and WH/D ratio
  8019. *
  8020. * K<factor> Set advance K factor
  8021. * R<ratio> Set ratio directly (overrides WH/D)
  8022. * W<width> H<height> D<diam> Set ratio from WH/D
  8023. */
  8024. inline void gcode_M900() {
  8025. stepper.synchronize();
  8026. const float newK = parser.floatval('K', -1);
  8027. if (newK >= 0) planner.extruder_advance_k = newK;
  8028. float newR = parser.floatval('R', -1);
  8029. if (newR < 0) {
  8030. const float newD = parser.floatval('D', -1),
  8031. newW = parser.floatval('W', -1),
  8032. newH = parser.floatval('H', -1);
  8033. if (newD >= 0 && newW >= 0 && newH >= 0)
  8034. newR = newD ? (newW * newH) / (sq(newD * 0.5) * M_PI) : 0;
  8035. }
  8036. if (newR >= 0) planner.advance_ed_ratio = newR;
  8037. SERIAL_ECHO_START();
  8038. SERIAL_ECHOPAIR("Advance K=", planner.extruder_advance_k);
  8039. SERIAL_ECHOPGM(" E/D=");
  8040. const float ratio = planner.advance_ed_ratio;
  8041. if (ratio) SERIAL_ECHO(ratio); else SERIAL_ECHOPGM("Auto");
  8042. SERIAL_EOL();
  8043. }
  8044. #endif // LIN_ADVANCE
  8045. #if ENABLED(HAVE_TMC2130)
  8046. static void tmc2130_get_current(TMC2130Stepper &st, const char name) {
  8047. SERIAL_CHAR(name);
  8048. SERIAL_ECHOPGM(" axis driver current: ");
  8049. SERIAL_ECHOLN(st.getCurrent());
  8050. }
  8051. static void tmc2130_set_current(TMC2130Stepper &st, const char name, const int mA) {
  8052. st.setCurrent(mA, R_SENSE, HOLD_MULTIPLIER);
  8053. tmc2130_get_current(st, name);
  8054. }
  8055. static void tmc2130_report_otpw(TMC2130Stepper &st, const char name) {
  8056. SERIAL_CHAR(name);
  8057. SERIAL_ECHOPGM(" axis temperature prewarn triggered: ");
  8058. serialprintPGM(st.getOTPW() ? PSTR("true") : PSTR("false"));
  8059. SERIAL_EOL();
  8060. }
  8061. static void tmc2130_clear_otpw(TMC2130Stepper &st, const char name) {
  8062. st.clear_otpw();
  8063. SERIAL_CHAR(name);
  8064. SERIAL_ECHOLNPGM(" prewarn flag cleared");
  8065. }
  8066. static void tmc2130_get_pwmthrs(TMC2130Stepper &st, const char name, const uint16_t spmm) {
  8067. SERIAL_CHAR(name);
  8068. SERIAL_ECHOPGM(" stealthChop max speed set to ");
  8069. SERIAL_ECHOLN(12650000UL * st.microsteps() / (256 * st.stealth_max_speed() * spmm));
  8070. }
  8071. static void tmc2130_set_pwmthrs(TMC2130Stepper &st, const char name, const int32_t thrs, const uint32_t spmm) {
  8072. st.stealth_max_speed(12650000UL * st.microsteps() / (256 * thrs * spmm));
  8073. tmc2130_get_pwmthrs(st, name, spmm);
  8074. }
  8075. static void tmc2130_get_sgt(TMC2130Stepper &st, const char name) {
  8076. SERIAL_CHAR(name);
  8077. SERIAL_ECHOPGM(" driver homing sensitivity set to ");
  8078. SERIAL_ECHOLN(st.sgt());
  8079. }
  8080. static void tmc2130_set_sgt(TMC2130Stepper &st, const char name, const int8_t sgt_val) {
  8081. st.sgt(sgt_val);
  8082. tmc2130_get_sgt(st, name);
  8083. }
  8084. /**
  8085. * M906: Set motor current in milliamps using axis codes X, Y, Z, E
  8086. * Report driver currents when no axis specified
  8087. *
  8088. * S1: Enable automatic current control
  8089. * S0: Disable
  8090. */
  8091. inline void gcode_M906() {
  8092. uint16_t values[XYZE];
  8093. LOOP_XYZE(i)
  8094. values[i] = parser.intval(axis_codes[i]);
  8095. #if ENABLED(X_IS_TMC2130)
  8096. if (values[X_AXIS]) tmc2130_set_current(stepperX, 'X', values[X_AXIS]);
  8097. else tmc2130_get_current(stepperX, 'X');
  8098. #endif
  8099. #if ENABLED(Y_IS_TMC2130)
  8100. if (values[Y_AXIS]) tmc2130_set_current(stepperY, 'Y', values[Y_AXIS]);
  8101. else tmc2130_get_current(stepperY, 'Y');
  8102. #endif
  8103. #if ENABLED(Z_IS_TMC2130)
  8104. if (values[Z_AXIS]) tmc2130_set_current(stepperZ, 'Z', values[Z_AXIS]);
  8105. else tmc2130_get_current(stepperZ, 'Z');
  8106. #endif
  8107. #if ENABLED(E0_IS_TMC2130)
  8108. if (values[E_AXIS]) tmc2130_set_current(stepperE0, 'E', values[E_AXIS]);
  8109. else tmc2130_get_current(stepperE0, 'E');
  8110. #endif
  8111. #if ENABLED(AUTOMATIC_CURRENT_CONTROL)
  8112. if (parser.seen('S')) auto_current_control = parser.value_bool();
  8113. #endif
  8114. }
  8115. /**
  8116. * M911: Report TMC2130 stepper driver overtemperature pre-warn flag
  8117. * The flag is held by the library and persist until manually cleared by M912
  8118. */
  8119. inline void gcode_M911() {
  8120. const bool reportX = parser.seen('X'), reportY = parser.seen('Y'), reportZ = parser.seen('Z'), reportE = parser.seen('E'),
  8121. reportAll = (!reportX && !reportY && !reportZ && !reportE) || (reportX && reportY && reportZ && reportE);
  8122. #if ENABLED(X_IS_TMC2130)
  8123. if (reportX || reportAll) tmc2130_report_otpw(stepperX, 'X');
  8124. #endif
  8125. #if ENABLED(Y_IS_TMC2130)
  8126. if (reportY || reportAll) tmc2130_report_otpw(stepperY, 'Y');
  8127. #endif
  8128. #if ENABLED(Z_IS_TMC2130)
  8129. if (reportZ || reportAll) tmc2130_report_otpw(stepperZ, 'Z');
  8130. #endif
  8131. #if ENABLED(E0_IS_TMC2130)
  8132. if (reportE || reportAll) tmc2130_report_otpw(stepperE0, 'E');
  8133. #endif
  8134. }
  8135. /**
  8136. * M912: Clear TMC2130 stepper driver overtemperature pre-warn flag held by the library
  8137. */
  8138. inline void gcode_M912() {
  8139. const bool clearX = parser.seen('X'), clearY = parser.seen('Y'), clearZ = parser.seen('Z'), clearE = parser.seen('E'),
  8140. clearAll = (!clearX && !clearY && !clearZ && !clearE) || (clearX && clearY && clearZ && clearE);
  8141. #if ENABLED(X_IS_TMC2130)
  8142. if (clearX || clearAll) tmc2130_clear_otpw(stepperX, 'X');
  8143. #endif
  8144. #if ENABLED(Y_IS_TMC2130)
  8145. if (clearY || clearAll) tmc2130_clear_otpw(stepperY, 'Y');
  8146. #endif
  8147. #if ENABLED(Z_IS_TMC2130)
  8148. if (clearZ || clearAll) tmc2130_clear_otpw(stepperZ, 'Z');
  8149. #endif
  8150. #if ENABLED(E0_IS_TMC2130)
  8151. if (clearE || clearAll) tmc2130_clear_otpw(stepperE0, 'E');
  8152. #endif
  8153. }
  8154. /**
  8155. * M913: Set HYBRID_THRESHOLD speed.
  8156. */
  8157. #if ENABLED(HYBRID_THRESHOLD)
  8158. inline void gcode_M913() {
  8159. uint16_t values[XYZE];
  8160. LOOP_XYZE(i)
  8161. values[i] = parser.intval(axis_codes[i]);
  8162. #if ENABLED(X_IS_TMC2130)
  8163. if (values[X_AXIS]) tmc2130_set_pwmthrs(stepperX, 'X', values[X_AXIS], planner.axis_steps_per_mm[X_AXIS]);
  8164. else tmc2130_get_pwmthrs(stepperX, 'X', planner.axis_steps_per_mm[X_AXIS]);
  8165. #endif
  8166. #if ENABLED(Y_IS_TMC2130)
  8167. if (values[Y_AXIS]) tmc2130_set_pwmthrs(stepperY, 'Y', values[Y_AXIS], planner.axis_steps_per_mm[Y_AXIS]);
  8168. else tmc2130_get_pwmthrs(stepperY, 'Y', planner.axis_steps_per_mm[Y_AXIS]);
  8169. #endif
  8170. #if ENABLED(Z_IS_TMC2130)
  8171. if (values[Z_AXIS]) tmc2130_set_pwmthrs(stepperZ, 'Z', values[Z_AXIS], planner.axis_steps_per_mm[Z_AXIS]);
  8172. else tmc2130_get_pwmthrs(stepperZ, 'Z', planner.axis_steps_per_mm[Z_AXIS]);
  8173. #endif
  8174. #if ENABLED(E0_IS_TMC2130)
  8175. if (values[E_AXIS]) tmc2130_set_pwmthrs(stepperE0, 'E', values[E_AXIS], planner.axis_steps_per_mm[E_AXIS]);
  8176. else tmc2130_get_pwmthrs(stepperE0, 'E', planner.axis_steps_per_mm[E_AXIS]);
  8177. #endif
  8178. }
  8179. #endif // HYBRID_THRESHOLD
  8180. /**
  8181. * M914: Set SENSORLESS_HOMING sensitivity.
  8182. */
  8183. #if ENABLED(SENSORLESS_HOMING)
  8184. inline void gcode_M914() {
  8185. #if ENABLED(X_IS_TMC2130)
  8186. if (parser.seen(axis_codes[X_AXIS])) tmc2130_set_sgt(stepperX, 'X', parser.value_int());
  8187. else tmc2130_get_sgt(stepperX, 'X');
  8188. #endif
  8189. #if ENABLED(Y_IS_TMC2130)
  8190. if (parser.seen(axis_codes[Y_AXIS])) tmc2130_set_sgt(stepperY, 'Y', parser.value_int());
  8191. else tmc2130_get_sgt(stepperY, 'Y');
  8192. #endif
  8193. }
  8194. #endif // SENSORLESS_HOMING
  8195. #endif // HAVE_TMC2130
  8196. /**
  8197. * M907: Set digital trimpot motor current using axis codes X, Y, Z, E, B, S
  8198. */
  8199. inline void gcode_M907() {
  8200. #if HAS_DIGIPOTSS
  8201. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) stepper.digipot_current(i, parser.value_int());
  8202. if (parser.seen('B')) stepper.digipot_current(4, parser.value_int());
  8203. if (parser.seen('S')) for (uint8_t i = 0; i <= 4; i++) stepper.digipot_current(i, parser.value_int());
  8204. #elif HAS_MOTOR_CURRENT_PWM
  8205. #if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
  8206. if (parser.seen('X')) stepper.digipot_current(0, parser.value_int());
  8207. #endif
  8208. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
  8209. if (parser.seen('Z')) stepper.digipot_current(1, parser.value_int());
  8210. #endif
  8211. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
  8212. if (parser.seen('E')) stepper.digipot_current(2, parser.value_int());
  8213. #endif
  8214. #endif
  8215. #if ENABLED(DIGIPOT_I2C)
  8216. // this one uses actual amps in floating point
  8217. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) digipot_i2c_set_current(i, parser.value_float());
  8218. // for each additional extruder (named B,C,D,E..., channels 4,5,6,7...)
  8219. for (uint8_t i = NUM_AXIS; i < DIGIPOT_I2C_NUM_CHANNELS; i++) if (parser.seen('B' + i - (NUM_AXIS))) digipot_i2c_set_current(i, parser.value_float());
  8220. #endif
  8221. #if ENABLED(DAC_STEPPER_CURRENT)
  8222. if (parser.seen('S')) {
  8223. const float dac_percent = parser.value_float();
  8224. for (uint8_t i = 0; i <= 4; i++) dac_current_percent(i, dac_percent);
  8225. }
  8226. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) dac_current_percent(i, parser.value_float());
  8227. #endif
  8228. }
  8229. #if HAS_DIGIPOTSS || ENABLED(DAC_STEPPER_CURRENT)
  8230. /**
  8231. * M908: Control digital trimpot directly (M908 P<pin> S<current>)
  8232. */
  8233. inline void gcode_M908() {
  8234. #if HAS_DIGIPOTSS
  8235. stepper.digitalPotWrite(
  8236. parser.intval('P'),
  8237. parser.intval('S')
  8238. );
  8239. #endif
  8240. #ifdef DAC_STEPPER_CURRENT
  8241. dac_current_raw(
  8242. parser.byteval('P', -1),
  8243. parser.ushortval('S', 0)
  8244. );
  8245. #endif
  8246. }
  8247. #if ENABLED(DAC_STEPPER_CURRENT) // As with Printrbot RevF
  8248. inline void gcode_M909() { dac_print_values(); }
  8249. inline void gcode_M910() { dac_commit_eeprom(); }
  8250. #endif
  8251. #endif // HAS_DIGIPOTSS || DAC_STEPPER_CURRENT
  8252. #if HAS_MICROSTEPS
  8253. // M350 Set microstepping mode. Warning: Steps per unit remains unchanged. S code sets stepping mode for all drivers.
  8254. inline void gcode_M350() {
  8255. if (parser.seen('S')) for (int i = 0; i <= 4; i++) stepper.microstep_mode(i, parser.value_byte());
  8256. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) stepper.microstep_mode(i, parser.value_byte());
  8257. if (parser.seen('B')) stepper.microstep_mode(4, parser.value_byte());
  8258. stepper.microstep_readings();
  8259. }
  8260. /**
  8261. * M351: Toggle MS1 MS2 pins directly with axis codes X Y Z E B
  8262. * S# determines MS1 or MS2, X# sets the pin high/low.
  8263. */
  8264. inline void gcode_M351() {
  8265. if (parser.seenval('S')) switch (parser.value_byte()) {
  8266. case 1:
  8267. LOOP_XYZE(i) if (parser.seenval(axis_codes[i])) stepper.microstep_ms(i, parser.value_byte(), -1);
  8268. if (parser.seenval('B')) stepper.microstep_ms(4, parser.value_byte(), -1);
  8269. break;
  8270. case 2:
  8271. LOOP_XYZE(i) if (parser.seenval(axis_codes[i])) stepper.microstep_ms(i, -1, parser.value_byte());
  8272. if (parser.seenval('B')) stepper.microstep_ms(4, -1, parser.value_byte());
  8273. break;
  8274. }
  8275. stepper.microstep_readings();
  8276. }
  8277. #endif // HAS_MICROSTEPS
  8278. #if HAS_CASE_LIGHT
  8279. #ifndef INVERT_CASE_LIGHT
  8280. #define INVERT_CASE_LIGHT false
  8281. #endif
  8282. int case_light_brightness; // LCD routine wants INT
  8283. bool case_light_on;
  8284. void update_case_light() {
  8285. pinMode(CASE_LIGHT_PIN, OUTPUT); // digitalWrite doesn't set the port mode
  8286. uint8_t case_light_bright = (uint8_t)case_light_brightness;
  8287. if (case_light_on) {
  8288. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) {
  8289. analogWrite(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? 255 - case_light_brightness : case_light_brightness );
  8290. }
  8291. else digitalWrite(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? LOW : HIGH );
  8292. }
  8293. else digitalWrite(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? HIGH : LOW);
  8294. }
  8295. #endif // HAS_CASE_LIGHT
  8296. /**
  8297. * M355: Turn case light on/off and set brightness
  8298. *
  8299. * P<byte> Set case light brightness (PWM pin required - ignored otherwise)
  8300. *
  8301. * S<bool> Set case light on/off
  8302. *
  8303. * When S turns on the light on a PWM pin then the current brightness level is used/restored
  8304. *
  8305. * M355 P200 S0 turns off the light & sets the brightness level
  8306. * M355 S1 turns on the light with a brightness of 200 (assuming a PWM pin)
  8307. */
  8308. inline void gcode_M355() {
  8309. #if HAS_CASE_LIGHT
  8310. uint8_t args = 0;
  8311. if (parser.seenval('P')) ++args, case_light_brightness = parser.value_byte();
  8312. if (parser.seenval('S')) ++args, case_light_on = parser.value_bool();
  8313. if (args) update_case_light();
  8314. // always report case light status
  8315. SERIAL_ECHO_START();
  8316. if (!case_light_on) {
  8317. SERIAL_ECHOLN("Case light: off");
  8318. }
  8319. else {
  8320. if (!USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) SERIAL_ECHOLN("Case light: on");
  8321. else SERIAL_ECHOLNPAIR("Case light: ", case_light_brightness);
  8322. }
  8323. #else
  8324. SERIAL_ERROR_START();
  8325. SERIAL_ERRORLNPGM(MSG_ERR_M355_NONE);
  8326. #endif // HAS_CASE_LIGHT
  8327. }
  8328. #if ENABLED(MIXING_EXTRUDER)
  8329. /**
  8330. * M163: Set a single mix factor for a mixing extruder
  8331. * This is called "weight" by some systems.
  8332. *
  8333. * S[index] The channel index to set
  8334. * P[float] The mix value
  8335. *
  8336. */
  8337. inline void gcode_M163() {
  8338. const int mix_index = parser.intval('S');
  8339. if (mix_index < MIXING_STEPPERS) {
  8340. float mix_value = parser.floatval('P');
  8341. NOLESS(mix_value, 0.0);
  8342. mixing_factor[mix_index] = RECIPROCAL(mix_value);
  8343. }
  8344. }
  8345. #if MIXING_VIRTUAL_TOOLS > 1
  8346. /**
  8347. * M164: Store the current mix factors as a virtual tool.
  8348. *
  8349. * S[index] The virtual tool to store
  8350. *
  8351. */
  8352. inline void gcode_M164() {
  8353. const int tool_index = parser.intval('S');
  8354. if (tool_index < MIXING_VIRTUAL_TOOLS) {
  8355. normalize_mix();
  8356. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  8357. mixing_virtual_tool_mix[tool_index][i] = mixing_factor[i];
  8358. }
  8359. }
  8360. #endif
  8361. #if ENABLED(DIRECT_MIXING_IN_G1)
  8362. /**
  8363. * M165: Set multiple mix factors for a mixing extruder.
  8364. * Factors that are left out will be set to 0.
  8365. * All factors together must add up to 1.0.
  8366. *
  8367. * A[factor] Mix factor for extruder stepper 1
  8368. * B[factor] Mix factor for extruder stepper 2
  8369. * C[factor] Mix factor for extruder stepper 3
  8370. * D[factor] Mix factor for extruder stepper 4
  8371. * H[factor] Mix factor for extruder stepper 5
  8372. * I[factor] Mix factor for extruder stepper 6
  8373. *
  8374. */
  8375. inline void gcode_M165() { gcode_get_mix(); }
  8376. #endif
  8377. #endif // MIXING_EXTRUDER
  8378. /**
  8379. * M999: Restart after being stopped
  8380. *
  8381. * Default behaviour is to flush the serial buffer and request
  8382. * a resend to the host starting on the last N line received.
  8383. *
  8384. * Sending "M999 S1" will resume printing without flushing the
  8385. * existing command buffer.
  8386. *
  8387. */
  8388. inline void gcode_M999() {
  8389. Running = true;
  8390. lcd_reset_alert_level();
  8391. if (parser.boolval('S')) return;
  8392. // gcode_LastN = Stopped_gcode_LastN;
  8393. FlushSerialRequestResend();
  8394. }
  8395. #if ENABLED(SWITCHING_EXTRUDER)
  8396. #if EXTRUDERS > 3
  8397. #define REQ_ANGLES 4
  8398. #define _SERVO_NR (e < 2 ? SWITCHING_EXTRUDER_SERVO_NR : SWITCHING_EXTRUDER_E23_SERVO_NR)
  8399. #else
  8400. #define REQ_ANGLES 2
  8401. #define _SERVO_NR SWITCHING_EXTRUDER_SERVO_NR
  8402. #endif
  8403. inline void move_extruder_servo(const uint8_t e) {
  8404. constexpr int16_t angles[] = SWITCHING_EXTRUDER_SERVO_ANGLES;
  8405. static_assert(COUNT(angles) == REQ_ANGLES, "SWITCHING_EXTRUDER_SERVO_ANGLES needs " STRINGIFY(REQ_ANGLES) " angles.");
  8406. stepper.synchronize();
  8407. #if EXTRUDERS & 1
  8408. if (e < EXTRUDERS - 1)
  8409. #endif
  8410. {
  8411. MOVE_SERVO(_SERVO_NR, angles[e]);
  8412. safe_delay(500);
  8413. }
  8414. }
  8415. #endif // SWITCHING_EXTRUDER
  8416. #if ENABLED(SWITCHING_NOZZLE)
  8417. inline void move_nozzle_servo(const uint8_t e) {
  8418. const int16_t angles[2] = SWITCHING_NOZZLE_SERVO_ANGLES;
  8419. stepper.synchronize();
  8420. MOVE_SERVO(SWITCHING_NOZZLE_SERVO_NR, angles[e]);
  8421. safe_delay(500);
  8422. }
  8423. #endif
  8424. inline void invalid_extruder_error(const uint8_t e) {
  8425. SERIAL_ECHO_START();
  8426. SERIAL_CHAR('T');
  8427. SERIAL_ECHO_F(e, DEC);
  8428. SERIAL_CHAR(' ');
  8429. SERIAL_ECHOLN(MSG_INVALID_EXTRUDER);
  8430. }
  8431. /**
  8432. * Perform a tool-change, which may result in moving the
  8433. * previous tool out of the way and the new tool into place.
  8434. */
  8435. void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool no_move/*=false*/) {
  8436. #if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
  8437. if (tmp_extruder >= MIXING_VIRTUAL_TOOLS)
  8438. return invalid_extruder_error(tmp_extruder);
  8439. // T0-Tnnn: Switch virtual tool by changing the mix
  8440. for (uint8_t j = 0; j < MIXING_STEPPERS; j++)
  8441. mixing_factor[j] = mixing_virtual_tool_mix[tmp_extruder][j];
  8442. #else // !MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
  8443. if (tmp_extruder >= EXTRUDERS)
  8444. return invalid_extruder_error(tmp_extruder);
  8445. #if HOTENDS > 1
  8446. const float old_feedrate_mm_s = fr_mm_s > 0.0 ? fr_mm_s : feedrate_mm_s;
  8447. feedrate_mm_s = fr_mm_s > 0.0 ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  8448. if (tmp_extruder != active_extruder) {
  8449. if (!no_move && axis_unhomed_error()) {
  8450. SERIAL_ECHOLNPGM("No move on toolchange");
  8451. no_move = true;
  8452. }
  8453. // Save current position to destination, for use later
  8454. set_destination_to_current();
  8455. #if ENABLED(DUAL_X_CARRIAGE)
  8456. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8457. if (DEBUGGING(LEVELING)) {
  8458. SERIAL_ECHOPGM("Dual X Carriage Mode ");
  8459. switch (dual_x_carriage_mode) {
  8460. case DXC_FULL_CONTROL_MODE: SERIAL_ECHOLNPGM("DXC_FULL_CONTROL_MODE"); break;
  8461. case DXC_AUTO_PARK_MODE: SERIAL_ECHOLNPGM("DXC_AUTO_PARK_MODE"); break;
  8462. case DXC_DUPLICATION_MODE: SERIAL_ECHOLNPGM("DXC_DUPLICATION_MODE"); break;
  8463. }
  8464. }
  8465. #endif
  8466. const float xhome = x_home_pos(active_extruder);
  8467. if (dual_x_carriage_mode == DXC_AUTO_PARK_MODE
  8468. && IsRunning()
  8469. && (delayed_move_time || current_position[X_AXIS] != xhome)
  8470. ) {
  8471. float raised_z = current_position[Z_AXIS] + TOOLCHANGE_PARK_ZLIFT;
  8472. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  8473. NOMORE(raised_z, soft_endstop_max[Z_AXIS]);
  8474. #endif
  8475. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8476. if (DEBUGGING(LEVELING)) {
  8477. SERIAL_ECHOLNPAIR("Raise to ", raised_z);
  8478. SERIAL_ECHOLNPAIR("MoveX to ", xhome);
  8479. SERIAL_ECHOLNPAIR("Lower to ", current_position[Z_AXIS]);
  8480. }
  8481. #endif
  8482. // Park old head: 1) raise 2) move to park position 3) lower
  8483. for (uint8_t i = 0; i < 3; i++)
  8484. planner.buffer_line(
  8485. i == 0 ? current_position[X_AXIS] : xhome,
  8486. current_position[Y_AXIS],
  8487. i == 2 ? current_position[Z_AXIS] : raised_z,
  8488. current_position[E_AXIS],
  8489. planner.max_feedrate_mm_s[i == 1 ? X_AXIS : Z_AXIS],
  8490. active_extruder
  8491. );
  8492. stepper.synchronize();
  8493. }
  8494. // Apply Y & Z extruder offset (X offset is used as home pos with Dual X)
  8495. current_position[Y_AXIS] -= hotend_offset[Y_AXIS][active_extruder] - hotend_offset[Y_AXIS][tmp_extruder];
  8496. current_position[Z_AXIS] -= hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder];
  8497. // Activate the new extruder
  8498. active_extruder = tmp_extruder;
  8499. // This function resets the max/min values - the current position may be overwritten below.
  8500. set_axis_is_at_home(X_AXIS);
  8501. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8502. if (DEBUGGING(LEVELING)) DEBUG_POS("New Extruder", current_position);
  8503. #endif
  8504. // Only when auto-parking are carriages safe to move
  8505. if (dual_x_carriage_mode != DXC_AUTO_PARK_MODE) no_move = true;
  8506. switch (dual_x_carriage_mode) {
  8507. case DXC_FULL_CONTROL_MODE:
  8508. // New current position is the position of the activated extruder
  8509. current_position[X_AXIS] = LOGICAL_X_POSITION(inactive_extruder_x_pos);
  8510. // Save the inactive extruder's position (from the old current_position)
  8511. inactive_extruder_x_pos = RAW_X_POSITION(destination[X_AXIS]);
  8512. break;
  8513. case DXC_AUTO_PARK_MODE:
  8514. // record raised toolhead position for use by unpark
  8515. COPY(raised_parked_position, current_position);
  8516. raised_parked_position[Z_AXIS] += TOOLCHANGE_UNPARK_ZLIFT;
  8517. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  8518. NOMORE(raised_parked_position[Z_AXIS], soft_endstop_max[Z_AXIS]);
  8519. #endif
  8520. active_extruder_parked = true;
  8521. delayed_move_time = 0;
  8522. break;
  8523. case DXC_DUPLICATION_MODE:
  8524. // If the new extruder is the left one, set it "parked"
  8525. // This triggers the second extruder to move into the duplication position
  8526. active_extruder_parked = (active_extruder == 0);
  8527. if (active_extruder_parked)
  8528. current_position[X_AXIS] = LOGICAL_X_POSITION(inactive_extruder_x_pos);
  8529. else
  8530. current_position[X_AXIS] = destination[X_AXIS] + duplicate_extruder_x_offset;
  8531. inactive_extruder_x_pos = RAW_X_POSITION(destination[X_AXIS]);
  8532. extruder_duplication_enabled = false;
  8533. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8534. if (DEBUGGING(LEVELING)) {
  8535. SERIAL_ECHOLNPAIR("Set inactive_extruder_x_pos=", inactive_extruder_x_pos);
  8536. SERIAL_ECHOLNPGM("Clear extruder_duplication_enabled");
  8537. }
  8538. #endif
  8539. break;
  8540. }
  8541. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8542. if (DEBUGGING(LEVELING)) {
  8543. SERIAL_ECHOLNPAIR("Active extruder parked: ", active_extruder_parked ? "yes" : "no");
  8544. DEBUG_POS("New extruder (parked)", current_position);
  8545. }
  8546. #endif
  8547. // No extra case for HAS_ABL in DUAL_X_CARRIAGE. Does that mean they don't work together?
  8548. #else // !DUAL_X_CARRIAGE
  8549. #if ENABLED(SWITCHING_NOZZLE)
  8550. #define DONT_SWITCH (SWITCHING_EXTRUDER_SERVO_NR == SWITCHING_NOZZLE_SERVO_NR)
  8551. // <0 if the new nozzle is higher, >0 if lower. A bigger raise when lower.
  8552. const float z_diff = hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder],
  8553. z_raise = 0.3 + (z_diff > 0.0 ? z_diff : 0.0);
  8554. // Always raise by some amount (destination copied from current_position earlier)
  8555. current_position[Z_AXIS] += z_raise;
  8556. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
  8557. move_nozzle_servo(tmp_extruder);
  8558. #endif
  8559. /**
  8560. * Set current_position to the position of the new nozzle.
  8561. * Offsets are based on linear distance, so we need to get
  8562. * the resulting position in coordinate space.
  8563. *
  8564. * - With grid or 3-point leveling, offset XYZ by a tilted vector
  8565. * - With mesh leveling, update Z for the new position
  8566. * - Otherwise, just use the raw linear distance
  8567. *
  8568. * Software endstops are altered here too. Consider a case where:
  8569. * E0 at X=0 ... E1 at X=10
  8570. * When we switch to E1 now X=10, but E1 can't move left.
  8571. * To express this we apply the change in XY to the software endstops.
  8572. * E1 can move farther right than E0, so the right limit is extended.
  8573. *
  8574. * Note that we don't adjust the Z software endstops. Why not?
  8575. * Consider a case where Z=0 (here) and switching to E1 makes Z=1
  8576. * because the bed is 1mm lower at the new position. As long as
  8577. * the first nozzle is out of the way, the carriage should be
  8578. * allowed to move 1mm lower. This technically "breaks" the
  8579. * Z software endstop. But this is technically correct (and
  8580. * there is no viable alternative).
  8581. */
  8582. #if ABL_PLANAR
  8583. // Offset extruder, make sure to apply the bed level rotation matrix
  8584. vector_3 tmp_offset_vec = vector_3(hotend_offset[X_AXIS][tmp_extruder],
  8585. hotend_offset[Y_AXIS][tmp_extruder],
  8586. 0),
  8587. act_offset_vec = vector_3(hotend_offset[X_AXIS][active_extruder],
  8588. hotend_offset[Y_AXIS][active_extruder],
  8589. 0),
  8590. offset_vec = tmp_offset_vec - act_offset_vec;
  8591. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8592. if (DEBUGGING(LEVELING)) {
  8593. tmp_offset_vec.debug(PSTR("tmp_offset_vec"));
  8594. act_offset_vec.debug(PSTR("act_offset_vec"));
  8595. offset_vec.debug(PSTR("offset_vec (BEFORE)"));
  8596. }
  8597. #endif
  8598. offset_vec.apply_rotation(planner.bed_level_matrix.transpose(planner.bed_level_matrix));
  8599. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8600. if (DEBUGGING(LEVELING)) offset_vec.debug(PSTR("offset_vec (AFTER)"));
  8601. #endif
  8602. // Adjustments to the current position
  8603. const float xydiff[2] = { offset_vec.x, offset_vec.y };
  8604. current_position[Z_AXIS] += offset_vec.z;
  8605. #else // !ABL_PLANAR
  8606. const float xydiff[2] = {
  8607. hotend_offset[X_AXIS][tmp_extruder] - hotend_offset[X_AXIS][active_extruder],
  8608. hotend_offset[Y_AXIS][tmp_extruder] - hotend_offset[Y_AXIS][active_extruder]
  8609. };
  8610. #if ENABLED(MESH_BED_LEVELING)
  8611. if (leveling_is_active()) {
  8612. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8613. if (DEBUGGING(LEVELING)) SERIAL_ECHOPAIR("Z before MBL: ", current_position[Z_AXIS]);
  8614. #endif
  8615. float x2 = current_position[X_AXIS] + xydiff[X_AXIS],
  8616. y2 = current_position[Y_AXIS] + xydiff[Y_AXIS],
  8617. z1 = current_position[Z_AXIS], z2 = z1;
  8618. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], z1);
  8619. planner.apply_leveling(x2, y2, z2);
  8620. current_position[Z_AXIS] += z2 - z1;
  8621. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8622. if (DEBUGGING(LEVELING))
  8623. SERIAL_ECHOLNPAIR(" after: ", current_position[Z_AXIS]);
  8624. #endif
  8625. }
  8626. #endif // MESH_BED_LEVELING
  8627. #endif // !HAS_ABL
  8628. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8629. if (DEBUGGING(LEVELING)) {
  8630. SERIAL_ECHOPAIR("Offset Tool XY by { ", xydiff[X_AXIS]);
  8631. SERIAL_ECHOPAIR(", ", xydiff[Y_AXIS]);
  8632. SERIAL_ECHOLNPGM(" }");
  8633. }
  8634. #endif
  8635. // The newly-selected extruder XY is actually at...
  8636. current_position[X_AXIS] += xydiff[X_AXIS];
  8637. current_position[Y_AXIS] += xydiff[Y_AXIS];
  8638. #if HAS_WORKSPACE_OFFSET || ENABLED(DUAL_X_CARRIAGE)
  8639. for (uint8_t i = X_AXIS; i <= Y_AXIS; i++) {
  8640. #if HAS_POSITION_SHIFT
  8641. position_shift[i] += xydiff[i];
  8642. #endif
  8643. update_software_endstops((AxisEnum)i);
  8644. }
  8645. #endif
  8646. // Set the new active extruder
  8647. active_extruder = tmp_extruder;
  8648. #endif // !DUAL_X_CARRIAGE
  8649. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8650. if (DEBUGGING(LEVELING)) DEBUG_POS("Sync After Toolchange", current_position);
  8651. #endif
  8652. // Tell the planner the new "current position"
  8653. SYNC_PLAN_POSITION_KINEMATIC();
  8654. // Move to the "old position" (move the extruder into place)
  8655. if (!no_move && IsRunning()) {
  8656. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8657. if (DEBUGGING(LEVELING)) DEBUG_POS("Move back", destination);
  8658. #endif
  8659. prepare_move_to_destination();
  8660. }
  8661. #if ENABLED(SWITCHING_NOZZLE)
  8662. // Move back down, if needed. (Including when the new tool is higher.)
  8663. if (z_raise != z_diff) {
  8664. destination[Z_AXIS] += z_diff;
  8665. feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS];
  8666. prepare_move_to_destination();
  8667. }
  8668. #endif
  8669. } // (tmp_extruder != active_extruder)
  8670. stepper.synchronize();
  8671. #if ENABLED(EXT_SOLENOID)
  8672. disable_all_solenoids();
  8673. enable_solenoid_on_active_extruder();
  8674. #endif // EXT_SOLENOID
  8675. feedrate_mm_s = old_feedrate_mm_s;
  8676. #else // HOTENDS <= 1
  8677. UNUSED(fr_mm_s);
  8678. UNUSED(no_move);
  8679. #if ENABLED(SWITCHING_EXTRUDER) && !DONT_SWITCH
  8680. stepper.synchronize();
  8681. move_extruder_servo(tmp_extruder);
  8682. #elif ENABLED(MK2_MULTIPLEXER)
  8683. if (tmp_extruder >= E_STEPPERS)
  8684. return invalid_extruder_error(tmp_extruder);
  8685. select_multiplexed_stepper(tmp_extruder);
  8686. #endif
  8687. #endif // HOTENDS <= 1
  8688. active_extruder = tmp_extruder;
  8689. SERIAL_ECHO_START();
  8690. SERIAL_ECHOLNPAIR(MSG_ACTIVE_EXTRUDER, (int)active_extruder);
  8691. #endif // !MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
  8692. }
  8693. /**
  8694. * T0-T3: Switch tool, usually switching extruders
  8695. *
  8696. * F[units/min] Set the movement feedrate
  8697. * S1 Don't move the tool in XY after change
  8698. */
  8699. inline void gcode_T(uint8_t tmp_extruder) {
  8700. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8701. if (DEBUGGING(LEVELING)) {
  8702. SERIAL_ECHOPAIR(">>> gcode_T(", tmp_extruder);
  8703. SERIAL_CHAR(')');
  8704. SERIAL_EOL();
  8705. DEBUG_POS("BEFORE", current_position);
  8706. }
  8707. #endif
  8708. #if HOTENDS == 1 || (ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1)
  8709. tool_change(tmp_extruder);
  8710. #elif HOTENDS > 1
  8711. tool_change(
  8712. tmp_extruder,
  8713. MMM_TO_MMS(parser.linearval('F')),
  8714. (tmp_extruder == active_extruder) || parser.boolval('S')
  8715. );
  8716. #endif
  8717. #if ENABLED(DEBUG_LEVELING_FEATURE)
  8718. if (DEBUGGING(LEVELING)) {
  8719. DEBUG_POS("AFTER", current_position);
  8720. SERIAL_ECHOLNPGM("<<< gcode_T");
  8721. }
  8722. #endif
  8723. }
  8724. /**
  8725. * Process a single command and dispatch it to its handler
  8726. * This is called from the main loop()
  8727. */
  8728. void process_next_command() {
  8729. char * const current_command = command_queue[cmd_queue_index_r];
  8730. if (DEBUGGING(ECHO)) {
  8731. SERIAL_ECHO_START();
  8732. SERIAL_ECHOLN(current_command);
  8733. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  8734. SERIAL_ECHOPAIR("slot:", cmd_queue_index_r);
  8735. M100_dump_routine(" Command Queue:", (const char*)command_queue, (const char*)(command_queue + sizeof(command_queue)));
  8736. #endif
  8737. }
  8738. KEEPALIVE_STATE(IN_HANDLER);
  8739. // Parse the next command in the queue
  8740. parser.parse(current_command);
  8741. // Handle a known G, M, or T
  8742. switch (parser.command_letter) {
  8743. case 'G': switch (parser.codenum) {
  8744. // G0, G1
  8745. case 0:
  8746. case 1:
  8747. #if IS_SCARA
  8748. gcode_G0_G1(parser.codenum == 0);
  8749. #else
  8750. gcode_G0_G1();
  8751. #endif
  8752. break;
  8753. // G2, G3
  8754. #if ENABLED(ARC_SUPPORT) && DISABLED(SCARA)
  8755. case 2: // G2 - CW ARC
  8756. case 3: // G3 - CCW ARC
  8757. gcode_G2_G3(parser.codenum == 2);
  8758. break;
  8759. #endif
  8760. // G4 Dwell
  8761. case 4:
  8762. gcode_G4();
  8763. break;
  8764. #if ENABLED(BEZIER_CURVE_SUPPORT)
  8765. // G5
  8766. case 5: // G5 - Cubic B_spline
  8767. gcode_G5();
  8768. break;
  8769. #endif // BEZIER_CURVE_SUPPORT
  8770. #if ENABLED(FWRETRACT)
  8771. case 10: // G10: retract
  8772. case 11: // G11: retract_recover
  8773. gcode_G10_G11(parser.codenum == 10);
  8774. break;
  8775. #endif // FWRETRACT
  8776. #if ENABLED(NOZZLE_CLEAN_FEATURE)
  8777. case 12:
  8778. gcode_G12(); // G12: Nozzle Clean
  8779. break;
  8780. #endif // NOZZLE_CLEAN_FEATURE
  8781. #if ENABLED(CNC_WORKSPACE_PLANES)
  8782. case 17: // G17: Select Plane XY
  8783. gcode_G17();
  8784. break;
  8785. case 18: // G18: Select Plane ZX
  8786. gcode_G18();
  8787. break;
  8788. case 19: // G19: Select Plane YZ
  8789. gcode_G19();
  8790. break;
  8791. #endif // CNC_WORKSPACE_PLANES
  8792. #if ENABLED(INCH_MODE_SUPPORT)
  8793. case 20: //G20: Inch Mode
  8794. gcode_G20();
  8795. break;
  8796. case 21: //G21: MM Mode
  8797. gcode_G21();
  8798. break;
  8799. #endif // INCH_MODE_SUPPORT
  8800. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
  8801. case 26: // G26: Mesh Validation Pattern generation
  8802. gcode_G26();
  8803. break;
  8804. #endif // AUTO_BED_LEVELING_UBL
  8805. #if ENABLED(NOZZLE_PARK_FEATURE)
  8806. case 27: // G27: Nozzle Park
  8807. gcode_G27();
  8808. break;
  8809. #endif // NOZZLE_PARK_FEATURE
  8810. case 28: // G28: Home all axes, one at a time
  8811. gcode_G28(false);
  8812. break;
  8813. #if HAS_LEVELING
  8814. case 29: // G29 Detailed Z probe, probes the bed at 3 or more points,
  8815. // or provides access to the UBL System if enabled.
  8816. gcode_G29();
  8817. break;
  8818. #endif // HAS_LEVELING
  8819. #if HAS_BED_PROBE
  8820. case 30: // G30 Single Z probe
  8821. gcode_G30();
  8822. break;
  8823. #if ENABLED(Z_PROBE_SLED)
  8824. case 31: // G31: dock the sled
  8825. gcode_G31();
  8826. break;
  8827. case 32: // G32: undock the sled
  8828. gcode_G32();
  8829. break;
  8830. #endif // Z_PROBE_SLED
  8831. #if ENABLED(DELTA_AUTO_CALIBRATION)
  8832. case 33: // G33: Delta Auto-Calibration
  8833. gcode_G33();
  8834. break;
  8835. #endif // DELTA_AUTO_CALIBRATION
  8836. #endif // HAS_BED_PROBE
  8837. #if ENABLED(G38_PROBE_TARGET)
  8838. case 38: // G38.2 & G38.3
  8839. if (subcode == 2 || subcode == 3)
  8840. gcode_G38(subcode == 2);
  8841. break;
  8842. #endif
  8843. case 90: // G90
  8844. relative_mode = false;
  8845. break;
  8846. case 91: // G91
  8847. relative_mode = true;
  8848. break;
  8849. case 92: // G92
  8850. gcode_G92();
  8851. break;
  8852. #if ENABLED(AUTO_BED_LEVELING_BILINEAR) || ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(MESH_BED_LEVELING)
  8853. case 42:
  8854. gcode_G42();
  8855. break;
  8856. #endif
  8857. #if ENABLED(DEBUG_GCODE_PARSER)
  8858. case 800:
  8859. parser.debug(); // GCode Parser Test for G
  8860. break;
  8861. #endif
  8862. }
  8863. break;
  8864. case 'M': switch (parser.codenum) {
  8865. #if HAS_RESUME_CONTINUE
  8866. case 0: // M0: Unconditional stop - Wait for user button press on LCD
  8867. case 1: // M1: Conditional stop - Wait for user button press on LCD
  8868. gcode_M0_M1();
  8869. break;
  8870. #endif // ULTIPANEL
  8871. #if ENABLED(SPINDLE_LASER_ENABLE)
  8872. case 3:
  8873. gcode_M3_M4(true); // M3: turn spindle/laser on, set laser/spindle power/speed, set rotation direction CW
  8874. break; // synchronizes with movement commands
  8875. case 4:
  8876. gcode_M3_M4(false); // M4: turn spindle/laser on, set laser/spindle power/speed, set rotation direction CCW
  8877. break; // synchronizes with movement commands
  8878. case 5:
  8879. gcode_M5(); // M5 - turn spindle/laser off
  8880. break; // synchronizes with movement commands
  8881. #endif
  8882. case 17: // M17: Enable all stepper motors
  8883. gcode_M17();
  8884. break;
  8885. #if ENABLED(SDSUPPORT)
  8886. case 20: // M20: list SD card
  8887. gcode_M20(); break;
  8888. case 21: // M21: init SD card
  8889. gcode_M21(); break;
  8890. case 22: // M22: release SD card
  8891. gcode_M22(); break;
  8892. case 23: // M23: Select file
  8893. gcode_M23(); break;
  8894. case 24: // M24: Start SD print
  8895. gcode_M24(); break;
  8896. case 25: // M25: Pause SD print
  8897. gcode_M25(); break;
  8898. case 26: // M26: Set SD index
  8899. gcode_M26(); break;
  8900. case 27: // M27: Get SD status
  8901. gcode_M27(); break;
  8902. case 28: // M28: Start SD write
  8903. gcode_M28(); break;
  8904. case 29: // M29: Stop SD write
  8905. gcode_M29(); break;
  8906. case 30: // M30 <filename> Delete File
  8907. gcode_M30(); break;
  8908. case 32: // M32: Select file and start SD print
  8909. gcode_M32(); break;
  8910. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  8911. case 33: // M33: Get the long full path to a file or folder
  8912. gcode_M33(); break;
  8913. #endif
  8914. #if ENABLED(SDCARD_SORT_ALPHA) && ENABLED(SDSORT_GCODE)
  8915. case 34: //M34 - Set SD card sorting options
  8916. gcode_M34(); break;
  8917. #endif // SDCARD_SORT_ALPHA && SDSORT_GCODE
  8918. case 928: // M928: Start SD write
  8919. gcode_M928(); break;
  8920. #endif // SDSUPPORT
  8921. case 31: // M31: Report time since the start of SD print or last M109
  8922. gcode_M31(); break;
  8923. case 42: // M42: Change pin state
  8924. gcode_M42(); break;
  8925. #if ENABLED(PINS_DEBUGGING)
  8926. case 43: // M43: Read pin state
  8927. gcode_M43(); break;
  8928. #endif
  8929. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  8930. case 48: // M48: Z probe repeatability test
  8931. gcode_M48();
  8932. break;
  8933. #endif // Z_MIN_PROBE_REPEATABILITY_TEST
  8934. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
  8935. case 49: // M49: Turn on or off G26 debug flag for verbose output
  8936. gcode_M49();
  8937. break;
  8938. #endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION
  8939. case 75: // M75: Start print timer
  8940. gcode_M75(); break;
  8941. case 76: // M76: Pause print timer
  8942. gcode_M76(); break;
  8943. case 77: // M77: Stop print timer
  8944. gcode_M77(); break;
  8945. #if ENABLED(PRINTCOUNTER)
  8946. case 78: // M78: Show print statistics
  8947. gcode_M78(); break;
  8948. #endif
  8949. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  8950. case 100: // M100: Free Memory Report
  8951. gcode_M100();
  8952. break;
  8953. #endif
  8954. case 104: // M104: Set hot end temperature
  8955. gcode_M104();
  8956. break;
  8957. case 110: // M110: Set Current Line Number
  8958. gcode_M110();
  8959. break;
  8960. case 111: // M111: Set debug level
  8961. gcode_M111();
  8962. break;
  8963. #if DISABLED(EMERGENCY_PARSER)
  8964. case 108: // M108: Cancel Waiting
  8965. gcode_M108();
  8966. break;
  8967. case 112: // M112: Emergency Stop
  8968. gcode_M112();
  8969. break;
  8970. case 410: // M410 quickstop - Abort all the planned moves.
  8971. gcode_M410();
  8972. break;
  8973. #endif
  8974. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  8975. case 113: // M113: Set Host Keepalive interval
  8976. gcode_M113();
  8977. break;
  8978. #endif
  8979. case 140: // M140: Set bed temperature
  8980. gcode_M140();
  8981. break;
  8982. case 105: // M105: Report current temperature
  8983. gcode_M105();
  8984. KEEPALIVE_STATE(NOT_BUSY);
  8985. return; // "ok" already printed
  8986. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  8987. case 155: // M155: Set temperature auto-report interval
  8988. gcode_M155();
  8989. break;
  8990. #endif
  8991. case 109: // M109: Wait for hotend temperature to reach target
  8992. gcode_M109();
  8993. break;
  8994. #if HAS_TEMP_BED
  8995. case 190: // M190: Wait for bed temperature to reach target
  8996. gcode_M190();
  8997. break;
  8998. #endif // HAS_TEMP_BED
  8999. #if FAN_COUNT > 0
  9000. case 106: // M106: Fan On
  9001. gcode_M106();
  9002. break;
  9003. case 107: // M107: Fan Off
  9004. gcode_M107();
  9005. break;
  9006. #endif // FAN_COUNT > 0
  9007. #if ENABLED(PARK_HEAD_ON_PAUSE)
  9008. case 125: // M125: Store current position and move to filament change position
  9009. gcode_M125(); break;
  9010. #endif
  9011. #if ENABLED(BARICUDA)
  9012. // PWM for HEATER_1_PIN
  9013. #if HAS_HEATER_1
  9014. case 126: // M126: valve open
  9015. gcode_M126();
  9016. break;
  9017. case 127: // M127: valve closed
  9018. gcode_M127();
  9019. break;
  9020. #endif // HAS_HEATER_1
  9021. // PWM for HEATER_2_PIN
  9022. #if HAS_HEATER_2
  9023. case 128: // M128: valve open
  9024. gcode_M128();
  9025. break;
  9026. case 129: // M129: valve closed
  9027. gcode_M129();
  9028. break;
  9029. #endif // HAS_HEATER_2
  9030. #endif // BARICUDA
  9031. #if HAS_POWER_SWITCH
  9032. case 80: // M80: Turn on Power Supply
  9033. gcode_M80();
  9034. break;
  9035. #endif // HAS_POWER_SWITCH
  9036. case 81: // M81: Turn off Power, including Power Supply, if possible
  9037. gcode_M81();
  9038. break;
  9039. case 82: // M82: Set E axis normal mode (same as other axes)
  9040. gcode_M82();
  9041. break;
  9042. case 83: // M83: Set E axis relative mode
  9043. gcode_M83();
  9044. break;
  9045. case 18: // M18 => M84
  9046. case 84: // M84: Disable all steppers or set timeout
  9047. gcode_M18_M84();
  9048. break;
  9049. case 85: // M85: Set inactivity stepper shutdown timeout
  9050. gcode_M85();
  9051. break;
  9052. case 92: // M92: Set the steps-per-unit for one or more axes
  9053. gcode_M92();
  9054. break;
  9055. case 114: // M114: Report current position
  9056. gcode_M114();
  9057. break;
  9058. case 115: // M115: Report capabilities
  9059. gcode_M115();
  9060. break;
  9061. case 117: // M117: Set LCD message text, if possible
  9062. gcode_M117();
  9063. break;
  9064. case 118: // M118: Display a message in the host console
  9065. gcode_M118();
  9066. break;
  9067. case 119: // M119: Report endstop states
  9068. gcode_M119();
  9069. break;
  9070. case 120: // M120: Enable endstops
  9071. gcode_M120();
  9072. break;
  9073. case 121: // M121: Disable endstops
  9074. gcode_M121();
  9075. break;
  9076. #if ENABLED(ULTIPANEL)
  9077. case 145: // M145: Set material heatup parameters
  9078. gcode_M145();
  9079. break;
  9080. #endif
  9081. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  9082. case 149: // M149: Set temperature units
  9083. gcode_M149();
  9084. break;
  9085. #endif
  9086. #if HAS_COLOR_LEDS
  9087. case 150: // M150: Set Status LED Color
  9088. gcode_M150();
  9089. break;
  9090. #endif // HAS_COLOR_LEDS
  9091. #if ENABLED(MIXING_EXTRUDER)
  9092. case 163: // M163: Set a component weight for mixing extruder
  9093. gcode_M163();
  9094. break;
  9095. #if MIXING_VIRTUAL_TOOLS > 1
  9096. case 164: // M164: Save current mix as a virtual extruder
  9097. gcode_M164();
  9098. break;
  9099. #endif
  9100. #if ENABLED(DIRECT_MIXING_IN_G1)
  9101. case 165: // M165: Set multiple mix weights
  9102. gcode_M165();
  9103. break;
  9104. #endif
  9105. #endif
  9106. case 200: // M200: Set filament diameter, E to cubic units
  9107. gcode_M200();
  9108. break;
  9109. case 201: // M201: Set max acceleration for print moves (units/s^2)
  9110. gcode_M201();
  9111. break;
  9112. #if 0 // Not used for Sprinter/grbl gen6
  9113. case 202: // M202
  9114. gcode_M202();
  9115. break;
  9116. #endif
  9117. case 203: // M203: Set max feedrate (units/sec)
  9118. gcode_M203();
  9119. break;
  9120. case 204: // M204: Set acceleration
  9121. gcode_M204();
  9122. break;
  9123. case 205: //M205: Set advanced settings
  9124. gcode_M205();
  9125. break;
  9126. #if HAS_M206_COMMAND
  9127. case 206: // M206: Set home offsets
  9128. gcode_M206();
  9129. break;
  9130. #endif
  9131. #if ENABLED(DELTA)
  9132. case 665: // M665: Set delta configurations
  9133. gcode_M665();
  9134. break;
  9135. #endif
  9136. #if ENABLED(DELTA) || ENABLED(Z_DUAL_ENDSTOPS)
  9137. case 666: // M666: Set delta or dual endstop adjustment
  9138. gcode_M666();
  9139. break;
  9140. #endif
  9141. #if ENABLED(FWRETRACT)
  9142. case 207: // M207: Set Retract Length, Feedrate, and Z lift
  9143. gcode_M207();
  9144. break;
  9145. case 208: // M208: Set Recover (unretract) Additional Length and Feedrate
  9146. gcode_M208();
  9147. break;
  9148. case 209: // M209: Turn Automatic Retract Detection on/off
  9149. gcode_M209();
  9150. break;
  9151. #endif // FWRETRACT
  9152. case 211: // M211: Enable, Disable, and/or Report software endstops
  9153. gcode_M211();
  9154. break;
  9155. #if HOTENDS > 1
  9156. case 218: // M218: Set a tool offset
  9157. gcode_M218();
  9158. break;
  9159. #endif
  9160. case 220: // M220: Set Feedrate Percentage: S<percent> ("FR" on your LCD)
  9161. gcode_M220();
  9162. break;
  9163. case 221: // M221: Set Flow Percentage
  9164. gcode_M221();
  9165. break;
  9166. case 226: // M226: Wait until a pin reaches a state
  9167. gcode_M226();
  9168. break;
  9169. #if HAS_SERVOS
  9170. case 280: // M280: Set servo position absolute
  9171. gcode_M280();
  9172. break;
  9173. #endif // HAS_SERVOS
  9174. #if HAS_BUZZER
  9175. case 300: // M300: Play beep tone
  9176. gcode_M300();
  9177. break;
  9178. #endif // HAS_BUZZER
  9179. #if ENABLED(PIDTEMP)
  9180. case 301: // M301: Set hotend PID parameters
  9181. gcode_M301();
  9182. break;
  9183. #endif // PIDTEMP
  9184. #if ENABLED(PIDTEMPBED)
  9185. case 304: // M304: Set bed PID parameters
  9186. gcode_M304();
  9187. break;
  9188. #endif // PIDTEMPBED
  9189. #if defined(CHDK) || HAS_PHOTOGRAPH
  9190. case 240: // M240: Trigger a camera by emulating a Canon RC-1 : http://www.doc-diy.net/photo/rc-1_hacked/
  9191. gcode_M240();
  9192. break;
  9193. #endif // CHDK || PHOTOGRAPH_PIN
  9194. #if HAS_LCD_CONTRAST
  9195. case 250: // M250: Set LCD contrast
  9196. gcode_M250();
  9197. break;
  9198. #endif // HAS_LCD_CONTRAST
  9199. #if ENABLED(EXPERIMENTAL_I2CBUS)
  9200. case 260: // M260: Send data to an i2c slave
  9201. gcode_M260();
  9202. break;
  9203. case 261: // M261: Request data from an i2c slave
  9204. gcode_M261();
  9205. break;
  9206. #endif // EXPERIMENTAL_I2CBUS
  9207. #if ENABLED(PREVENT_COLD_EXTRUSION)
  9208. case 302: // M302: Allow cold extrudes (set the minimum extrude temperature)
  9209. gcode_M302();
  9210. break;
  9211. #endif // PREVENT_COLD_EXTRUSION
  9212. case 303: // M303: PID autotune
  9213. gcode_M303();
  9214. break;
  9215. #if ENABLED(MORGAN_SCARA)
  9216. case 360: // M360: SCARA Theta pos1
  9217. if (gcode_M360()) return;
  9218. break;
  9219. case 361: // M361: SCARA Theta pos2
  9220. if (gcode_M361()) return;
  9221. break;
  9222. case 362: // M362: SCARA Psi pos1
  9223. if (gcode_M362()) return;
  9224. break;
  9225. case 363: // M363: SCARA Psi pos2
  9226. if (gcode_M363()) return;
  9227. break;
  9228. case 364: // M364: SCARA Psi pos3 (90 deg to Theta)
  9229. if (gcode_M364()) return;
  9230. break;
  9231. #endif // SCARA
  9232. case 400: // M400: Finish all moves
  9233. gcode_M400();
  9234. break;
  9235. #if HAS_BED_PROBE
  9236. case 401: // M401: Deploy probe
  9237. gcode_M401();
  9238. break;
  9239. case 402: // M402: Stow probe
  9240. gcode_M402();
  9241. break;
  9242. #endif // HAS_BED_PROBE
  9243. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  9244. case 404: // M404: Enter the nominal filament width (3mm, 1.75mm ) N<3.0> or display nominal filament width
  9245. gcode_M404();
  9246. break;
  9247. case 405: // M405: Turn on filament sensor for control
  9248. gcode_M405();
  9249. break;
  9250. case 406: // M406: Turn off filament sensor for control
  9251. gcode_M406();
  9252. break;
  9253. case 407: // M407: Display measured filament diameter
  9254. gcode_M407();
  9255. break;
  9256. #endif // FILAMENT_WIDTH_SENSOR
  9257. #if HAS_LEVELING
  9258. case 420: // M420: Enable/Disable Bed Leveling
  9259. gcode_M420();
  9260. break;
  9261. #endif
  9262. #if ENABLED(MESH_BED_LEVELING) || ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(AUTO_BED_LEVELING_BILINEAR)
  9263. case 421: // M421: Set a Mesh Bed Leveling Z coordinate
  9264. gcode_M421();
  9265. break;
  9266. #endif
  9267. #if HAS_M206_COMMAND
  9268. case 428: // M428: Apply current_position to home_offset
  9269. gcode_M428();
  9270. break;
  9271. #endif
  9272. case 500: // M500: Store settings in EEPROM
  9273. gcode_M500();
  9274. break;
  9275. case 501: // M501: Read settings from EEPROM
  9276. gcode_M501();
  9277. break;
  9278. case 502: // M502: Revert to default settings
  9279. gcode_M502();
  9280. break;
  9281. #if DISABLED(DISABLE_M503)
  9282. case 503: // M503: print settings currently in memory
  9283. gcode_M503();
  9284. break;
  9285. #endif
  9286. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  9287. case 540: // M540: Set abort on endstop hit for SD printing
  9288. gcode_M540();
  9289. break;
  9290. #endif
  9291. #if HAS_BED_PROBE
  9292. case 851: // M851: Set Z Probe Z Offset
  9293. gcode_M851();
  9294. break;
  9295. #endif // HAS_BED_PROBE
  9296. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  9297. case 600: // M600: Pause for filament change
  9298. gcode_M600();
  9299. break;
  9300. #endif // ADVANCED_PAUSE_FEATURE
  9301. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  9302. case 605: // M605: Set Dual X Carriage movement mode
  9303. gcode_M605();
  9304. break;
  9305. #endif // DUAL_X_CARRIAGE
  9306. #if ENABLED(MK2_MULTIPLEXER)
  9307. case 702: // M702: Unload all extruders
  9308. gcode_M702();
  9309. break;
  9310. #endif
  9311. #if ENABLED(LIN_ADVANCE)
  9312. case 900: // M900: Set advance K factor.
  9313. gcode_M900();
  9314. break;
  9315. #endif
  9316. #if ENABLED(HAVE_TMC2130)
  9317. case 906: // M906: Set motor current in milliamps using axis codes X, Y, Z, E
  9318. gcode_M906();
  9319. break;
  9320. #endif
  9321. case 907: // M907: Set digital trimpot motor current using axis codes.
  9322. gcode_M907();
  9323. break;
  9324. #if HAS_DIGIPOTSS || ENABLED(DAC_STEPPER_CURRENT)
  9325. case 908: // M908: Control digital trimpot directly.
  9326. gcode_M908();
  9327. break;
  9328. #if ENABLED(DAC_STEPPER_CURRENT) // As with Printrbot RevF
  9329. case 909: // M909: Print digipot/DAC current value
  9330. gcode_M909();
  9331. break;
  9332. case 910: // M910: Commit digipot/DAC value to external EEPROM
  9333. gcode_M910();
  9334. break;
  9335. #endif
  9336. #endif // HAS_DIGIPOTSS || DAC_STEPPER_CURRENT
  9337. #if ENABLED(HAVE_TMC2130)
  9338. case 911: // M911: Report TMC2130 prewarn triggered flags
  9339. gcode_M911();
  9340. break;
  9341. case 912: // M911: Clear TMC2130 prewarn triggered flags
  9342. gcode_M912();
  9343. break;
  9344. #if ENABLED(HYBRID_THRESHOLD)
  9345. case 913: // M913: Set HYBRID_THRESHOLD speed.
  9346. gcode_M913();
  9347. break;
  9348. #endif
  9349. #if ENABLED(SENSORLESS_HOMING)
  9350. case 914: // M914: Set SENSORLESS_HOMING sensitivity.
  9351. gcode_M914();
  9352. break;
  9353. #endif
  9354. #endif
  9355. #if HAS_MICROSTEPS
  9356. case 350: // M350: Set microstepping mode. Warning: Steps per unit remains unchanged. S code sets stepping mode for all drivers.
  9357. gcode_M350();
  9358. break;
  9359. case 351: // M351: Toggle MS1 MS2 pins directly, S# determines MS1 or MS2, X# sets the pin high/low.
  9360. gcode_M351();
  9361. break;
  9362. #endif // HAS_MICROSTEPS
  9363. case 355: // M355 set case light brightness
  9364. gcode_M355();
  9365. break;
  9366. #if ENABLED(DEBUG_GCODE_PARSER)
  9367. case 800:
  9368. parser.debug(); // GCode Parser Test for M
  9369. break;
  9370. #endif
  9371. #if ENABLED(I2C_POSITION_ENCODERS)
  9372. case 860: // M860 Report encoder module position
  9373. gcode_M860();
  9374. break;
  9375. case 861: // M861 Report encoder module status
  9376. gcode_M861();
  9377. break;
  9378. case 862: // M862 Perform axis test
  9379. gcode_M862();
  9380. break;
  9381. case 863: // M863 Calibrate steps/mm
  9382. gcode_M863();
  9383. break;
  9384. case 864: // M864 Change module address
  9385. gcode_M864();
  9386. break;
  9387. case 865: // M865 Check module firmware version
  9388. gcode_M865();
  9389. break;
  9390. case 866: // M866 Report axis error count
  9391. gcode_M866();
  9392. break;
  9393. case 867: // M867 Toggle error correction
  9394. gcode_M867();
  9395. break;
  9396. case 868: // M868 Set error correction threshold
  9397. gcode_M868();
  9398. break;
  9399. case 869: // M869 Report axis error
  9400. gcode_M869();
  9401. break;
  9402. #endif // I2C_POSITION_ENCODERS
  9403. case 999: // M999: Restart after being Stopped
  9404. gcode_M999();
  9405. break;
  9406. }
  9407. break;
  9408. case 'T':
  9409. gcode_T(parser.codenum);
  9410. break;
  9411. default: parser.unknown_command_error();
  9412. }
  9413. KEEPALIVE_STATE(NOT_BUSY);
  9414. ok_to_send();
  9415. }
  9416. /**
  9417. * Send a "Resend: nnn" message to the host to
  9418. * indicate that a command needs to be re-sent.
  9419. */
  9420. void FlushSerialRequestResend() {
  9421. //char command_queue[cmd_queue_index_r][100]="Resend:";
  9422. MYSERIAL.flush();
  9423. SERIAL_PROTOCOLPGM(MSG_RESEND);
  9424. SERIAL_PROTOCOLLN(gcode_LastN + 1);
  9425. ok_to_send();
  9426. }
  9427. /**
  9428. * Send an "ok" message to the host, indicating
  9429. * that a command was successfully processed.
  9430. *
  9431. * If ADVANCED_OK is enabled also include:
  9432. * N<int> Line number of the command, if any
  9433. * P<int> Planner space remaining
  9434. * B<int> Block queue space remaining
  9435. */
  9436. void ok_to_send() {
  9437. refresh_cmd_timeout();
  9438. if (!send_ok[cmd_queue_index_r]) return;
  9439. SERIAL_PROTOCOLPGM(MSG_OK);
  9440. #if ENABLED(ADVANCED_OK)
  9441. char* p = command_queue[cmd_queue_index_r];
  9442. if (*p == 'N') {
  9443. SERIAL_PROTOCOL(' ');
  9444. SERIAL_ECHO(*p++);
  9445. while (NUMERIC_SIGNED(*p))
  9446. SERIAL_ECHO(*p++);
  9447. }
  9448. SERIAL_PROTOCOLPGM(" P"); SERIAL_PROTOCOL(int(BLOCK_BUFFER_SIZE - planner.movesplanned() - 1));
  9449. SERIAL_PROTOCOLPGM(" B"); SERIAL_PROTOCOL(BUFSIZE - commands_in_queue);
  9450. #endif
  9451. SERIAL_EOL();
  9452. }
  9453. #if HAS_SOFTWARE_ENDSTOPS
  9454. /**
  9455. * Constrain the given coordinates to the software endstops.
  9456. */
  9457. // NOTE: This makes no sense for delta beds other than Z-axis.
  9458. // For delta the X/Y would need to be clamped at
  9459. // DELTA_PRINTABLE_RADIUS from center of bed, but delta
  9460. // now enforces is_position_reachable for X/Y regardless
  9461. // of HAS_SOFTWARE_ENDSTOPS, so that enforcement would be
  9462. // redundant here. Probably should #ifdef out the X/Y
  9463. // axis clamps here for delta and just leave the Z clamp.
  9464. void clamp_to_software_endstops(float target[XYZ]) {
  9465. if (!soft_endstops_enabled) return;
  9466. #if ENABLED(MIN_SOFTWARE_ENDSTOPS)
  9467. NOLESS(target[X_AXIS], soft_endstop_min[X_AXIS]);
  9468. NOLESS(target[Y_AXIS], soft_endstop_min[Y_AXIS]);
  9469. NOLESS(target[Z_AXIS], soft_endstop_min[Z_AXIS]);
  9470. #endif
  9471. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  9472. NOMORE(target[X_AXIS], soft_endstop_max[X_AXIS]);
  9473. NOMORE(target[Y_AXIS], soft_endstop_max[Y_AXIS]);
  9474. NOMORE(target[Z_AXIS], soft_endstop_max[Z_AXIS]);
  9475. #endif
  9476. }
  9477. #endif
  9478. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  9479. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  9480. #define ABL_BG_SPACING(A) bilinear_grid_spacing_virt[A]
  9481. #define ABL_BG_FACTOR(A) bilinear_grid_factor_virt[A]
  9482. #define ABL_BG_POINTS_X ABL_GRID_POINTS_VIRT_X
  9483. #define ABL_BG_POINTS_Y ABL_GRID_POINTS_VIRT_Y
  9484. #define ABL_BG_GRID(X,Y) z_values_virt[X][Y]
  9485. #else
  9486. #define ABL_BG_SPACING(A) bilinear_grid_spacing[A]
  9487. #define ABL_BG_FACTOR(A) bilinear_grid_factor[A]
  9488. #define ABL_BG_POINTS_X GRID_MAX_POINTS_X
  9489. #define ABL_BG_POINTS_Y GRID_MAX_POINTS_Y
  9490. #define ABL_BG_GRID(X,Y) z_values[X][Y]
  9491. #endif
  9492. // Get the Z adjustment for non-linear bed leveling
  9493. float bilinear_z_offset(const float logical[XYZ]) {
  9494. static float z1, d2, z3, d4, L, D, ratio_x, ratio_y,
  9495. last_x = -999.999, last_y = -999.999;
  9496. // Whole units for the grid line indices. Constrained within bounds.
  9497. static int8_t gridx, gridy, nextx, nexty,
  9498. last_gridx = -99, last_gridy = -99;
  9499. // XY relative to the probed area
  9500. const float x = RAW_X_POSITION(logical[X_AXIS]) - bilinear_start[X_AXIS],
  9501. y = RAW_Y_POSITION(logical[Y_AXIS]) - bilinear_start[Y_AXIS];
  9502. #if ENABLED(EXTRAPOLATE_BEYOND_GRID)
  9503. // Keep using the last grid box
  9504. #define FAR_EDGE_OR_BOX 2
  9505. #else
  9506. // Just use the grid far edge
  9507. #define FAR_EDGE_OR_BOX 1
  9508. #endif
  9509. if (last_x != x) {
  9510. last_x = x;
  9511. ratio_x = x * ABL_BG_FACTOR(X_AXIS);
  9512. const float gx = constrain(FLOOR(ratio_x), 0, ABL_BG_POINTS_X - FAR_EDGE_OR_BOX);
  9513. ratio_x -= gx; // Subtract whole to get the ratio within the grid box
  9514. #if DISABLED(EXTRAPOLATE_BEYOND_GRID)
  9515. // Beyond the grid maintain height at grid edges
  9516. NOLESS(ratio_x, 0); // Never < 0.0. (> 1.0 is ok when nextx==gridx.)
  9517. #endif
  9518. gridx = gx;
  9519. nextx = min(gridx + 1, ABL_BG_POINTS_X - 1);
  9520. }
  9521. if (last_y != y || last_gridx != gridx) {
  9522. if (last_y != y) {
  9523. last_y = y;
  9524. ratio_y = y * ABL_BG_FACTOR(Y_AXIS);
  9525. const float gy = constrain(FLOOR(ratio_y), 0, ABL_BG_POINTS_Y - FAR_EDGE_OR_BOX);
  9526. ratio_y -= gy;
  9527. #if DISABLED(EXTRAPOLATE_BEYOND_GRID)
  9528. // Beyond the grid maintain height at grid edges
  9529. NOLESS(ratio_y, 0); // Never < 0.0. (> 1.0 is ok when nexty==gridy.)
  9530. #endif
  9531. gridy = gy;
  9532. nexty = min(gridy + 1, ABL_BG_POINTS_Y - 1);
  9533. }
  9534. if (last_gridx != gridx || last_gridy != gridy) {
  9535. last_gridx = gridx;
  9536. last_gridy = gridy;
  9537. // Z at the box corners
  9538. z1 = ABL_BG_GRID(gridx, gridy); // left-front
  9539. d2 = ABL_BG_GRID(gridx, nexty) - z1; // left-back (delta)
  9540. z3 = ABL_BG_GRID(nextx, gridy); // right-front
  9541. d4 = ABL_BG_GRID(nextx, nexty) - z3; // right-back (delta)
  9542. }
  9543. // Bilinear interpolate. Needed since y or gridx has changed.
  9544. L = z1 + d2 * ratio_y; // Linear interp. LF -> LB
  9545. const float R = z3 + d4 * ratio_y; // Linear interp. RF -> RB
  9546. D = R - L;
  9547. }
  9548. const float offset = L + ratio_x * D; // the offset almost always changes
  9549. /*
  9550. static float last_offset = 0;
  9551. if (FABS(last_offset - offset) > 0.2) {
  9552. SERIAL_ECHOPGM("Sudden Shift at ");
  9553. SERIAL_ECHOPAIR("x=", x);
  9554. SERIAL_ECHOPAIR(" / ", bilinear_grid_spacing[X_AXIS]);
  9555. SERIAL_ECHOLNPAIR(" -> gridx=", gridx);
  9556. SERIAL_ECHOPAIR(" y=", y);
  9557. SERIAL_ECHOPAIR(" / ", bilinear_grid_spacing[Y_AXIS]);
  9558. SERIAL_ECHOLNPAIR(" -> gridy=", gridy);
  9559. SERIAL_ECHOPAIR(" ratio_x=", ratio_x);
  9560. SERIAL_ECHOLNPAIR(" ratio_y=", ratio_y);
  9561. SERIAL_ECHOPAIR(" z1=", z1);
  9562. SERIAL_ECHOPAIR(" z2=", z2);
  9563. SERIAL_ECHOPAIR(" z3=", z3);
  9564. SERIAL_ECHOLNPAIR(" z4=", z4);
  9565. SERIAL_ECHOPAIR(" L=", L);
  9566. SERIAL_ECHOPAIR(" R=", R);
  9567. SERIAL_ECHOLNPAIR(" offset=", offset);
  9568. }
  9569. last_offset = offset;
  9570. //*/
  9571. return offset;
  9572. }
  9573. #endif // AUTO_BED_LEVELING_BILINEAR
  9574. #if ENABLED(DELTA)
  9575. /**
  9576. * Recalculate factors used for delta kinematics whenever
  9577. * settings have been changed (e.g., by M665).
  9578. */
  9579. void recalc_delta_settings(float radius, float diagonal_rod) {
  9580. const float trt[ABC] = DELTA_RADIUS_TRIM_TOWER,
  9581. drt[ABC] = DELTA_DIAGONAL_ROD_TRIM_TOWER;
  9582. delta_tower[A_AXIS][X_AXIS] = cos(RADIANS(210 + delta_tower_angle_trim[A_AXIS])) * (radius + trt[A_AXIS]); // front left tower
  9583. delta_tower[A_AXIS][Y_AXIS] = sin(RADIANS(210 + delta_tower_angle_trim[A_AXIS])) * (radius + trt[A_AXIS]);
  9584. delta_tower[B_AXIS][X_AXIS] = cos(RADIANS(330 + delta_tower_angle_trim[B_AXIS])) * (radius + trt[B_AXIS]); // front right tower
  9585. delta_tower[B_AXIS][Y_AXIS] = sin(RADIANS(330 + delta_tower_angle_trim[B_AXIS])) * (radius + trt[B_AXIS]);
  9586. delta_tower[C_AXIS][X_AXIS] = 0.0; // back middle tower
  9587. delta_tower[C_AXIS][Y_AXIS] = (radius + trt[C_AXIS]);
  9588. delta_diagonal_rod_2_tower[A_AXIS] = sq(diagonal_rod + drt[A_AXIS]);
  9589. delta_diagonal_rod_2_tower[B_AXIS] = sq(diagonal_rod + drt[B_AXIS]);
  9590. delta_diagonal_rod_2_tower[C_AXIS] = sq(diagonal_rod + drt[C_AXIS]);
  9591. }
  9592. #if ENABLED(DELTA_FAST_SQRT)
  9593. /**
  9594. * Fast inverse sqrt from Quake III Arena
  9595. * See: https://en.wikipedia.org/wiki/Fast_inverse_square_root
  9596. */
  9597. float Q_rsqrt(float number) {
  9598. long i;
  9599. float x2, y;
  9600. const float threehalfs = 1.5f;
  9601. x2 = number * 0.5f;
  9602. y = number;
  9603. i = * ( long * ) &y; // evil floating point bit level hacking
  9604. i = 0x5F3759DF - ( i >> 1 ); // what the f***?
  9605. y = * ( float * ) &i;
  9606. y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
  9607. // y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
  9608. return y;
  9609. }
  9610. #define _SQRT(n) (1.0f / Q_rsqrt(n))
  9611. #else
  9612. #define _SQRT(n) SQRT(n)
  9613. #endif
  9614. /**
  9615. * Delta Inverse Kinematics
  9616. *
  9617. * Calculate the tower positions for a given logical
  9618. * position, storing the result in the delta[] array.
  9619. *
  9620. * This is an expensive calculation, requiring 3 square
  9621. * roots per segmented linear move, and strains the limits
  9622. * of a Mega2560 with a Graphical Display.
  9623. *
  9624. * Suggested optimizations include:
  9625. *
  9626. * - Disable the home_offset (M206) and/or position_shift (G92)
  9627. * features to remove up to 12 float additions.
  9628. *
  9629. * - Use a fast-inverse-sqrt function and add the reciprocal.
  9630. * (see above)
  9631. */
  9632. // Macro to obtain the Z position of an individual tower
  9633. #define DELTA_Z(T) raw[Z_AXIS] + _SQRT( \
  9634. delta_diagonal_rod_2_tower[T] - HYPOT2( \
  9635. delta_tower[T][X_AXIS] - raw[X_AXIS], \
  9636. delta_tower[T][Y_AXIS] - raw[Y_AXIS] \
  9637. ) \
  9638. )
  9639. #define DELTA_RAW_IK() do { \
  9640. delta[A_AXIS] = DELTA_Z(A_AXIS); \
  9641. delta[B_AXIS] = DELTA_Z(B_AXIS); \
  9642. delta[C_AXIS] = DELTA_Z(C_AXIS); \
  9643. }while(0)
  9644. #define DELTA_LOGICAL_IK() do { \
  9645. const float raw[XYZ] = { \
  9646. RAW_X_POSITION(logical[X_AXIS]), \
  9647. RAW_Y_POSITION(logical[Y_AXIS]), \
  9648. RAW_Z_POSITION(logical[Z_AXIS]) \
  9649. }; \
  9650. DELTA_RAW_IK(); \
  9651. }while(0)
  9652. #define DELTA_DEBUG() do { \
  9653. SERIAL_ECHOPAIR("cartesian X:", raw[X_AXIS]); \
  9654. SERIAL_ECHOPAIR(" Y:", raw[Y_AXIS]); \
  9655. SERIAL_ECHOLNPAIR(" Z:", raw[Z_AXIS]); \
  9656. SERIAL_ECHOPAIR("delta A:", delta[A_AXIS]); \
  9657. SERIAL_ECHOPAIR(" B:", delta[B_AXIS]); \
  9658. SERIAL_ECHOLNPAIR(" C:", delta[C_AXIS]); \
  9659. }while(0)
  9660. void inverse_kinematics(const float logical[XYZ]) {
  9661. DELTA_LOGICAL_IK();
  9662. // DELTA_DEBUG();
  9663. }
  9664. /**
  9665. * Calculate the highest Z position where the
  9666. * effector has the full range of XY motion.
  9667. */
  9668. float delta_safe_distance_from_top() {
  9669. float cartesian[XYZ] = {
  9670. LOGICAL_X_POSITION(0),
  9671. LOGICAL_Y_POSITION(0),
  9672. LOGICAL_Z_POSITION(0)
  9673. };
  9674. inverse_kinematics(cartesian);
  9675. float distance = delta[A_AXIS];
  9676. cartesian[Y_AXIS] = LOGICAL_Y_POSITION(DELTA_PRINTABLE_RADIUS);
  9677. inverse_kinematics(cartesian);
  9678. return FABS(distance - delta[A_AXIS]);
  9679. }
  9680. /**
  9681. * Delta Forward Kinematics
  9682. *
  9683. * See the Wikipedia article "Trilateration"
  9684. * https://en.wikipedia.org/wiki/Trilateration
  9685. *
  9686. * Establish a new coordinate system in the plane of the
  9687. * three carriage points. This system has its origin at
  9688. * tower1, with tower2 on the X axis. Tower3 is in the X-Y
  9689. * plane with a Z component of zero.
  9690. * We will define unit vectors in this coordinate system
  9691. * in our original coordinate system. Then when we calculate
  9692. * the Xnew, Ynew and Znew values, we can translate back into
  9693. * the original system by moving along those unit vectors
  9694. * by the corresponding values.
  9695. *
  9696. * Variable names matched to Marlin, c-version, and avoid the
  9697. * use of any vector library.
  9698. *
  9699. * by Andreas Hardtung 2016-06-07
  9700. * based on a Java function from "Delta Robot Kinematics V3"
  9701. * by Steve Graves
  9702. *
  9703. * The result is stored in the cartes[] array.
  9704. */
  9705. void forward_kinematics_DELTA(float z1, float z2, float z3) {
  9706. // Create a vector in old coordinates along x axis of new coordinate
  9707. float p12[3] = { delta_tower[B_AXIS][X_AXIS] - delta_tower[A_AXIS][X_AXIS], delta_tower[B_AXIS][Y_AXIS] - delta_tower[A_AXIS][Y_AXIS], z2 - z1 };
  9708. // Get the Magnitude of vector.
  9709. float d = SQRT( sq(p12[0]) + sq(p12[1]) + sq(p12[2]) );
  9710. // Create unit vector by dividing by magnitude.
  9711. float ex[3] = { p12[0] / d, p12[1] / d, p12[2] / d };
  9712. // Get the vector from the origin of the new system to the third point.
  9713. float p13[3] = { delta_tower[C_AXIS][X_AXIS] - delta_tower[A_AXIS][X_AXIS], delta_tower[C_AXIS][Y_AXIS] - delta_tower[A_AXIS][Y_AXIS], z3 - z1 };
  9714. // Use the dot product to find the component of this vector on the X axis.
  9715. float i = ex[0] * p13[0] + ex[1] * p13[1] + ex[2] * p13[2];
  9716. // Create a vector along the x axis that represents the x component of p13.
  9717. float iex[3] = { ex[0] * i, ex[1] * i, ex[2] * i };
  9718. // Subtract the X component from the original vector leaving only Y. We use the
  9719. // variable that will be the unit vector after we scale it.
  9720. float ey[3] = { p13[0] - iex[0], p13[1] - iex[1], p13[2] - iex[2] };
  9721. // The magnitude of Y component
  9722. float j = SQRT( sq(ey[0]) + sq(ey[1]) + sq(ey[2]) );
  9723. // Convert to a unit vector
  9724. ey[0] /= j; ey[1] /= j; ey[2] /= j;
  9725. // The cross product of the unit x and y is the unit z
  9726. // float[] ez = vectorCrossProd(ex, ey);
  9727. float ez[3] = {
  9728. ex[1] * ey[2] - ex[2] * ey[1],
  9729. ex[2] * ey[0] - ex[0] * ey[2],
  9730. ex[0] * ey[1] - ex[1] * ey[0]
  9731. };
  9732. // We now have the d, i and j values defined in Wikipedia.
  9733. // Plug them into the equations defined in Wikipedia for Xnew, Ynew and Znew
  9734. float Xnew = (delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[B_AXIS] + sq(d)) / (d * 2),
  9735. Ynew = ((delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[C_AXIS] + HYPOT2(i, j)) / 2 - i * Xnew) / j,
  9736. Znew = SQRT(delta_diagonal_rod_2_tower[A_AXIS] - HYPOT2(Xnew, Ynew));
  9737. // Start from the origin of the old coordinates and add vectors in the
  9738. // old coords that represent the Xnew, Ynew and Znew to find the point
  9739. // in the old system.
  9740. cartes[X_AXIS] = delta_tower[A_AXIS][X_AXIS] + ex[0] * Xnew + ey[0] * Ynew - ez[0] * Znew;
  9741. cartes[Y_AXIS] = delta_tower[A_AXIS][Y_AXIS] + ex[1] * Xnew + ey[1] * Ynew - ez[1] * Znew;
  9742. cartes[Z_AXIS] = z1 + ex[2] * Xnew + ey[2] * Ynew - ez[2] * Znew;
  9743. }
  9744. void forward_kinematics_DELTA(float point[ABC]) {
  9745. forward_kinematics_DELTA(point[A_AXIS], point[B_AXIS], point[C_AXIS]);
  9746. }
  9747. #endif // DELTA
  9748. /**
  9749. * Get the stepper positions in the cartes[] array.
  9750. * Forward kinematics are applied for DELTA and SCARA.
  9751. *
  9752. * The result is in the current coordinate space with
  9753. * leveling applied. The coordinates need to be run through
  9754. * unapply_leveling to obtain the "ideal" coordinates
  9755. * suitable for current_position, etc.
  9756. */
  9757. void get_cartesian_from_steppers() {
  9758. #if ENABLED(DELTA)
  9759. forward_kinematics_DELTA(
  9760. stepper.get_axis_position_mm(A_AXIS),
  9761. stepper.get_axis_position_mm(B_AXIS),
  9762. stepper.get_axis_position_mm(C_AXIS)
  9763. );
  9764. cartes[X_AXIS] += LOGICAL_X_POSITION(0);
  9765. cartes[Y_AXIS] += LOGICAL_Y_POSITION(0);
  9766. cartes[Z_AXIS] += LOGICAL_Z_POSITION(0);
  9767. #elif IS_SCARA
  9768. forward_kinematics_SCARA(
  9769. stepper.get_axis_position_degrees(A_AXIS),
  9770. stepper.get_axis_position_degrees(B_AXIS)
  9771. );
  9772. cartes[X_AXIS] += LOGICAL_X_POSITION(0);
  9773. cartes[Y_AXIS] += LOGICAL_Y_POSITION(0);
  9774. cartes[Z_AXIS] = stepper.get_axis_position_mm(Z_AXIS);
  9775. #else
  9776. cartes[X_AXIS] = stepper.get_axis_position_mm(X_AXIS);
  9777. cartes[Y_AXIS] = stepper.get_axis_position_mm(Y_AXIS);
  9778. cartes[Z_AXIS] = stepper.get_axis_position_mm(Z_AXIS);
  9779. #endif
  9780. }
  9781. /**
  9782. * Set the current_position for an axis based on
  9783. * the stepper positions, removing any leveling that
  9784. * may have been applied.
  9785. */
  9786. void set_current_from_steppers_for_axis(const AxisEnum axis) {
  9787. get_cartesian_from_steppers();
  9788. #if PLANNER_LEVELING
  9789. planner.unapply_leveling(cartes);
  9790. #endif
  9791. if (axis == ALL_AXES)
  9792. COPY(current_position, cartes);
  9793. else
  9794. current_position[axis] = cartes[axis];
  9795. }
  9796. #if ENABLED(MESH_BED_LEVELING)
  9797. /**
  9798. * Prepare a mesh-leveled linear move in a Cartesian setup,
  9799. * splitting the move where it crosses mesh borders.
  9800. */
  9801. void mesh_line_to_destination(float fr_mm_s, uint8_t x_splits = 0xFF, uint8_t y_splits = 0xFF) {
  9802. int cx1 = mbl.cell_index_x(RAW_CURRENT_POSITION(X)),
  9803. cy1 = mbl.cell_index_y(RAW_CURRENT_POSITION(Y)),
  9804. cx2 = mbl.cell_index_x(RAW_X_POSITION(destination[X_AXIS])),
  9805. cy2 = mbl.cell_index_y(RAW_Y_POSITION(destination[Y_AXIS]));
  9806. NOMORE(cx1, GRID_MAX_POINTS_X - 2);
  9807. NOMORE(cy1, GRID_MAX_POINTS_Y - 2);
  9808. NOMORE(cx2, GRID_MAX_POINTS_X - 2);
  9809. NOMORE(cy2, GRID_MAX_POINTS_Y - 2);
  9810. if (cx1 == cx2 && cy1 == cy2) {
  9811. // Start and end on same mesh square
  9812. line_to_destination(fr_mm_s);
  9813. set_current_to_destination();
  9814. return;
  9815. }
  9816. #define MBL_SEGMENT_END(A) (current_position[A ##_AXIS] + (destination[A ##_AXIS] - current_position[A ##_AXIS]) * normalized_dist)
  9817. float normalized_dist, end[XYZE];
  9818. // Split at the left/front border of the right/top square
  9819. const int8_t gcx = max(cx1, cx2), gcy = max(cy1, cy2);
  9820. if (cx2 != cx1 && TEST(x_splits, gcx)) {
  9821. COPY(end, destination);
  9822. destination[X_AXIS] = LOGICAL_X_POSITION(mbl.index_to_xpos[gcx]);
  9823. normalized_dist = (destination[X_AXIS] - current_position[X_AXIS]) / (end[X_AXIS] - current_position[X_AXIS]);
  9824. destination[Y_AXIS] = MBL_SEGMENT_END(Y);
  9825. CBI(x_splits, gcx);
  9826. }
  9827. else if (cy2 != cy1 && TEST(y_splits, gcy)) {
  9828. COPY(end, destination);
  9829. destination[Y_AXIS] = LOGICAL_Y_POSITION(mbl.index_to_ypos[gcy]);
  9830. normalized_dist = (destination[Y_AXIS] - current_position[Y_AXIS]) / (end[Y_AXIS] - current_position[Y_AXIS]);
  9831. destination[X_AXIS] = MBL_SEGMENT_END(X);
  9832. CBI(y_splits, gcy);
  9833. }
  9834. else {
  9835. // Already split on a border
  9836. line_to_destination(fr_mm_s);
  9837. set_current_to_destination();
  9838. return;
  9839. }
  9840. destination[Z_AXIS] = MBL_SEGMENT_END(Z);
  9841. destination[E_AXIS] = MBL_SEGMENT_END(E);
  9842. // Do the split and look for more borders
  9843. mesh_line_to_destination(fr_mm_s, x_splits, y_splits);
  9844. // Restore destination from stack
  9845. COPY(destination, end);
  9846. mesh_line_to_destination(fr_mm_s, x_splits, y_splits);
  9847. }
  9848. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR) && !IS_KINEMATIC
  9849. #define CELL_INDEX(A,V) ((RAW_##A##_POSITION(V) - bilinear_start[A##_AXIS]) * ABL_BG_FACTOR(A##_AXIS))
  9850. /**
  9851. * Prepare a bilinear-leveled linear move on Cartesian,
  9852. * splitting the move where it crosses grid borders.
  9853. */
  9854. void bilinear_line_to_destination(float fr_mm_s, uint16_t x_splits = 0xFFFF, uint16_t y_splits = 0xFFFF) {
  9855. int cx1 = CELL_INDEX(X, current_position[X_AXIS]),
  9856. cy1 = CELL_INDEX(Y, current_position[Y_AXIS]),
  9857. cx2 = CELL_INDEX(X, destination[X_AXIS]),
  9858. cy2 = CELL_INDEX(Y, destination[Y_AXIS]);
  9859. cx1 = constrain(cx1, 0, ABL_BG_POINTS_X - 2);
  9860. cy1 = constrain(cy1, 0, ABL_BG_POINTS_Y - 2);
  9861. cx2 = constrain(cx2, 0, ABL_BG_POINTS_X - 2);
  9862. cy2 = constrain(cy2, 0, ABL_BG_POINTS_Y - 2);
  9863. if (cx1 == cx2 && cy1 == cy2) {
  9864. // Start and end on same mesh square
  9865. line_to_destination(fr_mm_s);
  9866. set_current_to_destination();
  9867. return;
  9868. }
  9869. #define LINE_SEGMENT_END(A) (current_position[A ##_AXIS] + (destination[A ##_AXIS] - current_position[A ##_AXIS]) * normalized_dist)
  9870. float normalized_dist, end[XYZE];
  9871. // Split at the left/front border of the right/top square
  9872. const int8_t gcx = max(cx1, cx2), gcy = max(cy1, cy2);
  9873. if (cx2 != cx1 && TEST(x_splits, gcx)) {
  9874. COPY(end, destination);
  9875. destination[X_AXIS] = LOGICAL_X_POSITION(bilinear_start[X_AXIS] + ABL_BG_SPACING(X_AXIS) * gcx);
  9876. normalized_dist = (destination[X_AXIS] - current_position[X_AXIS]) / (end[X_AXIS] - current_position[X_AXIS]);
  9877. destination[Y_AXIS] = LINE_SEGMENT_END(Y);
  9878. CBI(x_splits, gcx);
  9879. }
  9880. else if (cy2 != cy1 && TEST(y_splits, gcy)) {
  9881. COPY(end, destination);
  9882. destination[Y_AXIS] = LOGICAL_Y_POSITION(bilinear_start[Y_AXIS] + ABL_BG_SPACING(Y_AXIS) * gcy);
  9883. normalized_dist = (destination[Y_AXIS] - current_position[Y_AXIS]) / (end[Y_AXIS] - current_position[Y_AXIS]);
  9884. destination[X_AXIS] = LINE_SEGMENT_END(X);
  9885. CBI(y_splits, gcy);
  9886. }
  9887. else {
  9888. // Already split on a border
  9889. line_to_destination(fr_mm_s);
  9890. set_current_to_destination();
  9891. return;
  9892. }
  9893. destination[Z_AXIS] = LINE_SEGMENT_END(Z);
  9894. destination[E_AXIS] = LINE_SEGMENT_END(E);
  9895. // Do the split and look for more borders
  9896. bilinear_line_to_destination(fr_mm_s, x_splits, y_splits);
  9897. // Restore destination from stack
  9898. COPY(destination, end);
  9899. bilinear_line_to_destination(fr_mm_s, x_splits, y_splits);
  9900. }
  9901. #endif // AUTO_BED_LEVELING_BILINEAR
  9902. #if IS_KINEMATIC && !UBL_DELTA
  9903. /**
  9904. * Prepare a linear move in a DELTA or SCARA setup.
  9905. *
  9906. * This calls planner.buffer_line several times, adding
  9907. * small incremental moves for DELTA or SCARA.
  9908. */
  9909. inline bool prepare_kinematic_move_to(float ltarget[XYZE]) {
  9910. // Get the top feedrate of the move in the XY plane
  9911. const float _feedrate_mm_s = MMS_SCALED(feedrate_mm_s);
  9912. // If the move is only in Z/E don't split up the move
  9913. if (ltarget[X_AXIS] == current_position[X_AXIS] && ltarget[Y_AXIS] == current_position[Y_AXIS]) {
  9914. planner.buffer_line_kinematic(ltarget, _feedrate_mm_s, active_extruder);
  9915. return false;
  9916. }
  9917. // Fail if attempting move outside printable radius
  9918. if (!position_is_reachable_xy(ltarget[X_AXIS], ltarget[Y_AXIS])) return true;
  9919. // Get the cartesian distances moved in XYZE
  9920. const float difference[XYZE] = {
  9921. ltarget[X_AXIS] - current_position[X_AXIS],
  9922. ltarget[Y_AXIS] - current_position[Y_AXIS],
  9923. ltarget[Z_AXIS] - current_position[Z_AXIS],
  9924. ltarget[E_AXIS] - current_position[E_AXIS]
  9925. };
  9926. // Get the linear distance in XYZ
  9927. float cartesian_mm = SQRT(sq(difference[X_AXIS]) + sq(difference[Y_AXIS]) + sq(difference[Z_AXIS]));
  9928. // If the move is very short, check the E move distance
  9929. if (UNEAR_ZERO(cartesian_mm)) cartesian_mm = FABS(difference[E_AXIS]);
  9930. // No E move either? Game over.
  9931. if (UNEAR_ZERO(cartesian_mm)) return true;
  9932. // Minimum number of seconds to move the given distance
  9933. const float seconds = cartesian_mm / _feedrate_mm_s;
  9934. // The number of segments-per-second times the duration
  9935. // gives the number of segments
  9936. uint16_t segments = delta_segments_per_second * seconds;
  9937. // For SCARA minimum segment size is 0.25mm
  9938. #if IS_SCARA
  9939. NOMORE(segments, cartesian_mm * 4);
  9940. #endif
  9941. // At least one segment is required
  9942. NOLESS(segments, 1);
  9943. // The approximate length of each segment
  9944. const float inv_segments = 1.0 / float(segments),
  9945. segment_distance[XYZE] = {
  9946. difference[X_AXIS] * inv_segments,
  9947. difference[Y_AXIS] * inv_segments,
  9948. difference[Z_AXIS] * inv_segments,
  9949. difference[E_AXIS] * inv_segments
  9950. };
  9951. // SERIAL_ECHOPAIR("mm=", cartesian_mm);
  9952. // SERIAL_ECHOPAIR(" seconds=", seconds);
  9953. // SERIAL_ECHOLNPAIR(" segments=", segments);
  9954. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  9955. // SCARA needs to scale the feed rate from mm/s to degrees/s
  9956. const float inv_segment_length = min(10.0, float(segments) / cartesian_mm), // 1/mm/segs
  9957. feed_factor = inv_segment_length * _feedrate_mm_s;
  9958. float oldA = stepper.get_axis_position_degrees(A_AXIS),
  9959. oldB = stepper.get_axis_position_degrees(B_AXIS);
  9960. #endif
  9961. // Get the logical current position as starting point
  9962. float logical[XYZE];
  9963. COPY(logical, current_position);
  9964. // Drop one segment so the last move is to the exact target.
  9965. // If there's only 1 segment, loops will be skipped entirely.
  9966. --segments;
  9967. // Calculate and execute the segments
  9968. for (uint16_t s = segments + 1; --s;) {
  9969. LOOP_XYZE(i) logical[i] += segment_distance[i];
  9970. #if ENABLED(DELTA)
  9971. DELTA_LOGICAL_IK(); // Delta can inline its kinematics
  9972. #else
  9973. inverse_kinematics(logical);
  9974. #endif
  9975. ADJUST_DELTA(logical); // Adjust Z if bed leveling is enabled
  9976. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  9977. // For SCARA scale the feed rate from mm/s to degrees/s
  9978. // Use ratio between the length of the move and the larger angle change
  9979. const float adiff = abs(delta[A_AXIS] - oldA),
  9980. bdiff = abs(delta[B_AXIS] - oldB);
  9981. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], logical[E_AXIS], max(adiff, bdiff) * feed_factor, active_extruder);
  9982. oldA = delta[A_AXIS];
  9983. oldB = delta[B_AXIS];
  9984. #else
  9985. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], logical[E_AXIS], _feedrate_mm_s, active_extruder);
  9986. #endif
  9987. }
  9988. // Since segment_distance is only approximate,
  9989. // the final move must be to the exact destination.
  9990. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  9991. // For SCARA scale the feed rate from mm/s to degrees/s
  9992. // With segments > 1 length is 1 segment, otherwise total length
  9993. inverse_kinematics(ltarget);
  9994. ADJUST_DELTA(ltarget);
  9995. const float adiff = abs(delta[A_AXIS] - oldA),
  9996. bdiff = abs(delta[B_AXIS] - oldB);
  9997. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], logical[E_AXIS], max(adiff, bdiff) * feed_factor, active_extruder);
  9998. #else
  9999. planner.buffer_line_kinematic(ltarget, _feedrate_mm_s, active_extruder);
  10000. #endif
  10001. return false;
  10002. }
  10003. #else // !IS_KINEMATIC || UBL_DELTA
  10004. /**
  10005. * Prepare a linear move in a Cartesian setup.
  10006. * If Mesh Bed Leveling is enabled, perform a mesh move.
  10007. *
  10008. * Returns true if the caller didn't update current_position.
  10009. */
  10010. inline bool prepare_move_to_destination_cartesian() {
  10011. #if ENABLED(AUTO_BED_LEVELING_UBL)
  10012. const float fr_scaled = MMS_SCALED(feedrate_mm_s);
  10013. if (ubl.state.active) { // direct use of ubl.state.active for speed
  10014. ubl.line_to_destination_cartesian(fr_scaled, active_extruder);
  10015. return true;
  10016. }
  10017. else
  10018. line_to_destination(fr_scaled);
  10019. #else
  10020. // Do not use feedrate_percentage for E or Z only moves
  10021. if (current_position[X_AXIS] == destination[X_AXIS] && current_position[Y_AXIS] == destination[Y_AXIS])
  10022. line_to_destination();
  10023. else {
  10024. const float fr_scaled = MMS_SCALED(feedrate_mm_s);
  10025. #if ENABLED(MESH_BED_LEVELING)
  10026. if (mbl.active()) { // direct used of mbl.active() for speed
  10027. mesh_line_to_destination(fr_scaled);
  10028. return true;
  10029. }
  10030. else
  10031. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  10032. if (planner.abl_enabled) { // direct use of abl_enabled for speed
  10033. bilinear_line_to_destination(fr_scaled);
  10034. return true;
  10035. }
  10036. else
  10037. #endif
  10038. line_to_destination(fr_scaled);
  10039. }
  10040. #endif
  10041. return false;
  10042. }
  10043. #endif // !IS_KINEMATIC || UBL_DELTA
  10044. #if ENABLED(DUAL_X_CARRIAGE)
  10045. /**
  10046. * Prepare a linear move in a dual X axis setup
  10047. */
  10048. inline bool prepare_move_to_destination_dualx() {
  10049. if (active_extruder_parked) {
  10050. switch (dual_x_carriage_mode) {
  10051. case DXC_FULL_CONTROL_MODE:
  10052. break;
  10053. case DXC_AUTO_PARK_MODE:
  10054. if (current_position[E_AXIS] == destination[E_AXIS]) {
  10055. // This is a travel move (with no extrusion)
  10056. // Skip it, but keep track of the current position
  10057. // (so it can be used as the start of the next non-travel move)
  10058. if (delayed_move_time != 0xFFFFFFFFUL) {
  10059. set_current_to_destination();
  10060. NOLESS(raised_parked_position[Z_AXIS], destination[Z_AXIS]);
  10061. delayed_move_time = millis();
  10062. return true;
  10063. }
  10064. }
  10065. // unpark extruder: 1) raise, 2) move into starting XY position, 3) lower
  10066. for (uint8_t i = 0; i < 3; i++)
  10067. planner.buffer_line(
  10068. i == 0 ? raised_parked_position[X_AXIS] : current_position[X_AXIS],
  10069. i == 0 ? raised_parked_position[Y_AXIS] : current_position[Y_AXIS],
  10070. i == 2 ? current_position[Z_AXIS] : raised_parked_position[Z_AXIS],
  10071. current_position[E_AXIS],
  10072. i == 1 ? PLANNER_XY_FEEDRATE() : planner.max_feedrate_mm_s[Z_AXIS],
  10073. active_extruder
  10074. );
  10075. delayed_move_time = 0;
  10076. active_extruder_parked = false;
  10077. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10078. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Clear active_extruder_parked");
  10079. #endif
  10080. break;
  10081. case DXC_DUPLICATION_MODE:
  10082. if (active_extruder == 0) {
  10083. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10084. if (DEBUGGING(LEVELING)) {
  10085. SERIAL_ECHOPAIR("Set planner X", LOGICAL_X_POSITION(inactive_extruder_x_pos));
  10086. SERIAL_ECHOLNPAIR(" ... Line to X", current_position[X_AXIS] + duplicate_extruder_x_offset);
  10087. }
  10088. #endif
  10089. // move duplicate extruder into correct duplication position.
  10090. planner.set_position_mm(
  10091. LOGICAL_X_POSITION(inactive_extruder_x_pos),
  10092. current_position[Y_AXIS],
  10093. current_position[Z_AXIS],
  10094. current_position[E_AXIS]
  10095. );
  10096. planner.buffer_line(
  10097. current_position[X_AXIS] + duplicate_extruder_x_offset,
  10098. current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS],
  10099. planner.max_feedrate_mm_s[X_AXIS], 1
  10100. );
  10101. SYNC_PLAN_POSITION_KINEMATIC();
  10102. stepper.synchronize();
  10103. extruder_duplication_enabled = true;
  10104. active_extruder_parked = false;
  10105. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10106. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Set extruder_duplication_enabled\nClear active_extruder_parked");
  10107. #endif
  10108. }
  10109. else {
  10110. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10111. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Active extruder not 0");
  10112. #endif
  10113. }
  10114. break;
  10115. }
  10116. }
  10117. return false;
  10118. }
  10119. #endif // DUAL_X_CARRIAGE
  10120. /**
  10121. * Prepare a single move and get ready for the next one
  10122. *
  10123. * This may result in several calls to planner.buffer_line to
  10124. * do smaller moves for DELTA, SCARA, mesh moves, etc.
  10125. */
  10126. void prepare_move_to_destination() {
  10127. clamp_to_software_endstops(destination);
  10128. refresh_cmd_timeout();
  10129. #if ENABLED(PREVENT_COLD_EXTRUSION)
  10130. if (!DEBUGGING(DRYRUN)) {
  10131. if (destination[E_AXIS] != current_position[E_AXIS]) {
  10132. if (thermalManager.tooColdToExtrude(active_extruder)) {
  10133. current_position[E_AXIS] = destination[E_AXIS]; // Behave as if the move really took place, but ignore E part
  10134. SERIAL_ECHO_START();
  10135. SERIAL_ECHOLNPGM(MSG_ERR_COLD_EXTRUDE_STOP);
  10136. }
  10137. #if ENABLED(PREVENT_LENGTHY_EXTRUDE)
  10138. if (destination[E_AXIS] - current_position[E_AXIS] > EXTRUDE_MAXLENGTH) {
  10139. current_position[E_AXIS] = destination[E_AXIS]; // Behave as if the move really took place, but ignore E part
  10140. SERIAL_ECHO_START();
  10141. SERIAL_ECHOLNPGM(MSG_ERR_LONG_EXTRUDE_STOP);
  10142. }
  10143. #endif
  10144. }
  10145. }
  10146. #endif
  10147. if (
  10148. #if UBL_DELTA // Also works for CARTESIAN (smaller segments follow mesh more closely)
  10149. ubl.prepare_segmented_line_to(destination, feedrate_mm_s)
  10150. #elif IS_KINEMATIC
  10151. prepare_kinematic_move_to(destination)
  10152. #elif ENABLED(DUAL_X_CARRIAGE)
  10153. prepare_move_to_destination_dualx()
  10154. #else
  10155. prepare_move_to_destination_cartesian()
  10156. #endif
  10157. ) return;
  10158. set_current_to_destination();
  10159. }
  10160. #if ENABLED(ARC_SUPPORT)
  10161. #if N_ARC_CORRECTION < 1
  10162. #undef N_ARC_CORRECTION
  10163. #define N_ARC_CORRECTION 1
  10164. #endif
  10165. /**
  10166. * Plan an arc in 2 dimensions
  10167. *
  10168. * The arc is approximated by generating many small linear segments.
  10169. * The length of each segment is configured in MM_PER_ARC_SEGMENT (Default 1mm)
  10170. * Arcs should only be made relatively large (over 5mm), as larger arcs with
  10171. * larger segments will tend to be more efficient. Your slicer should have
  10172. * options for G2/G3 arc generation. In future these options may be GCode tunable.
  10173. */
  10174. void plan_arc(
  10175. float logical[XYZE], // Destination position
  10176. float *offset, // Center of rotation relative to current_position
  10177. uint8_t clockwise // Clockwise?
  10178. ) {
  10179. #if ENABLED(CNC_WORKSPACE_PLANES)
  10180. AxisEnum p_axis, q_axis, l_axis;
  10181. switch (workspace_plane) {
  10182. case PLANE_XY: p_axis = X_AXIS; q_axis = Y_AXIS; l_axis = Z_AXIS; break;
  10183. case PLANE_ZX: p_axis = Z_AXIS; q_axis = X_AXIS; l_axis = Y_AXIS; break;
  10184. case PLANE_YZ: p_axis = Y_AXIS; q_axis = Z_AXIS; l_axis = X_AXIS; break;
  10185. }
  10186. #else
  10187. constexpr AxisEnum p_axis = X_AXIS, q_axis = Y_AXIS, l_axis = Z_AXIS;
  10188. #endif
  10189. // Radius vector from center to current location
  10190. float r_P = -offset[0], r_Q = -offset[1];
  10191. const float radius = HYPOT(r_P, r_Q),
  10192. center_P = current_position[p_axis] - r_P,
  10193. center_Q = current_position[q_axis] - r_Q,
  10194. rt_X = logical[p_axis] - center_P,
  10195. rt_Y = logical[q_axis] - center_Q,
  10196. linear_travel = logical[l_axis] - current_position[l_axis],
  10197. extruder_travel = logical[E_AXIS] - current_position[E_AXIS];
  10198. // CCW angle of rotation between position and target from the circle center. Only one atan2() trig computation required.
  10199. float angular_travel = ATAN2(r_P * rt_Y - r_Q * rt_X, r_P * rt_X + r_Q * rt_Y);
  10200. if (angular_travel < 0) angular_travel += RADIANS(360);
  10201. if (clockwise) angular_travel -= RADIANS(360);
  10202. // Make a circle if the angular rotation is 0 and the target is current position
  10203. if (angular_travel == 0 && current_position[p_axis] == logical[p_axis] && current_position[q_axis] == logical[q_axis])
  10204. angular_travel = RADIANS(360);
  10205. const float mm_of_travel = HYPOT(angular_travel * radius, FABS(linear_travel));
  10206. if (mm_of_travel < 0.001) return;
  10207. uint16_t segments = FLOOR(mm_of_travel / (MM_PER_ARC_SEGMENT));
  10208. if (segments == 0) segments = 1;
  10209. /**
  10210. * Vector rotation by transformation matrix: r is the original vector, r_T is the rotated vector,
  10211. * and phi is the angle of rotation. Based on the solution approach by Jens Geisler.
  10212. * r_T = [cos(phi) -sin(phi);
  10213. * sin(phi) cos(phi)] * r ;
  10214. *
  10215. * For arc generation, the center of the circle is the axis of rotation and the radius vector is
  10216. * defined from the circle center to the initial position. Each line segment is formed by successive
  10217. * vector rotations. This requires only two cos() and sin() computations to form the rotation
  10218. * matrix for the duration of the entire arc. Error may accumulate from numerical round-off, since
  10219. * all double numbers are single precision on the Arduino. (True double precision will not have
  10220. * round off issues for CNC applications.) Single precision error can accumulate to be greater than
  10221. * tool precision in some cases. Therefore, arc path correction is implemented.
  10222. *
  10223. * Small angle approximation may be used to reduce computation overhead further. This approximation
  10224. * holds for everything, but very small circles and large MM_PER_ARC_SEGMENT values. In other words,
  10225. * theta_per_segment would need to be greater than 0.1 rad and N_ARC_CORRECTION would need to be large
  10226. * to cause an appreciable drift error. N_ARC_CORRECTION~=25 is more than small enough to correct for
  10227. * numerical drift error. N_ARC_CORRECTION may be on the order a hundred(s) before error becomes an
  10228. * issue for CNC machines with the single precision Arduino calculations.
  10229. *
  10230. * This approximation also allows plan_arc to immediately insert a line segment into the planner
  10231. * without the initial overhead of computing cos() or sin(). By the time the arc needs to be applied
  10232. * a correction, the planner should have caught up to the lag caused by the initial plan_arc overhead.
  10233. * This is important when there are successive arc motions.
  10234. */
  10235. // Vector rotation matrix values
  10236. float arc_target[XYZE];
  10237. const float theta_per_segment = angular_travel / segments,
  10238. linear_per_segment = linear_travel / segments,
  10239. extruder_per_segment = extruder_travel / segments,
  10240. sin_T = theta_per_segment,
  10241. cos_T = 1 - 0.5 * sq(theta_per_segment); // Small angle approximation
  10242. // Initialize the linear axis
  10243. arc_target[l_axis] = current_position[l_axis];
  10244. // Initialize the extruder axis
  10245. arc_target[E_AXIS] = current_position[E_AXIS];
  10246. const float fr_mm_s = MMS_SCALED(feedrate_mm_s);
  10247. millis_t next_idle_ms = millis() + 200UL;
  10248. #if N_ARC_CORRECTION > 1
  10249. int8_t count = N_ARC_CORRECTION;
  10250. #endif
  10251. for (uint16_t i = 1; i < segments; i++) { // Iterate (segments-1) times
  10252. thermalManager.manage_heater();
  10253. if (ELAPSED(millis(), next_idle_ms)) {
  10254. next_idle_ms = millis() + 200UL;
  10255. idle();
  10256. }
  10257. #if N_ARC_CORRECTION > 1
  10258. if (--count) {
  10259. // Apply vector rotation matrix to previous r_P / 1
  10260. const float r_new_Y = r_P * sin_T + r_Q * cos_T;
  10261. r_P = r_P * cos_T - r_Q * sin_T;
  10262. r_Q = r_new_Y;
  10263. }
  10264. else
  10265. #endif
  10266. {
  10267. #if N_ARC_CORRECTION > 1
  10268. count = N_ARC_CORRECTION;
  10269. #endif
  10270. // Arc correction to radius vector. Computed only every N_ARC_CORRECTION increments.
  10271. // Compute exact location by applying transformation matrix from initial radius vector(=-offset).
  10272. // To reduce stuttering, the sin and cos could be computed at different times.
  10273. // For now, compute both at the same time.
  10274. const float cos_Ti = cos(i * theta_per_segment), sin_Ti = sin(i * theta_per_segment);
  10275. r_P = -offset[0] * cos_Ti + offset[1] * sin_Ti;
  10276. r_Q = -offset[0] * sin_Ti - offset[1] * cos_Ti;
  10277. }
  10278. // Update arc_target location
  10279. arc_target[p_axis] = center_P + r_P;
  10280. arc_target[q_axis] = center_Q + r_Q;
  10281. arc_target[l_axis] += linear_per_segment;
  10282. arc_target[E_AXIS] += extruder_per_segment;
  10283. clamp_to_software_endstops(arc_target);
  10284. planner.buffer_line_kinematic(arc_target, fr_mm_s, active_extruder);
  10285. }
  10286. // Ensure last segment arrives at target location.
  10287. planner.buffer_line_kinematic(logical, fr_mm_s, active_extruder);
  10288. // As far as the parser is concerned, the position is now == target. In reality the
  10289. // motion control system might still be processing the action and the real tool position
  10290. // in any intermediate location.
  10291. set_current_to_destination();
  10292. }
  10293. #endif
  10294. #if ENABLED(BEZIER_CURVE_SUPPORT)
  10295. void plan_cubic_move(const float offset[4]) {
  10296. cubic_b_spline(current_position, destination, offset, MMS_SCALED(feedrate_mm_s), active_extruder);
  10297. // As far as the parser is concerned, the position is now == destination. In reality the
  10298. // motion control system might still be processing the action and the real tool position
  10299. // in any intermediate location.
  10300. set_current_to_destination();
  10301. }
  10302. #endif // BEZIER_CURVE_SUPPORT
  10303. #if ENABLED(USE_CONTROLLER_FAN)
  10304. void controllerFan() {
  10305. static millis_t lastMotorOn = 0, // Last time a motor was turned on
  10306. nextMotorCheck = 0; // Last time the state was checked
  10307. const millis_t ms = millis();
  10308. if (ELAPSED(ms, nextMotorCheck)) {
  10309. nextMotorCheck = ms + 2500UL; // Not a time critical function, so only check every 2.5s
  10310. if (X_ENABLE_READ == X_ENABLE_ON || Y_ENABLE_READ == Y_ENABLE_ON || Z_ENABLE_READ == Z_ENABLE_ON || thermalManager.soft_pwm_amount_bed > 0
  10311. || E0_ENABLE_READ == E_ENABLE_ON // If any of the drivers are enabled...
  10312. #if E_STEPPERS > 1
  10313. || E1_ENABLE_READ == E_ENABLE_ON
  10314. #if HAS_X2_ENABLE
  10315. || X2_ENABLE_READ == X_ENABLE_ON
  10316. #endif
  10317. #if E_STEPPERS > 2
  10318. || E2_ENABLE_READ == E_ENABLE_ON
  10319. #if E_STEPPERS > 3
  10320. || E3_ENABLE_READ == E_ENABLE_ON
  10321. #if E_STEPPERS > 4
  10322. || E4_ENABLE_READ == E_ENABLE_ON
  10323. #endif // E_STEPPERS > 4
  10324. #endif // E_STEPPERS > 3
  10325. #endif // E_STEPPERS > 2
  10326. #endif // E_STEPPERS > 1
  10327. ) {
  10328. lastMotorOn = ms; //... set time to NOW so the fan will turn on
  10329. }
  10330. // Fan off if no steppers have been enabled for CONTROLLERFAN_SECS seconds
  10331. uint8_t speed = (!lastMotorOn || ELAPSED(ms, lastMotorOn + (CONTROLLERFAN_SECS) * 1000UL)) ? 0 : CONTROLLERFAN_SPEED;
  10332. // allows digital or PWM fan output to be used (see M42 handling)
  10333. WRITE(CONTROLLER_FAN_PIN, speed);
  10334. analogWrite(CONTROLLER_FAN_PIN, speed);
  10335. }
  10336. }
  10337. #endif // USE_CONTROLLER_FAN
  10338. #if ENABLED(MORGAN_SCARA)
  10339. /**
  10340. * Morgan SCARA Forward Kinematics. Results in cartes[].
  10341. * Maths and first version by QHARLEY.
  10342. * Integrated into Marlin and slightly restructured by Joachim Cerny.
  10343. */
  10344. void forward_kinematics_SCARA(const float &a, const float &b) {
  10345. float a_sin = sin(RADIANS(a)) * L1,
  10346. a_cos = cos(RADIANS(a)) * L1,
  10347. b_sin = sin(RADIANS(b)) * L2,
  10348. b_cos = cos(RADIANS(b)) * L2;
  10349. cartes[X_AXIS] = a_cos + b_cos + SCARA_OFFSET_X; //theta
  10350. cartes[Y_AXIS] = a_sin + b_sin + SCARA_OFFSET_Y; //theta+phi
  10351. /*
  10352. SERIAL_ECHOPAIR("SCARA FK Angle a=", a);
  10353. SERIAL_ECHOPAIR(" b=", b);
  10354. SERIAL_ECHOPAIR(" a_sin=", a_sin);
  10355. SERIAL_ECHOPAIR(" a_cos=", a_cos);
  10356. SERIAL_ECHOPAIR(" b_sin=", b_sin);
  10357. SERIAL_ECHOLNPAIR(" b_cos=", b_cos);
  10358. SERIAL_ECHOPAIR(" cartes[X_AXIS]=", cartes[X_AXIS]);
  10359. SERIAL_ECHOLNPAIR(" cartes[Y_AXIS]=", cartes[Y_AXIS]);
  10360. //*/
  10361. }
  10362. /**
  10363. * Morgan SCARA Inverse Kinematics. Results in delta[].
  10364. *
  10365. * See http://forums.reprap.org/read.php?185,283327
  10366. *
  10367. * Maths and first version by QHARLEY.
  10368. * Integrated into Marlin and slightly restructured by Joachim Cerny.
  10369. */
  10370. void inverse_kinematics(const float logical[XYZ]) {
  10371. static float C2, S2, SK1, SK2, THETA, PSI;
  10372. float sx = RAW_X_POSITION(logical[X_AXIS]) - SCARA_OFFSET_X, // Translate SCARA to standard X Y
  10373. sy = RAW_Y_POSITION(logical[Y_AXIS]) - SCARA_OFFSET_Y; // With scaling factor.
  10374. if (L1 == L2)
  10375. C2 = HYPOT2(sx, sy) / L1_2_2 - 1;
  10376. else
  10377. C2 = (HYPOT2(sx, sy) - (L1_2 + L2_2)) / (2.0 * L1 * L2);
  10378. S2 = SQRT(1 - sq(C2));
  10379. // Unrotated Arm1 plus rotated Arm2 gives the distance from Center to End
  10380. SK1 = L1 + L2 * C2;
  10381. // Rotated Arm2 gives the distance from Arm1 to Arm2
  10382. SK2 = L2 * S2;
  10383. // Angle of Arm1 is the difference between Center-to-End angle and the Center-to-Elbow
  10384. THETA = ATAN2(SK1, SK2) - ATAN2(sx, sy);
  10385. // Angle of Arm2
  10386. PSI = ATAN2(S2, C2);
  10387. delta[A_AXIS] = DEGREES(THETA); // theta is support arm angle
  10388. delta[B_AXIS] = DEGREES(THETA + PSI); // equal to sub arm angle (inverted motor)
  10389. delta[C_AXIS] = logical[Z_AXIS];
  10390. /*
  10391. DEBUG_POS("SCARA IK", logical);
  10392. DEBUG_POS("SCARA IK", delta);
  10393. SERIAL_ECHOPAIR(" SCARA (x,y) ", sx);
  10394. SERIAL_ECHOPAIR(",", sy);
  10395. SERIAL_ECHOPAIR(" C2=", C2);
  10396. SERIAL_ECHOPAIR(" S2=", S2);
  10397. SERIAL_ECHOPAIR(" Theta=", THETA);
  10398. SERIAL_ECHOLNPAIR(" Phi=", PHI);
  10399. //*/
  10400. }
  10401. #endif // MORGAN_SCARA
  10402. #if ENABLED(TEMP_STAT_LEDS)
  10403. static bool red_led = false;
  10404. static millis_t next_status_led_update_ms = 0;
  10405. void handle_status_leds(void) {
  10406. if (ELAPSED(millis(), next_status_led_update_ms)) {
  10407. next_status_led_update_ms += 500; // Update every 0.5s
  10408. float max_temp = 0.0;
  10409. #if HAS_TEMP_BED
  10410. max_temp = MAX3(max_temp, thermalManager.degTargetBed(), thermalManager.degBed());
  10411. #endif
  10412. HOTEND_LOOP()
  10413. max_temp = MAX3(max_temp, thermalManager.degHotend(e), thermalManager.degTargetHotend(e));
  10414. const bool new_led = (max_temp > 55.0) ? true : (max_temp < 54.0) ? false : red_led;
  10415. if (new_led != red_led) {
  10416. red_led = new_led;
  10417. #if PIN_EXISTS(STAT_LED_RED)
  10418. WRITE(STAT_LED_RED_PIN, new_led ? HIGH : LOW);
  10419. #if PIN_EXISTS(STAT_LED_BLUE)
  10420. WRITE(STAT_LED_BLUE_PIN, new_led ? LOW : HIGH);
  10421. #endif
  10422. #else
  10423. WRITE(STAT_LED_BLUE_PIN, new_led ? HIGH : LOW);
  10424. #endif
  10425. }
  10426. }
  10427. }
  10428. #endif
  10429. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  10430. void handle_filament_runout() {
  10431. if (!filament_ran_out) {
  10432. filament_ran_out = true;
  10433. enqueue_and_echo_commands_P(PSTR(FILAMENT_RUNOUT_SCRIPT));
  10434. stepper.synchronize();
  10435. }
  10436. }
  10437. #endif // FILAMENT_RUNOUT_SENSOR
  10438. #if ENABLED(FAST_PWM_FAN)
  10439. void setPwmFrequency(uint8_t pin, int val) {
  10440. val &= 0x07;
  10441. switch (digitalPinToTimer(pin)) {
  10442. #ifdef TCCR0A
  10443. #if !AVR_AT90USB1286_FAMILY
  10444. case TIMER0A:
  10445. #endif
  10446. case TIMER0B:
  10447. //_SET_CS(0, val);
  10448. break;
  10449. #endif
  10450. #ifdef TCCR1A
  10451. case TIMER1A:
  10452. case TIMER1B:
  10453. //_SET_CS(1, val);
  10454. break;
  10455. #endif
  10456. #ifdef TCCR2
  10457. case TIMER2:
  10458. case TIMER2:
  10459. _SET_CS(2, val);
  10460. break;
  10461. #endif
  10462. #ifdef TCCR2A
  10463. case TIMER2A:
  10464. case TIMER2B:
  10465. _SET_CS(2, val);
  10466. break;
  10467. #endif
  10468. #ifdef TCCR3A
  10469. case TIMER3A:
  10470. case TIMER3B:
  10471. case TIMER3C:
  10472. _SET_CS(3, val);
  10473. break;
  10474. #endif
  10475. #ifdef TCCR4A
  10476. case TIMER4A:
  10477. case TIMER4B:
  10478. case TIMER4C:
  10479. _SET_CS(4, val);
  10480. break;
  10481. #endif
  10482. #ifdef TCCR5A
  10483. case TIMER5A:
  10484. case TIMER5B:
  10485. case TIMER5C:
  10486. _SET_CS(5, val);
  10487. break;
  10488. #endif
  10489. }
  10490. }
  10491. #endif // FAST_PWM_FAN
  10492. float calculate_volumetric_multiplier(float diameter) {
  10493. if (!volumetric_enabled || diameter == 0) return 1.0;
  10494. return 1.0 / (M_PI * sq(diameter * 0.5));
  10495. }
  10496. void calculate_volumetric_multipliers() {
  10497. for (uint8_t i = 0; i < COUNT(filament_size); i++)
  10498. volumetric_multiplier[i] = calculate_volumetric_multiplier(filament_size[i]);
  10499. }
  10500. void enable_all_steppers() {
  10501. enable_X();
  10502. enable_Y();
  10503. enable_Z();
  10504. enable_E0();
  10505. enable_E1();
  10506. enable_E2();
  10507. enable_E3();
  10508. enable_E4();
  10509. }
  10510. void disable_e_steppers() {
  10511. disable_E0();
  10512. disable_E1();
  10513. disable_E2();
  10514. disable_E3();
  10515. disable_E4();
  10516. }
  10517. void disable_all_steppers() {
  10518. disable_X();
  10519. disable_Y();
  10520. disable_Z();
  10521. disable_e_steppers();
  10522. }
  10523. #if ENABLED(HAVE_TMC2130)
  10524. void automatic_current_control(TMC2130Stepper &st, String axisID) {
  10525. // Check otpw even if we don't use automatic control. Allows for flag inspection.
  10526. const bool is_otpw = st.checkOT();
  10527. // Report if a warning was triggered
  10528. static bool previous_otpw = false;
  10529. if (is_otpw && !previous_otpw) {
  10530. char timestamp[10];
  10531. duration_t elapsed = print_job_timer.duration();
  10532. const bool has_days = (elapsed.value > 60*60*24L);
  10533. (void)elapsed.toDigital(timestamp, has_days);
  10534. SERIAL_ECHO(timestamp);
  10535. SERIAL_ECHOPGM(": ");
  10536. SERIAL_ECHO(axisID);
  10537. SERIAL_ECHOLNPGM(" driver overtemperature warning!");
  10538. }
  10539. previous_otpw = is_otpw;
  10540. #if CURRENT_STEP > 0 && ENABLED(AUTOMATIC_CURRENT_CONTROL)
  10541. // Return if user has not enabled current control start with M906 S1.
  10542. if (!auto_current_control) return;
  10543. /**
  10544. * Decrease current if is_otpw is true.
  10545. * Bail out if driver is disabled.
  10546. * Increase current if OTPW has not been triggered yet.
  10547. */
  10548. uint16_t current = st.getCurrent();
  10549. if (is_otpw) {
  10550. st.setCurrent(current - CURRENT_STEP, R_SENSE, HOLD_MULTIPLIER);
  10551. #if ENABLED(REPORT_CURRENT_CHANGE)
  10552. SERIAL_ECHO(axisID);
  10553. SERIAL_ECHOPAIR(" current decreased to ", st.getCurrent());
  10554. #endif
  10555. }
  10556. else if (!st.isEnabled())
  10557. return;
  10558. else if (!is_otpw && !st.getOTPW()) {
  10559. current += CURRENT_STEP;
  10560. if (current <= AUTO_ADJUST_MAX) {
  10561. st.setCurrent(current, R_SENSE, HOLD_MULTIPLIER);
  10562. #if ENABLED(REPORT_CURRENT_CHANGE)
  10563. SERIAL_ECHO(axisID);
  10564. SERIAL_ECHOPAIR(" current increased to ", st.getCurrent());
  10565. #endif
  10566. }
  10567. }
  10568. SERIAL_EOL();
  10569. #endif
  10570. }
  10571. void checkOverTemp() {
  10572. static millis_t next_cOT = 0;
  10573. if (ELAPSED(millis(), next_cOT)) {
  10574. next_cOT = millis() + 5000;
  10575. #if ENABLED(X_IS_TMC2130)
  10576. automatic_current_control(stepperX, "X");
  10577. #endif
  10578. #if ENABLED(Y_IS_TMC2130)
  10579. automatic_current_control(stepperY, "Y");
  10580. #endif
  10581. #if ENABLED(Z_IS_TMC2130)
  10582. automatic_current_control(stepperZ, "Z");
  10583. #endif
  10584. #if ENABLED(X2_IS_TMC2130)
  10585. automatic_current_control(stepperX2, "X2");
  10586. #endif
  10587. #if ENABLED(Y2_IS_TMC2130)
  10588. automatic_current_control(stepperY2, "Y2");
  10589. #endif
  10590. #if ENABLED(Z2_IS_TMC2130)
  10591. automatic_current_control(stepperZ2, "Z2");
  10592. #endif
  10593. #if ENABLED(E0_IS_TMC2130)
  10594. automatic_current_control(stepperE0, "E0");
  10595. #endif
  10596. #if ENABLED(E1_IS_TMC2130)
  10597. automatic_current_control(stepperE1, "E1");
  10598. #endif
  10599. #if ENABLED(E2_IS_TMC2130)
  10600. automatic_current_control(stepperE2, "E2");
  10601. #endif
  10602. #if ENABLED(E3_IS_TMC2130)
  10603. automatic_current_control(stepperE3, "E3");
  10604. #endif
  10605. #if ENABLED(E4_IS_TMC2130)
  10606. automatic_current_control(stepperE4, "E4");
  10607. #endif
  10608. #if ENABLED(E4_IS_TMC2130)
  10609. automatic_current_control(stepperE4);
  10610. #endif
  10611. }
  10612. }
  10613. #endif // HAVE_TMC2130
  10614. /**
  10615. * Manage several activities:
  10616. * - Check for Filament Runout
  10617. * - Keep the command buffer full
  10618. * - Check for maximum inactive time between commands
  10619. * - Check for maximum inactive time between stepper commands
  10620. * - Check if pin CHDK needs to go LOW
  10621. * - Check for KILL button held down
  10622. * - Check for HOME button held down
  10623. * - Check if cooling fan needs to be switched on
  10624. * - Check if an idle but hot extruder needs filament extruded (EXTRUDER_RUNOUT_PREVENT)
  10625. */
  10626. void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
  10627. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  10628. if ((IS_SD_PRINTING || print_job_timer.isRunning()) && (READ(FIL_RUNOUT_PIN) == FIL_RUNOUT_INVERTING))
  10629. handle_filament_runout();
  10630. #endif
  10631. if (commands_in_queue < BUFSIZE) get_available_commands();
  10632. const millis_t ms = millis();
  10633. if (max_inactive_time && ELAPSED(ms, previous_cmd_ms + max_inactive_time)) {
  10634. SERIAL_ERROR_START();
  10635. SERIAL_ECHOLNPAIR(MSG_KILL_INACTIVE_TIME, parser.command_ptr);
  10636. kill(PSTR(MSG_KILLED));
  10637. }
  10638. // Prevent steppers timing-out in the middle of M600
  10639. #if ENABLED(ADVANCED_PAUSE_FEATURE) && ENABLED(PAUSE_PARK_NO_STEPPER_TIMEOUT)
  10640. #define MOVE_AWAY_TEST !move_away_flag
  10641. #else
  10642. #define MOVE_AWAY_TEST true
  10643. #endif
  10644. if (MOVE_AWAY_TEST && stepper_inactive_time && ELAPSED(ms, previous_cmd_ms + stepper_inactive_time)
  10645. && !ignore_stepper_queue && !planner.blocks_queued()) {
  10646. #if ENABLED(DISABLE_INACTIVE_X)
  10647. disable_X();
  10648. #endif
  10649. #if ENABLED(DISABLE_INACTIVE_Y)
  10650. disable_Y();
  10651. #endif
  10652. #if ENABLED(DISABLE_INACTIVE_Z)
  10653. disable_Z();
  10654. #endif
  10655. #if ENABLED(DISABLE_INACTIVE_E)
  10656. disable_e_steppers();
  10657. #endif
  10658. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTRA_LCD) // Only needed with an LCD
  10659. ubl_lcd_map_control = defer_return_to_status = false;
  10660. #endif
  10661. }
  10662. #ifdef CHDK // Check if pin should be set to LOW after M240 set it to HIGH
  10663. if (chdkActive && ELAPSED(ms, chdkHigh + CHDK_DELAY)) {
  10664. chdkActive = false;
  10665. WRITE(CHDK, LOW);
  10666. }
  10667. #endif
  10668. #if HAS_KILL
  10669. // Check if the kill button was pressed and wait just in case it was an accidental
  10670. // key kill key press
  10671. // -------------------------------------------------------------------------------
  10672. static int killCount = 0; // make the inactivity button a bit less responsive
  10673. const int KILL_DELAY = 750;
  10674. if (!READ(KILL_PIN))
  10675. killCount++;
  10676. else if (killCount > 0)
  10677. killCount--;
  10678. // Exceeded threshold and we can confirm that it was not accidental
  10679. // KILL the machine
  10680. // ----------------------------------------------------------------
  10681. if (killCount >= KILL_DELAY) {
  10682. SERIAL_ERROR_START();
  10683. SERIAL_ERRORLNPGM(MSG_KILL_BUTTON);
  10684. kill(PSTR(MSG_KILLED));
  10685. }
  10686. #endif
  10687. #if HAS_HOME
  10688. // Check to see if we have to home, use poor man's debouncer
  10689. // ---------------------------------------------------------
  10690. static int homeDebounceCount = 0; // poor man's debouncing count
  10691. const int HOME_DEBOUNCE_DELAY = 2500;
  10692. if (!IS_SD_PRINTING && !READ(HOME_PIN)) {
  10693. if (!homeDebounceCount) {
  10694. enqueue_and_echo_commands_P(PSTR("G28"));
  10695. LCD_MESSAGEPGM(MSG_AUTO_HOME);
  10696. }
  10697. if (homeDebounceCount < HOME_DEBOUNCE_DELAY)
  10698. homeDebounceCount++;
  10699. else
  10700. homeDebounceCount = 0;
  10701. }
  10702. #endif
  10703. #if ENABLED(USE_CONTROLLER_FAN)
  10704. controllerFan(); // Check if fan should be turned on to cool stepper drivers down
  10705. #endif
  10706. #if ENABLED(EXTRUDER_RUNOUT_PREVENT)
  10707. if (ELAPSED(ms, previous_cmd_ms + (EXTRUDER_RUNOUT_SECONDS) * 1000UL)
  10708. && thermalManager.degHotend(active_extruder) > EXTRUDER_RUNOUT_MINTEMP) {
  10709. bool oldstatus;
  10710. #if ENABLED(SWITCHING_EXTRUDER)
  10711. oldstatus = E0_ENABLE_READ;
  10712. enable_E0();
  10713. #else // !SWITCHING_EXTRUDER
  10714. switch (active_extruder) {
  10715. case 0: oldstatus = E0_ENABLE_READ; enable_E0(); break;
  10716. #if E_STEPPERS > 1
  10717. case 1: oldstatus = E1_ENABLE_READ; enable_E1(); break;
  10718. #if E_STEPPERS > 2
  10719. case 2: oldstatus = E2_ENABLE_READ; enable_E2(); break;
  10720. #if E_STEPPERS > 3
  10721. case 3: oldstatus = E3_ENABLE_READ; enable_E3(); break;
  10722. #if E_STEPPERS > 4
  10723. case 4: oldstatus = E4_ENABLE_READ; enable_E4(); break;
  10724. #endif // E_STEPPERS > 4
  10725. #endif // E_STEPPERS > 3
  10726. #endif // E_STEPPERS > 2
  10727. #endif // E_STEPPERS > 1
  10728. }
  10729. #endif // !SWITCHING_EXTRUDER
  10730. previous_cmd_ms = ms; // refresh_cmd_timeout()
  10731. const float olde = current_position[E_AXIS];
  10732. current_position[E_AXIS] += EXTRUDER_RUNOUT_EXTRUDE;
  10733. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(EXTRUDER_RUNOUT_SPEED), active_extruder);
  10734. current_position[E_AXIS] = olde;
  10735. planner.set_e_position_mm(olde);
  10736. stepper.synchronize();
  10737. #if ENABLED(SWITCHING_EXTRUDER)
  10738. E0_ENABLE_WRITE(oldstatus);
  10739. #else
  10740. switch (active_extruder) {
  10741. case 0: E0_ENABLE_WRITE(oldstatus); break;
  10742. #if E_STEPPERS > 1
  10743. case 1: E1_ENABLE_WRITE(oldstatus); break;
  10744. #if E_STEPPERS > 2
  10745. case 2: E2_ENABLE_WRITE(oldstatus); break;
  10746. #if E_STEPPERS > 3
  10747. case 3: E3_ENABLE_WRITE(oldstatus); break;
  10748. #if E_STEPPERS > 4
  10749. case 4: E4_ENABLE_WRITE(oldstatus); break;
  10750. #endif // E_STEPPERS > 4
  10751. #endif // E_STEPPERS > 3
  10752. #endif // E_STEPPERS > 2
  10753. #endif // E_STEPPERS > 1
  10754. }
  10755. #endif // !SWITCHING_EXTRUDER
  10756. }
  10757. #endif // EXTRUDER_RUNOUT_PREVENT
  10758. #if ENABLED(DUAL_X_CARRIAGE)
  10759. // handle delayed move timeout
  10760. if (delayed_move_time && ELAPSED(ms, delayed_move_time + 1000UL) && IsRunning()) {
  10761. // travel moves have been received so enact them
  10762. delayed_move_time = 0xFFFFFFFFUL; // force moves to be done
  10763. set_destination_to_current();
  10764. prepare_move_to_destination();
  10765. }
  10766. #endif
  10767. #if ENABLED(TEMP_STAT_LEDS)
  10768. handle_status_leds();
  10769. #endif
  10770. #if ENABLED(HAVE_TMC2130)
  10771. checkOverTemp();
  10772. #endif
  10773. planner.check_axes_activity();
  10774. }
  10775. /**
  10776. * Standard idle routine keeps the machine alive
  10777. */
  10778. void idle(
  10779. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  10780. bool no_stepper_sleep/*=false*/
  10781. #endif
  10782. ) {
  10783. lcd_update();
  10784. host_keepalive();
  10785. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  10786. auto_report_temperatures();
  10787. #endif
  10788. manage_inactivity(
  10789. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  10790. no_stepper_sleep
  10791. #endif
  10792. );
  10793. thermalManager.manage_heater();
  10794. #if ENABLED(PRINTCOUNTER)
  10795. print_job_timer.tick();
  10796. #endif
  10797. #if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
  10798. buzzer.tick();
  10799. #endif
  10800. #if ENABLED(I2C_POSITION_ENCODERS)
  10801. if (planner.blocks_queued() &&
  10802. ( (blockBufferIndexRef != planner.block_buffer_head) ||
  10803. ((lastUpdateMillis + I2CPE_MIN_UPD_TIME_MS) < millis())) ) {
  10804. blockBufferIndexRef = planner.block_buffer_head;
  10805. I2CPEM.update();
  10806. lastUpdateMillis = millis();
  10807. }
  10808. #endif
  10809. }
  10810. /**
  10811. * Kill all activity and lock the machine.
  10812. * After this the machine will need to be reset.
  10813. */
  10814. void kill(const char* lcd_msg) {
  10815. SERIAL_ERROR_START();
  10816. SERIAL_ERRORLNPGM(MSG_ERR_KILLED);
  10817. thermalManager.disable_all_heaters();
  10818. disable_all_steppers();
  10819. #if ENABLED(ULTRA_LCD)
  10820. kill_screen(lcd_msg);
  10821. #else
  10822. UNUSED(lcd_msg);
  10823. #endif
  10824. _delay_ms(600); // Wait a short time (allows messages to get out before shutting down.
  10825. cli(); // Stop interrupts
  10826. _delay_ms(250); //Wait to ensure all interrupts routines stopped
  10827. thermalManager.disable_all_heaters(); //turn off heaters again
  10828. #if HAS_POWER_SWITCH
  10829. SET_INPUT(PS_ON_PIN);
  10830. #endif
  10831. suicide();
  10832. while (1) {
  10833. #if ENABLED(USE_WATCHDOG)
  10834. watchdog_reset();
  10835. #endif
  10836. } // Wait for reset
  10837. }
  10838. /**
  10839. * Turn off heaters and stop the print in progress
  10840. * After a stop the machine may be resumed with M999
  10841. */
  10842. void stop() {
  10843. thermalManager.disable_all_heaters(); // 'unpause' taken care of in here
  10844. #if ENABLED(PROBING_FANS_OFF)
  10845. if (fans_paused) fans_pause(false); // put things back the way they were
  10846. #endif
  10847. if (IsRunning()) {
  10848. Stopped_gcode_LastN = gcode_LastN; // Save last g_code for restart
  10849. SERIAL_ERROR_START();
  10850. SERIAL_ERRORLNPGM(MSG_ERR_STOPPED);
  10851. LCD_MESSAGEPGM(MSG_STOPPED);
  10852. safe_delay(350); // allow enough time for messages to get out before stopping
  10853. Running = false;
  10854. }
  10855. }
  10856. /**
  10857. * Marlin entry-point: Set up before the program loop
  10858. * - Set up the kill pin, filament runout, power hold
  10859. * - Start the serial port
  10860. * - Print startup messages and diagnostics
  10861. * - Get EEPROM or default settings
  10862. * - Initialize managers for:
  10863. * • temperature
  10864. * • planner
  10865. * • watchdog
  10866. * • stepper
  10867. * • photo pin
  10868. * • servos
  10869. * • LCD controller
  10870. * • Digipot I2C
  10871. * • Z probe sled
  10872. * • status LEDs
  10873. */
  10874. void setup() {
  10875. #ifdef DISABLE_JTAG
  10876. // Disable JTAG on AT90USB chips to free up pins for IO
  10877. MCUCR = 0x80;
  10878. MCUCR = 0x80;
  10879. #endif
  10880. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  10881. setup_filrunoutpin();
  10882. #endif
  10883. setup_killpin();
  10884. setup_powerhold();
  10885. #if HAS_STEPPER_RESET
  10886. disableStepperDrivers();
  10887. #endif
  10888. MYSERIAL.begin(BAUDRATE);
  10889. SERIAL_PROTOCOLLNPGM("start");
  10890. SERIAL_ECHO_START();
  10891. // Check startup - does nothing if bootloader sets MCUSR to 0
  10892. byte mcu = MCUSR;
  10893. if (mcu & 1) SERIAL_ECHOLNPGM(MSG_POWERUP);
  10894. if (mcu & 2) SERIAL_ECHOLNPGM(MSG_EXTERNAL_RESET);
  10895. if (mcu & 4) SERIAL_ECHOLNPGM(MSG_BROWNOUT_RESET);
  10896. if (mcu & 8) SERIAL_ECHOLNPGM(MSG_WATCHDOG_RESET);
  10897. if (mcu & 32) SERIAL_ECHOLNPGM(MSG_SOFTWARE_RESET);
  10898. MCUSR = 0;
  10899. SERIAL_ECHOPGM(MSG_MARLIN);
  10900. SERIAL_CHAR(' ');
  10901. SERIAL_ECHOLNPGM(SHORT_BUILD_VERSION);
  10902. SERIAL_EOL();
  10903. #if defined(STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
  10904. SERIAL_ECHO_START();
  10905. SERIAL_ECHOPGM(MSG_CONFIGURATION_VER);
  10906. SERIAL_ECHOPGM(STRING_DISTRIBUTION_DATE);
  10907. SERIAL_ECHOLNPGM(MSG_AUTHOR STRING_CONFIG_H_AUTHOR);
  10908. SERIAL_ECHOLNPGM("Compiled: " __DATE__);
  10909. #endif
  10910. SERIAL_ECHO_START();
  10911. SERIAL_ECHOPAIR(MSG_FREE_MEMORY, freeMemory());
  10912. SERIAL_ECHOLNPAIR(MSG_PLANNER_BUFFER_BYTES, (int)sizeof(block_t)*BLOCK_BUFFER_SIZE);
  10913. // Send "ok" after commands by default
  10914. for (int8_t i = 0; i < BUFSIZE; i++) send_ok[i] = true;
  10915. // Load data from EEPROM if available (or use defaults)
  10916. // This also updates variables in the planner, elsewhere
  10917. (void)settings.load();
  10918. #if HAS_M206_COMMAND
  10919. // Initialize current position based on home_offset
  10920. COPY(current_position, home_offset);
  10921. #else
  10922. ZERO(current_position);
  10923. #endif
  10924. // Vital to init stepper/planner equivalent for current_position
  10925. SYNC_PLAN_POSITION_KINEMATIC();
  10926. thermalManager.init(); // Initialize temperature loop
  10927. #if ENABLED(USE_WATCHDOG)
  10928. watchdog_init();
  10929. #endif
  10930. stepper.init(); // Initialize stepper, this enables interrupts!
  10931. servo_init();
  10932. #if HAS_PHOTOGRAPH
  10933. OUT_WRITE(PHOTOGRAPH_PIN, LOW);
  10934. #endif
  10935. #if HAS_CASE_LIGHT
  10936. case_light_on = CASE_LIGHT_DEFAULT_ON;
  10937. case_light_brightness = CASE_LIGHT_DEFAULT_BRIGHTNESS;
  10938. update_case_light();
  10939. #endif
  10940. #if ENABLED(SPINDLE_LASER_ENABLE)
  10941. OUT_WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // init spindle to off
  10942. #if SPINDLE_DIR_CHANGE
  10943. OUT_WRITE(SPINDLE_DIR_PIN, SPINDLE_INVERT_DIR ? 255 : 0); // init rotation to clockwise (M3)
  10944. #endif
  10945. #if ENABLED(SPINDLE_LASER_PWM)
  10946. SET_OUTPUT(SPINDLE_LASER_PWM_PIN);
  10947. analogWrite(SPINDLE_LASER_PWM_PIN, SPINDLE_LASER_PWM_INVERT ? 255 : 0); // set to lowest speed
  10948. #endif
  10949. #endif
  10950. #if HAS_BED_PROBE
  10951. endstops.enable_z_probe(false);
  10952. #endif
  10953. #if ENABLED(USE_CONTROLLER_FAN)
  10954. SET_OUTPUT(CONTROLLER_FAN_PIN); //Set pin used for driver cooling fan
  10955. #endif
  10956. #if HAS_STEPPER_RESET
  10957. enableStepperDrivers();
  10958. #endif
  10959. #if ENABLED(DIGIPOT_I2C)
  10960. digipot_i2c_init();
  10961. #endif
  10962. #if ENABLED(DAC_STEPPER_CURRENT)
  10963. dac_init();
  10964. #endif
  10965. #if (ENABLED(Z_PROBE_SLED) || ENABLED(SOLENOID_PROBE)) && HAS_SOLENOID_1
  10966. OUT_WRITE(SOL1_PIN, LOW); // turn it off
  10967. #endif
  10968. #if HAS_HOME
  10969. SET_INPUT_PULLUP(HOME_PIN);
  10970. #endif
  10971. #if PIN_EXISTS(STAT_LED_RED)
  10972. OUT_WRITE(STAT_LED_RED_PIN, LOW); // turn it off
  10973. #endif
  10974. #if PIN_EXISTS(STAT_LED_BLUE)
  10975. OUT_WRITE(STAT_LED_BLUE_PIN, LOW); // turn it off
  10976. #endif
  10977. #if ENABLED(RGB_LED) || ENABLED(RGBW_LED)
  10978. SET_OUTPUT(RGB_LED_R_PIN);
  10979. SET_OUTPUT(RGB_LED_G_PIN);
  10980. SET_OUTPUT(RGB_LED_B_PIN);
  10981. #if ENABLED(RGBW_LED)
  10982. SET_OUTPUT(RGB_LED_W_PIN);
  10983. #endif
  10984. #endif
  10985. #if ENABLED(MK2_MULTIPLEXER)
  10986. SET_OUTPUT(E_MUX0_PIN);
  10987. SET_OUTPUT(E_MUX1_PIN);
  10988. SET_OUTPUT(E_MUX2_PIN);
  10989. #endif
  10990. lcd_init();
  10991. #if ENABLED(SHOW_BOOTSCREEN)
  10992. #if ENABLED(DOGLCD) // On DOGM the first bootscreen is already drawn
  10993. #if ENABLED(SHOW_CUSTOM_BOOTSCREEN)
  10994. safe_delay(CUSTOM_BOOTSCREEN_TIMEOUT); // Custom boot screen pause
  10995. lcd_bootscreen(); // Show Marlin boot screen
  10996. #endif
  10997. safe_delay(BOOTSCREEN_TIMEOUT); // Pause
  10998. #elif ENABLED(ULTRA_LCD)
  10999. lcd_bootscreen();
  11000. #if DISABLED(SDSUPPORT)
  11001. lcd_init();
  11002. #endif
  11003. #endif
  11004. #endif
  11005. #if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
  11006. // Initialize mixing to 100% color 1
  11007. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  11008. mixing_factor[i] = (i == 0) ? 1.0 : 0.0;
  11009. for (uint8_t t = 0; t < MIXING_VIRTUAL_TOOLS; t++)
  11010. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  11011. mixing_virtual_tool_mix[t][i] = mixing_factor[i];
  11012. #endif
  11013. #if ENABLED(BLTOUCH)
  11014. // Make sure any BLTouch error condition is cleared
  11015. bltouch_command(BLTOUCH_RESET);
  11016. set_bltouch_deployed(true);
  11017. set_bltouch_deployed(false);
  11018. #endif
  11019. #if ENABLED(I2C_POSITION_ENCODERS)
  11020. I2CPEM.init();
  11021. #endif
  11022. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  11023. i2c.onReceive(i2c_on_receive);
  11024. i2c.onRequest(i2c_on_request);
  11025. #endif
  11026. #if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
  11027. setup_endstop_interrupts();
  11028. #endif
  11029. #if ENABLED(SWITCHING_EXTRUDER)
  11030. move_extruder_servo(0); // Initialize extruder servo
  11031. #endif
  11032. #if ENABLED(SWITCHING_NOZZLE)
  11033. move_nozzle_servo(0); // Initialize nozzle servo
  11034. #endif
  11035. }
  11036. /**
  11037. * The main Marlin program loop
  11038. *
  11039. * - Save or log commands to SD
  11040. * - Process available commands (if not saving)
  11041. * - Call heater manager
  11042. * - Call inactivity manager
  11043. * - Call endstop manager
  11044. * - Call LCD update
  11045. */
  11046. void loop() {
  11047. if (commands_in_queue < BUFSIZE) get_available_commands();
  11048. #if ENABLED(SDSUPPORT)
  11049. card.checkautostart(false);
  11050. #endif
  11051. if (commands_in_queue) {
  11052. #if ENABLED(SDSUPPORT)
  11053. if (card.saving) {
  11054. char* command = command_queue[cmd_queue_index_r];
  11055. if (strstr_P(command, PSTR("M29"))) {
  11056. // M29 closes the file
  11057. card.closefile();
  11058. SERIAL_PROTOCOLLNPGM(MSG_FILE_SAVED);
  11059. ok_to_send();
  11060. }
  11061. else {
  11062. // Write the string from the read buffer to SD
  11063. card.write_command(command);
  11064. if (card.logging)
  11065. process_next_command(); // The card is saving because it's logging
  11066. else
  11067. ok_to_send();
  11068. }
  11069. }
  11070. else
  11071. process_next_command();
  11072. #else
  11073. process_next_command();
  11074. #endif // SDSUPPORT
  11075. // The queue may be reset by a command handler or by code invoked by idle() within a handler
  11076. if (commands_in_queue) {
  11077. --commands_in_queue;
  11078. if (++cmd_queue_index_r >= BUFSIZE) cmd_queue_index_r = 0;
  11079. }
  11080. }
  11081. endstops.report_state();
  11082. idle();
  11083. }