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 451KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077
  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 (Requires FWRETRACT)
  53. * G11 - Retract recover filament according to settings of M208 (Requires FWRETRACT)
  54. * G12 - Clean tool (Requires NOZZLE_CLEAN_FEATURE)
  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 (Requires INCH_MODE_SUPPORT)
  59. * G21 - Set input units to millimeters (Requires INCH_MODE_SUPPORT)
  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 - Start or continue the bed leveling probe procedure (Requires bed leveling)
  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 in any direction using the Z_MIN_PROBE (Requires G38_PROBE_TARGET)
  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 - Set print fan speed.
  119. * M107 - Print 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> P<bright>. Values 0-255. (Requires BLINKM, RGB_LED, RGBW_LED, NEOPIXEL_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. * M290 - Babystepping (Requires BABYSTEPPING)
  175. * M300 - Play beep sound S<frequency Hz> P<duration ms>
  176. * M301 - Set PID parameters P I and D. (Requires PIDTEMP)
  177. * M302 - Allow cold extrudes, or set the minimum extrude S<temperature>. (Requires PREVENT_COLD_EXTRUSION)
  178. * M303 - PID relay autotune S<temperature> sets the target temperature. Default 150C. (Requires PIDTEMP)
  179. * M304 - Set bed PID parameters P I and D. (Requires PIDTEMPBED)
  180. * M350 - Set microstepping mode. (Requires digital microstepping pins.)
  181. * M351 - Toggle MS1 MS2 pins directly. (Requires digital microstepping pins.)
  182. * M355 - Set Case Light on/off and set brightness. (Requires CASE_LIGHT_PIN)
  183. * M380 - Activate solenoid on active extruder. (Requires EXT_SOLENOID)
  184. * M381 - Disable all solenoids. (Requires EXT_SOLENOID)
  185. * M400 - Finish all moves.
  186. * M401 - Lower Z probe. (Requires a probe)
  187. * M402 - Raise Z probe. (Requires a probe)
  188. * M404 - Display or set the Nominal Filament Width: "W<diameter>". (Requires FILAMENT_WIDTH_SENSOR)
  189. * M405 - Enable Filament Sensor flow control. "M405 D<delay_cm>". (Requires FILAMENT_WIDTH_SENSOR)
  190. * M406 - Disable Filament Sensor flow control. (Requires FILAMENT_WIDTH_SENSOR)
  191. * M407 - Display measured filament diameter in millimeters. (Requires FILAMENT_WIDTH_SENSOR)
  192. * M410 - Quickstop. Abort all planned moves.
  193. * M420 - Enable/Disable Leveling (with current values) S1=enable S0=disable (Requires MESH_BED_LEVELING or ABL)
  194. * 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)
  195. * M428 - Set the home_offset based on the current_position. Nearest edge applies. (Disabled by NO_WORKSPACE_OFFSETS or DELTA)
  196. * M500 - Store parameters in EEPROM. (Requires EEPROM_SETTINGS)
  197. * M501 - Restore parameters from EEPROM. (Requires EEPROM_SETTINGS)
  198. * M502 - Revert to the default "factory settings". ** Does not write them to EEPROM! **
  199. * M503 - Print the current settings (in memory): "M503 S<verbose>". S0 specifies compact output.
  200. * M540 - Enable/disable SD card abort on endstop hit: "M540 S<state>". (Requires ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  201. * M600 - Pause for filament change: "M600 X<pos> Y<pos> Z<raise> E<first_retract> L<later_retract>". (Requires ADVANCED_PAUSE_FEATURE)
  202. * 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)
  203. * M666 - Set delta endstop adjustment. (Requires DELTA)
  204. * M605 - Set dual x-carriage movement mode: "M605 S<mode> [X<x_offset>] [R<temp_offset>]". (Requires DUAL_X_CARRIAGE)
  205. * M851 - Set Z probe's Z offset in current units. (Negative = below the nozzle.)
  206. * M860 - Report the position of position encoder modules.
  207. * M861 - Report the status of position encoder modules.
  208. * M862 - Perform an axis continuity test for position encoder modules.
  209. * M863 - Perform steps-per-mm calibration for position encoder modules.
  210. * M864 - Change position encoder module I2C address.
  211. * M865 - Check position encoder module firmware version.
  212. * M866 - Report or reset position encoder module error count.
  213. * M867 - Enable/disable or toggle error correction for position encoder modules.
  214. * M868 - Report or set position encoder module error correction threshold.
  215. * M869 - Report position encoder module error.
  216. * M900 - Get and/or Set advance K factor and WH/D ratio. (Requires LIN_ADVANCE)
  217. * 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)
  218. * M907 - Set digital trimpot motor current using axis codes. (Requires a board with digital trimpots)
  219. * M908 - Control digital trimpot directly. (Requires DAC_STEPPER_CURRENT or DIGIPOTSS_PIN)
  220. * M909 - Print digipot/DAC current value. (Requires DAC_STEPPER_CURRENT)
  221. * M910 - Commit digipot/DAC value to external EEPROM via I2C. (Requires DAC_STEPPER_CURRENT)
  222. * M911 - Report stepper driver overtemperature pre-warn condition. (Requires HAVE_TMC2130)
  223. * M912 - Clear stepper driver overtemperature pre-warn condition flag. (Requires HAVE_TMC2130)
  224. * M913 - Set HYBRID_THRESHOLD speed. (Requires HYBRID_THRESHOLD)
  225. * M914 - Set SENSORLESS_HOMING sensitivity. (Requires SENSORLESS_HOMING)
  226. *
  227. * M360 - SCARA calibration: Move to cal-position ThetaA (0 deg calibration)
  228. * M361 - SCARA calibration: Move to cal-position ThetaB (90 deg calibration - steps per degree)
  229. * M362 - SCARA calibration: Move to cal-position PsiA (0 deg calibration)
  230. * M363 - SCARA calibration: Move to cal-position PsiB (90 deg calibration - steps per degree)
  231. * M364 - SCARA calibration: Move to cal-position PSIC (90 deg to Theta calibration position)
  232. *
  233. * ************ Custom codes - This can change to suit future G-code regulations
  234. * M928 - Start SD logging: "M928 filename.gco". Stop with M29. (Requires SDSUPPORT)
  235. * M999 - Restart after being stopped by error
  236. *
  237. * "T" Codes
  238. *
  239. * T0-T3 - Select an extruder (tool) by index: "T<n> F<units/min>"
  240. *
  241. */
  242. #include "Marlin.h"
  243. #include "ultralcd.h"
  244. #include "planner.h"
  245. #include "stepper.h"
  246. #include "endstops.h"
  247. #include "temperature.h"
  248. #include "cardreader.h"
  249. #include "configuration_store.h"
  250. #include "language.h"
  251. #include "pins_arduino.h"
  252. #include "math.h"
  253. #include "nozzle.h"
  254. #include "duration_t.h"
  255. #include "types.h"
  256. #include "gcode.h"
  257. #if HAS_ABL
  258. #include "vector_3.h"
  259. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  260. #include "least_squares_fit.h"
  261. #endif
  262. #elif ENABLED(MESH_BED_LEVELING)
  263. #include "mesh_bed_leveling.h"
  264. #endif
  265. #if ENABLED(BEZIER_CURVE_SUPPORT)
  266. #include "planner_bezier.h"
  267. #endif
  268. #if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
  269. #include "buzzer.h"
  270. #endif
  271. #if ENABLED(USE_WATCHDOG)
  272. #include "watchdog.h"
  273. #endif
  274. #if ENABLED(MAX7219_DEBUG)
  275. #include "Max7219_Debug_LEDs.h"
  276. #endif
  277. #if ENABLED(NEOPIXEL_LED)
  278. #include <Adafruit_NeoPixel.h>
  279. #endif
  280. #if ENABLED(BLINKM)
  281. #include "blinkm.h"
  282. #include "Wire.h"
  283. #endif
  284. #if ENABLED(PCA9632)
  285. #include "pca9632.h"
  286. #endif
  287. #if HAS_SERVOS
  288. #include "servo.h"
  289. #endif
  290. #if HAS_DIGIPOTSS
  291. #include <SPI.h>
  292. #endif
  293. #if ENABLED(DAC_STEPPER_CURRENT)
  294. #include "stepper_dac.h"
  295. #endif
  296. #if ENABLED(EXPERIMENTAL_I2CBUS)
  297. #include "twibus.h"
  298. #endif
  299. #if ENABLED(I2C_POSITION_ENCODERS)
  300. #include "I2CPositionEncoder.h"
  301. #endif
  302. #if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
  303. #include "endstop_interrupts.h"
  304. #endif
  305. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  306. void gcode_M100();
  307. void M100_dump_routine(const char * const title, const char *start, const char *end);
  308. #endif
  309. #if ENABLED(SDSUPPORT)
  310. CardReader card;
  311. #endif
  312. #if ENABLED(EXPERIMENTAL_I2CBUS)
  313. TWIBus i2c;
  314. #endif
  315. #if ENABLED(G38_PROBE_TARGET)
  316. bool G38_move = false,
  317. G38_endstop_hit = false;
  318. #endif
  319. #if ENABLED(AUTO_BED_LEVELING_UBL)
  320. #include "ubl.h"
  321. extern bool defer_return_to_status;
  322. unified_bed_leveling ubl;
  323. #define UBL_MESH_VALID !( ( ubl.z_values[0][0] == ubl.z_values[0][1] && ubl.z_values[0][1] == ubl.z_values[0][2] \
  324. && ubl.z_values[1][0] == ubl.z_values[1][1] && ubl.z_values[1][1] == ubl.z_values[1][2] \
  325. && ubl.z_values[2][0] == ubl.z_values[2][1] && ubl.z_values[2][1] == ubl.z_values[2][2] \
  326. && ubl.z_values[0][0] == 0 && ubl.z_values[1][0] == 0 && ubl.z_values[2][0] == 0 ) \
  327. || isnan(ubl.z_values[0][0]))
  328. #endif
  329. #if ENABLED(NEOPIXEL_LED)
  330. #if NEOPIXEL_TYPE == NEO_RGB || NEOPIXEL_TYPE == NEO_RBG || NEOPIXEL_TYPE == NEO_GRB || NEOPIXEL_TYPE == NEO_GBR || NEOPIXEL_TYPE == NEO_BRG || NEOPIXEL_TYPE == NEO_BGR
  331. #define NEO_WHITE 255, 255, 255
  332. #else
  333. #define NEO_WHITE 0, 0, 0, 255
  334. #endif
  335. #endif
  336. #if ENABLED(RGB_LED) || ENABLED(BLINKM) || ENABLED(PCA9632)
  337. #define LED_WHITE 255, 255, 255
  338. #elif ENABLED(RGBW_LED)
  339. #define LED_WHITE 0, 0, 0, 255
  340. #endif
  341. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  342. int8_t active_coordinate_system = -1; // machine space
  343. float coordinate_system[MAX_COORDINATE_SYSTEMS][XYZ];
  344. #endif
  345. bool Running = true;
  346. uint8_t marlin_debug_flags = DEBUG_NONE;
  347. /**
  348. * Cartesian Current Position
  349. * Used to track the native machine position as moves are queued.
  350. * Used by 'buffer_line_to_current_position' to do a move after changing it.
  351. * Used by 'SYNC_PLAN_POSITION_KINEMATIC' to update 'planner.position'.
  352. */
  353. float current_position[XYZE] = { 0.0 };
  354. /**
  355. * Cartesian Destination
  356. * The destination for a move, filled in by G-code movement commands,
  357. * and expected by functions like 'prepare_move_to_destination'.
  358. * Set with 'gcode_get_destination' or 'set_destination_from_current'.
  359. */
  360. float destination[XYZE] = { 0.0 };
  361. /**
  362. * axis_homed
  363. * Flags that each linear axis was homed.
  364. * XYZ on cartesian, ABC on delta, ABZ on SCARA.
  365. *
  366. * axis_known_position
  367. * Flags that the position is known in each linear axis. Set when homed.
  368. * Cleared whenever a stepper powers off, potentially losing its position.
  369. */
  370. bool axis_homed[XYZ] = { false }, axis_known_position[XYZ] = { false };
  371. /**
  372. * GCode line number handling. Hosts may opt to include line numbers when
  373. * sending commands to Marlin, and lines will be checked for sequentiality.
  374. * M110 N<int> sets the current line number.
  375. */
  376. static long gcode_N, gcode_LastN, Stopped_gcode_LastN = 0;
  377. /**
  378. * GCode Command Queue
  379. * A simple ring buffer of BUFSIZE command strings.
  380. *
  381. * Commands are copied into this buffer by the command injectors
  382. * (immediate, serial, sd card) and they are processed sequentially by
  383. * the main loop. The process_next_command function parses the next
  384. * command and hands off execution to individual handler functions.
  385. */
  386. uint8_t commands_in_queue = 0; // Count of commands in the queue
  387. static uint8_t cmd_queue_index_r = 0, // Ring buffer read position
  388. cmd_queue_index_w = 0; // Ring buffer write position
  389. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  390. char command_queue[BUFSIZE][MAX_CMD_SIZE]; // Necessary so M100 Free Memory Dumper can show us the commands and any corruption
  391. #else // This can be collapsed back to the way it was soon.
  392. static char command_queue[BUFSIZE][MAX_CMD_SIZE];
  393. #endif
  394. /**
  395. * Next Injected Command pointer. NULL if no commands are being injected.
  396. * Used by Marlin internally to ensure that commands initiated from within
  397. * are enqueued ahead of any pending serial or sd card commands.
  398. */
  399. static const char *injected_commands_P = NULL;
  400. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  401. TempUnit input_temp_units = TEMPUNIT_C;
  402. #endif
  403. /**
  404. * Feed rates are often configured with mm/m
  405. * but the planner and stepper like mm/s units.
  406. */
  407. static const float homing_feedrate_mm_s[] PROGMEM = {
  408. #if ENABLED(DELTA)
  409. MMM_TO_MMS(HOMING_FEEDRATE_Z), MMM_TO_MMS(HOMING_FEEDRATE_Z),
  410. #else
  411. MMM_TO_MMS(HOMING_FEEDRATE_XY), MMM_TO_MMS(HOMING_FEEDRATE_XY),
  412. #endif
  413. MMM_TO_MMS(HOMING_FEEDRATE_Z), 0
  414. };
  415. FORCE_INLINE float homing_feedrate(const AxisEnum a) { return pgm_read_float(&homing_feedrate_mm_s[a]); }
  416. float feedrate_mm_s = MMM_TO_MMS(1500.0);
  417. static float saved_feedrate_mm_s;
  418. int16_t feedrate_percentage = 100, saved_feedrate_percentage;
  419. // Initialized by settings.load()
  420. bool axis_relative_modes[] = AXIS_RELATIVE_MODES;
  421. #if HAS_WORKSPACE_OFFSET
  422. #if HAS_POSITION_SHIFT
  423. // The distance that XYZ has been offset by G92. Reset by G28.
  424. float position_shift[XYZ] = { 0 };
  425. #endif
  426. #if HAS_HOME_OFFSET
  427. // This offset is added to the configured home position.
  428. // Set by M206, M428, or menu item. Saved to EEPROM.
  429. float home_offset[XYZ] = { 0 };
  430. #endif
  431. #if HAS_HOME_OFFSET && HAS_POSITION_SHIFT
  432. // The above two are combined to save on computes
  433. float workspace_offset[XYZ] = { 0 };
  434. #endif
  435. #endif
  436. // Software Endstops are based on the configured limits.
  437. float soft_endstop_min[XYZ] = { X_MIN_BED, Y_MIN_BED, Z_MIN_POS },
  438. soft_endstop_max[XYZ] = { X_MAX_BED, Y_MAX_BED, Z_MAX_POS };
  439. #if HAS_SOFTWARE_ENDSTOPS
  440. bool soft_endstops_enabled = true;
  441. #if IS_KINEMATIC
  442. float soft_endstop_radius, soft_endstop_radius_2;
  443. #endif
  444. #endif
  445. #if FAN_COUNT > 0
  446. int16_t fanSpeeds[FAN_COUNT] = { 0 };
  447. #if ENABLED(EXTRA_FAN_SPEED)
  448. int16_t old_fanSpeeds[FAN_COUNT],
  449. new_fanSpeeds[FAN_COUNT];
  450. #endif
  451. #if ENABLED(PROBING_FANS_OFF)
  452. bool fans_paused = false;
  453. int16_t paused_fanSpeeds[FAN_COUNT] = { 0 };
  454. #endif
  455. #endif
  456. // The active extruder (tool). Set with T<extruder> command.
  457. uint8_t active_extruder = 0;
  458. // Relative Mode. Enable with G91, disable with G90.
  459. static bool relative_mode = false;
  460. // For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
  461. volatile bool wait_for_heatup = true;
  462. // For M0/M1, this flag may be cleared (by M108) to exit the wait-for-user loop
  463. #if HAS_RESUME_CONTINUE
  464. volatile bool wait_for_user = false;
  465. #endif
  466. const char axis_codes[XYZE] = { 'X', 'Y', 'Z', 'E' };
  467. // Number of characters read in the current line of serial input
  468. static int serial_count = 0;
  469. // Inactivity shutdown
  470. millis_t previous_cmd_ms = 0;
  471. static millis_t max_inactive_time = 0;
  472. static millis_t stepper_inactive_time = (DEFAULT_STEPPER_DEACTIVE_TIME) * 1000UL;
  473. // Print Job Timer
  474. #if ENABLED(PRINTCOUNTER)
  475. PrintCounter print_job_timer = PrintCounter();
  476. #else
  477. Stopwatch print_job_timer = Stopwatch();
  478. #endif
  479. // Buzzer - I2C on the LCD or a BEEPER_PIN
  480. #if ENABLED(LCD_USE_I2C_BUZZER)
  481. #define BUZZ(d,f) lcd_buzz(d, f)
  482. #elif PIN_EXISTS(BEEPER)
  483. Buzzer buzzer;
  484. #define BUZZ(d,f) buzzer.tone(d, f)
  485. #else
  486. #define BUZZ(d,f) NOOP
  487. #endif
  488. static uint8_t target_extruder;
  489. #if HAS_BED_PROBE
  490. float zprobe_zoffset; // Initialized by settings.load()
  491. #endif
  492. #if HAS_ABL
  493. float xy_probe_feedrate_mm_s = MMM_TO_MMS(XY_PROBE_SPEED);
  494. #define XY_PROBE_FEEDRATE_MM_S xy_probe_feedrate_mm_s
  495. #elif defined(XY_PROBE_SPEED)
  496. #define XY_PROBE_FEEDRATE_MM_S MMM_TO_MMS(XY_PROBE_SPEED)
  497. #else
  498. #define XY_PROBE_FEEDRATE_MM_S PLANNER_XY_FEEDRATE()
  499. #endif
  500. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  501. #if ENABLED(DELTA)
  502. #define ADJUST_DELTA(V) \
  503. if (planner.leveling_active) { \
  504. const float zadj = bilinear_z_offset(V); \
  505. delta[A_AXIS] += zadj; \
  506. delta[B_AXIS] += zadj; \
  507. delta[C_AXIS] += zadj; \
  508. }
  509. #else
  510. #define ADJUST_DELTA(V) if (planner.leveling_active) { delta[Z_AXIS] += bilinear_z_offset(V); }
  511. #endif
  512. #elif IS_KINEMATIC
  513. #define ADJUST_DELTA(V) NOOP
  514. #endif
  515. #if ENABLED(X_DUAL_ENDSTOPS)
  516. float x_endstop_adj; // Initialized by settings.load()
  517. #endif
  518. #if ENABLED(Y_DUAL_ENDSTOPS)
  519. float y_endstop_adj; // Initialized by settings.load()
  520. #endif
  521. #if ENABLED(Z_DUAL_ENDSTOPS)
  522. float z_endstop_adj; // Initialized by settings.load()
  523. #endif
  524. // Extruder offsets
  525. #if HOTENDS > 1
  526. float hotend_offset[XYZ][HOTENDS]; // Initialized by settings.load()
  527. #endif
  528. #if HAS_Z_SERVO_ENDSTOP
  529. const int z_servo_angle[2] = Z_SERVO_ANGLES;
  530. #endif
  531. #if ENABLED(BARICUDA)
  532. uint8_t baricuda_valve_pressure = 0,
  533. baricuda_e_to_p_pressure = 0;
  534. #endif
  535. #if ENABLED(FWRETRACT) // Initialized by settings.load()...
  536. bool autoretract_enabled, // M209 S - Autoretract switch
  537. retracted[EXTRUDERS] = { false }; // Which extruders are currently retracted
  538. float retract_length, // M207 S - G10 Retract length
  539. retract_feedrate_mm_s, // M207 F - G10 Retract feedrate
  540. retract_zlift, // M207 Z - G10 Retract hop size
  541. retract_recover_length, // M208 S - G11 Recover length
  542. retract_recover_feedrate_mm_s, // M208 F - G11 Recover feedrate
  543. swap_retract_length, // M207 W - G10 Swap Retract length
  544. swap_retract_recover_length, // M208 W - G11 Swap Recover length
  545. swap_retract_recover_feedrate_mm_s; // M208 R - G11 Swap Recover feedrate
  546. #if EXTRUDERS > 1
  547. bool retracted_swap[EXTRUDERS] = { false }; // Which extruders are swap-retracted
  548. #else
  549. constexpr bool retracted_swap[1] = { false };
  550. #endif
  551. #endif // FWRETRACT
  552. #if HAS_POWER_SWITCH
  553. bool powersupply_on =
  554. #if ENABLED(PS_DEFAULT_OFF)
  555. false
  556. #else
  557. true
  558. #endif
  559. ;
  560. #endif
  561. #if ENABLED(DELTA)
  562. float delta[ABC];
  563. // Initialized by settings.load()
  564. float delta_height,
  565. delta_endstop_adj[ABC] = { 0 },
  566. delta_radius,
  567. delta_tower_angle_trim[ABC],
  568. delta_tower[ABC][2],
  569. delta_diagonal_rod,
  570. delta_calibration_radius,
  571. delta_diagonal_rod_2_tower[ABC],
  572. delta_segments_per_second,
  573. delta_clip_start_height = Z_MAX_POS;
  574. float delta_safe_distance_from_top();
  575. #endif
  576. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  577. int bilinear_grid_spacing[2], bilinear_start[2];
  578. float bilinear_grid_factor[2],
  579. z_values[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
  580. #endif
  581. #if IS_SCARA
  582. // Float constants for SCARA calculations
  583. const float L1 = SCARA_LINKAGE_1, L2 = SCARA_LINKAGE_2,
  584. L1_2 = sq(float(L1)), L1_2_2 = 2.0 * L1_2,
  585. L2_2 = sq(float(L2));
  586. float delta_segments_per_second = SCARA_SEGMENTS_PER_SECOND,
  587. delta[ABC];
  588. #endif
  589. float cartes[XYZ] = { 0 };
  590. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  591. bool filament_sensor = false; // M405 turns on filament sensor control. M406 turns it off.
  592. float filament_width_nominal = DEFAULT_NOMINAL_FILAMENT_DIA, // Nominal filament width. Change with M404.
  593. filament_width_meas = DEFAULT_MEASURED_FILAMENT_DIA; // Measured filament diameter
  594. uint8_t meas_delay_cm = MEASUREMENT_DELAY_CM, // Distance delay setting
  595. measurement_delay[MAX_MEASUREMENT_DELAY + 1]; // Ring buffer to delayed measurement. Store extruder factor after subtracting 100
  596. int8_t filwidth_delay_index[2] = { 0, -1 }; // Indexes into ring buffer
  597. #endif
  598. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  599. static bool filament_ran_out = false;
  600. #endif
  601. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  602. AdvancedPauseMenuResponse advanced_pause_menu_response;
  603. #endif
  604. #if ENABLED(MIXING_EXTRUDER)
  605. float mixing_factor[MIXING_STEPPERS]; // Reciprocal of mix proportion. 0.0 = off, otherwise >= 1.0.
  606. #if MIXING_VIRTUAL_TOOLS > 1
  607. float mixing_virtual_tool_mix[MIXING_VIRTUAL_TOOLS][MIXING_STEPPERS];
  608. #endif
  609. #endif
  610. static bool send_ok[BUFSIZE];
  611. #if HAS_SERVOS
  612. Servo servo[NUM_SERVOS];
  613. #define MOVE_SERVO(I, P) servo[I].move(P)
  614. #if HAS_Z_SERVO_ENDSTOP
  615. #define DEPLOY_Z_SERVO() MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[0])
  616. #define STOW_Z_SERVO() MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[1])
  617. #endif
  618. #endif
  619. #ifdef CHDK
  620. millis_t chdkHigh = 0;
  621. bool chdkActive = false;
  622. #endif
  623. #ifdef AUTOMATIC_CURRENT_CONTROL
  624. bool auto_current_control = 0;
  625. #endif
  626. #if ENABLED(PID_EXTRUSION_SCALING)
  627. int lpq_len = 20;
  628. #endif
  629. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  630. MarlinBusyState busy_state = NOT_BUSY;
  631. static millis_t next_busy_signal_ms = 0;
  632. uint8_t host_keepalive_interval = DEFAULT_KEEPALIVE_INTERVAL;
  633. #else
  634. #define host_keepalive() NOOP
  635. #endif
  636. #if ENABLED(I2C_POSITION_ENCODERS)
  637. I2CPositionEncodersMgr I2CPEM;
  638. uint8_t blockBufferIndexRef = 0;
  639. millis_t lastUpdateMillis;
  640. #endif
  641. #if ENABLED(CNC_WORKSPACE_PLANES)
  642. static WorkspacePlane workspace_plane = PLANE_XY;
  643. #endif
  644. FORCE_INLINE float pgm_read_any(const float *p) { return pgm_read_float_near(p); }
  645. FORCE_INLINE signed char pgm_read_any(const signed char *p) { return pgm_read_byte_near(p); }
  646. #define XYZ_CONSTS_FROM_CONFIG(type, array, CONFIG) \
  647. static const PROGMEM type array##_P[XYZ] = { X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
  648. static inline type array(AxisEnum axis) { return pgm_read_any(&array##_P[axis]); } \
  649. typedef void __void_##CONFIG##__
  650. XYZ_CONSTS_FROM_CONFIG(float, base_min_pos, MIN_POS);
  651. XYZ_CONSTS_FROM_CONFIG(float, base_max_pos, MAX_POS);
  652. XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS);
  653. XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH);
  654. XYZ_CONSTS_FROM_CONFIG(float, home_bump_mm, HOME_BUMP_MM);
  655. XYZ_CONSTS_FROM_CONFIG(signed char, home_dir, HOME_DIR);
  656. /**
  657. * ***************************************************************************
  658. * ******************************** FUNCTIONS ********************************
  659. * ***************************************************************************
  660. */
  661. void stop();
  662. void get_available_commands();
  663. void process_next_command();
  664. void process_parsed_command();
  665. void prepare_move_to_destination();
  666. void get_cartesian_from_steppers();
  667. void set_current_from_steppers_for_axis(const AxisEnum axis);
  668. #if ENABLED(ARC_SUPPORT)
  669. void plan_arc(float target[XYZE], float* offset, uint8_t clockwise);
  670. #endif
  671. #if ENABLED(BEZIER_CURVE_SUPPORT)
  672. void plan_cubic_move(const float offset[4]);
  673. #endif
  674. void tool_change(const uint8_t tmp_extruder, const float fr_mm_s=0.0, bool no_move=false);
  675. void report_current_position();
  676. void report_current_position_detail();
  677. #if ENABLED(DEBUG_LEVELING_FEATURE)
  678. void print_xyz(const char* prefix, const char* suffix, const float x, const float y, const float z) {
  679. serialprintPGM(prefix);
  680. SERIAL_CHAR('(');
  681. SERIAL_ECHO(x);
  682. SERIAL_ECHOPAIR(", ", y);
  683. SERIAL_ECHOPAIR(", ", z);
  684. SERIAL_CHAR(')');
  685. if (suffix) serialprintPGM(suffix); else SERIAL_EOL();
  686. }
  687. void print_xyz(const char* prefix, const char* suffix, const float xyz[]) {
  688. print_xyz(prefix, suffix, xyz[X_AXIS], xyz[Y_AXIS], xyz[Z_AXIS]);
  689. }
  690. #if HAS_ABL
  691. void print_xyz(const char* prefix, const char* suffix, const vector_3 &xyz) {
  692. print_xyz(prefix, suffix, xyz.x, xyz.y, xyz.z);
  693. }
  694. #endif
  695. #define DEBUG_POS(SUFFIX,VAR) do { \
  696. print_xyz(PSTR(" " STRINGIFY(VAR) "="), PSTR(" : " SUFFIX "\n"), VAR); }while(0)
  697. #endif
  698. /**
  699. * sync_plan_position
  700. *
  701. * Set the planner/stepper positions directly from current_position with
  702. * no kinematic translation. Used for homing axes and cartesian/core syncing.
  703. */
  704. void sync_plan_position() {
  705. #if ENABLED(DEBUG_LEVELING_FEATURE)
  706. if (DEBUGGING(LEVELING)) DEBUG_POS("sync_plan_position", current_position);
  707. #endif
  708. planner.set_position_mm(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
  709. }
  710. inline void sync_plan_position_e() { planner.set_e_position_mm(current_position[E_AXIS]); }
  711. #if IS_KINEMATIC
  712. inline void sync_plan_position_kinematic() {
  713. #if ENABLED(DEBUG_LEVELING_FEATURE)
  714. if (DEBUGGING(LEVELING)) DEBUG_POS("sync_plan_position_kinematic", current_position);
  715. #endif
  716. planner.set_position_mm_kinematic(current_position);
  717. }
  718. #define SYNC_PLAN_POSITION_KINEMATIC() sync_plan_position_kinematic()
  719. #else
  720. #define SYNC_PLAN_POSITION_KINEMATIC() sync_plan_position()
  721. #endif
  722. #if ENABLED(SDSUPPORT)
  723. #include "SdFatUtil.h"
  724. int freeMemory() { return SdFatUtil::FreeRam(); }
  725. #else
  726. extern "C" {
  727. extern char __bss_end;
  728. extern char __heap_start;
  729. extern void* __brkval;
  730. int freeMemory() {
  731. int free_memory;
  732. if ((int)__brkval == 0)
  733. free_memory = ((int)&free_memory) - ((int)&__bss_end);
  734. else
  735. free_memory = ((int)&free_memory) - ((int)__brkval);
  736. return free_memory;
  737. }
  738. }
  739. #endif // !SDSUPPORT
  740. #if ENABLED(DIGIPOT_I2C)
  741. extern void digipot_i2c_set_current(uint8_t channel, float current);
  742. extern void digipot_i2c_init();
  743. #endif
  744. /**
  745. * Inject the next "immediate" command, when possible, onto the front of the queue.
  746. * Return true if any immediate commands remain to inject.
  747. */
  748. static bool drain_injected_commands_P() {
  749. if (injected_commands_P != NULL) {
  750. size_t i = 0;
  751. char c, cmd[30];
  752. strncpy_P(cmd, injected_commands_P, sizeof(cmd) - 1);
  753. cmd[sizeof(cmd) - 1] = '\0';
  754. while ((c = cmd[i]) && c != '\n') i++; // find the end of this gcode command
  755. cmd[i] = '\0';
  756. if (enqueue_and_echo_command(cmd)) // success?
  757. injected_commands_P = c ? injected_commands_P + i + 1 : NULL; // next command or done
  758. }
  759. return (injected_commands_P != NULL); // return whether any more remain
  760. }
  761. /**
  762. * Record one or many commands to run from program memory.
  763. * Aborts the current queue, if any.
  764. * Note: drain_injected_commands_P() must be called repeatedly to drain the commands afterwards
  765. */
  766. void enqueue_and_echo_commands_P(const char * const pgcode) {
  767. injected_commands_P = pgcode;
  768. drain_injected_commands_P(); // first command executed asap (when possible)
  769. }
  770. /**
  771. * Clear the Marlin command queue
  772. */
  773. void clear_command_queue() {
  774. cmd_queue_index_r = cmd_queue_index_w;
  775. commands_in_queue = 0;
  776. }
  777. /**
  778. * Once a new command is in the ring buffer, call this to commit it
  779. */
  780. inline void _commit_command(bool say_ok) {
  781. send_ok[cmd_queue_index_w] = say_ok;
  782. if (++cmd_queue_index_w >= BUFSIZE) cmd_queue_index_w = 0;
  783. commands_in_queue++;
  784. }
  785. /**
  786. * Copy a command from RAM into the main command buffer.
  787. * Return true if the command was successfully added.
  788. * Return false for a full buffer, or if the 'command' is a comment.
  789. */
  790. inline bool _enqueuecommand(const char* cmd, bool say_ok=false) {
  791. if (*cmd == ';' || commands_in_queue >= BUFSIZE) return false;
  792. strcpy(command_queue[cmd_queue_index_w], cmd);
  793. _commit_command(say_ok);
  794. return true;
  795. }
  796. /**
  797. * Enqueue with Serial Echo
  798. */
  799. bool enqueue_and_echo_command(const char* cmd, bool say_ok/*=false*/) {
  800. if (_enqueuecommand(cmd, say_ok)) {
  801. SERIAL_ECHO_START();
  802. SERIAL_ECHOPAIR(MSG_ENQUEUEING, cmd);
  803. SERIAL_CHAR('"');
  804. SERIAL_EOL();
  805. return true;
  806. }
  807. return false;
  808. }
  809. void setup_killpin() {
  810. #if HAS_KILL
  811. SET_INPUT_PULLUP(KILL_PIN);
  812. #endif
  813. }
  814. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  815. void setup_filrunoutpin() {
  816. #if ENABLED(ENDSTOPPULLUP_FIL_RUNOUT)
  817. SET_INPUT_PULLUP(FIL_RUNOUT_PIN);
  818. #else
  819. SET_INPUT(FIL_RUNOUT_PIN);
  820. #endif
  821. }
  822. #endif
  823. void setup_powerhold() {
  824. #if HAS_SUICIDE
  825. OUT_WRITE(SUICIDE_PIN, HIGH);
  826. #endif
  827. #if HAS_POWER_SWITCH
  828. #if ENABLED(PS_DEFAULT_OFF)
  829. OUT_WRITE(PS_ON_PIN, PS_ON_ASLEEP);
  830. #else
  831. OUT_WRITE(PS_ON_PIN, PS_ON_AWAKE);
  832. #endif
  833. #endif
  834. }
  835. void suicide() {
  836. #if HAS_SUICIDE
  837. OUT_WRITE(SUICIDE_PIN, LOW);
  838. #endif
  839. }
  840. void servo_init() {
  841. #if NUM_SERVOS >= 1 && HAS_SERVO_0
  842. servo[0].attach(SERVO0_PIN);
  843. servo[0].detach(); // Just set up the pin. We don't have a position yet. Don't move to a random position.
  844. #endif
  845. #if NUM_SERVOS >= 2 && HAS_SERVO_1
  846. servo[1].attach(SERVO1_PIN);
  847. servo[1].detach();
  848. #endif
  849. #if NUM_SERVOS >= 3 && HAS_SERVO_2
  850. servo[2].attach(SERVO2_PIN);
  851. servo[2].detach();
  852. #endif
  853. #if NUM_SERVOS >= 4 && HAS_SERVO_3
  854. servo[3].attach(SERVO3_PIN);
  855. servo[3].detach();
  856. #endif
  857. #if HAS_Z_SERVO_ENDSTOP
  858. /**
  859. * Set position of Z Servo Endstop
  860. *
  861. * The servo might be deployed and positioned too low to stow
  862. * when starting up the machine or rebooting the board.
  863. * There's no way to know where the nozzle is positioned until
  864. * homing has been done - no homing with z-probe without init!
  865. *
  866. */
  867. STOW_Z_SERVO();
  868. #endif
  869. }
  870. /**
  871. * Stepper Reset (RigidBoard, et.al.)
  872. */
  873. #if HAS_STEPPER_RESET
  874. void disableStepperDrivers() {
  875. OUT_WRITE(STEPPER_RESET_PIN, LOW); // drive it down to hold in reset motor driver chips
  876. }
  877. void enableStepperDrivers() { SET_INPUT(STEPPER_RESET_PIN); } // set to input, which allows it to be pulled high by pullups
  878. #endif
  879. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  880. void i2c_on_receive(int bytes) { // just echo all bytes received to serial
  881. i2c.receive(bytes);
  882. }
  883. void i2c_on_request() { // just send dummy data for now
  884. i2c.reply("Hello World!\n");
  885. }
  886. #endif
  887. #if HAS_COLOR_LEDS
  888. #if ENABLED(NEOPIXEL_LED)
  889. Adafruit_NeoPixel pixels(NEOPIXEL_PIXELS, NEOPIXEL_PIN, NEOPIXEL_TYPE + NEO_KHZ800);
  890. void set_neopixel_color(const uint32_t color) {
  891. for (uint16_t i = 0; i < pixels.numPixels(); ++i)
  892. pixels.setPixelColor(i, color);
  893. pixels.show();
  894. }
  895. void setup_neopixel() {
  896. pixels.setBrightness(NEOPIXEL_BRIGHTNESS); // 0 - 255 range
  897. pixels.begin();
  898. pixels.show(); // initialize to all off
  899. #if ENABLED(NEOPIXEL_STARTUP_TEST)
  900. safe_delay(1000);
  901. set_neopixel_color(pixels.Color(255, 0, 0, 0)); // red
  902. safe_delay(1000);
  903. set_neopixel_color(pixels.Color(0, 255, 0, 0)); // green
  904. safe_delay(1000);
  905. set_neopixel_color(pixels.Color(0, 0, 255, 0)); // blue
  906. safe_delay(1000);
  907. #endif
  908. set_neopixel_color(pixels.Color(NEO_WHITE)); // white
  909. }
  910. #endif // NEOPIXEL_LED
  911. void set_led_color(
  912. const uint8_t r, const uint8_t g, const uint8_t b
  913. #if ENABLED(RGBW_LED) || ENABLED(NEOPIXEL_LED)
  914. , const uint8_t w = 0
  915. #if ENABLED(NEOPIXEL_LED)
  916. , const uint8_t p = NEOPIXEL_BRIGHTNESS
  917. , bool isSequence = false
  918. #endif
  919. #endif
  920. ) {
  921. #if ENABLED(NEOPIXEL_LED)
  922. const uint32_t color = pixels.Color(r, g, b, w);
  923. static uint16_t nextLed = 0;
  924. pixels.setBrightness(p);
  925. if (!isSequence)
  926. set_neopixel_color(color);
  927. else {
  928. pixels.setPixelColor(nextLed, color);
  929. pixels.show();
  930. if (++nextLed >= pixels.numPixels()) nextLed = 0;
  931. return;
  932. }
  933. #endif
  934. #if ENABLED(BLINKM)
  935. // This variant uses i2c to send the RGB components to the device.
  936. SendColors(r, g, b);
  937. #endif
  938. #if ENABLED(RGB_LED) || ENABLED(RGBW_LED)
  939. // This variant uses 3 separate pins for the RGB components.
  940. // If the pins can do PWM then their intensity will be set.
  941. WRITE(RGB_LED_R_PIN, r ? HIGH : LOW);
  942. WRITE(RGB_LED_G_PIN, g ? HIGH : LOW);
  943. WRITE(RGB_LED_B_PIN, b ? HIGH : LOW);
  944. analogWrite(RGB_LED_R_PIN, r);
  945. analogWrite(RGB_LED_G_PIN, g);
  946. analogWrite(RGB_LED_B_PIN, b);
  947. #if ENABLED(RGBW_LED)
  948. WRITE(RGB_LED_W_PIN, w ? HIGH : LOW);
  949. analogWrite(RGB_LED_W_PIN, w);
  950. #endif
  951. #endif
  952. #if ENABLED(PCA9632)
  953. // Update I2C LED driver
  954. PCA9632_SetColor(r, g, b);
  955. #endif
  956. }
  957. #endif // HAS_COLOR_LEDS
  958. void gcode_line_error(const char* err, bool doFlush = true) {
  959. SERIAL_ERROR_START();
  960. serialprintPGM(err);
  961. SERIAL_ERRORLN(gcode_LastN);
  962. //Serial.println(gcode_N);
  963. if (doFlush) FlushSerialRequestResend();
  964. serial_count = 0;
  965. }
  966. /**
  967. * Get all commands waiting on the serial port and queue them.
  968. * Exit when the buffer is full or when no more characters are
  969. * left on the serial port.
  970. */
  971. inline void get_serial_commands() {
  972. static char serial_line_buffer[MAX_CMD_SIZE];
  973. static bool serial_comment_mode = false;
  974. // If the command buffer is empty for too long,
  975. // send "wait" to indicate Marlin is still waiting.
  976. #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
  977. static millis_t last_command_time = 0;
  978. const millis_t ms = millis();
  979. if (commands_in_queue == 0 && !MYSERIAL.available() && ELAPSED(ms, last_command_time + NO_TIMEOUTS)) {
  980. SERIAL_ECHOLNPGM(MSG_WAIT);
  981. last_command_time = ms;
  982. }
  983. #endif
  984. /**
  985. * Loop while serial characters are incoming and the queue is not full
  986. */
  987. int c;
  988. while (commands_in_queue < BUFSIZE && (c = MYSERIAL.read()) >= 0) {
  989. char serial_char = c;
  990. /**
  991. * If the character ends the line
  992. */
  993. if (serial_char == '\n' || serial_char == '\r') {
  994. serial_comment_mode = false; // end of line == end of comment
  995. if (!serial_count) continue; // Skip empty lines
  996. serial_line_buffer[serial_count] = 0; // Terminate string
  997. serial_count = 0; // Reset buffer
  998. char* command = serial_line_buffer;
  999. while (*command == ' ') command++; // Skip leading spaces
  1000. char *npos = (*command == 'N') ? command : NULL; // Require the N parameter to start the line
  1001. if (npos) {
  1002. bool M110 = strstr_P(command, PSTR("M110")) != NULL;
  1003. if (M110) {
  1004. char* n2pos = strchr(command + 4, 'N');
  1005. if (n2pos) npos = n2pos;
  1006. }
  1007. gcode_N = strtol(npos + 1, NULL, 10);
  1008. if (gcode_N != gcode_LastN + 1 && !M110) {
  1009. gcode_line_error(PSTR(MSG_ERR_LINE_NO));
  1010. return;
  1011. }
  1012. char *apos = strrchr(command, '*');
  1013. if (apos) {
  1014. uint8_t checksum = 0, count = uint8_t(apos - command);
  1015. while (count) checksum ^= command[--count];
  1016. if (strtol(apos + 1, NULL, 10) != checksum) {
  1017. gcode_line_error(PSTR(MSG_ERR_CHECKSUM_MISMATCH));
  1018. return;
  1019. }
  1020. }
  1021. else {
  1022. gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM));
  1023. return;
  1024. }
  1025. gcode_LastN = gcode_N;
  1026. }
  1027. // Movement commands alert when stopped
  1028. if (IsStopped()) {
  1029. char* gpos = strchr(command, 'G');
  1030. if (gpos) {
  1031. const int codenum = strtol(gpos + 1, NULL, 10);
  1032. switch (codenum) {
  1033. case 0:
  1034. case 1:
  1035. case 2:
  1036. case 3:
  1037. SERIAL_ERRORLNPGM(MSG_ERR_STOPPED);
  1038. LCD_MESSAGEPGM(MSG_STOPPED);
  1039. break;
  1040. }
  1041. }
  1042. }
  1043. #if DISABLED(EMERGENCY_PARSER)
  1044. // If command was e-stop process now
  1045. if (strcmp(command, "M108") == 0) {
  1046. wait_for_heatup = false;
  1047. #if ENABLED(ULTIPANEL)
  1048. wait_for_user = false;
  1049. #endif
  1050. }
  1051. if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
  1052. if (strcmp(command, "M410") == 0) { quickstop_stepper(); }
  1053. #endif
  1054. #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
  1055. last_command_time = ms;
  1056. #endif
  1057. // Add the command to the queue
  1058. _enqueuecommand(serial_line_buffer, true);
  1059. }
  1060. else if (serial_count >= MAX_CMD_SIZE - 1) {
  1061. // Keep fetching, but ignore normal characters beyond the max length
  1062. // The command will be injected when EOL is reached
  1063. }
  1064. else if (serial_char == '\\') { // Handle escapes
  1065. if ((c = MYSERIAL.read()) >= 0) {
  1066. // if we have one more character, copy it over
  1067. serial_char = c;
  1068. if (!serial_comment_mode) serial_line_buffer[serial_count++] = serial_char;
  1069. }
  1070. // otherwise do nothing
  1071. }
  1072. else { // it's not a newline, carriage return or escape char
  1073. if (serial_char == ';') serial_comment_mode = true;
  1074. if (!serial_comment_mode) serial_line_buffer[serial_count++] = serial_char;
  1075. }
  1076. } // queue has space, serial has data
  1077. }
  1078. #if ENABLED(SDSUPPORT)
  1079. /**
  1080. * Get commands from the SD Card until the command buffer is full
  1081. * or until the end of the file is reached. The special character '#'
  1082. * can also interrupt buffering.
  1083. */
  1084. inline void get_sdcard_commands() {
  1085. static bool stop_buffering = false,
  1086. sd_comment_mode = false;
  1087. if (!card.sdprinting) return;
  1088. /**
  1089. * '#' stops reading from SD to the buffer prematurely, so procedural
  1090. * macro calls are possible. If it occurs, stop_buffering is triggered
  1091. * and the buffer is run dry; this character _can_ occur in serial com
  1092. * due to checksums, however, no checksums are used in SD printing.
  1093. */
  1094. if (commands_in_queue == 0) stop_buffering = false;
  1095. uint16_t sd_count = 0;
  1096. bool card_eof = card.eof();
  1097. while (commands_in_queue < BUFSIZE && !card_eof && !stop_buffering) {
  1098. const int16_t n = card.get();
  1099. char sd_char = (char)n;
  1100. card_eof = card.eof();
  1101. if (card_eof || n == -1
  1102. || sd_char == '\n' || sd_char == '\r'
  1103. || ((sd_char == '#' || sd_char == ':') && !sd_comment_mode)
  1104. ) {
  1105. if (card_eof) {
  1106. SERIAL_PROTOCOLLNPGM(MSG_FILE_PRINTED);
  1107. card.printingHasFinished();
  1108. #if ENABLED(PRINTER_EVENT_LEDS)
  1109. LCD_MESSAGEPGM(MSG_INFO_COMPLETED_PRINTS);
  1110. set_led_color(0, 255, 0); // Green
  1111. #if HAS_RESUME_CONTINUE
  1112. enqueue_and_echo_commands_P(PSTR("M0")); // end of the queue!
  1113. #else
  1114. safe_delay(1000);
  1115. #endif
  1116. set_led_color(0, 0, 0); // OFF
  1117. #endif
  1118. card.checkautostart(true);
  1119. }
  1120. else if (n == -1) {
  1121. SERIAL_ERROR_START();
  1122. SERIAL_ECHOLNPGM(MSG_SD_ERR_READ);
  1123. }
  1124. if (sd_char == '#') stop_buffering = true;
  1125. sd_comment_mode = false; // for new command
  1126. if (!sd_count) continue; // skip empty lines (and comment lines)
  1127. command_queue[cmd_queue_index_w][sd_count] = '\0'; // terminate string
  1128. sd_count = 0; // clear sd line buffer
  1129. _commit_command(false);
  1130. }
  1131. else if (sd_count >= MAX_CMD_SIZE - 1) {
  1132. /**
  1133. * Keep fetching, but ignore normal characters beyond the max length
  1134. * The command will be injected when EOL is reached
  1135. */
  1136. }
  1137. else {
  1138. if (sd_char == ';') sd_comment_mode = true;
  1139. if (!sd_comment_mode) command_queue[cmd_queue_index_w][sd_count++] = sd_char;
  1140. }
  1141. }
  1142. }
  1143. #endif // SDSUPPORT
  1144. /**
  1145. * Add to the circular command queue the next command from:
  1146. * - The command-injection queue (injected_commands_P)
  1147. * - The active serial input (usually USB)
  1148. * - The SD card file being actively printed
  1149. */
  1150. void get_available_commands() {
  1151. // if any immediate commands remain, don't get other commands yet
  1152. if (drain_injected_commands_P()) return;
  1153. get_serial_commands();
  1154. #if ENABLED(SDSUPPORT)
  1155. get_sdcard_commands();
  1156. #endif
  1157. }
  1158. /**
  1159. * Set target_extruder from the T parameter or the active_extruder
  1160. *
  1161. * Returns TRUE if the target is invalid
  1162. */
  1163. bool get_target_extruder_from_command(const uint16_t code) {
  1164. if (parser.seenval('T')) {
  1165. const int8_t e = parser.value_byte();
  1166. if (e >= EXTRUDERS) {
  1167. SERIAL_ECHO_START();
  1168. SERIAL_CHAR('M');
  1169. SERIAL_ECHO(code);
  1170. SERIAL_ECHOLNPAIR(" " MSG_INVALID_EXTRUDER " ", e);
  1171. return true;
  1172. }
  1173. target_extruder = e;
  1174. }
  1175. else
  1176. target_extruder = active_extruder;
  1177. return false;
  1178. }
  1179. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  1180. bool extruder_duplication_enabled = false; // Used in Dual X mode 2
  1181. #endif
  1182. #if ENABLED(DUAL_X_CARRIAGE)
  1183. static DualXMode dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
  1184. static float x_home_pos(const int extruder) {
  1185. if (extruder == 0)
  1186. return base_home_pos(X_AXIS);
  1187. else
  1188. /**
  1189. * In dual carriage mode the extruder offset provides an override of the
  1190. * second X-carriage position when homed - otherwise X2_HOME_POS is used.
  1191. * This allows soft recalibration of the second extruder home position
  1192. * without firmware reflash (through the M218 command).
  1193. */
  1194. return hotend_offset[X_AXIS][1] > 0 ? hotend_offset[X_AXIS][1] : X2_HOME_POS;
  1195. }
  1196. static int x_home_dir(const int extruder) { return extruder ? X2_HOME_DIR : X_HOME_DIR; }
  1197. static float inactive_extruder_x_pos = X2_MAX_POS; // used in mode 0 & 1
  1198. static bool active_extruder_parked = false; // used in mode 1 & 2
  1199. static float raised_parked_position[XYZE]; // used in mode 1
  1200. static millis_t delayed_move_time = 0; // used in mode 1
  1201. static float duplicate_extruder_x_offset = DEFAULT_DUPLICATION_X_OFFSET; // used in mode 2
  1202. static int16_t duplicate_extruder_temp_offset = 0; // used in mode 2
  1203. #endif // DUAL_X_CARRIAGE
  1204. #if HAS_WORKSPACE_OFFSET || ENABLED(DUAL_X_CARRIAGE)
  1205. /**
  1206. * Software endstops can be used to monitor the open end of
  1207. * an axis that has a hardware endstop on the other end. Or
  1208. * they can prevent axes from moving past endstops and grinding.
  1209. *
  1210. * To keep doing their job as the coordinate system changes,
  1211. * the software endstop positions must be refreshed to remain
  1212. * at the same positions relative to the machine.
  1213. */
  1214. void update_software_endstops(const AxisEnum axis) {
  1215. #if HAS_HOME_OFFSET && HAS_POSITION_SHIFT
  1216. workspace_offset[axis] = home_offset[axis] + position_shift[axis];
  1217. #endif
  1218. #if ENABLED(DUAL_X_CARRIAGE)
  1219. if (axis == X_AXIS) {
  1220. // In Dual X mode hotend_offset[X] is T1's home position
  1221. float dual_max_x = max(hotend_offset[X_AXIS][1], X2_MAX_POS);
  1222. if (active_extruder != 0) {
  1223. // T1 can move from X2_MIN_POS to X2_MAX_POS or X2 home position (whichever is larger)
  1224. soft_endstop_min[X_AXIS] = X2_MIN_POS;
  1225. soft_endstop_max[X_AXIS] = dual_max_x;
  1226. }
  1227. else if (dual_x_carriage_mode == DXC_DUPLICATION_MODE) {
  1228. // In Duplication Mode, T0 can move as far left as X_MIN_POS
  1229. // but not so far to the right that T1 would move past the end
  1230. soft_endstop_min[X_AXIS] = base_min_pos(X_AXIS);
  1231. soft_endstop_max[X_AXIS] = min(base_max_pos(X_AXIS), dual_max_x - duplicate_extruder_x_offset);
  1232. }
  1233. else {
  1234. // In other modes, T0 can move from X_MIN_POS to X_MAX_POS
  1235. soft_endstop_min[axis] = base_min_pos(axis);
  1236. soft_endstop_max[axis] = base_max_pos(axis);
  1237. }
  1238. }
  1239. #elif ENABLED(DELTA)
  1240. soft_endstop_min[axis] = base_min_pos(axis);
  1241. soft_endstop_max[axis] = axis == Z_AXIS ? delta_height : base_max_pos(axis);
  1242. #else
  1243. soft_endstop_min[axis] = base_min_pos(axis);
  1244. soft_endstop_max[axis] = base_max_pos(axis);
  1245. #endif
  1246. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1247. if (DEBUGGING(LEVELING)) {
  1248. SERIAL_ECHOPAIR("For ", axis_codes[axis]);
  1249. #if HAS_HOME_OFFSET
  1250. SERIAL_ECHOPAIR(" axis:\n home_offset = ", home_offset[axis]);
  1251. #endif
  1252. #if HAS_POSITION_SHIFT
  1253. SERIAL_ECHOPAIR("\n position_shift = ", position_shift[axis]);
  1254. #endif
  1255. SERIAL_ECHOPAIR("\n soft_endstop_min = ", soft_endstop_min[axis]);
  1256. SERIAL_ECHOLNPAIR("\n soft_endstop_max = ", soft_endstop_max[axis]);
  1257. }
  1258. #endif
  1259. #if ENABLED(DELTA)
  1260. switch(axis) {
  1261. case X_AXIS:
  1262. case Y_AXIS:
  1263. // Get a minimum radius for clamping
  1264. soft_endstop_radius = MIN3(FABS(max(soft_endstop_min[X_AXIS], soft_endstop_min[Y_AXIS])), soft_endstop_max[X_AXIS], soft_endstop_max[Y_AXIS]);
  1265. soft_endstop_radius_2 = sq(soft_endstop_radius);
  1266. break;
  1267. case Z_AXIS:
  1268. delta_clip_start_height = soft_endstop_max[axis] - delta_safe_distance_from_top();
  1269. default: break;
  1270. }
  1271. #endif
  1272. }
  1273. #endif // HAS_WORKSPACE_OFFSET || DUAL_X_CARRIAGE
  1274. #if HAS_M206_COMMAND
  1275. /**
  1276. * Change the home offset for an axis, update the current
  1277. * position and the software endstops to retain the same
  1278. * relative distance to the new home.
  1279. *
  1280. * Since this changes the current_position, code should
  1281. * call sync_plan_position soon after this.
  1282. */
  1283. static void set_home_offset(const AxisEnum axis, const float v) {
  1284. home_offset[axis] = v;
  1285. update_software_endstops(axis);
  1286. }
  1287. #endif // HAS_M206_COMMAND
  1288. /**
  1289. * Set an axis' current position to its home position (after homing).
  1290. *
  1291. * For Core and Cartesian robots this applies one-to-one when an
  1292. * individual axis has been homed.
  1293. *
  1294. * DELTA should wait until all homing is done before setting the XYZ
  1295. * current_position to home, because homing is a single operation.
  1296. * In the case where the axis positions are already known and previously
  1297. * homed, DELTA could home to X or Y individually by moving either one
  1298. * to the center. However, homing Z always homes XY and Z.
  1299. *
  1300. * SCARA should wait until all XY homing is done before setting the XY
  1301. * current_position to home, because neither X nor Y is at home until
  1302. * both are at home. Z can however be homed individually.
  1303. *
  1304. * Callers must sync the planner position after calling this!
  1305. */
  1306. static void set_axis_is_at_home(const AxisEnum axis) {
  1307. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1308. if (DEBUGGING(LEVELING)) {
  1309. SERIAL_ECHOPAIR(">>> set_axis_is_at_home(", axis_codes[axis]);
  1310. SERIAL_CHAR(')');
  1311. SERIAL_EOL();
  1312. }
  1313. #endif
  1314. axis_known_position[axis] = axis_homed[axis] = true;
  1315. #if HAS_POSITION_SHIFT
  1316. position_shift[axis] = 0;
  1317. update_software_endstops(axis);
  1318. #endif
  1319. #if ENABLED(DUAL_X_CARRIAGE)
  1320. if (axis == X_AXIS && (active_extruder == 1 || dual_x_carriage_mode == DXC_DUPLICATION_MODE)) {
  1321. current_position[X_AXIS] = x_home_pos(active_extruder);
  1322. return;
  1323. }
  1324. #endif
  1325. #if ENABLED(MORGAN_SCARA)
  1326. /**
  1327. * Morgan SCARA homes XY at the same time
  1328. */
  1329. if (axis == X_AXIS || axis == Y_AXIS) {
  1330. float homeposition[XYZ] = {
  1331. base_home_pos(X_AXIS),
  1332. base_home_pos(Y_AXIS),
  1333. base_home_pos(Z_AXIS)
  1334. };
  1335. // SERIAL_ECHOPAIR("homeposition X:", homeposition[X_AXIS]);
  1336. // SERIAL_ECHOLNPAIR(" Y:", homeposition[Y_AXIS]);
  1337. /**
  1338. * Get Home position SCARA arm angles using inverse kinematics,
  1339. * and calculate homing offset using forward kinematics
  1340. */
  1341. inverse_kinematics(homeposition);
  1342. forward_kinematics_SCARA(delta[A_AXIS], delta[B_AXIS]);
  1343. // SERIAL_ECHOPAIR("Cartesian X:", cartes[X_AXIS]);
  1344. // SERIAL_ECHOLNPAIR(" Y:", cartes[Y_AXIS]);
  1345. current_position[axis] = cartes[axis];
  1346. /**
  1347. * SCARA home positions are based on configuration since the actual
  1348. * limits are determined by the inverse kinematic transform.
  1349. */
  1350. soft_endstop_min[axis] = base_min_pos(axis); // + (cartes[axis] - base_home_pos(axis));
  1351. soft_endstop_max[axis] = base_max_pos(axis); // + (cartes[axis] - base_home_pos(axis));
  1352. }
  1353. else
  1354. #elif ENABLED(DELTA)
  1355. if (axis == Z_AXIS)
  1356. current_position[axis] = delta_height;
  1357. else
  1358. #endif
  1359. {
  1360. current_position[axis] = base_home_pos(axis);
  1361. }
  1362. /**
  1363. * Z Probe Z Homing? Account for the probe's Z offset.
  1364. */
  1365. #if HAS_BED_PROBE && Z_HOME_DIR < 0
  1366. if (axis == Z_AXIS) {
  1367. #if HOMING_Z_WITH_PROBE
  1368. current_position[Z_AXIS] -= zprobe_zoffset;
  1369. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1370. if (DEBUGGING(LEVELING)) {
  1371. SERIAL_ECHOLNPGM("*** Z HOMED WITH PROBE (Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) ***");
  1372. SERIAL_ECHOLNPAIR("> zprobe_zoffset = ", zprobe_zoffset);
  1373. }
  1374. #endif
  1375. #elif ENABLED(DEBUG_LEVELING_FEATURE)
  1376. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("*** Z HOMED TO ENDSTOP (Z_MIN_PROBE_ENDSTOP) ***");
  1377. #endif
  1378. }
  1379. #endif
  1380. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1381. if (DEBUGGING(LEVELING)) {
  1382. #if HAS_HOME_OFFSET
  1383. SERIAL_ECHOPAIR("> home_offset[", axis_codes[axis]);
  1384. SERIAL_ECHOLNPAIR("] = ", home_offset[axis]);
  1385. #endif
  1386. DEBUG_POS("", current_position);
  1387. SERIAL_ECHOPAIR("<<< set_axis_is_at_home(", axis_codes[axis]);
  1388. SERIAL_CHAR(')');
  1389. SERIAL_EOL();
  1390. }
  1391. #endif
  1392. #if ENABLED(I2C_POSITION_ENCODERS)
  1393. I2CPEM.homed(axis);
  1394. #endif
  1395. }
  1396. /**
  1397. * Some planner shorthand inline functions
  1398. */
  1399. inline float get_homing_bump_feedrate(const AxisEnum axis) {
  1400. static const uint8_t homing_bump_divisor[] PROGMEM = HOMING_BUMP_DIVISOR;
  1401. uint8_t hbd = pgm_read_byte(&homing_bump_divisor[axis]);
  1402. if (hbd < 1) {
  1403. hbd = 10;
  1404. SERIAL_ECHO_START();
  1405. SERIAL_ECHOLNPGM("Warning: Homing Bump Divisor < 1");
  1406. }
  1407. return homing_feedrate(axis) / hbd;
  1408. }
  1409. /**
  1410. * Move the planner to the current position from wherever it last moved
  1411. * (or from wherever it has been told it is located).
  1412. */
  1413. inline void buffer_line_to_current_position() {
  1414. planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], feedrate_mm_s, active_extruder);
  1415. }
  1416. /**
  1417. * Move the planner to the position stored in the destination array, which is
  1418. * used by G0/G1/G2/G3/G5 and many other functions to set a destination.
  1419. */
  1420. inline void buffer_line_to_destination(const float fr_mm_s) {
  1421. planner.buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], fr_mm_s, active_extruder);
  1422. }
  1423. inline void set_current_from_destination() { COPY(current_position, destination); }
  1424. inline void set_destination_from_current() { COPY(destination, current_position); }
  1425. #if IS_KINEMATIC
  1426. /**
  1427. * Calculate delta, start a line, and set current_position to destination
  1428. */
  1429. void prepare_uninterpolated_move_to_destination(const float fr_mm_s=0.0) {
  1430. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1431. if (DEBUGGING(LEVELING)) DEBUG_POS("prepare_uninterpolated_move_to_destination", destination);
  1432. #endif
  1433. refresh_cmd_timeout();
  1434. #if UBL_DELTA
  1435. // ubl segmented line will do z-only moves in single segment
  1436. ubl.prepare_segmented_line_to(destination, MMS_SCALED(fr_mm_s ? fr_mm_s : feedrate_mm_s));
  1437. #else
  1438. if ( current_position[X_AXIS] == destination[X_AXIS]
  1439. && current_position[Y_AXIS] == destination[Y_AXIS]
  1440. && current_position[Z_AXIS] == destination[Z_AXIS]
  1441. && current_position[E_AXIS] == destination[E_AXIS]
  1442. ) return;
  1443. planner.buffer_line_kinematic(destination, MMS_SCALED(fr_mm_s ? fr_mm_s : feedrate_mm_s), active_extruder);
  1444. #endif
  1445. set_current_from_destination();
  1446. }
  1447. #endif // IS_KINEMATIC
  1448. /**
  1449. * Plan a move to (X, Y, Z) and set the current_position
  1450. * The final current_position may not be the one that was requested
  1451. */
  1452. void do_blocking_move_to(const float &rx, const float &ry, const float &rz, const float &fr_mm_s/*=0.0*/) {
  1453. const float old_feedrate_mm_s = feedrate_mm_s;
  1454. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1455. if (DEBUGGING(LEVELING)) print_xyz(PSTR(">>> do_blocking_move_to"), NULL, LOGICAL_X_POSITION(rx), LOGICAL_Y_POSITION(ry), LOGICAL_Z_POSITION(rz));
  1456. #endif
  1457. #if ENABLED(DELTA)
  1458. if (!position_is_reachable(rx, ry)) return;
  1459. feedrate_mm_s = fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  1460. set_destination_from_current(); // sync destination at the start
  1461. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1462. if (DEBUGGING(LEVELING)) DEBUG_POS("set_destination_from_current", destination);
  1463. #endif
  1464. // when in the danger zone
  1465. if (current_position[Z_AXIS] > delta_clip_start_height) {
  1466. if (rz > delta_clip_start_height) { // staying in the danger zone
  1467. destination[X_AXIS] = rx; // move directly (uninterpolated)
  1468. destination[Y_AXIS] = ry;
  1469. destination[Z_AXIS] = rz;
  1470. prepare_uninterpolated_move_to_destination(); // set_current_from_destination
  1471. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1472. if (DEBUGGING(LEVELING)) DEBUG_POS("danger zone move", current_position);
  1473. #endif
  1474. return;
  1475. }
  1476. else {
  1477. destination[Z_AXIS] = delta_clip_start_height;
  1478. prepare_uninterpolated_move_to_destination(); // set_current_from_destination
  1479. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1480. if (DEBUGGING(LEVELING)) DEBUG_POS("zone border move", current_position);
  1481. #endif
  1482. }
  1483. }
  1484. if (rz > current_position[Z_AXIS]) { // raising?
  1485. destination[Z_AXIS] = rz;
  1486. prepare_uninterpolated_move_to_destination(); // set_current_from_destination
  1487. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1488. if (DEBUGGING(LEVELING)) DEBUG_POS("z raise move", current_position);
  1489. #endif
  1490. }
  1491. destination[X_AXIS] = rx;
  1492. destination[Y_AXIS] = ry;
  1493. prepare_move_to_destination(); // set_current_from_destination
  1494. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1495. if (DEBUGGING(LEVELING)) DEBUG_POS("xy move", current_position);
  1496. #endif
  1497. if (rz < current_position[Z_AXIS]) { // lowering?
  1498. destination[Z_AXIS] = rz;
  1499. prepare_uninterpolated_move_to_destination(); // set_current_from_destination
  1500. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1501. if (DEBUGGING(LEVELING)) DEBUG_POS("z lower move", current_position);
  1502. #endif
  1503. }
  1504. #elif IS_SCARA
  1505. if (!position_is_reachable(rx, ry)) return;
  1506. set_destination_from_current();
  1507. // If Z needs to raise, do it before moving XY
  1508. if (destination[Z_AXIS] < rz) {
  1509. destination[Z_AXIS] = rz;
  1510. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS));
  1511. }
  1512. destination[X_AXIS] = rx;
  1513. destination[Y_AXIS] = ry;
  1514. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S);
  1515. // If Z needs to lower, do it after moving XY
  1516. if (destination[Z_AXIS] > rz) {
  1517. destination[Z_AXIS] = rz;
  1518. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS));
  1519. }
  1520. #else
  1521. // If Z needs to raise, do it before moving XY
  1522. if (current_position[Z_AXIS] < rz) {
  1523. feedrate_mm_s = fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS);
  1524. current_position[Z_AXIS] = rz;
  1525. buffer_line_to_current_position();
  1526. }
  1527. feedrate_mm_s = fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  1528. current_position[X_AXIS] = rx;
  1529. current_position[Y_AXIS] = ry;
  1530. buffer_line_to_current_position();
  1531. // If Z needs to lower, do it after moving XY
  1532. if (current_position[Z_AXIS] > rz) {
  1533. feedrate_mm_s = fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS);
  1534. current_position[Z_AXIS] = rz;
  1535. buffer_line_to_current_position();
  1536. }
  1537. #endif
  1538. stepper.synchronize();
  1539. feedrate_mm_s = old_feedrate_mm_s;
  1540. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1541. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< do_blocking_move_to");
  1542. #endif
  1543. }
  1544. void do_blocking_move_to_x(const float &rx, const float &fr_mm_s/*=0.0*/) {
  1545. do_blocking_move_to(rx, current_position[Y_AXIS], current_position[Z_AXIS], fr_mm_s);
  1546. }
  1547. void do_blocking_move_to_z(const float &rz, const float &fr_mm_s/*=0.0*/) {
  1548. do_blocking_move_to(current_position[X_AXIS], current_position[Y_AXIS], rz, fr_mm_s);
  1549. }
  1550. void do_blocking_move_to_xy(const float &rx, const float &ry, const float &fr_mm_s/*=0.0*/) {
  1551. do_blocking_move_to(rx, ry, current_position[Z_AXIS], fr_mm_s);
  1552. }
  1553. //
  1554. // Prepare to do endstop or probe moves
  1555. // with custom feedrates.
  1556. //
  1557. // - Save current feedrates
  1558. // - Reset the rate multiplier
  1559. // - Reset the command timeout
  1560. // - Enable the endstops (for endstop moves)
  1561. //
  1562. static void setup_for_endstop_or_probe_move() {
  1563. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1564. if (DEBUGGING(LEVELING)) DEBUG_POS("setup_for_endstop_or_probe_move", current_position);
  1565. #endif
  1566. saved_feedrate_mm_s = feedrate_mm_s;
  1567. saved_feedrate_percentage = feedrate_percentage;
  1568. feedrate_percentage = 100;
  1569. refresh_cmd_timeout();
  1570. }
  1571. static void clean_up_after_endstop_or_probe_move() {
  1572. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1573. if (DEBUGGING(LEVELING)) DEBUG_POS("clean_up_after_endstop_or_probe_move", current_position);
  1574. #endif
  1575. feedrate_mm_s = saved_feedrate_mm_s;
  1576. feedrate_percentage = saved_feedrate_percentage;
  1577. refresh_cmd_timeout();
  1578. }
  1579. #if HAS_BED_PROBE
  1580. /**
  1581. * Raise Z to a minimum height to make room for a probe to move
  1582. */
  1583. inline void do_probe_raise(const float z_raise) {
  1584. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1585. if (DEBUGGING(LEVELING)) {
  1586. SERIAL_ECHOPAIR("do_probe_raise(", z_raise);
  1587. SERIAL_CHAR(')');
  1588. SERIAL_EOL();
  1589. }
  1590. #endif
  1591. float z_dest = z_raise;
  1592. if (zprobe_zoffset < 0) z_dest -= zprobe_zoffset;
  1593. if (z_dest > current_position[Z_AXIS])
  1594. do_blocking_move_to_z(z_dest);
  1595. }
  1596. #endif // HAS_BED_PROBE
  1597. #if HAS_AXIS_UNHOMED_ERR
  1598. bool axis_unhomed_error(const bool x/*=true*/, const bool y/*=true*/, const bool z/*=true*/) {
  1599. #if ENABLED(HOME_AFTER_DEACTIVATE)
  1600. const bool xx = x && !axis_known_position[X_AXIS],
  1601. yy = y && !axis_known_position[Y_AXIS],
  1602. zz = z && !axis_known_position[Z_AXIS];
  1603. #else
  1604. const bool xx = x && !axis_homed[X_AXIS],
  1605. yy = y && !axis_homed[Y_AXIS],
  1606. zz = z && !axis_homed[Z_AXIS];
  1607. #endif
  1608. if (xx || yy || zz) {
  1609. SERIAL_ECHO_START();
  1610. SERIAL_ECHOPGM(MSG_HOME " ");
  1611. if (xx) SERIAL_ECHOPGM(MSG_X);
  1612. if (yy) SERIAL_ECHOPGM(MSG_Y);
  1613. if (zz) SERIAL_ECHOPGM(MSG_Z);
  1614. SERIAL_ECHOLNPGM(" " MSG_FIRST);
  1615. #if ENABLED(ULTRA_LCD)
  1616. lcd_status_printf_P(0, PSTR(MSG_HOME " %s%s%s " MSG_FIRST), xx ? MSG_X : "", yy ? MSG_Y : "", zz ? MSG_Z : "");
  1617. #endif
  1618. return true;
  1619. }
  1620. return false;
  1621. }
  1622. #endif // HAS_AXIS_UNHOMED_ERR
  1623. #if ENABLED(Z_PROBE_SLED)
  1624. #ifndef SLED_DOCKING_OFFSET
  1625. #define SLED_DOCKING_OFFSET 0
  1626. #endif
  1627. /**
  1628. * Method to dock/undock a sled designed by Charles Bell.
  1629. *
  1630. * stow[in] If false, move to MAX_X and engage the solenoid
  1631. * If true, move to MAX_X and release the solenoid
  1632. */
  1633. static void dock_sled(bool stow) {
  1634. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1635. if (DEBUGGING(LEVELING)) {
  1636. SERIAL_ECHOPAIR("dock_sled(", stow);
  1637. SERIAL_CHAR(')');
  1638. SERIAL_EOL();
  1639. }
  1640. #endif
  1641. // Dock sled a bit closer to ensure proper capturing
  1642. do_blocking_move_to_x(X_MAX_POS + SLED_DOCKING_OFFSET - ((stow) ? 1 : 0));
  1643. #if HAS_SOLENOID_1 && DISABLED(EXT_SOLENOID)
  1644. WRITE(SOL1_PIN, !stow); // switch solenoid
  1645. #endif
  1646. }
  1647. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  1648. FORCE_INLINE void do_blocking_move_to(const float raw[XYZ], const float &fr_mm_s) {
  1649. do_blocking_move_to(raw[X_AXIS], raw[Y_AXIS], raw[Z_AXIS], fr_mm_s);
  1650. }
  1651. void run_deploy_moves_script() {
  1652. #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)
  1653. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_X
  1654. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_X current_position[X_AXIS]
  1655. #endif
  1656. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_Y
  1657. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_Y current_position[Y_AXIS]
  1658. #endif
  1659. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_Z
  1660. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_Z current_position[Z_AXIS]
  1661. #endif
  1662. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE
  1663. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE 0.0
  1664. #endif
  1665. 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 };
  1666. do_blocking_move_to(deploy_1, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE));
  1667. #endif
  1668. #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)
  1669. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_X
  1670. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_X current_position[X_AXIS]
  1671. #endif
  1672. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_Y
  1673. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Y current_position[Y_AXIS]
  1674. #endif
  1675. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_Z
  1676. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Z current_position[Z_AXIS]
  1677. #endif
  1678. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE
  1679. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE 0.0
  1680. #endif
  1681. 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 };
  1682. do_blocking_move_to(deploy_2, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE));
  1683. #endif
  1684. #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)
  1685. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_X
  1686. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_X current_position[X_AXIS]
  1687. #endif
  1688. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_Y
  1689. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Y current_position[Y_AXIS]
  1690. #endif
  1691. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_Z
  1692. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Z current_position[Z_AXIS]
  1693. #endif
  1694. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE
  1695. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE 0.0
  1696. #endif
  1697. 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 };
  1698. do_blocking_move_to(deploy_3, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE));
  1699. #endif
  1700. #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)
  1701. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_X
  1702. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_X current_position[X_AXIS]
  1703. #endif
  1704. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_Y
  1705. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_Y current_position[Y_AXIS]
  1706. #endif
  1707. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_Z
  1708. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_Z current_position[Z_AXIS]
  1709. #endif
  1710. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE
  1711. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE 0.0
  1712. #endif
  1713. 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 };
  1714. do_blocking_move_to(deploy_4, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE));
  1715. #endif
  1716. #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)
  1717. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_X
  1718. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_X current_position[X_AXIS]
  1719. #endif
  1720. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_Y
  1721. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_Y current_position[Y_AXIS]
  1722. #endif
  1723. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_Z
  1724. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_Z current_position[Z_AXIS]
  1725. #endif
  1726. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE
  1727. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE 0.0
  1728. #endif
  1729. 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 };
  1730. do_blocking_move_to(deploy_5, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE));
  1731. #endif
  1732. }
  1733. void run_stow_moves_script() {
  1734. #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)
  1735. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_X
  1736. #define Z_PROBE_ALLEN_KEY_STOW_1_X current_position[X_AXIS]
  1737. #endif
  1738. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_Y
  1739. #define Z_PROBE_ALLEN_KEY_STOW_1_Y current_position[Y_AXIS]
  1740. #endif
  1741. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_Z
  1742. #define Z_PROBE_ALLEN_KEY_STOW_1_Z current_position[Z_AXIS]
  1743. #endif
  1744. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE
  1745. #define Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE 0.0
  1746. #endif
  1747. 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 };
  1748. do_blocking_move_to(stow_1, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE));
  1749. #endif
  1750. #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)
  1751. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_X
  1752. #define Z_PROBE_ALLEN_KEY_STOW_2_X current_position[X_AXIS]
  1753. #endif
  1754. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_Y
  1755. #define Z_PROBE_ALLEN_KEY_STOW_2_Y current_position[Y_AXIS]
  1756. #endif
  1757. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_Z
  1758. #define Z_PROBE_ALLEN_KEY_STOW_2_Z current_position[Z_AXIS]
  1759. #endif
  1760. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE
  1761. #define Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE 0.0
  1762. #endif
  1763. 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 };
  1764. do_blocking_move_to(stow_2, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE));
  1765. #endif
  1766. #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)
  1767. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_X
  1768. #define Z_PROBE_ALLEN_KEY_STOW_3_X current_position[X_AXIS]
  1769. #endif
  1770. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_Y
  1771. #define Z_PROBE_ALLEN_KEY_STOW_3_Y current_position[Y_AXIS]
  1772. #endif
  1773. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_Z
  1774. #define Z_PROBE_ALLEN_KEY_STOW_3_Z current_position[Z_AXIS]
  1775. #endif
  1776. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE
  1777. #define Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE 0.0
  1778. #endif
  1779. 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 };
  1780. do_blocking_move_to(stow_3, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE));
  1781. #endif
  1782. #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)
  1783. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_X
  1784. #define Z_PROBE_ALLEN_KEY_STOW_4_X current_position[X_AXIS]
  1785. #endif
  1786. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_Y
  1787. #define Z_PROBE_ALLEN_KEY_STOW_4_Y current_position[Y_AXIS]
  1788. #endif
  1789. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_Z
  1790. #define Z_PROBE_ALLEN_KEY_STOW_4_Z current_position[Z_AXIS]
  1791. #endif
  1792. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE
  1793. #define Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE 0.0
  1794. #endif
  1795. 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 };
  1796. do_blocking_move_to(stow_4, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE));
  1797. #endif
  1798. #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)
  1799. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_X
  1800. #define Z_PROBE_ALLEN_KEY_STOW_5_X current_position[X_AXIS]
  1801. #endif
  1802. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_Y
  1803. #define Z_PROBE_ALLEN_KEY_STOW_5_Y current_position[Y_AXIS]
  1804. #endif
  1805. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_Z
  1806. #define Z_PROBE_ALLEN_KEY_STOW_5_Z current_position[Z_AXIS]
  1807. #endif
  1808. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE
  1809. #define Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE 0.0
  1810. #endif
  1811. 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 };
  1812. do_blocking_move_to(stow_5, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE));
  1813. #endif
  1814. }
  1815. #endif // Z_PROBE_ALLEN_KEY
  1816. #if ENABLED(PROBING_FANS_OFF)
  1817. void fans_pause(const bool p) {
  1818. if (p != fans_paused) {
  1819. fans_paused = p;
  1820. if (p)
  1821. for (uint8_t x = 0; x < FAN_COUNT; x++) {
  1822. paused_fanSpeeds[x] = fanSpeeds[x];
  1823. fanSpeeds[x] = 0;
  1824. }
  1825. else
  1826. for (uint8_t x = 0; x < FAN_COUNT; x++)
  1827. fanSpeeds[x] = paused_fanSpeeds[x];
  1828. }
  1829. }
  1830. #endif // PROBING_FANS_OFF
  1831. #if HAS_BED_PROBE
  1832. // TRIGGERED_WHEN_STOWED_TEST can easily be extended to servo probes, ... if needed.
  1833. #if ENABLED(PROBE_IS_TRIGGERED_WHEN_STOWED_TEST)
  1834. #if ENABLED(Z_MIN_PROBE_ENDSTOP)
  1835. #define _TRIGGERED_WHEN_STOWED_TEST (READ(Z_MIN_PROBE_PIN) != Z_MIN_PROBE_ENDSTOP_INVERTING)
  1836. #else
  1837. #define _TRIGGERED_WHEN_STOWED_TEST (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING)
  1838. #endif
  1839. #endif
  1840. #if QUIET_PROBING
  1841. void probing_pause(const bool p) {
  1842. #if ENABLED(PROBING_HEATERS_OFF)
  1843. thermalManager.pause(p);
  1844. #endif
  1845. #if ENABLED(PROBING_FANS_OFF)
  1846. fans_pause(p);
  1847. #endif
  1848. if (p) safe_delay(
  1849. #if DELAY_BEFORE_PROBING > 25
  1850. DELAY_BEFORE_PROBING
  1851. #else
  1852. 25
  1853. #endif
  1854. );
  1855. }
  1856. #endif // QUIET_PROBING
  1857. #if ENABLED(BLTOUCH)
  1858. void bltouch_command(int angle) {
  1859. MOVE_SERVO(Z_ENDSTOP_SERVO_NR, angle); // Give the BL-Touch the command and wait
  1860. safe_delay(BLTOUCH_DELAY);
  1861. }
  1862. bool set_bltouch_deployed(const bool deploy) {
  1863. if (deploy && TEST_BLTOUCH()) { // If BL-Touch says it's triggered
  1864. bltouch_command(BLTOUCH_RESET); // try to reset it.
  1865. bltouch_command(BLTOUCH_DEPLOY); // Also needs to deploy and stow to
  1866. bltouch_command(BLTOUCH_STOW); // clear the triggered condition.
  1867. safe_delay(1500); // Wait for internal self-test to complete.
  1868. // (Measured completion time was 0.65 seconds
  1869. // after reset, deploy, and stow sequence)
  1870. if (TEST_BLTOUCH()) { // If it still claims to be triggered...
  1871. SERIAL_ERROR_START();
  1872. SERIAL_ERRORLNPGM(MSG_STOP_BLTOUCH);
  1873. stop(); // punt!
  1874. return true;
  1875. }
  1876. }
  1877. bltouch_command(deploy ? BLTOUCH_DEPLOY : BLTOUCH_STOW);
  1878. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1879. if (DEBUGGING(LEVELING)) {
  1880. SERIAL_ECHOPAIR("set_bltouch_deployed(", deploy);
  1881. SERIAL_CHAR(')');
  1882. SERIAL_EOL();
  1883. }
  1884. #endif
  1885. return false;
  1886. }
  1887. #endif // BLTOUCH
  1888. // returns false for ok and true for failure
  1889. bool set_probe_deployed(bool deploy) {
  1890. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1891. if (DEBUGGING(LEVELING)) {
  1892. DEBUG_POS("set_probe_deployed", current_position);
  1893. SERIAL_ECHOLNPAIR("deploy: ", deploy);
  1894. }
  1895. #endif
  1896. if (endstops.z_probe_enabled == deploy) return false;
  1897. // Make room for probe
  1898. do_probe_raise(_Z_CLEARANCE_DEPLOY_PROBE);
  1899. #if ENABLED(Z_PROBE_SLED) || ENABLED(Z_PROBE_ALLEN_KEY)
  1900. #if ENABLED(Z_PROBE_SLED)
  1901. #define _AUE_ARGS true, false, false
  1902. #else
  1903. #define _AUE_ARGS
  1904. #endif
  1905. if (axis_unhomed_error(_AUE_ARGS)) {
  1906. SERIAL_ERROR_START();
  1907. SERIAL_ERRORLNPGM(MSG_STOP_UNHOMED);
  1908. stop();
  1909. return true;
  1910. }
  1911. #endif
  1912. const float oldXpos = current_position[X_AXIS],
  1913. oldYpos = current_position[Y_AXIS];
  1914. #ifdef _TRIGGERED_WHEN_STOWED_TEST
  1915. // If endstop is already false, the Z probe is deployed
  1916. if (_TRIGGERED_WHEN_STOWED_TEST == deploy) { // closed after the probe specific actions.
  1917. // Would a goto be less ugly?
  1918. //while (!_TRIGGERED_WHEN_STOWED_TEST) idle(); // would offer the opportunity
  1919. // for a triggered when stowed manual probe.
  1920. if (!deploy) endstops.enable_z_probe(false); // Switch off triggered when stowed probes early
  1921. // otherwise an Allen-Key probe can't be stowed.
  1922. #endif
  1923. #if ENABLED(SOLENOID_PROBE)
  1924. #if HAS_SOLENOID_1
  1925. WRITE(SOL1_PIN, deploy);
  1926. #endif
  1927. #elif ENABLED(Z_PROBE_SLED)
  1928. dock_sled(!deploy);
  1929. #elif HAS_Z_SERVO_ENDSTOP && DISABLED(BLTOUCH)
  1930. MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[deploy ? 0 : 1]);
  1931. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  1932. deploy ? run_deploy_moves_script() : run_stow_moves_script();
  1933. #endif
  1934. #ifdef _TRIGGERED_WHEN_STOWED_TEST
  1935. } // _TRIGGERED_WHEN_STOWED_TEST == deploy
  1936. if (_TRIGGERED_WHEN_STOWED_TEST == deploy) { // State hasn't changed?
  1937. if (IsRunning()) {
  1938. SERIAL_ERROR_START();
  1939. SERIAL_ERRORLNPGM("Z-Probe failed");
  1940. LCD_ALERTMESSAGEPGM("Err: ZPROBE");
  1941. }
  1942. stop();
  1943. return true;
  1944. } // _TRIGGERED_WHEN_STOWED_TEST == deploy
  1945. #endif
  1946. do_blocking_move_to(oldXpos, oldYpos, current_position[Z_AXIS]); // return to position before deploy
  1947. endstops.enable_z_probe(deploy);
  1948. return false;
  1949. }
  1950. /**
  1951. * @brief Used by run_z_probe to do a single Z probe move.
  1952. *
  1953. * @param z Z destination
  1954. * @param fr_mm_s Feedrate in mm/s
  1955. * @return true to indicate an error
  1956. */
  1957. static bool do_probe_move(const float z, const float fr_mm_m) {
  1958. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1959. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> do_probe_move", current_position);
  1960. #endif
  1961. // Deploy BLTouch at the start of any probe
  1962. #if ENABLED(BLTOUCH)
  1963. if (set_bltouch_deployed(true)) return true;
  1964. #endif
  1965. #if QUIET_PROBING
  1966. probing_pause(true);
  1967. #endif
  1968. // Move down until probe triggered
  1969. do_blocking_move_to_z(z, MMM_TO_MMS(fr_mm_m));
  1970. // Check to see if the probe was triggered
  1971. const bool probe_triggered = TEST(Endstops::endstop_hit_bits,
  1972. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  1973. Z_MIN
  1974. #else
  1975. Z_MIN_PROBE
  1976. #endif
  1977. );
  1978. #if QUIET_PROBING
  1979. probing_pause(false);
  1980. #endif
  1981. // Retract BLTouch immediately after a probe if it was triggered
  1982. #if ENABLED(BLTOUCH)
  1983. if (probe_triggered && set_bltouch_deployed(false)) return true;
  1984. #endif
  1985. // Clear endstop flags
  1986. endstops.hit_on_purpose();
  1987. // Get Z where the steppers were interrupted
  1988. set_current_from_steppers_for_axis(Z_AXIS);
  1989. // Tell the planner where we actually are
  1990. SYNC_PLAN_POSITION_KINEMATIC();
  1991. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1992. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< do_probe_move", current_position);
  1993. #endif
  1994. return !probe_triggered;
  1995. }
  1996. /**
  1997. * @details Used by probe_pt to do a single Z probe.
  1998. * Leaves current_position[Z_AXIS] at the height where the probe triggered.
  1999. *
  2000. * @return The raw Z position where the probe was triggered
  2001. */
  2002. static float run_z_probe() {
  2003. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2004. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> run_z_probe", current_position);
  2005. #endif
  2006. // Prevent stepper_inactive_time from running out and EXTRUDER_RUNOUT_PREVENT from extruding
  2007. refresh_cmd_timeout();
  2008. #if ENABLED(PROBE_DOUBLE_TOUCH)
  2009. // Do a first probe at the fast speed
  2010. if (do_probe_move(-10, Z_PROBE_SPEED_FAST)) return NAN;
  2011. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2012. float first_probe_z = current_position[Z_AXIS];
  2013. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("1st Probe Z:", first_probe_z);
  2014. #endif
  2015. // move up to make clearance for the probe
  2016. do_blocking_move_to_z(current_position[Z_AXIS] + Z_CLEARANCE_BETWEEN_PROBES, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  2017. #else
  2018. // If the nozzle is above the travel height then
  2019. // move down quickly before doing the slow probe
  2020. float z = Z_CLEARANCE_DEPLOY_PROBE;
  2021. if (zprobe_zoffset < 0) z -= zprobe_zoffset;
  2022. if (z < current_position[Z_AXIS]) {
  2023. // If we don't make it to the z position (i.e. the probe triggered), move up to make clearance for the probe
  2024. if (!do_probe_move(z, Z_PROBE_SPEED_FAST))
  2025. do_blocking_move_to_z(current_position[Z_AXIS] + Z_CLEARANCE_BETWEEN_PROBES, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  2026. }
  2027. #endif
  2028. // move down slowly to find bed
  2029. if (do_probe_move(-10, Z_PROBE_SPEED_SLOW)) return NAN;
  2030. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2031. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< run_z_probe", current_position);
  2032. #endif
  2033. // Debug: compare probe heights
  2034. #if ENABLED(PROBE_DOUBLE_TOUCH) && ENABLED(DEBUG_LEVELING_FEATURE)
  2035. if (DEBUGGING(LEVELING)) {
  2036. SERIAL_ECHOPAIR("2nd Probe Z:", current_position[Z_AXIS]);
  2037. SERIAL_ECHOLNPAIR(" Discrepancy:", first_probe_z - current_position[Z_AXIS]);
  2038. }
  2039. #endif
  2040. return current_position[Z_AXIS] + zprobe_zoffset;
  2041. }
  2042. /**
  2043. * - Move to the given XY
  2044. * - Deploy the probe, if not already deployed
  2045. * - Probe the bed, get the Z position
  2046. * - Depending on the 'stow' flag
  2047. * - Stow the probe, or
  2048. * - Raise to the BETWEEN height
  2049. * - Return the probed Z position
  2050. */
  2051. float probe_pt(const float &rx, const float &ry, const bool stow, const uint8_t verbose_level, const bool printable=true) {
  2052. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2053. if (DEBUGGING(LEVELING)) {
  2054. SERIAL_ECHOPAIR(">>> probe_pt(", LOGICAL_X_POSITION(rx));
  2055. SERIAL_ECHOPAIR(", ", LOGICAL_Y_POSITION(ry));
  2056. SERIAL_ECHOPAIR(", ", stow ? "" : "no ");
  2057. SERIAL_ECHOLNPGM("stow)");
  2058. DEBUG_POS("", current_position);
  2059. }
  2060. #endif
  2061. const float nx = rx - (X_PROBE_OFFSET_FROM_EXTRUDER), ny = ry - (Y_PROBE_OFFSET_FROM_EXTRUDER);
  2062. if (!printable
  2063. ? !position_is_reachable(nx, ny)
  2064. : !position_is_reachable_by_probe(rx, ry)
  2065. ) return NAN;
  2066. // Move the probe to the given XY
  2067. do_blocking_move_to_xy(nx, ny, XY_PROBE_FEEDRATE_MM_S);
  2068. float measured_z = NAN;
  2069. if (!DEPLOY_PROBE()) {
  2070. measured_z = run_z_probe();
  2071. if (!stow)
  2072. do_blocking_move_to_z(current_position[Z_AXIS] + Z_CLEARANCE_BETWEEN_PROBES, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  2073. else
  2074. if (STOW_PROBE()) measured_z = NAN;
  2075. }
  2076. if (verbose_level > 2) {
  2077. SERIAL_PROTOCOLPGM("Bed X: ");
  2078. SERIAL_PROTOCOL_F(LOGICAL_X_POSITION(rx), 3);
  2079. SERIAL_PROTOCOLPGM(" Y: ");
  2080. SERIAL_PROTOCOL_F(LOGICAL_Y_POSITION(ry), 3);
  2081. SERIAL_PROTOCOLPGM(" Z: ");
  2082. SERIAL_PROTOCOL_F(measured_z, 3);
  2083. SERIAL_EOL();
  2084. }
  2085. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2086. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< probe_pt");
  2087. #endif
  2088. if (isnan(measured_z)) {
  2089. LCD_MESSAGEPGM(MSG_ERR_PROBING_FAILED);
  2090. SERIAL_ERROR_START();
  2091. SERIAL_ERRORLNPGM(MSG_ERR_PROBING_FAILED);
  2092. }
  2093. return measured_z;
  2094. }
  2095. #endif // HAS_BED_PROBE
  2096. #if HAS_LEVELING
  2097. bool leveling_is_valid() {
  2098. return
  2099. #if ENABLED(MESH_BED_LEVELING)
  2100. mbl.has_mesh
  2101. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2102. !!bilinear_grid_spacing[X_AXIS]
  2103. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2104. true
  2105. #else // 3POINT, LINEAR
  2106. true
  2107. #endif
  2108. ;
  2109. }
  2110. /**
  2111. * Turn bed leveling on or off, fixing the current
  2112. * position as-needed.
  2113. *
  2114. * Disable: Current position = physical position
  2115. * Enable: Current position = "unleveled" physical position
  2116. */
  2117. void set_bed_leveling_enabled(const bool enable/*=true*/) {
  2118. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2119. const bool can_change = (!enable || leveling_is_valid());
  2120. #else
  2121. constexpr bool can_change = true;
  2122. #endif
  2123. if (can_change && enable != planner.leveling_active) {
  2124. #if ENABLED(MESH_BED_LEVELING)
  2125. if (!enable)
  2126. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS]);
  2127. const bool enabling = enable && leveling_is_valid();
  2128. planner.leveling_active = enabling;
  2129. if (enabling) planner.unapply_leveling(current_position);
  2130. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2131. #if PLANNER_LEVELING
  2132. if (planner.leveling_active) { // leveling from on to off
  2133. // change unleveled current_position to physical current_position without moving steppers.
  2134. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS]);
  2135. planner.leveling_active = false; // disable only AFTER calling apply_leveling
  2136. }
  2137. else { // leveling from off to on
  2138. planner.leveling_active = true; // enable BEFORE calling unapply_leveling, otherwise ignored
  2139. // change physical current_position to unleveled current_position without moving steppers.
  2140. planner.unapply_leveling(current_position);
  2141. }
  2142. #else
  2143. planner.leveling_active = enable; // just flip the bit, current_position will be wrong until next move.
  2144. #endif
  2145. #else // ABL
  2146. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2147. // Force bilinear_z_offset to re-calculate next time
  2148. const float reset[XYZ] = { -9999.999, -9999.999, 0 };
  2149. (void)bilinear_z_offset(reset);
  2150. #endif
  2151. // Enable or disable leveling compensation in the planner
  2152. planner.leveling_active = enable;
  2153. if (!enable)
  2154. // When disabling just get the current position from the steppers.
  2155. // This will yield the smallest error when first converted back to steps.
  2156. set_current_from_steppers_for_axis(
  2157. #if ABL_PLANAR
  2158. ALL_AXES
  2159. #else
  2160. Z_AXIS
  2161. #endif
  2162. );
  2163. else
  2164. // When enabling, remove compensation from the current position,
  2165. // so compensation will give the right stepper counts.
  2166. planner.unapply_leveling(current_position);
  2167. #endif // ABL
  2168. }
  2169. }
  2170. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  2171. void set_z_fade_height(const float zfh) {
  2172. const bool level_active = planner.leveling_active;
  2173. #if ENABLED(AUTO_BED_LEVELING_UBL)
  2174. if (level_active) set_bed_leveling_enabled(false); // turn off before changing fade height for proper apply/unapply leveling to maintain current_position
  2175. #endif
  2176. planner.set_z_fade_height(zfh);
  2177. if (level_active) {
  2178. #if ENABLED(AUTO_BED_LEVELING_UBL)
  2179. set_bed_leveling_enabled(true); // turn back on after changing fade height
  2180. #else
  2181. set_current_from_steppers_for_axis(
  2182. #if ABL_PLANAR
  2183. ALL_AXES
  2184. #else
  2185. Z_AXIS
  2186. #endif
  2187. );
  2188. #endif
  2189. }
  2190. }
  2191. #endif // LEVELING_FADE_HEIGHT
  2192. /**
  2193. * Reset calibration results to zero.
  2194. */
  2195. void reset_bed_level() {
  2196. set_bed_leveling_enabled(false);
  2197. #if ENABLED(MESH_BED_LEVELING)
  2198. if (leveling_is_valid()) {
  2199. mbl.reset();
  2200. mbl.has_mesh = false;
  2201. }
  2202. #else
  2203. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2204. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("reset_bed_level");
  2205. #endif
  2206. #if ABL_PLANAR
  2207. planner.bed_level_matrix.set_to_identity();
  2208. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2209. bilinear_start[X_AXIS] = bilinear_start[Y_AXIS] =
  2210. bilinear_grid_spacing[X_AXIS] = bilinear_grid_spacing[Y_AXIS] = 0;
  2211. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
  2212. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
  2213. z_values[x][y] = NAN;
  2214. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2215. ubl.reset();
  2216. #endif
  2217. #endif
  2218. }
  2219. #endif // HAS_LEVELING
  2220. #if ENABLED(AUTO_BED_LEVELING_BILINEAR) || ENABLED(MESH_BED_LEVELING)
  2221. /**
  2222. * Enable to produce output in JSON format suitable
  2223. * for SCAD or JavaScript mesh visualizers.
  2224. *
  2225. * Visualize meshes in OpenSCAD using the included script.
  2226. *
  2227. * buildroot/shared/scripts/MarlinMesh.scad
  2228. */
  2229. //#define SCAD_MESH_OUTPUT
  2230. /**
  2231. * Print calibration results for plotting or manual frame adjustment.
  2232. */
  2233. 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)) {
  2234. #ifndef SCAD_MESH_OUTPUT
  2235. for (uint8_t x = 0; x < sx; x++) {
  2236. for (uint8_t i = 0; i < precision + 2 + (x < 10 ? 1 : 0); i++)
  2237. SERIAL_PROTOCOLCHAR(' ');
  2238. SERIAL_PROTOCOL((int)x);
  2239. }
  2240. SERIAL_EOL();
  2241. #endif
  2242. #ifdef SCAD_MESH_OUTPUT
  2243. SERIAL_PROTOCOLLNPGM("measured_z = ["); // open 2D array
  2244. #endif
  2245. for (uint8_t y = 0; y < sy; y++) {
  2246. #ifdef SCAD_MESH_OUTPUT
  2247. SERIAL_PROTOCOLPGM(" ["); // open sub-array
  2248. #else
  2249. if (y < 10) SERIAL_PROTOCOLCHAR(' ');
  2250. SERIAL_PROTOCOL((int)y);
  2251. #endif
  2252. for (uint8_t x = 0; x < sx; x++) {
  2253. SERIAL_PROTOCOLCHAR(' ');
  2254. const float offset = fn(x, y);
  2255. if (!isnan(offset)) {
  2256. if (offset >= 0) SERIAL_PROTOCOLCHAR('+');
  2257. SERIAL_PROTOCOL_F(offset, precision);
  2258. }
  2259. else {
  2260. #ifdef SCAD_MESH_OUTPUT
  2261. for (uint8_t i = 3; i < precision + 3; i++)
  2262. SERIAL_PROTOCOLCHAR(' ');
  2263. SERIAL_PROTOCOLPGM("NAN");
  2264. #else
  2265. for (uint8_t i = 0; i < precision + 3; i++)
  2266. SERIAL_PROTOCOLCHAR(i ? '=' : ' ');
  2267. #endif
  2268. }
  2269. #ifdef SCAD_MESH_OUTPUT
  2270. if (x < sx - 1) SERIAL_PROTOCOLCHAR(',');
  2271. #endif
  2272. }
  2273. #ifdef SCAD_MESH_OUTPUT
  2274. SERIAL_PROTOCOLCHAR(' ');
  2275. SERIAL_PROTOCOLCHAR(']'); // close sub-array
  2276. if (y < sy - 1) SERIAL_PROTOCOLCHAR(',');
  2277. #endif
  2278. SERIAL_EOL();
  2279. }
  2280. #ifdef SCAD_MESH_OUTPUT
  2281. SERIAL_PROTOCOLPGM("];"); // close 2D array
  2282. #endif
  2283. SERIAL_EOL();
  2284. }
  2285. #endif
  2286. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2287. /**
  2288. * Extrapolate a single point from its neighbors
  2289. */
  2290. static void extrapolate_one_point(const uint8_t x, const uint8_t y, const int8_t xdir, const int8_t ydir) {
  2291. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2292. if (DEBUGGING(LEVELING)) {
  2293. SERIAL_ECHOPGM("Extrapolate [");
  2294. if (x < 10) SERIAL_CHAR(' ');
  2295. SERIAL_ECHO((int)x);
  2296. SERIAL_CHAR(xdir ? (xdir > 0 ? '+' : '-') : ' ');
  2297. SERIAL_CHAR(' ');
  2298. if (y < 10) SERIAL_CHAR(' ');
  2299. SERIAL_ECHO((int)y);
  2300. SERIAL_CHAR(ydir ? (ydir > 0 ? '+' : '-') : ' ');
  2301. SERIAL_CHAR(']');
  2302. }
  2303. #endif
  2304. if (!isnan(z_values[x][y])) {
  2305. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2306. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM(" (done)");
  2307. #endif
  2308. return; // Don't overwrite good values.
  2309. }
  2310. SERIAL_EOL();
  2311. // Get X neighbors, Y neighbors, and XY neighbors
  2312. const uint8_t x1 = x + xdir, y1 = y + ydir, x2 = x1 + xdir, y2 = y1 + ydir;
  2313. float a1 = z_values[x1][y ], a2 = z_values[x2][y ],
  2314. b1 = z_values[x ][y1], b2 = z_values[x ][y2],
  2315. c1 = z_values[x1][y1], c2 = z_values[x2][y2];
  2316. // Treat far unprobed points as zero, near as equal to far
  2317. if (isnan(a2)) a2 = 0.0; if (isnan(a1)) a1 = a2;
  2318. if (isnan(b2)) b2 = 0.0; if (isnan(b1)) b1 = b2;
  2319. if (isnan(c2)) c2 = 0.0; if (isnan(c1)) c1 = c2;
  2320. const float a = 2 * a1 - a2, b = 2 * b1 - b2, c = 2 * c1 - c2;
  2321. // Take the average instead of the median
  2322. z_values[x][y] = (a + b + c) / 3.0;
  2323. // Median is robust (ignores outliers).
  2324. // z_values[x][y] = (a < b) ? ((b < c) ? b : (c < a) ? a : c)
  2325. // : ((c < b) ? b : (a < c) ? a : c);
  2326. }
  2327. //Enable this if your SCARA uses 180° of total area
  2328. //#define EXTRAPOLATE_FROM_EDGE
  2329. #if ENABLED(EXTRAPOLATE_FROM_EDGE)
  2330. #if GRID_MAX_POINTS_X < GRID_MAX_POINTS_Y
  2331. #define HALF_IN_X
  2332. #elif GRID_MAX_POINTS_Y < GRID_MAX_POINTS_X
  2333. #define HALF_IN_Y
  2334. #endif
  2335. #endif
  2336. /**
  2337. * Fill in the unprobed points (corners of circular print surface)
  2338. * using linear extrapolation, away from the center.
  2339. */
  2340. static void extrapolate_unprobed_bed_level() {
  2341. #ifdef HALF_IN_X
  2342. constexpr uint8_t ctrx2 = 0, xlen = GRID_MAX_POINTS_X - 1;
  2343. #else
  2344. constexpr uint8_t ctrx1 = (GRID_MAX_POINTS_X - 1) / 2, // left-of-center
  2345. ctrx2 = (GRID_MAX_POINTS_X) / 2, // right-of-center
  2346. xlen = ctrx1;
  2347. #endif
  2348. #ifdef HALF_IN_Y
  2349. constexpr uint8_t ctry2 = 0, ylen = GRID_MAX_POINTS_Y - 1;
  2350. #else
  2351. constexpr uint8_t ctry1 = (GRID_MAX_POINTS_Y - 1) / 2, // top-of-center
  2352. ctry2 = (GRID_MAX_POINTS_Y) / 2, // bottom-of-center
  2353. ylen = ctry1;
  2354. #endif
  2355. for (uint8_t xo = 0; xo <= xlen; xo++)
  2356. for (uint8_t yo = 0; yo <= ylen; yo++) {
  2357. uint8_t x2 = ctrx2 + xo, y2 = ctry2 + yo;
  2358. #ifndef HALF_IN_X
  2359. const uint8_t x1 = ctrx1 - xo;
  2360. #endif
  2361. #ifndef HALF_IN_Y
  2362. const uint8_t y1 = ctry1 - yo;
  2363. #ifndef HALF_IN_X
  2364. extrapolate_one_point(x1, y1, +1, +1); // left-below + +
  2365. #endif
  2366. extrapolate_one_point(x2, y1, -1, +1); // right-below - +
  2367. #endif
  2368. #ifndef HALF_IN_X
  2369. extrapolate_one_point(x1, y2, +1, -1); // left-above + -
  2370. #endif
  2371. extrapolate_one_point(x2, y2, -1, -1); // right-above - -
  2372. }
  2373. }
  2374. static void print_bilinear_leveling_grid() {
  2375. SERIAL_ECHOLNPGM("Bilinear Leveling Grid:");
  2376. print_2d_array(GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y, 3,
  2377. [](const uint8_t ix, const uint8_t iy) { return z_values[ix][iy]; }
  2378. );
  2379. }
  2380. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  2381. #define ABL_GRID_POINTS_VIRT_X (GRID_MAX_POINTS_X - 1) * (BILINEAR_SUBDIVISIONS) + 1
  2382. #define ABL_GRID_POINTS_VIRT_Y (GRID_MAX_POINTS_Y - 1) * (BILINEAR_SUBDIVISIONS) + 1
  2383. #define ABL_TEMP_POINTS_X (GRID_MAX_POINTS_X + 2)
  2384. #define ABL_TEMP_POINTS_Y (GRID_MAX_POINTS_Y + 2)
  2385. float z_values_virt[ABL_GRID_POINTS_VIRT_X][ABL_GRID_POINTS_VIRT_Y];
  2386. int bilinear_grid_spacing_virt[2] = { 0 };
  2387. float bilinear_grid_factor_virt[2] = { 0 };
  2388. static void print_bilinear_leveling_grid_virt() {
  2389. SERIAL_ECHOLNPGM("Subdivided with CATMULL ROM Leveling Grid:");
  2390. print_2d_array(ABL_GRID_POINTS_VIRT_X, ABL_GRID_POINTS_VIRT_Y, 5,
  2391. [](const uint8_t ix, const uint8_t iy) { return z_values_virt[ix][iy]; }
  2392. );
  2393. }
  2394. #define LINEAR_EXTRAPOLATION(E, I) ((E) * 2 - (I))
  2395. float bed_level_virt_coord(const uint8_t x, const uint8_t y) {
  2396. uint8_t ep = 0, ip = 1;
  2397. if (!x || x == ABL_TEMP_POINTS_X - 1) {
  2398. if (x) {
  2399. ep = GRID_MAX_POINTS_X - 1;
  2400. ip = GRID_MAX_POINTS_X - 2;
  2401. }
  2402. if (WITHIN(y, 1, ABL_TEMP_POINTS_Y - 2))
  2403. return LINEAR_EXTRAPOLATION(
  2404. z_values[ep][y - 1],
  2405. z_values[ip][y - 1]
  2406. );
  2407. else
  2408. return LINEAR_EXTRAPOLATION(
  2409. bed_level_virt_coord(ep + 1, y),
  2410. bed_level_virt_coord(ip + 1, y)
  2411. );
  2412. }
  2413. if (!y || y == ABL_TEMP_POINTS_Y - 1) {
  2414. if (y) {
  2415. ep = GRID_MAX_POINTS_Y - 1;
  2416. ip = GRID_MAX_POINTS_Y - 2;
  2417. }
  2418. if (WITHIN(x, 1, ABL_TEMP_POINTS_X - 2))
  2419. return LINEAR_EXTRAPOLATION(
  2420. z_values[x - 1][ep],
  2421. z_values[x - 1][ip]
  2422. );
  2423. else
  2424. return LINEAR_EXTRAPOLATION(
  2425. bed_level_virt_coord(x, ep + 1),
  2426. bed_level_virt_coord(x, ip + 1)
  2427. );
  2428. }
  2429. return z_values[x - 1][y - 1];
  2430. }
  2431. static float bed_level_virt_cmr(const float p[4], const uint8_t i, const float t) {
  2432. return (
  2433. p[i-1] * -t * sq(1 - t)
  2434. + p[i] * (2 - 5 * sq(t) + 3 * t * sq(t))
  2435. + p[i+1] * t * (1 + 4 * t - 3 * sq(t))
  2436. - p[i+2] * sq(t) * (1 - t)
  2437. ) * 0.5;
  2438. }
  2439. static float bed_level_virt_2cmr(const uint8_t x, const uint8_t y, const float &tx, const float &ty) {
  2440. float row[4], column[4];
  2441. for (uint8_t i = 0; i < 4; i++) {
  2442. for (uint8_t j = 0; j < 4; j++) {
  2443. column[j] = bed_level_virt_coord(i + x - 1, j + y - 1);
  2444. }
  2445. row[i] = bed_level_virt_cmr(column, 1, ty);
  2446. }
  2447. return bed_level_virt_cmr(row, 1, tx);
  2448. }
  2449. void bed_level_virt_interpolate() {
  2450. bilinear_grid_spacing_virt[X_AXIS] = bilinear_grid_spacing[X_AXIS] / (BILINEAR_SUBDIVISIONS);
  2451. bilinear_grid_spacing_virt[Y_AXIS] = bilinear_grid_spacing[Y_AXIS] / (BILINEAR_SUBDIVISIONS);
  2452. bilinear_grid_factor_virt[X_AXIS] = RECIPROCAL(bilinear_grid_spacing_virt[X_AXIS]);
  2453. bilinear_grid_factor_virt[Y_AXIS] = RECIPROCAL(bilinear_grid_spacing_virt[Y_AXIS]);
  2454. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
  2455. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
  2456. for (uint8_t ty = 0; ty < BILINEAR_SUBDIVISIONS; ty++)
  2457. for (uint8_t tx = 0; tx < BILINEAR_SUBDIVISIONS; tx++) {
  2458. if ((ty && y == GRID_MAX_POINTS_Y - 1) || (tx && x == GRID_MAX_POINTS_X - 1))
  2459. continue;
  2460. z_values_virt[x * (BILINEAR_SUBDIVISIONS) + tx][y * (BILINEAR_SUBDIVISIONS) + ty] =
  2461. bed_level_virt_2cmr(
  2462. x + 1,
  2463. y + 1,
  2464. (float)tx / (BILINEAR_SUBDIVISIONS),
  2465. (float)ty / (BILINEAR_SUBDIVISIONS)
  2466. );
  2467. }
  2468. }
  2469. #endif // ABL_BILINEAR_SUBDIVISION
  2470. // Refresh after other values have been updated
  2471. void refresh_bed_level() {
  2472. bilinear_grid_factor[X_AXIS] = RECIPROCAL(bilinear_grid_spacing[X_AXIS]);
  2473. bilinear_grid_factor[Y_AXIS] = RECIPROCAL(bilinear_grid_spacing[Y_AXIS]);
  2474. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  2475. bed_level_virt_interpolate();
  2476. #endif
  2477. }
  2478. #endif // AUTO_BED_LEVELING_BILINEAR
  2479. /**
  2480. * Home an individual linear axis
  2481. */
  2482. static void do_homing_move(const AxisEnum axis, const float distance, const float fr_mm_s=0.0) {
  2483. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2484. if (DEBUGGING(LEVELING)) {
  2485. SERIAL_ECHOPAIR(">>> do_homing_move(", axis_codes[axis]);
  2486. SERIAL_ECHOPAIR(", ", distance);
  2487. SERIAL_ECHOPAIR(", ", fr_mm_s);
  2488. SERIAL_CHAR(')');
  2489. SERIAL_EOL();
  2490. }
  2491. #endif
  2492. #if HOMING_Z_WITH_PROBE && ENABLED(BLTOUCH)
  2493. const bool deploy_bltouch = (axis == Z_AXIS && distance < 0);
  2494. if (deploy_bltouch) set_bltouch_deployed(true);
  2495. #endif
  2496. #if QUIET_PROBING
  2497. if (axis == Z_AXIS) probing_pause(true);
  2498. #endif
  2499. // Tell the planner we're at Z=0
  2500. current_position[axis] = 0;
  2501. #if IS_SCARA
  2502. SYNC_PLAN_POSITION_KINEMATIC();
  2503. current_position[axis] = distance;
  2504. inverse_kinematics(current_position);
  2505. 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);
  2506. #else
  2507. sync_plan_position();
  2508. current_position[axis] = distance;
  2509. 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);
  2510. #endif
  2511. stepper.synchronize();
  2512. #if QUIET_PROBING
  2513. if (axis == Z_AXIS) probing_pause(false);
  2514. #endif
  2515. #if HOMING_Z_WITH_PROBE && ENABLED(BLTOUCH)
  2516. if (deploy_bltouch) set_bltouch_deployed(false);
  2517. #endif
  2518. endstops.hit_on_purpose();
  2519. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2520. if (DEBUGGING(LEVELING)) {
  2521. SERIAL_ECHOPAIR("<<< do_homing_move(", axis_codes[axis]);
  2522. SERIAL_CHAR(')');
  2523. SERIAL_EOL();
  2524. }
  2525. #endif
  2526. }
  2527. /**
  2528. * TMC2130 specific sensorless homing using stallGuard2.
  2529. * stallGuard2 only works when in spreadCycle mode.
  2530. * spreadCycle and stealthChop are mutually exclusive.
  2531. */
  2532. #if ENABLED(SENSORLESS_HOMING)
  2533. void tmc2130_sensorless_homing(TMC2130Stepper &st, bool enable=true) {
  2534. #if ENABLED(STEALTHCHOP)
  2535. if (enable) {
  2536. st.coolstep_min_speed(1024UL * 1024UL - 1UL);
  2537. st.stealthChop(0);
  2538. }
  2539. else {
  2540. st.coolstep_min_speed(0);
  2541. st.stealthChop(1);
  2542. }
  2543. #endif
  2544. st.diag1_stall(enable ? 1 : 0);
  2545. }
  2546. #endif
  2547. /**
  2548. * Home an individual "raw axis" to its endstop.
  2549. * This applies to XYZ on Cartesian and Core robots, and
  2550. * to the individual ABC steppers on DELTA and SCARA.
  2551. *
  2552. * At the end of the procedure the axis is marked as
  2553. * homed and the current position of that axis is updated.
  2554. * Kinematic robots should wait till all axes are homed
  2555. * before updating the current position.
  2556. */
  2557. #define HOMEAXIS(LETTER) homeaxis(LETTER##_AXIS)
  2558. static void homeaxis(const AxisEnum axis) {
  2559. #if IS_SCARA
  2560. // Only Z homing (with probe) is permitted
  2561. if (axis != Z_AXIS) { BUZZ(100, 880); return; }
  2562. #else
  2563. #define CAN_HOME(A) \
  2564. (axis == A##_AXIS && ((A##_MIN_PIN > -1 && A##_HOME_DIR < 0) || (A##_MAX_PIN > -1 && A##_HOME_DIR > 0)))
  2565. if (!CAN_HOME(X) && !CAN_HOME(Y) && !CAN_HOME(Z)) return;
  2566. #endif
  2567. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2568. if (DEBUGGING(LEVELING)) {
  2569. SERIAL_ECHOPAIR(">>> homeaxis(", axis_codes[axis]);
  2570. SERIAL_CHAR(')');
  2571. SERIAL_EOL();
  2572. }
  2573. #endif
  2574. const int axis_home_dir =
  2575. #if ENABLED(DUAL_X_CARRIAGE)
  2576. (axis == X_AXIS) ? x_home_dir(active_extruder) :
  2577. #endif
  2578. home_dir(axis);
  2579. // Homing Z towards the bed? Deploy the Z probe or endstop.
  2580. #if HOMING_Z_WITH_PROBE
  2581. if (axis == Z_AXIS && DEPLOY_PROBE()) return;
  2582. #endif
  2583. // Set flags for X, Y, Z motor locking
  2584. #if ENABLED(X_DUAL_ENDSTOPS)
  2585. if (axis == X_AXIS) stepper.set_homing_flag_x(true);
  2586. #endif
  2587. #if ENABLED(Y_DUAL_ENDSTOPS)
  2588. if (axis == Y_AXIS) stepper.set_homing_flag_y(true);
  2589. #endif
  2590. #if ENABLED(Z_DUAL_ENDSTOPS)
  2591. if (axis == Z_AXIS) stepper.set_homing_flag_z(true);
  2592. #endif
  2593. // Disable stealthChop if used. Enable diag1 pin on driver.
  2594. #if ENABLED(SENSORLESS_HOMING)
  2595. #if ENABLED(X_IS_TMC2130)
  2596. if (axis == X_AXIS) tmc2130_sensorless_homing(stepperX);
  2597. #endif
  2598. #if ENABLED(Y_IS_TMC2130)
  2599. if (axis == Y_AXIS) tmc2130_sensorless_homing(stepperY);
  2600. #endif
  2601. #endif
  2602. // Fast move towards endstop until triggered
  2603. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2604. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Home 1 Fast:");
  2605. #endif
  2606. do_homing_move(axis, 1.5 * max_length(axis) * axis_home_dir);
  2607. // When homing Z with probe respect probe clearance
  2608. const float bump = axis_home_dir * (
  2609. #if HOMING_Z_WITH_PROBE
  2610. (axis == Z_AXIS) ? max(Z_CLEARANCE_BETWEEN_PROBES, home_bump_mm(Z_AXIS)) :
  2611. #endif
  2612. home_bump_mm(axis)
  2613. );
  2614. // If a second homing move is configured...
  2615. if (bump) {
  2616. // Move away from the endstop by the axis HOME_BUMP_MM
  2617. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2618. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Move Away:");
  2619. #endif
  2620. do_homing_move(axis, -bump);
  2621. // Slow move towards endstop until triggered
  2622. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2623. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Home 2 Slow:");
  2624. #endif
  2625. do_homing_move(axis, 2 * bump, get_homing_bump_feedrate(axis));
  2626. }
  2627. /**
  2628. * Home axes that have dual endstops... differently
  2629. */
  2630. #if ENABLED(X_DUAL_ENDSTOPS) || ENABLED(Y_DUAL_ENDSTOPS) || ENABLED(Z_DUAL_ENDSTOPS)
  2631. const bool pos_dir = axis_home_dir > 0;
  2632. #if ENABLED(X_DUAL_ENDSTOPS)
  2633. if (axis == X_AXIS) {
  2634. const bool lock_x1 = pos_dir ? (x_endstop_adj > 0) : (x_endstop_adj < 0);
  2635. const float adj = FABS(x_endstop_adj);
  2636. if (lock_x1) stepper.set_x_lock(true); else stepper.set_x2_lock(true);
  2637. do_homing_move(axis, pos_dir ? -adj : adj);
  2638. if (lock_x1) stepper.set_x_lock(false); else stepper.set_x2_lock(false);
  2639. stepper.set_homing_flag_x(false);
  2640. }
  2641. #endif
  2642. #if ENABLED(Y_DUAL_ENDSTOPS)
  2643. if (axis == Y_AXIS) {
  2644. const bool lock_y1 = pos_dir ? (y_endstop_adj > 0) : (y_endstop_adj < 0);
  2645. const float adj = FABS(y_endstop_adj);
  2646. if (lock_y1) stepper.set_y_lock(true); else stepper.set_y2_lock(true);
  2647. do_homing_move(axis, pos_dir ? -adj : adj);
  2648. if (lock_y1) stepper.set_y_lock(false); else stepper.set_y2_lock(false);
  2649. stepper.set_homing_flag_y(false);
  2650. }
  2651. #endif
  2652. #if ENABLED(Z_DUAL_ENDSTOPS)
  2653. if (axis == Z_AXIS) {
  2654. const bool lock_z1 = pos_dir ? (z_endstop_adj > 0) : (z_endstop_adj < 0);
  2655. const float adj = FABS(z_endstop_adj);
  2656. if (lock_z1) stepper.set_z_lock(true); else stepper.set_z2_lock(true);
  2657. do_homing_move(axis, pos_dir ? -adj : adj);
  2658. if (lock_z1) stepper.set_z_lock(false); else stepper.set_z2_lock(false);
  2659. stepper.set_homing_flag_z(false);
  2660. }
  2661. #endif
  2662. #endif
  2663. #if IS_SCARA
  2664. set_axis_is_at_home(axis);
  2665. SYNC_PLAN_POSITION_KINEMATIC();
  2666. #elif ENABLED(DELTA)
  2667. // Delta has already moved all three towers up in G28
  2668. // so here it re-homes each tower in turn.
  2669. // Delta homing treats the axes as normal linear axes.
  2670. // retrace by the amount specified in delta_endstop_adj + additional 0.1mm in order to have minimum steps
  2671. if (delta_endstop_adj[axis] * Z_HOME_DIR <= 0) {
  2672. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2673. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("delta_endstop_adj:");
  2674. #endif
  2675. do_homing_move(axis, delta_endstop_adj[axis] - 0.1 * Z_HOME_DIR);
  2676. }
  2677. #else
  2678. // For cartesian/core machines,
  2679. // set the axis to its home position
  2680. set_axis_is_at_home(axis);
  2681. sync_plan_position();
  2682. destination[axis] = current_position[axis];
  2683. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2684. if (DEBUGGING(LEVELING)) DEBUG_POS("> AFTER set_axis_is_at_home", current_position);
  2685. #endif
  2686. #endif
  2687. // Re-enable stealthChop if used. Disable diag1 pin on driver.
  2688. #if ENABLED(SENSORLESS_HOMING)
  2689. #if ENABLED(X_IS_TMC2130)
  2690. if (axis == X_AXIS) tmc2130_sensorless_homing(stepperX, false);
  2691. #endif
  2692. #if ENABLED(Y_IS_TMC2130)
  2693. if (axis == Y_AXIS) tmc2130_sensorless_homing(stepperY, false);
  2694. #endif
  2695. #endif
  2696. // Put away the Z probe
  2697. #if HOMING_Z_WITH_PROBE
  2698. if (axis == Z_AXIS && STOW_PROBE()) return;
  2699. #endif
  2700. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2701. if (DEBUGGING(LEVELING)) {
  2702. SERIAL_ECHOPAIR("<<< homeaxis(", axis_codes[axis]);
  2703. SERIAL_CHAR(')');
  2704. SERIAL_EOL();
  2705. }
  2706. #endif
  2707. } // homeaxis()
  2708. #if ENABLED(FWRETRACT)
  2709. /**
  2710. * Retract or recover according to firmware settings
  2711. *
  2712. * This function handles retract/recover moves for G10 and G11,
  2713. * plus auto-retract moves sent from G0/G1 when E-only moves are done.
  2714. *
  2715. * To simplify the logic, doubled retract/recover moves are ignored.
  2716. *
  2717. * Note: Z lift is done transparently to the planner. Aborting
  2718. * a print between G10 and G11 may corrupt the Z position.
  2719. *
  2720. * Note: Auto-retract will apply the set Z hop in addition to any Z hop
  2721. * included in the G-code. Use M207 Z0 to to prevent double hop.
  2722. */
  2723. void retract(const bool retracting
  2724. #if EXTRUDERS > 1
  2725. , bool swapping = false
  2726. #endif
  2727. ) {
  2728. static float hop_amount = 0.0; // Total amount lifted, for use in recover
  2729. // Prevent two retracts or recovers in a row
  2730. if (retracted[active_extruder] == retracting) return;
  2731. // Prevent two swap-retract or recovers in a row
  2732. #if EXTRUDERS > 1
  2733. // Allow G10 S1 only after G10
  2734. if (swapping && retracted_swap[active_extruder] == retracting) return;
  2735. // G11 priority to recover the long retract if activated
  2736. if (!retracting) swapping = retracted_swap[active_extruder];
  2737. #else
  2738. const bool swapping = false;
  2739. #endif
  2740. /* // debugging
  2741. SERIAL_ECHOLNPAIR("retracting ", retracting);
  2742. SERIAL_ECHOLNPAIR("swapping ", swapping);
  2743. SERIAL_ECHOLNPAIR("active extruder ", active_extruder);
  2744. for (uint8_t i = 0; i < EXTRUDERS; ++i) {
  2745. SERIAL_ECHOPAIR("retracted[", i);
  2746. SERIAL_ECHOLNPAIR("] ", retracted[i]);
  2747. SERIAL_ECHOPAIR("retracted_swap[", i);
  2748. SERIAL_ECHOLNPAIR("] ", retracted_swap[i]);
  2749. }
  2750. SERIAL_ECHOLNPAIR("current_position[z] ", current_position[Z_AXIS]);
  2751. SERIAL_ECHOLNPAIR("hop_amount ", hop_amount);
  2752. //*/
  2753. const bool has_zhop = retract_zlift > 0.01; // Is there a hop set?
  2754. const float old_feedrate_mm_s = feedrate_mm_s;
  2755. // The current position will be the destination for E and Z moves
  2756. set_destination_from_current();
  2757. stepper.synchronize(); // Wait for buffered moves to complete
  2758. const float renormalize = 1.0 / planner.e_factor[active_extruder];
  2759. if (retracting) {
  2760. // Retract by moving from a faux E position back to the current E position
  2761. feedrate_mm_s = retract_feedrate_mm_s;
  2762. current_position[E_AXIS] += (swapping ? swap_retract_length : retract_length) * renormalize;
  2763. sync_plan_position_e();
  2764. prepare_move_to_destination();
  2765. // Is a Z hop set, and has the hop not yet been done?
  2766. if (has_zhop && !hop_amount) {
  2767. hop_amount += retract_zlift; // Carriage is raised for retraction hop
  2768. feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS]; // Z feedrate to max
  2769. current_position[Z_AXIS] -= retract_zlift; // Pretend current pos is lower. Next move raises Z.
  2770. SYNC_PLAN_POSITION_KINEMATIC(); // Set the planner to the new position
  2771. prepare_move_to_destination(); // Raise up to the old current pos
  2772. feedrate_mm_s = retract_feedrate_mm_s; // Restore feedrate
  2773. }
  2774. }
  2775. else {
  2776. // If a hop was done and Z hasn't changed, undo the Z hop
  2777. if (hop_amount) {
  2778. current_position[Z_AXIS] += retract_zlift; // Pretend current pos is lower. Next move raises Z.
  2779. SYNC_PLAN_POSITION_KINEMATIC(); // Set the planner to the new position
  2780. feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS]; // Z feedrate to max
  2781. prepare_move_to_destination(); // Raise up to the old current pos
  2782. hop_amount = 0.0; // Clear hop
  2783. }
  2784. // A retract multiplier has been added here to get faster swap recovery
  2785. feedrate_mm_s = swapping ? swap_retract_recover_feedrate_mm_s : retract_recover_feedrate_mm_s;
  2786. const float move_e = swapping ? swap_retract_length + swap_retract_recover_length : retract_length + retract_recover_length;
  2787. current_position[E_AXIS] -= move_e * renormalize;
  2788. sync_plan_position_e();
  2789. prepare_move_to_destination(); // Recover E
  2790. }
  2791. feedrate_mm_s = old_feedrate_mm_s; // Restore original feedrate
  2792. retracted[active_extruder] = retracting; // Active extruder now retracted / recovered
  2793. // If swap retract/recover update the retracted_swap flag too
  2794. #if EXTRUDERS > 1
  2795. if (swapping) retracted_swap[active_extruder] = retracting;
  2796. #endif
  2797. /* // debugging
  2798. SERIAL_ECHOLNPAIR("retracting ", retracting);
  2799. SERIAL_ECHOLNPAIR("swapping ", swapping);
  2800. SERIAL_ECHOLNPAIR("active_extruder ", active_extruder);
  2801. for (uint8_t i = 0; i < EXTRUDERS; ++i) {
  2802. SERIAL_ECHOPAIR("retracted[", i);
  2803. SERIAL_ECHOLNPAIR("] ", retracted[i]);
  2804. SERIAL_ECHOPAIR("retracted_swap[", i);
  2805. SERIAL_ECHOLNPAIR("] ", retracted_swap[i]);
  2806. }
  2807. SERIAL_ECHOLNPAIR("current_position[z] ", current_position[Z_AXIS]);
  2808. SERIAL_ECHOLNPAIR("hop_amount ", hop_amount);
  2809. //*/
  2810. }
  2811. #endif // FWRETRACT
  2812. #if ENABLED(MIXING_EXTRUDER)
  2813. void normalize_mix() {
  2814. float mix_total = 0.0;
  2815. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) mix_total += RECIPROCAL(mixing_factor[i]);
  2816. // Scale all values if they don't add up to ~1.0
  2817. if (!NEAR(mix_total, 1.0)) {
  2818. SERIAL_PROTOCOLLNPGM("Warning: Mix factors must add up to 1.0. Scaling.");
  2819. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) mixing_factor[i] *= mix_total;
  2820. }
  2821. }
  2822. #if ENABLED(DIRECT_MIXING_IN_G1)
  2823. // Get mixing parameters from the GCode
  2824. // The total "must" be 1.0 (but it will be normalized)
  2825. // If no mix factors are given, the old mix is preserved
  2826. void gcode_get_mix() {
  2827. const char* mixing_codes = "ABCDHI";
  2828. byte mix_bits = 0;
  2829. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) {
  2830. if (parser.seenval(mixing_codes[i])) {
  2831. SBI(mix_bits, i);
  2832. float v = parser.value_float();
  2833. NOLESS(v, 0.0);
  2834. mixing_factor[i] = RECIPROCAL(v);
  2835. }
  2836. }
  2837. // If any mixing factors were included, clear the rest
  2838. // If none were included, preserve the last mix
  2839. if (mix_bits) {
  2840. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  2841. if (!TEST(mix_bits, i)) mixing_factor[i] = 0.0;
  2842. normalize_mix();
  2843. }
  2844. }
  2845. #endif
  2846. #endif
  2847. /**
  2848. * ***************************************************************************
  2849. * ***************************** G-CODE HANDLING *****************************
  2850. * ***************************************************************************
  2851. */
  2852. /**
  2853. * Set XYZE destination and feedrate from the current GCode command
  2854. *
  2855. * - Set destination from included axis codes
  2856. * - Set to current for missing axis codes
  2857. * - Set the feedrate, if included
  2858. */
  2859. void gcode_get_destination() {
  2860. LOOP_XYZE(i) {
  2861. if (parser.seen(axis_codes[i])) {
  2862. const float v = parser.value_axis_units((AxisEnum)i) + (axis_relative_modes[i] || relative_mode ? current_position[i] : 0);
  2863. destination[i] = i == E_AXIS ? v : LOGICAL_TO_NATIVE(v, i);
  2864. }
  2865. else
  2866. destination[i] = current_position[i];
  2867. }
  2868. if (parser.linearval('F') > 0.0)
  2869. feedrate_mm_s = MMM_TO_MMS(parser.value_feedrate());
  2870. #if ENABLED(PRINTCOUNTER)
  2871. if (!DEBUGGING(DRYRUN))
  2872. print_job_timer.incFilamentUsed(destination[E_AXIS] - current_position[E_AXIS]);
  2873. #endif
  2874. // Get ABCDHI mixing factors
  2875. #if ENABLED(MIXING_EXTRUDER) && ENABLED(DIRECT_MIXING_IN_G1)
  2876. gcode_get_mix();
  2877. #endif
  2878. }
  2879. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  2880. /**
  2881. * Output a "busy" message at regular intervals
  2882. * while the machine is not accepting commands.
  2883. */
  2884. void host_keepalive() {
  2885. const millis_t ms = millis();
  2886. if (host_keepalive_interval && busy_state != NOT_BUSY) {
  2887. if (PENDING(ms, next_busy_signal_ms)) return;
  2888. switch (busy_state) {
  2889. case IN_HANDLER:
  2890. case IN_PROCESS:
  2891. SERIAL_ECHO_START();
  2892. SERIAL_ECHOLNPGM(MSG_BUSY_PROCESSING);
  2893. break;
  2894. case PAUSED_FOR_USER:
  2895. SERIAL_ECHO_START();
  2896. SERIAL_ECHOLNPGM(MSG_BUSY_PAUSED_FOR_USER);
  2897. break;
  2898. case PAUSED_FOR_INPUT:
  2899. SERIAL_ECHO_START();
  2900. SERIAL_ECHOLNPGM(MSG_BUSY_PAUSED_FOR_INPUT);
  2901. break;
  2902. default:
  2903. break;
  2904. }
  2905. }
  2906. next_busy_signal_ms = ms + host_keepalive_interval * 1000UL;
  2907. }
  2908. #endif // HOST_KEEPALIVE_FEATURE
  2909. /**************************************************
  2910. ***************** GCode Handlers *****************
  2911. **************************************************/
  2912. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  2913. #define G0_G1_CONDITION !axis_unhomed_error(parser.seen('X'), parser.seen('Y'), parser.seen('Z'))
  2914. #else
  2915. #define G0_G1_CONDITION true
  2916. #endif
  2917. /**
  2918. * G0, G1: Coordinated movement of X Y Z E axes
  2919. */
  2920. inline void gcode_G0_G1(
  2921. #if IS_SCARA
  2922. bool fast_move=false
  2923. #endif
  2924. ) {
  2925. if (IsRunning() && G0_G1_CONDITION) {
  2926. gcode_get_destination(); // For X Y Z E F
  2927. #if ENABLED(FWRETRACT)
  2928. if (MIN_AUTORETRACT <= MAX_AUTORETRACT) {
  2929. // When M209 Autoretract is enabled, convert E-only moves to firmware retract/recover moves
  2930. if (autoretract_enabled && parser.seen('E') && !(parser.seen('X') || parser.seen('Y') || parser.seen('Z'))) {
  2931. const float echange = destination[E_AXIS] - current_position[E_AXIS];
  2932. // Is this a retract or recover move?
  2933. if (WITHIN(FABS(echange), MIN_AUTORETRACT, MAX_AUTORETRACT) && retracted[active_extruder] == (echange > 0.0)) {
  2934. current_position[E_AXIS] = destination[E_AXIS]; // Hide a G1-based retract/recover from calculations
  2935. sync_plan_position_e(); // AND from the planner
  2936. return retract(echange < 0.0); // Firmware-based retract/recover (double-retract ignored)
  2937. }
  2938. }
  2939. }
  2940. #endif // FWRETRACT
  2941. #if IS_SCARA
  2942. fast_move ? prepare_uninterpolated_move_to_destination() : prepare_move_to_destination();
  2943. #else
  2944. prepare_move_to_destination();
  2945. #endif
  2946. }
  2947. }
  2948. /**
  2949. * G2: Clockwise Arc
  2950. * G3: Counterclockwise Arc
  2951. *
  2952. * This command has two forms: IJ-form and R-form.
  2953. *
  2954. * - I specifies an X offset. J specifies a Y offset.
  2955. * At least one of the IJ parameters is required.
  2956. * X and Y can be omitted to do a complete circle.
  2957. * The given XY is not error-checked. The arc ends
  2958. * based on the angle of the destination.
  2959. * Mixing I or J with R will throw an error.
  2960. *
  2961. * - R specifies the radius. X or Y is required.
  2962. * Omitting both X and Y will throw an error.
  2963. * X or Y must differ from the current XY.
  2964. * Mixing R with I or J will throw an error.
  2965. *
  2966. * - P specifies the number of full circles to do
  2967. * before the specified arc move.
  2968. *
  2969. * Examples:
  2970. *
  2971. * G2 I10 ; CW circle centered at X+10
  2972. * G3 X20 Y12 R14 ; CCW circle with r=14 ending at X20 Y12
  2973. */
  2974. #if ENABLED(ARC_SUPPORT)
  2975. inline void gcode_G2_G3(const bool clockwise) {
  2976. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  2977. if (axis_unhomed_error()) return;
  2978. #endif
  2979. if (IsRunning()) {
  2980. #if ENABLED(SF_ARC_FIX)
  2981. const bool relative_mode_backup = relative_mode;
  2982. relative_mode = true;
  2983. #endif
  2984. gcode_get_destination();
  2985. #if ENABLED(SF_ARC_FIX)
  2986. relative_mode = relative_mode_backup;
  2987. #endif
  2988. float arc_offset[2] = { 0.0, 0.0 };
  2989. if (parser.seenval('R')) {
  2990. const float r = parser.value_linear_units(),
  2991. p1 = current_position[X_AXIS], q1 = current_position[Y_AXIS],
  2992. p2 = destination[X_AXIS], q2 = destination[Y_AXIS];
  2993. if (r && (p2 != p1 || q2 != q1)) {
  2994. const float e = clockwise ^ (r < 0) ? -1 : 1, // clockwise -1/1, counterclockwise 1/-1
  2995. dx = p2 - p1, dy = q2 - q1, // X and Y differences
  2996. d = HYPOT(dx, dy), // Linear distance between the points
  2997. h = SQRT(sq(r) - sq(d * 0.5)), // Distance to the arc pivot-point
  2998. mx = (p1 + p2) * 0.5, my = (q1 + q2) * 0.5, // Point between the two points
  2999. sx = -dy / d, sy = dx / d, // Slope of the perpendicular bisector
  3000. cx = mx + e * h * sx, cy = my + e * h * sy; // Pivot-point of the arc
  3001. arc_offset[0] = cx - p1;
  3002. arc_offset[1] = cy - q1;
  3003. }
  3004. }
  3005. else {
  3006. if (parser.seenval('I')) arc_offset[0] = parser.value_linear_units();
  3007. if (parser.seenval('J')) arc_offset[1] = parser.value_linear_units();
  3008. }
  3009. if (arc_offset[0] || arc_offset[1]) {
  3010. #if ENABLED(ARC_P_CIRCLES)
  3011. // P indicates number of circles to do
  3012. int8_t circles_to_do = parser.byteval('P');
  3013. if (!WITHIN(circles_to_do, 0, 100)) {
  3014. SERIAL_ERROR_START();
  3015. SERIAL_ERRORLNPGM(MSG_ERR_ARC_ARGS);
  3016. }
  3017. while (circles_to_do--)
  3018. plan_arc(current_position, arc_offset, clockwise);
  3019. #endif
  3020. // Send the arc to the planner
  3021. plan_arc(destination, arc_offset, clockwise);
  3022. refresh_cmd_timeout();
  3023. }
  3024. else {
  3025. // Bad arguments
  3026. SERIAL_ERROR_START();
  3027. SERIAL_ERRORLNPGM(MSG_ERR_ARC_ARGS);
  3028. }
  3029. }
  3030. }
  3031. #endif // ARC_SUPPORT
  3032. void dwell(millis_t time) {
  3033. refresh_cmd_timeout();
  3034. time += previous_cmd_ms;
  3035. while (PENDING(millis(), time)) idle();
  3036. }
  3037. /**
  3038. * G4: Dwell S<seconds> or P<milliseconds>
  3039. */
  3040. inline void gcode_G4() {
  3041. millis_t dwell_ms = 0;
  3042. if (parser.seenval('P')) dwell_ms = parser.value_millis(); // milliseconds to wait
  3043. if (parser.seenval('S')) dwell_ms = parser.value_millis_from_seconds(); // seconds to wait
  3044. stepper.synchronize();
  3045. if (!lcd_hasstatus()) LCD_MESSAGEPGM(MSG_DWELL);
  3046. dwell(dwell_ms);
  3047. }
  3048. #if ENABLED(BEZIER_CURVE_SUPPORT)
  3049. /**
  3050. * Parameters interpreted according to:
  3051. * http://linuxcnc.org/docs/2.6/html/gcode/gcode.html#sec:G5-Cubic-Spline
  3052. * However I, J omission is not supported at this point; all
  3053. * parameters can be omitted and default to zero.
  3054. */
  3055. /**
  3056. * G5: Cubic B-spline
  3057. */
  3058. inline void gcode_G5() {
  3059. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  3060. if (axis_unhomed_error()) return;
  3061. #endif
  3062. if (IsRunning()) {
  3063. #if ENABLED(CNC_WORKSPACE_PLANES)
  3064. if (workspace_plane != PLANE_XY) {
  3065. SERIAL_ERROR_START();
  3066. SERIAL_ERRORLNPGM(MSG_ERR_BAD_PLANE_MODE);
  3067. return;
  3068. }
  3069. #endif
  3070. gcode_get_destination();
  3071. const float offset[] = {
  3072. parser.linearval('I'),
  3073. parser.linearval('J'),
  3074. parser.linearval('P'),
  3075. parser.linearval('Q')
  3076. };
  3077. plan_cubic_move(offset);
  3078. }
  3079. }
  3080. #endif // BEZIER_CURVE_SUPPORT
  3081. #if ENABLED(FWRETRACT)
  3082. /**
  3083. * G10 - Retract filament according to settings of M207
  3084. */
  3085. inline void gcode_G10() {
  3086. #if EXTRUDERS > 1
  3087. const bool rs = parser.boolval('S');
  3088. retracted_swap[active_extruder] = rs; // Use 'S' for swap, default to false
  3089. #endif
  3090. retract(true
  3091. #if EXTRUDERS > 1
  3092. , rs
  3093. #endif
  3094. );
  3095. }
  3096. /**
  3097. * G11 - Recover filament according to settings of M208
  3098. */
  3099. inline void gcode_G11() { retract(false); }
  3100. #endif // FWRETRACT
  3101. #if ENABLED(NOZZLE_CLEAN_FEATURE)
  3102. /**
  3103. * G12: Clean the nozzle
  3104. */
  3105. inline void gcode_G12() {
  3106. // Don't allow nozzle cleaning without homing first
  3107. if (axis_unhomed_error()) return;
  3108. const uint8_t pattern = parser.ushortval('P', 0),
  3109. strokes = parser.ushortval('S', NOZZLE_CLEAN_STROKES),
  3110. objects = parser.ushortval('T', NOZZLE_CLEAN_TRIANGLES);
  3111. const float radius = parser.floatval('R', NOZZLE_CLEAN_CIRCLE_RADIUS);
  3112. Nozzle::clean(pattern, strokes, radius, objects);
  3113. }
  3114. #endif
  3115. #if ENABLED(CNC_WORKSPACE_PLANES)
  3116. inline void report_workspace_plane() {
  3117. SERIAL_ECHO_START();
  3118. SERIAL_ECHOPGM("Workspace Plane ");
  3119. serialprintPGM(
  3120. workspace_plane == PLANE_YZ ? PSTR("YZ\n") :
  3121. workspace_plane == PLANE_ZX ? PSTR("ZX\n") :
  3122. PSTR("XY\n")
  3123. );
  3124. }
  3125. inline void set_workspace_plane(const WorkspacePlane plane) {
  3126. workspace_plane = plane;
  3127. if (DEBUGGING(INFO)) report_workspace_plane();
  3128. }
  3129. /**
  3130. * G17: Select Plane XY
  3131. * G18: Select Plane ZX
  3132. * G19: Select Plane YZ
  3133. */
  3134. inline void gcode_G17() { set_workspace_plane(PLANE_XY); }
  3135. inline void gcode_G18() { set_workspace_plane(PLANE_ZX); }
  3136. inline void gcode_G19() { set_workspace_plane(PLANE_YZ); }
  3137. #endif // CNC_WORKSPACE_PLANES
  3138. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  3139. /**
  3140. * Select a coordinate system and update the current position.
  3141. * System index -1 is used to specify machine-native.
  3142. */
  3143. bool select_coordinate_system(const int8_t _new) {
  3144. if (active_coordinate_system == _new) return false;
  3145. float old_offset[XYZ] = { 0 }, new_offset[XYZ] = { 0 };
  3146. if (WITHIN(active_coordinate_system, 0, MAX_COORDINATE_SYSTEMS - 1))
  3147. COPY(old_offset, coordinate_system[active_coordinate_system]);
  3148. if (WITHIN(_new, 0, MAX_COORDINATE_SYSTEMS - 1))
  3149. COPY(new_offset, coordinate_system[_new]);
  3150. active_coordinate_system = _new;
  3151. bool didXYZ = false;
  3152. LOOP_XYZ(i) {
  3153. const float diff = new_offset[i] - old_offset[i];
  3154. if (diff) {
  3155. position_shift[i] += diff;
  3156. update_software_endstops((AxisEnum)i);
  3157. didXYZ = true;
  3158. }
  3159. }
  3160. if (didXYZ) SYNC_PLAN_POSITION_KINEMATIC();
  3161. return true;
  3162. }
  3163. /**
  3164. * In CNC G-code G53 is like a modifier
  3165. * It precedes a movement command (or other modifiers) on the same line.
  3166. * This is the first command to use parser.chain() to make this possible.
  3167. */
  3168. inline void gcode_G53() {
  3169. // If this command has more following...
  3170. if (parser.chain()) {
  3171. const int8_t _system = active_coordinate_system;
  3172. active_coordinate_system = -1;
  3173. process_parsed_command();
  3174. active_coordinate_system = _system;
  3175. }
  3176. }
  3177. /**
  3178. * G54-G59.3: Select a new workspace
  3179. *
  3180. * A workspace is an XYZ offset to the machine native space.
  3181. * All workspaces default to 0,0,0 at start, or with EEPROM
  3182. * support they may be restored from a previous session.
  3183. *
  3184. * G92 is used to set the current workspace's offset.
  3185. */
  3186. inline void gcode_G54_59(uint8_t subcode=0) {
  3187. const int8_t _space = parser.codenum - 54 + subcode;
  3188. if (select_coordinate_system(_space)) {
  3189. SERIAL_PROTOCOLLNPAIR("Select workspace ", _space);
  3190. report_current_position();
  3191. }
  3192. }
  3193. FORCE_INLINE void gcode_G54() { gcode_G54_59(); }
  3194. FORCE_INLINE void gcode_G55() { gcode_G54_59(); }
  3195. FORCE_INLINE void gcode_G56() { gcode_G54_59(); }
  3196. FORCE_INLINE void gcode_G57() { gcode_G54_59(); }
  3197. FORCE_INLINE void gcode_G58() { gcode_G54_59(); }
  3198. FORCE_INLINE void gcode_G59() { gcode_G54_59(parser.subcode); }
  3199. #endif
  3200. #if ENABLED(INCH_MODE_SUPPORT)
  3201. /**
  3202. * G20: Set input mode to inches
  3203. */
  3204. inline void gcode_G20() { parser.set_input_linear_units(LINEARUNIT_INCH); }
  3205. /**
  3206. * G21: Set input mode to millimeters
  3207. */
  3208. inline void gcode_G21() { parser.set_input_linear_units(LINEARUNIT_MM); }
  3209. #endif
  3210. #if ENABLED(NOZZLE_PARK_FEATURE)
  3211. /**
  3212. * G27: Park the nozzle
  3213. */
  3214. inline void gcode_G27() {
  3215. // Don't allow nozzle parking without homing first
  3216. if (axis_unhomed_error()) return;
  3217. Nozzle::park(parser.ushortval('P'));
  3218. }
  3219. #endif // NOZZLE_PARK_FEATURE
  3220. #if ENABLED(QUICK_HOME)
  3221. static void quick_home_xy() {
  3222. // Pretend the current position is 0,0
  3223. current_position[X_AXIS] = current_position[Y_AXIS] = 0.0;
  3224. sync_plan_position();
  3225. const int x_axis_home_dir =
  3226. #if ENABLED(DUAL_X_CARRIAGE)
  3227. x_home_dir(active_extruder)
  3228. #else
  3229. home_dir(X_AXIS)
  3230. #endif
  3231. ;
  3232. const float mlx = max_length(X_AXIS),
  3233. mly = max_length(Y_AXIS),
  3234. mlratio = mlx > mly ? mly / mlx : mlx / mly,
  3235. fr_mm_s = min(homing_feedrate(X_AXIS), homing_feedrate(Y_AXIS)) * SQRT(sq(mlratio) + 1.0);
  3236. do_blocking_move_to_xy(1.5 * mlx * x_axis_home_dir, 1.5 * mly * home_dir(Y_AXIS), fr_mm_s);
  3237. endstops.hit_on_purpose(); // clear endstop hit flags
  3238. current_position[X_AXIS] = current_position[Y_AXIS] = 0.0;
  3239. }
  3240. #endif // QUICK_HOME
  3241. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3242. void log_machine_info() {
  3243. SERIAL_ECHOPGM("Machine Type: ");
  3244. #if ENABLED(DELTA)
  3245. SERIAL_ECHOLNPGM("Delta");
  3246. #elif IS_SCARA
  3247. SERIAL_ECHOLNPGM("SCARA");
  3248. #elif IS_CORE
  3249. SERIAL_ECHOLNPGM("Core");
  3250. #else
  3251. SERIAL_ECHOLNPGM("Cartesian");
  3252. #endif
  3253. SERIAL_ECHOPGM("Probe: ");
  3254. #if ENABLED(PROBE_MANUALLY)
  3255. SERIAL_ECHOLNPGM("PROBE_MANUALLY");
  3256. #elif ENABLED(FIX_MOUNTED_PROBE)
  3257. SERIAL_ECHOLNPGM("FIX_MOUNTED_PROBE");
  3258. #elif ENABLED(BLTOUCH)
  3259. SERIAL_ECHOLNPGM("BLTOUCH");
  3260. #elif HAS_Z_SERVO_ENDSTOP
  3261. SERIAL_ECHOLNPGM("SERVO PROBE");
  3262. #elif ENABLED(Z_PROBE_SLED)
  3263. SERIAL_ECHOLNPGM("Z_PROBE_SLED");
  3264. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  3265. SERIAL_ECHOLNPGM("Z_PROBE_ALLEN_KEY");
  3266. #else
  3267. SERIAL_ECHOLNPGM("NONE");
  3268. #endif
  3269. #if HAS_BED_PROBE
  3270. SERIAL_ECHOPAIR("Probe Offset X:", X_PROBE_OFFSET_FROM_EXTRUDER);
  3271. SERIAL_ECHOPAIR(" Y:", Y_PROBE_OFFSET_FROM_EXTRUDER);
  3272. SERIAL_ECHOPAIR(" Z:", zprobe_zoffset);
  3273. #if X_PROBE_OFFSET_FROM_EXTRUDER > 0
  3274. SERIAL_ECHOPGM(" (Right");
  3275. #elif X_PROBE_OFFSET_FROM_EXTRUDER < 0
  3276. SERIAL_ECHOPGM(" (Left");
  3277. #elif Y_PROBE_OFFSET_FROM_EXTRUDER != 0
  3278. SERIAL_ECHOPGM(" (Middle");
  3279. #else
  3280. SERIAL_ECHOPGM(" (Aligned With");
  3281. #endif
  3282. #if Y_PROBE_OFFSET_FROM_EXTRUDER > 0
  3283. SERIAL_ECHOPGM("-Back");
  3284. #elif Y_PROBE_OFFSET_FROM_EXTRUDER < 0
  3285. SERIAL_ECHOPGM("-Front");
  3286. #elif X_PROBE_OFFSET_FROM_EXTRUDER != 0
  3287. SERIAL_ECHOPGM("-Center");
  3288. #endif
  3289. if (zprobe_zoffset < 0)
  3290. SERIAL_ECHOPGM(" & Below");
  3291. else if (zprobe_zoffset > 0)
  3292. SERIAL_ECHOPGM(" & Above");
  3293. else
  3294. SERIAL_ECHOPGM(" & Same Z as");
  3295. SERIAL_ECHOLNPGM(" Nozzle)");
  3296. #endif
  3297. #if HAS_ABL
  3298. SERIAL_ECHOPGM("Auto Bed Leveling: ");
  3299. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3300. SERIAL_ECHOPGM("LINEAR");
  3301. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3302. SERIAL_ECHOPGM("BILINEAR");
  3303. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  3304. SERIAL_ECHOPGM("3POINT");
  3305. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  3306. SERIAL_ECHOPGM("UBL");
  3307. #endif
  3308. if (planner.leveling_active) {
  3309. SERIAL_ECHOLNPGM(" (enabled)");
  3310. #if ABL_PLANAR
  3311. const float diff[XYZ] = {
  3312. stepper.get_axis_position_mm(X_AXIS) - current_position[X_AXIS],
  3313. stepper.get_axis_position_mm(Y_AXIS) - current_position[Y_AXIS],
  3314. stepper.get_axis_position_mm(Z_AXIS) - current_position[Z_AXIS]
  3315. };
  3316. SERIAL_ECHOPGM("ABL Adjustment X");
  3317. if (diff[X_AXIS] > 0) SERIAL_CHAR('+');
  3318. SERIAL_ECHO(diff[X_AXIS]);
  3319. SERIAL_ECHOPGM(" Y");
  3320. if (diff[Y_AXIS] > 0) SERIAL_CHAR('+');
  3321. SERIAL_ECHO(diff[Y_AXIS]);
  3322. SERIAL_ECHOPGM(" Z");
  3323. if (diff[Z_AXIS] > 0) SERIAL_CHAR('+');
  3324. SERIAL_ECHO(diff[Z_AXIS]);
  3325. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  3326. SERIAL_ECHOPAIR("UBL Adjustment Z", stepper.get_axis_position_mm(Z_AXIS) - current_position[Z_AXIS]);
  3327. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3328. SERIAL_ECHOPAIR("ABL Adjustment Z", bilinear_z_offset(current_position));
  3329. #endif
  3330. }
  3331. else
  3332. SERIAL_ECHOLNPGM(" (disabled)");
  3333. SERIAL_EOL();
  3334. #elif ENABLED(MESH_BED_LEVELING)
  3335. SERIAL_ECHOPGM("Mesh Bed Leveling");
  3336. if (planner.leveling_active) {
  3337. float rz = current_position[Z_AXIS];
  3338. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], rz);
  3339. SERIAL_ECHOLNPGM(" (enabled)");
  3340. SERIAL_ECHOPAIR("MBL Adjustment Z", rz);
  3341. }
  3342. else
  3343. SERIAL_ECHOPGM(" (disabled)");
  3344. SERIAL_EOL();
  3345. #endif // MESH_BED_LEVELING
  3346. }
  3347. #endif // DEBUG_LEVELING_FEATURE
  3348. #if ENABLED(DELTA)
  3349. /**
  3350. * A delta can only safely home all axes at the same time
  3351. * This is like quick_home_xy() but for 3 towers.
  3352. */
  3353. inline bool home_delta() {
  3354. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3355. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> home_delta", current_position);
  3356. #endif
  3357. // Init the current position of all carriages to 0,0,0
  3358. ZERO(current_position);
  3359. sync_plan_position();
  3360. // Move all carriages together linearly until an endstop is hit.
  3361. current_position[X_AXIS] = current_position[Y_AXIS] = current_position[Z_AXIS] = (delta_height + 10);
  3362. feedrate_mm_s = homing_feedrate(X_AXIS);
  3363. buffer_line_to_current_position();
  3364. stepper.synchronize();
  3365. // If an endstop was not hit, then damage can occur if homing is continued.
  3366. // This can occur if the delta height not set correctly.
  3367. if (!(Endstops::endstop_hit_bits & (_BV(X_MAX) | _BV(Y_MAX) | _BV(Z_MAX)))) {
  3368. LCD_MESSAGEPGM(MSG_ERR_HOMING_FAILED);
  3369. SERIAL_ERROR_START();
  3370. SERIAL_ERRORLNPGM(MSG_ERR_HOMING_FAILED);
  3371. return false;
  3372. }
  3373. endstops.hit_on_purpose(); // clear endstop hit flags
  3374. // At least one carriage has reached the top.
  3375. // Now re-home each carriage separately.
  3376. HOMEAXIS(A);
  3377. HOMEAXIS(B);
  3378. HOMEAXIS(C);
  3379. // Set all carriages to their home positions
  3380. // Do this here all at once for Delta, because
  3381. // XYZ isn't ABC. Applying this per-tower would
  3382. // give the impression that they are the same.
  3383. LOOP_XYZ(i) set_axis_is_at_home((AxisEnum)i);
  3384. SYNC_PLAN_POSITION_KINEMATIC();
  3385. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3386. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< home_delta", current_position);
  3387. #endif
  3388. return true;
  3389. }
  3390. #endif // DELTA
  3391. #if ENABLED(Z_SAFE_HOMING)
  3392. inline void home_z_safely() {
  3393. // Disallow Z homing if X or Y are unknown
  3394. if (!axis_known_position[X_AXIS] || !axis_known_position[Y_AXIS]) {
  3395. LCD_MESSAGEPGM(MSG_ERR_Z_HOMING);
  3396. SERIAL_ECHO_START();
  3397. SERIAL_ECHOLNPGM(MSG_ERR_Z_HOMING);
  3398. return;
  3399. }
  3400. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3401. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Z_SAFE_HOMING >>>");
  3402. #endif
  3403. SYNC_PLAN_POSITION_KINEMATIC();
  3404. /**
  3405. * Move the Z probe (or just the nozzle) to the safe homing point
  3406. */
  3407. destination[X_AXIS] = Z_SAFE_HOMING_X_POINT;
  3408. destination[Y_AXIS] = Z_SAFE_HOMING_Y_POINT;
  3409. destination[Z_AXIS] = current_position[Z_AXIS]; // Z is already at the right height
  3410. #if HOMING_Z_WITH_PROBE
  3411. destination[X_AXIS] -= X_PROBE_OFFSET_FROM_EXTRUDER;
  3412. destination[Y_AXIS] -= Y_PROBE_OFFSET_FROM_EXTRUDER;
  3413. #endif
  3414. if (position_is_reachable(destination[X_AXIS], destination[Y_AXIS])) {
  3415. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3416. if (DEBUGGING(LEVELING)) DEBUG_POS("Z_SAFE_HOMING", destination);
  3417. #endif
  3418. // This causes the carriage on Dual X to unpark
  3419. #if ENABLED(DUAL_X_CARRIAGE)
  3420. active_extruder_parked = false;
  3421. #endif
  3422. do_blocking_move_to_xy(destination[X_AXIS], destination[Y_AXIS]);
  3423. HOMEAXIS(Z);
  3424. }
  3425. else {
  3426. LCD_MESSAGEPGM(MSG_ZPROBE_OUT);
  3427. SERIAL_ECHO_START();
  3428. SERIAL_ECHOLNPGM(MSG_ZPROBE_OUT);
  3429. }
  3430. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3431. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< Z_SAFE_HOMING");
  3432. #endif
  3433. }
  3434. #endif // Z_SAFE_HOMING
  3435. #if ENABLED(PROBE_MANUALLY)
  3436. bool g29_in_progress = false;
  3437. #else
  3438. constexpr bool g29_in_progress = false;
  3439. #endif
  3440. /**
  3441. * G28: Home all axes according to settings
  3442. *
  3443. * Parameters
  3444. *
  3445. * None Home to all axes with no parameters.
  3446. * With QUICK_HOME enabled XY will home together, then Z.
  3447. *
  3448. * Cartesian parameters
  3449. *
  3450. * X Home to the X endstop
  3451. * Y Home to the Y endstop
  3452. * Z Home to the Z endstop
  3453. *
  3454. */
  3455. inline void gcode_G28(const bool always_home_all) {
  3456. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3457. if (DEBUGGING(LEVELING)) {
  3458. SERIAL_ECHOLNPGM(">>> gcode_G28");
  3459. log_machine_info();
  3460. }
  3461. #endif
  3462. // Wait for planner moves to finish!
  3463. stepper.synchronize();
  3464. // Cancel the active G29 session
  3465. #if ENABLED(PROBE_MANUALLY)
  3466. g29_in_progress = false;
  3467. #endif
  3468. // Disable the leveling matrix before homing
  3469. #if HAS_LEVELING
  3470. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3471. const bool ubl_state_at_entry = planner.leveling_active;
  3472. #endif
  3473. set_bed_leveling_enabled(false);
  3474. #endif
  3475. #if ENABLED(CNC_WORKSPACE_PLANES)
  3476. workspace_plane = PLANE_XY;
  3477. #endif
  3478. // Always home with tool 0 active
  3479. #if HOTENDS > 1
  3480. const uint8_t old_tool_index = active_extruder;
  3481. tool_change(0, 0, true);
  3482. #endif
  3483. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  3484. extruder_duplication_enabled = false;
  3485. #endif
  3486. setup_for_endstop_or_probe_move();
  3487. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3488. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> endstops.enable(true)");
  3489. #endif
  3490. endstops.enable(true); // Enable endstops for next homing move
  3491. #if ENABLED(DELTA)
  3492. home_delta();
  3493. UNUSED(always_home_all);
  3494. #else // NOT DELTA
  3495. const bool homeX = always_home_all || parser.seen('X'),
  3496. homeY = always_home_all || parser.seen('Y'),
  3497. homeZ = always_home_all || parser.seen('Z'),
  3498. home_all = (!homeX && !homeY && !homeZ) || (homeX && homeY && homeZ);
  3499. set_destination_from_current();
  3500. #if Z_HOME_DIR > 0 // If homing away from BED do Z first
  3501. if (home_all || homeZ) {
  3502. HOMEAXIS(Z);
  3503. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3504. if (DEBUGGING(LEVELING)) DEBUG_POS("> HOMEAXIS(Z)", current_position);
  3505. #endif
  3506. }
  3507. #else
  3508. if (home_all || homeX || homeY) {
  3509. // Raise Z before homing any other axes and z is not already high enough (never lower z)
  3510. destination[Z_AXIS] = Z_HOMING_HEIGHT;
  3511. if (destination[Z_AXIS] > current_position[Z_AXIS]) {
  3512. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3513. if (DEBUGGING(LEVELING))
  3514. SERIAL_ECHOLNPAIR("Raise Z (before homing) to ", destination[Z_AXIS]);
  3515. #endif
  3516. do_blocking_move_to_z(destination[Z_AXIS]);
  3517. }
  3518. }
  3519. #endif
  3520. #if ENABLED(QUICK_HOME)
  3521. if (home_all || (homeX && homeY)) quick_home_xy();
  3522. #endif
  3523. #if ENABLED(HOME_Y_BEFORE_X)
  3524. // Home Y
  3525. if (home_all || homeY) {
  3526. HOMEAXIS(Y);
  3527. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3528. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeY", current_position);
  3529. #endif
  3530. }
  3531. #endif
  3532. // Home X
  3533. if (home_all || homeX) {
  3534. #if ENABLED(DUAL_X_CARRIAGE)
  3535. // Always home the 2nd (right) extruder first
  3536. active_extruder = 1;
  3537. HOMEAXIS(X);
  3538. // Remember this extruder's position for later tool change
  3539. inactive_extruder_x_pos = current_position[X_AXIS];
  3540. // Home the 1st (left) extruder
  3541. active_extruder = 0;
  3542. HOMEAXIS(X);
  3543. // Consider the active extruder to be parked
  3544. COPY(raised_parked_position, current_position);
  3545. delayed_move_time = 0;
  3546. active_extruder_parked = true;
  3547. #else
  3548. HOMEAXIS(X);
  3549. #endif
  3550. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3551. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeX", current_position);
  3552. #endif
  3553. }
  3554. #if DISABLED(HOME_Y_BEFORE_X)
  3555. // Home Y
  3556. if (home_all || homeY) {
  3557. HOMEAXIS(Y);
  3558. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3559. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeY", current_position);
  3560. #endif
  3561. }
  3562. #endif
  3563. // Home Z last if homing towards the bed
  3564. #if Z_HOME_DIR < 0
  3565. if (home_all || homeZ) {
  3566. #if ENABLED(Z_SAFE_HOMING)
  3567. home_z_safely();
  3568. #else
  3569. HOMEAXIS(Z);
  3570. #endif
  3571. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3572. if (DEBUGGING(LEVELING)) DEBUG_POS("> (home_all || homeZ) > final", current_position);
  3573. #endif
  3574. } // home_all || homeZ
  3575. #endif // Z_HOME_DIR < 0
  3576. SYNC_PLAN_POSITION_KINEMATIC();
  3577. #endif // !DELTA (gcode_G28)
  3578. endstops.not_homing();
  3579. #if ENABLED(DELTA) && ENABLED(DELTA_HOME_TO_SAFE_ZONE)
  3580. // move to a height where we can use the full xy-area
  3581. do_blocking_move_to_z(delta_clip_start_height);
  3582. #endif
  3583. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3584. set_bed_leveling_enabled(ubl_state_at_entry);
  3585. #endif
  3586. clean_up_after_endstop_or_probe_move();
  3587. // Restore the active tool after homing
  3588. #if HOTENDS > 1
  3589. #if ENABLED(PARKING_EXTRUDER)
  3590. #define NO_FETCH false // fetch the previous toolhead
  3591. #else
  3592. #define NO_FETCH true
  3593. #endif
  3594. tool_change(old_tool_index, 0, NO_FETCH);
  3595. #endif
  3596. lcd_refresh();
  3597. report_current_position();
  3598. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3599. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G28");
  3600. #endif
  3601. } // G28
  3602. void home_all_axes() { gcode_G28(true); }
  3603. #if HAS_PROBING_PROCEDURE
  3604. void out_of_range_error(const char* p_edge) {
  3605. SERIAL_PROTOCOLPGM("?Probe ");
  3606. serialprintPGM(p_edge);
  3607. SERIAL_PROTOCOLLNPGM(" position out of range.");
  3608. }
  3609. #endif
  3610. #if ENABLED(MESH_BED_LEVELING) || ENABLED(PROBE_MANUALLY)
  3611. #if ENABLED(PROBE_MANUALLY) && ENABLED(LCD_BED_LEVELING)
  3612. extern bool lcd_wait_for_move;
  3613. #endif
  3614. inline void _manual_goto_xy(const float &rx, const float &ry) {
  3615. #if MANUAL_PROBE_HEIGHT > 0
  3616. const float prev_z = current_position[Z_AXIS];
  3617. do_blocking_move_to_z(MANUAL_PROBE_HEIGHT, homing_feedrate(Z_AXIS));
  3618. #endif
  3619. do_blocking_move_to_xy(rx, ry, MMM_TO_MMS(XY_PROBE_SPEED));
  3620. #if MANUAL_PROBE_HEIGHT > 0
  3621. do_blocking_move_to_z(prev_z, homing_feedrate(Z_AXIS));
  3622. #endif
  3623. current_position[X_AXIS] = rx;
  3624. current_position[Y_AXIS] = ry;
  3625. #if ENABLED(PROBE_MANUALLY) && ENABLED(LCD_BED_LEVELING)
  3626. lcd_wait_for_move = false;
  3627. #endif
  3628. }
  3629. #endif
  3630. #if ENABLED(MESH_BED_LEVELING)
  3631. // Save 130 bytes with non-duplication of PSTR
  3632. void echo_not_entered() { SERIAL_PROTOCOLLNPGM(" not entered."); }
  3633. void mbl_mesh_report() {
  3634. SERIAL_PROTOCOLLNPGM("Num X,Y: " STRINGIFY(GRID_MAX_POINTS_X) "," STRINGIFY(GRID_MAX_POINTS_Y));
  3635. SERIAL_PROTOCOLPGM("Z offset: "); SERIAL_PROTOCOL_F(mbl.z_offset, 5);
  3636. SERIAL_PROTOCOLLNPGM("\nMeasured points:");
  3637. print_2d_array(GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y, 5,
  3638. [](const uint8_t ix, const uint8_t iy) { return mbl.z_values[ix][iy]; }
  3639. );
  3640. }
  3641. void mesh_probing_done() {
  3642. mbl.has_mesh = true;
  3643. home_all_axes();
  3644. set_bed_leveling_enabled(true);
  3645. #if ENABLED(MESH_G28_REST_ORIGIN)
  3646. current_position[Z_AXIS] = Z_MIN_POS;
  3647. set_destination_from_current();
  3648. buffer_line_to_destination(homing_feedrate(Z_AXIS));
  3649. stepper.synchronize();
  3650. #endif
  3651. }
  3652. /**
  3653. * G29: Mesh-based Z probe, probes a grid and produces a
  3654. * mesh to compensate for variable bed height
  3655. *
  3656. * Parameters With MESH_BED_LEVELING:
  3657. *
  3658. * S0 Produce a mesh report
  3659. * S1 Start probing mesh points
  3660. * S2 Probe the next mesh point
  3661. * S3 Xn Yn Zn.nn Manually modify a single point
  3662. * S4 Zn.nn Set z offset. Positive away from bed, negative closer to bed.
  3663. * S5 Reset and disable mesh
  3664. *
  3665. * The S0 report the points as below
  3666. *
  3667. * +----> X-axis 1-n
  3668. * |
  3669. * |
  3670. * v Y-axis 1-n
  3671. *
  3672. */
  3673. inline void gcode_G29() {
  3674. static int mbl_probe_index = -1;
  3675. #if HAS_SOFTWARE_ENDSTOPS
  3676. static bool enable_soft_endstops;
  3677. #endif
  3678. const MeshLevelingState state = (MeshLevelingState)parser.byteval('S', (int8_t)MeshReport);
  3679. if (!WITHIN(state, 0, 5)) {
  3680. SERIAL_PROTOCOLLNPGM("S out of range (0-5).");
  3681. return;
  3682. }
  3683. int8_t px, py;
  3684. switch (state) {
  3685. case MeshReport:
  3686. if (leveling_is_valid()) {
  3687. SERIAL_PROTOCOLLNPAIR("State: ", planner.leveling_active ? MSG_ON : MSG_OFF);
  3688. mbl_mesh_report();
  3689. }
  3690. else
  3691. SERIAL_PROTOCOLLNPGM("Mesh bed leveling has no data.");
  3692. break;
  3693. case MeshStart:
  3694. mbl.reset();
  3695. mbl_probe_index = 0;
  3696. enqueue_and_echo_commands_P(PSTR("G28\nG29 S2"));
  3697. break;
  3698. case MeshNext:
  3699. if (mbl_probe_index < 0) {
  3700. SERIAL_PROTOCOLLNPGM("Start mesh probing with \"G29 S1\" first.");
  3701. return;
  3702. }
  3703. // For each G29 S2...
  3704. if (mbl_probe_index == 0) {
  3705. #if HAS_SOFTWARE_ENDSTOPS
  3706. // For the initial G29 S2 save software endstop state
  3707. enable_soft_endstops = soft_endstops_enabled;
  3708. #endif
  3709. }
  3710. else {
  3711. // For G29 S2 after adjusting Z.
  3712. mbl.set_zigzag_z(mbl_probe_index - 1, current_position[Z_AXIS]);
  3713. #if HAS_SOFTWARE_ENDSTOPS
  3714. soft_endstops_enabled = enable_soft_endstops;
  3715. #endif
  3716. }
  3717. // If there's another point to sample, move there with optional lift.
  3718. if (mbl_probe_index < GRID_MAX_POINTS) {
  3719. mbl.zigzag(mbl_probe_index, px, py);
  3720. _manual_goto_xy(mbl.index_to_xpos[px], mbl.index_to_ypos[py]);
  3721. #if HAS_SOFTWARE_ENDSTOPS
  3722. // Disable software endstops to allow manual adjustment
  3723. // If G29 is not completed, they will not be re-enabled
  3724. soft_endstops_enabled = false;
  3725. #endif
  3726. mbl_probe_index++;
  3727. }
  3728. else {
  3729. // One last "return to the bed" (as originally coded) at completion
  3730. current_position[Z_AXIS] = Z_MIN_POS + MANUAL_PROBE_HEIGHT;
  3731. buffer_line_to_current_position();
  3732. stepper.synchronize();
  3733. // After recording the last point, activate home and activate
  3734. mbl_probe_index = -1;
  3735. SERIAL_PROTOCOLLNPGM("Mesh probing done.");
  3736. BUZZ(100, 659);
  3737. BUZZ(100, 698);
  3738. mesh_probing_done();
  3739. }
  3740. break;
  3741. case MeshSet:
  3742. if (parser.seenval('X')) {
  3743. px = parser.value_int() - 1;
  3744. if (!WITHIN(px, 0, GRID_MAX_POINTS_X - 1)) {
  3745. SERIAL_PROTOCOLLNPGM("X out of range (1-" STRINGIFY(GRID_MAX_POINTS_X) ").");
  3746. return;
  3747. }
  3748. }
  3749. else {
  3750. SERIAL_CHAR('X'); echo_not_entered();
  3751. return;
  3752. }
  3753. if (parser.seenval('Y')) {
  3754. py = parser.value_int() - 1;
  3755. if (!WITHIN(py, 0, GRID_MAX_POINTS_Y - 1)) {
  3756. SERIAL_PROTOCOLLNPGM("Y out of range (1-" STRINGIFY(GRID_MAX_POINTS_Y) ").");
  3757. return;
  3758. }
  3759. }
  3760. else {
  3761. SERIAL_CHAR('Y'); echo_not_entered();
  3762. return;
  3763. }
  3764. if (parser.seenval('Z')) {
  3765. mbl.z_values[px][py] = parser.value_linear_units();
  3766. }
  3767. else {
  3768. SERIAL_CHAR('Z'); echo_not_entered();
  3769. return;
  3770. }
  3771. break;
  3772. case MeshSetZOffset:
  3773. if (parser.seenval('Z')) {
  3774. mbl.z_offset = parser.value_linear_units();
  3775. }
  3776. else {
  3777. SERIAL_CHAR('Z'); echo_not_entered();
  3778. return;
  3779. }
  3780. break;
  3781. case MeshReset:
  3782. reset_bed_level();
  3783. break;
  3784. } // switch(state)
  3785. report_current_position();
  3786. }
  3787. #elif OLDSCHOOL_ABL
  3788. #if ABL_GRID
  3789. #if ENABLED(PROBE_Y_FIRST)
  3790. #define PR_OUTER_VAR xCount
  3791. #define PR_OUTER_END abl_grid_points_x
  3792. #define PR_INNER_VAR yCount
  3793. #define PR_INNER_END abl_grid_points_y
  3794. #else
  3795. #define PR_OUTER_VAR yCount
  3796. #define PR_OUTER_END abl_grid_points_y
  3797. #define PR_INNER_VAR xCount
  3798. #define PR_INNER_END abl_grid_points_x
  3799. #endif
  3800. #endif
  3801. /**
  3802. * G29: Detailed Z probe, probes the bed at 3 or more points.
  3803. * Will fail if the printer has not been homed with G28.
  3804. *
  3805. * Enhanced G29 Auto Bed Leveling Probe Routine
  3806. *
  3807. * D Dry-Run mode. Just evaluate the bed Topology - Don't apply
  3808. * or alter the bed level data. Useful to check the topology
  3809. * after a first run of G29.
  3810. *
  3811. * J Jettison current bed leveling data
  3812. *
  3813. * V Set the verbose level (0-4). Example: "G29 V3"
  3814. *
  3815. * Parameters With LINEAR leveling only:
  3816. *
  3817. * P Set the size of the grid that will be probed (P x P points).
  3818. * Example: "G29 P4"
  3819. *
  3820. * X Set the X size of the grid that will be probed (X x Y points).
  3821. * Example: "G29 X7 Y5"
  3822. *
  3823. * Y Set the Y size of the grid that will be probed (X x Y points).
  3824. *
  3825. * T Generate a Bed Topology Report. Example: "G29 P5 T" for a detailed report.
  3826. * This is useful for manual bed leveling and finding flaws in the bed (to
  3827. * assist with part placement).
  3828. * Not supported by non-linear delta printer bed leveling.
  3829. *
  3830. * Parameters With LINEAR and BILINEAR leveling only:
  3831. *
  3832. * S Set the XY travel speed between probe points (in units/min)
  3833. *
  3834. * F Set the Front limit of the probing grid
  3835. * B Set the Back limit of the probing grid
  3836. * L Set the Left limit of the probing grid
  3837. * R Set the Right limit of the probing grid
  3838. *
  3839. * Parameters with DEBUG_LEVELING_FEATURE only:
  3840. *
  3841. * C Make a totally fake grid with no actual probing.
  3842. * For use in testing when no probing is possible.
  3843. *
  3844. * Parameters with BILINEAR leveling only:
  3845. *
  3846. * Z Supply an additional Z probe offset
  3847. *
  3848. * Extra parameters with PROBE_MANUALLY:
  3849. *
  3850. * To do manual probing simply repeat G29 until the procedure is complete.
  3851. * The first G29 accepts parameters. 'G29 Q' for status, 'G29 A' to abort.
  3852. *
  3853. * Q Query leveling and G29 state
  3854. *
  3855. * A Abort current leveling procedure
  3856. *
  3857. * Extra parameters with BILINEAR only:
  3858. *
  3859. * W Write a mesh point. (If G29 is idle.)
  3860. * I X index for mesh point
  3861. * J Y index for mesh point
  3862. * X X for mesh point, overrides I
  3863. * Y Y for mesh point, overrides J
  3864. * Z Z for mesh point. Otherwise, raw current Z.
  3865. *
  3866. * Without PROBE_MANUALLY:
  3867. *
  3868. * E By default G29 will engage the Z probe, test the bed, then disengage.
  3869. * Include "E" to engage/disengage the Z probe for each sample.
  3870. * There's no extra effect if you have a fixed Z probe.
  3871. *
  3872. */
  3873. inline void gcode_G29() {
  3874. // G29 Q is also available if debugging
  3875. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3876. const bool query = parser.seen('Q');
  3877. const uint8_t old_debug_flags = marlin_debug_flags;
  3878. if (query) marlin_debug_flags |= DEBUG_LEVELING;
  3879. if (DEBUGGING(LEVELING)) {
  3880. DEBUG_POS(">>> gcode_G29", current_position);
  3881. log_machine_info();
  3882. }
  3883. marlin_debug_flags = old_debug_flags;
  3884. #if DISABLED(PROBE_MANUALLY)
  3885. if (query) return;
  3886. #endif
  3887. #endif
  3888. #if ENABLED(PROBE_MANUALLY)
  3889. const bool seenA = parser.seen('A'), seenQ = parser.seen('Q'), no_action = seenA || seenQ;
  3890. #endif
  3891. #if ENABLED(DEBUG_LEVELING_FEATURE) && DISABLED(PROBE_MANUALLY)
  3892. const bool faux = parser.boolval('C');
  3893. #elif ENABLED(PROBE_MANUALLY)
  3894. const bool faux = no_action;
  3895. #else
  3896. bool constexpr faux = false;
  3897. #endif
  3898. // Don't allow auto-leveling without homing first
  3899. if (axis_unhomed_error()) return;
  3900. // Define local vars 'static' for manual probing, 'auto' otherwise
  3901. #if ENABLED(PROBE_MANUALLY)
  3902. #define ABL_VAR static
  3903. #else
  3904. #define ABL_VAR
  3905. #endif
  3906. ABL_VAR int verbose_level;
  3907. ABL_VAR float xProbe, yProbe, measured_z;
  3908. ABL_VAR bool dryrun, abl_should_enable;
  3909. #if ENABLED(PROBE_MANUALLY) || ENABLED(AUTO_BED_LEVELING_LINEAR)
  3910. ABL_VAR int abl_probe_index;
  3911. #endif
  3912. #if HAS_SOFTWARE_ENDSTOPS && ENABLED(PROBE_MANUALLY)
  3913. ABL_VAR bool enable_soft_endstops = true;
  3914. #endif
  3915. #if ABL_GRID
  3916. #if ENABLED(PROBE_MANUALLY)
  3917. ABL_VAR uint8_t PR_OUTER_VAR;
  3918. ABL_VAR int8_t PR_INNER_VAR;
  3919. #endif
  3920. ABL_VAR int left_probe_bed_position, right_probe_bed_position, front_probe_bed_position, back_probe_bed_position;
  3921. ABL_VAR float xGridSpacing = 0, yGridSpacing = 0;
  3922. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3923. ABL_VAR uint8_t abl_grid_points_x = GRID_MAX_POINTS_X,
  3924. abl_grid_points_y = GRID_MAX_POINTS_Y;
  3925. ABL_VAR bool do_topography_map;
  3926. #else // Bilinear
  3927. uint8_t constexpr abl_grid_points_x = GRID_MAX_POINTS_X,
  3928. abl_grid_points_y = GRID_MAX_POINTS_Y;
  3929. #endif
  3930. #if ENABLED(AUTO_BED_LEVELING_LINEAR) || ENABLED(PROBE_MANUALLY)
  3931. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3932. ABL_VAR int abl2;
  3933. #else // Bilinear
  3934. int constexpr abl2 = GRID_MAX_POINTS;
  3935. #endif
  3936. #endif
  3937. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3938. ABL_VAR float zoffset;
  3939. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  3940. ABL_VAR int indexIntoAB[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
  3941. ABL_VAR float eqnAMatrix[GRID_MAX_POINTS * 3], // "A" matrix of the linear system of equations
  3942. eqnBVector[GRID_MAX_POINTS], // "B" vector of Z points
  3943. mean;
  3944. #endif
  3945. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  3946. int constexpr abl2 = 3;
  3947. // Probe at 3 arbitrary points
  3948. ABL_VAR vector_3 points[3] = {
  3949. vector_3(ABL_PROBE_PT_1_X, ABL_PROBE_PT_1_Y, 0),
  3950. vector_3(ABL_PROBE_PT_2_X, ABL_PROBE_PT_2_Y, 0),
  3951. vector_3(ABL_PROBE_PT_3_X, ABL_PROBE_PT_3_Y, 0)
  3952. };
  3953. #endif // AUTO_BED_LEVELING_3POINT
  3954. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3955. struct linear_fit_data lsf_results;
  3956. incremental_LSF_reset(&lsf_results);
  3957. #endif
  3958. /**
  3959. * On the initial G29 fetch command parameters.
  3960. */
  3961. if (!g29_in_progress) {
  3962. #if ENABLED(PROBE_MANUALLY) || ENABLED(AUTO_BED_LEVELING_LINEAR)
  3963. abl_probe_index = -1;
  3964. #endif
  3965. abl_should_enable = planner.leveling_active;
  3966. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3967. if (parser.seen('W')) {
  3968. if (!leveling_is_valid()) {
  3969. SERIAL_ERROR_START();
  3970. SERIAL_ERRORLNPGM("No bilinear grid");
  3971. return;
  3972. }
  3973. const float rz = parser.seenval('Z') ? RAW_Z_POSITION(parser.value_linear_units()) : current_position[Z_AXIS];
  3974. if (!WITHIN(rz, -10, 10)) {
  3975. SERIAL_ERROR_START();
  3976. SERIAL_ERRORLNPGM("Bad Z value");
  3977. return;
  3978. }
  3979. const float rx = RAW_X_POSITION(parser.linearval('X', NAN)),
  3980. ry = RAW_Y_POSITION(parser.linearval('Y', NAN));
  3981. int8_t i = parser.byteval('I', -1),
  3982. j = parser.byteval('J', -1);
  3983. if (!isnan(rx) && !isnan(ry)) {
  3984. // Get nearest i / j from x / y
  3985. i = (rx - bilinear_start[X_AXIS] + 0.5 * xGridSpacing) / xGridSpacing;
  3986. j = (ry - bilinear_start[Y_AXIS] + 0.5 * yGridSpacing) / yGridSpacing;
  3987. i = constrain(i, 0, GRID_MAX_POINTS_X - 1);
  3988. j = constrain(j, 0, GRID_MAX_POINTS_Y - 1);
  3989. }
  3990. if (WITHIN(i, 0, GRID_MAX_POINTS_X - 1) && WITHIN(j, 0, GRID_MAX_POINTS_Y)) {
  3991. set_bed_leveling_enabled(false);
  3992. z_values[i][j] = rz;
  3993. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  3994. bed_level_virt_interpolate();
  3995. #endif
  3996. set_bed_leveling_enabled(abl_should_enable);
  3997. }
  3998. return;
  3999. } // parser.seen('W')
  4000. #endif
  4001. #if HAS_LEVELING
  4002. // Jettison bed leveling data
  4003. if (parser.seen('J')) {
  4004. reset_bed_level();
  4005. return;
  4006. }
  4007. #endif
  4008. verbose_level = parser.intval('V');
  4009. if (!WITHIN(verbose_level, 0, 4)) {
  4010. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-4).");
  4011. return;
  4012. }
  4013. dryrun = parser.boolval('D')
  4014. #if ENABLED(PROBE_MANUALLY)
  4015. || no_action
  4016. #endif
  4017. ;
  4018. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4019. do_topography_map = verbose_level > 2 || parser.boolval('T');
  4020. // X and Y specify points in each direction, overriding the default
  4021. // These values may be saved with the completed mesh
  4022. abl_grid_points_x = parser.intval('X', GRID_MAX_POINTS_X);
  4023. abl_grid_points_y = parser.intval('Y', GRID_MAX_POINTS_Y);
  4024. if (parser.seenval('P')) abl_grid_points_x = abl_grid_points_y = parser.value_int();
  4025. if (abl_grid_points_x < 2 || abl_grid_points_y < 2) {
  4026. SERIAL_PROTOCOLLNPGM("?Number of probe points is implausible (2 minimum).");
  4027. return;
  4028. }
  4029. abl2 = abl_grid_points_x * abl_grid_points_y;
  4030. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4031. zoffset = parser.linearval('Z');
  4032. #endif
  4033. #if ABL_GRID
  4034. xy_probe_feedrate_mm_s = MMM_TO_MMS(parser.linearval('S', XY_PROBE_SPEED));
  4035. left_probe_bed_position = parser.seenval('L') ? (int)RAW_X_POSITION(parser.value_linear_units()) : LEFT_PROBE_BED_POSITION;
  4036. right_probe_bed_position = parser.seenval('R') ? (int)RAW_X_POSITION(parser.value_linear_units()) : RIGHT_PROBE_BED_POSITION;
  4037. front_probe_bed_position = parser.seenval('F') ? (int)RAW_Y_POSITION(parser.value_linear_units()) : FRONT_PROBE_BED_POSITION;
  4038. back_probe_bed_position = parser.seenval('B') ? (int)RAW_Y_POSITION(parser.value_linear_units()) : BACK_PROBE_BED_POSITION;
  4039. const bool left_out_l = left_probe_bed_position < MIN_PROBE_X,
  4040. left_out = left_out_l || left_probe_bed_position > right_probe_bed_position - (MIN_PROBE_EDGE),
  4041. right_out_r = right_probe_bed_position > MAX_PROBE_X,
  4042. right_out = right_out_r || right_probe_bed_position < left_probe_bed_position + MIN_PROBE_EDGE,
  4043. front_out_f = front_probe_bed_position < MIN_PROBE_Y,
  4044. front_out = front_out_f || front_probe_bed_position > back_probe_bed_position - (MIN_PROBE_EDGE),
  4045. back_out_b = back_probe_bed_position > MAX_PROBE_Y,
  4046. back_out = back_out_b || back_probe_bed_position < front_probe_bed_position + MIN_PROBE_EDGE;
  4047. if (left_out || right_out || front_out || back_out) {
  4048. if (left_out) {
  4049. out_of_range_error(PSTR("(L)eft"));
  4050. left_probe_bed_position = left_out_l ? MIN_PROBE_X : right_probe_bed_position - (MIN_PROBE_EDGE);
  4051. }
  4052. if (right_out) {
  4053. out_of_range_error(PSTR("(R)ight"));
  4054. right_probe_bed_position = right_out_r ? MAX_PROBE_X : left_probe_bed_position + MIN_PROBE_EDGE;
  4055. }
  4056. if (front_out) {
  4057. out_of_range_error(PSTR("(F)ront"));
  4058. front_probe_bed_position = front_out_f ? MIN_PROBE_Y : back_probe_bed_position - (MIN_PROBE_EDGE);
  4059. }
  4060. if (back_out) {
  4061. out_of_range_error(PSTR("(B)ack"));
  4062. back_probe_bed_position = back_out_b ? MAX_PROBE_Y : front_probe_bed_position + MIN_PROBE_EDGE;
  4063. }
  4064. return;
  4065. }
  4066. // probe at the points of a lattice grid
  4067. xGridSpacing = (right_probe_bed_position - left_probe_bed_position) / (abl_grid_points_x - 1);
  4068. yGridSpacing = (back_probe_bed_position - front_probe_bed_position) / (abl_grid_points_y - 1);
  4069. #endif // ABL_GRID
  4070. if (verbose_level > 0) {
  4071. SERIAL_PROTOCOLLNPGM("G29 Auto Bed Leveling");
  4072. if (dryrun) SERIAL_PROTOCOLLNPGM("Running in DRY-RUN mode");
  4073. }
  4074. stepper.synchronize();
  4075. // Disable auto bed leveling during G29
  4076. planner.leveling_active = false;
  4077. if (!dryrun) {
  4078. // Re-orient the current position without leveling
  4079. // based on where the steppers are positioned.
  4080. set_current_from_steppers_for_axis(ALL_AXES);
  4081. // Sync the planner to where the steppers stopped
  4082. SYNC_PLAN_POSITION_KINEMATIC();
  4083. }
  4084. #if HAS_BED_PROBE
  4085. // Deploy the probe. Probe will raise if needed.
  4086. if (DEPLOY_PROBE()) {
  4087. planner.leveling_active = abl_should_enable;
  4088. return;
  4089. }
  4090. #endif
  4091. if (!faux) setup_for_endstop_or_probe_move();
  4092. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4093. #if ENABLED(PROBE_MANUALLY)
  4094. if (!no_action)
  4095. #endif
  4096. if ( xGridSpacing != bilinear_grid_spacing[X_AXIS]
  4097. || yGridSpacing != bilinear_grid_spacing[Y_AXIS]
  4098. || left_probe_bed_position != bilinear_start[X_AXIS]
  4099. || front_probe_bed_position != bilinear_start[Y_AXIS]
  4100. ) {
  4101. if (dryrun) {
  4102. // Before reset bed level, re-enable to correct the position
  4103. planner.leveling_active = abl_should_enable;
  4104. }
  4105. // Reset grid to 0.0 or "not probed". (Also disables ABL)
  4106. reset_bed_level();
  4107. // Initialize a grid with the given dimensions
  4108. bilinear_grid_spacing[X_AXIS] = xGridSpacing;
  4109. bilinear_grid_spacing[Y_AXIS] = yGridSpacing;
  4110. bilinear_start[X_AXIS] = left_probe_bed_position;
  4111. bilinear_start[Y_AXIS] = front_probe_bed_position;
  4112. // Can't re-enable (on error) until the new grid is written
  4113. abl_should_enable = false;
  4114. }
  4115. #endif // AUTO_BED_LEVELING_BILINEAR
  4116. #if ENABLED(AUTO_BED_LEVELING_3POINT)
  4117. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4118. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> 3-point Leveling");
  4119. #endif
  4120. // Probe at 3 arbitrary points
  4121. points[0].z = points[1].z = points[2].z = 0;
  4122. #endif // AUTO_BED_LEVELING_3POINT
  4123. } // !g29_in_progress
  4124. #if ENABLED(PROBE_MANUALLY)
  4125. // For manual probing, get the next index to probe now.
  4126. // On the first probe this will be incremented to 0.
  4127. if (!no_action) {
  4128. ++abl_probe_index;
  4129. g29_in_progress = true;
  4130. }
  4131. // Abort current G29 procedure, go back to idle state
  4132. if (seenA && g29_in_progress) {
  4133. SERIAL_PROTOCOLLNPGM("Manual G29 aborted");
  4134. #if HAS_SOFTWARE_ENDSTOPS
  4135. soft_endstops_enabled = enable_soft_endstops;
  4136. #endif
  4137. planner.leveling_active = abl_should_enable;
  4138. g29_in_progress = false;
  4139. #if ENABLED(LCD_BED_LEVELING)
  4140. lcd_wait_for_move = false;
  4141. #endif
  4142. }
  4143. // Query G29 status
  4144. if (verbose_level || seenQ) {
  4145. SERIAL_PROTOCOLPGM("Manual G29 ");
  4146. if (g29_in_progress) {
  4147. SERIAL_PROTOCOLPAIR("point ", min(abl_probe_index + 1, abl2));
  4148. SERIAL_PROTOCOLLNPAIR(" of ", abl2);
  4149. }
  4150. else
  4151. SERIAL_PROTOCOLLNPGM("idle");
  4152. }
  4153. if (no_action) return;
  4154. if (abl_probe_index == 0) {
  4155. // For the initial G29 save software endstop state
  4156. #if HAS_SOFTWARE_ENDSTOPS
  4157. enable_soft_endstops = soft_endstops_enabled;
  4158. #endif
  4159. }
  4160. else {
  4161. // For G29 after adjusting Z.
  4162. // Save the previous Z before going to the next point
  4163. measured_z = current_position[Z_AXIS];
  4164. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4165. mean += measured_z;
  4166. eqnBVector[abl_probe_index] = measured_z;
  4167. eqnAMatrix[abl_probe_index + 0 * abl2] = xProbe;
  4168. eqnAMatrix[abl_probe_index + 1 * abl2] = yProbe;
  4169. eqnAMatrix[abl_probe_index + 2 * abl2] = 1;
  4170. incremental_LSF(&lsf_results, xProbe, yProbe, measured_z);
  4171. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4172. z_values[xCount][yCount] = measured_z + zoffset;
  4173. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4174. if (DEBUGGING(LEVELING)) {
  4175. SERIAL_PROTOCOLPAIR("Save X", xCount);
  4176. SERIAL_PROTOCOLPAIR(" Y", yCount);
  4177. SERIAL_PROTOCOLLNPAIR(" Z", measured_z + zoffset);
  4178. }
  4179. #endif
  4180. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  4181. points[abl_probe_index].z = measured_z;
  4182. #endif
  4183. }
  4184. //
  4185. // If there's another point to sample, move there with optional lift.
  4186. //
  4187. #if ABL_GRID
  4188. // Skip any unreachable points
  4189. while (abl_probe_index < abl2) {
  4190. // Set xCount, yCount based on abl_probe_index, with zig-zag
  4191. PR_OUTER_VAR = abl_probe_index / PR_INNER_END;
  4192. PR_INNER_VAR = abl_probe_index - (PR_OUTER_VAR * PR_INNER_END);
  4193. // Probe in reverse order for every other row/column
  4194. bool zig = (PR_OUTER_VAR & 1); // != ((PR_OUTER_END) & 1);
  4195. if (zig) PR_INNER_VAR = (PR_INNER_END - 1) - PR_INNER_VAR;
  4196. const float xBase = xCount * xGridSpacing + left_probe_bed_position,
  4197. yBase = yCount * yGridSpacing + front_probe_bed_position;
  4198. xProbe = FLOOR(xBase + (xBase < 0 ? 0 : 0.5));
  4199. yProbe = FLOOR(yBase + (yBase < 0 ? 0 : 0.5));
  4200. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4201. indexIntoAB[xCount][yCount] = abl_probe_index;
  4202. #endif
  4203. // Keep looping till a reachable point is found
  4204. if (position_is_reachable(xProbe, yProbe)) break;
  4205. ++abl_probe_index;
  4206. }
  4207. // Is there a next point to move to?
  4208. if (abl_probe_index < abl2) {
  4209. _manual_goto_xy(xProbe, yProbe); // Can be used here too!
  4210. #if HAS_SOFTWARE_ENDSTOPS
  4211. // Disable software endstops to allow manual adjustment
  4212. // If G29 is not completed, they will not be re-enabled
  4213. soft_endstops_enabled = false;
  4214. #endif
  4215. return;
  4216. }
  4217. else {
  4218. // Leveling done! Fall through to G29 finishing code below
  4219. SERIAL_PROTOCOLLNPGM("Grid probing done.");
  4220. // Re-enable software endstops, if needed
  4221. #if HAS_SOFTWARE_ENDSTOPS
  4222. soft_endstops_enabled = enable_soft_endstops;
  4223. #endif
  4224. }
  4225. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  4226. // Probe at 3 arbitrary points
  4227. if (abl_probe_index < 3) {
  4228. xProbe = points[abl_probe_index].x;
  4229. yProbe = points[abl_probe_index].y;
  4230. #if HAS_SOFTWARE_ENDSTOPS
  4231. // Disable software endstops to allow manual adjustment
  4232. // If G29 is not completed, they will not be re-enabled
  4233. soft_endstops_enabled = false;
  4234. #endif
  4235. return;
  4236. }
  4237. else {
  4238. SERIAL_PROTOCOLLNPGM("3-point probing done.");
  4239. // Re-enable software endstops, if needed
  4240. #if HAS_SOFTWARE_ENDSTOPS
  4241. soft_endstops_enabled = enable_soft_endstops;
  4242. #endif
  4243. if (!dryrun) {
  4244. vector_3 planeNormal = vector_3::cross(points[0] - points[1], points[2] - points[1]).get_normal();
  4245. if (planeNormal.z < 0) {
  4246. planeNormal.x *= -1;
  4247. planeNormal.y *= -1;
  4248. planeNormal.z *= -1;
  4249. }
  4250. planner.bed_level_matrix = matrix_3x3::create_look_at(planeNormal);
  4251. // Can't re-enable (on error) until the new grid is written
  4252. abl_should_enable = false;
  4253. }
  4254. }
  4255. #endif // AUTO_BED_LEVELING_3POINT
  4256. #else // !PROBE_MANUALLY
  4257. {
  4258. const bool stow_probe_after_each = parser.boolval('E');
  4259. #if ABL_GRID
  4260. bool zig = PR_OUTER_END & 1; // Always end at RIGHT and BACK_PROBE_BED_POSITION
  4261. measured_z = 0;
  4262. // Outer loop is Y with PROBE_Y_FIRST disabled
  4263. for (uint8_t PR_OUTER_VAR = 0; PR_OUTER_VAR < PR_OUTER_END && !isnan(measured_z); PR_OUTER_VAR++) {
  4264. int8_t inStart, inStop, inInc;
  4265. if (zig) { // away from origin
  4266. inStart = 0;
  4267. inStop = PR_INNER_END;
  4268. inInc = 1;
  4269. }
  4270. else { // towards origin
  4271. inStart = PR_INNER_END - 1;
  4272. inStop = -1;
  4273. inInc = -1;
  4274. }
  4275. zig ^= true; // zag
  4276. // Inner loop is Y with PROBE_Y_FIRST enabled
  4277. for (int8_t PR_INNER_VAR = inStart; PR_INNER_VAR != inStop; PR_INNER_VAR += inInc) {
  4278. float xBase = left_probe_bed_position + xGridSpacing * xCount,
  4279. yBase = front_probe_bed_position + yGridSpacing * yCount;
  4280. xProbe = FLOOR(xBase + (xBase < 0 ? 0 : 0.5));
  4281. yProbe = FLOOR(yBase + (yBase < 0 ? 0 : 0.5));
  4282. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4283. indexIntoAB[xCount][yCount] = ++abl_probe_index; // 0...
  4284. #endif
  4285. #if IS_KINEMATIC
  4286. // Avoid probing outside the round or hexagonal area
  4287. if (!position_is_reachable_by_probe(xProbe, yProbe)) continue;
  4288. #endif
  4289. measured_z = faux ? 0.001 * random(-100, 101) : probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
  4290. if (isnan(measured_z)) {
  4291. planner.leveling_active = abl_should_enable;
  4292. break;
  4293. }
  4294. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4295. mean += measured_z;
  4296. eqnBVector[abl_probe_index] = measured_z;
  4297. eqnAMatrix[abl_probe_index + 0 * abl2] = xProbe;
  4298. eqnAMatrix[abl_probe_index + 1 * abl2] = yProbe;
  4299. eqnAMatrix[abl_probe_index + 2 * abl2] = 1;
  4300. incremental_LSF(&lsf_results, xProbe, yProbe, measured_z);
  4301. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4302. z_values[xCount][yCount] = measured_z + zoffset;
  4303. #endif
  4304. abl_should_enable = false;
  4305. idle();
  4306. } // inner
  4307. } // outer
  4308. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  4309. // Probe at 3 arbitrary points
  4310. for (uint8_t i = 0; i < 3; ++i) {
  4311. // Retain the last probe position
  4312. xProbe = points[i].x;
  4313. yProbe = points[i].y;
  4314. measured_z = faux ? 0.001 * random(-100, 101) : probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
  4315. if (isnan(measured_z)) {
  4316. planner.leveling_active = abl_should_enable;
  4317. break;
  4318. }
  4319. points[i].z = measured_z;
  4320. }
  4321. if (!dryrun && !isnan(measured_z)) {
  4322. vector_3 planeNormal = vector_3::cross(points[0] - points[1], points[2] - points[1]).get_normal();
  4323. if (planeNormal.z < 0) {
  4324. planeNormal.x *= -1;
  4325. planeNormal.y *= -1;
  4326. planeNormal.z *= -1;
  4327. }
  4328. planner.bed_level_matrix = matrix_3x3::create_look_at(planeNormal);
  4329. // Can't re-enable (on error) until the new grid is written
  4330. abl_should_enable = false;
  4331. }
  4332. #endif // AUTO_BED_LEVELING_3POINT
  4333. // Raise to _Z_CLEARANCE_DEPLOY_PROBE. Stow the probe.
  4334. if (STOW_PROBE()) {
  4335. planner.leveling_active = abl_should_enable;
  4336. measured_z = NAN;
  4337. }
  4338. }
  4339. #endif // !PROBE_MANUALLY
  4340. //
  4341. // G29 Finishing Code
  4342. //
  4343. // Unless this is a dry run, auto bed leveling will
  4344. // definitely be enabled after this point.
  4345. //
  4346. // If code above wants to continue leveling, it should
  4347. // return or loop before this point.
  4348. //
  4349. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4350. if (DEBUGGING(LEVELING)) DEBUG_POS("> probing complete", current_position);
  4351. #endif
  4352. #if ENABLED(PROBE_MANUALLY)
  4353. g29_in_progress = false;
  4354. #if ENABLED(LCD_BED_LEVELING)
  4355. lcd_wait_for_move = false;
  4356. #endif
  4357. #endif
  4358. // Calculate leveling, print reports, correct the position
  4359. if (!isnan(measured_z)) {
  4360. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4361. if (!dryrun) extrapolate_unprobed_bed_level();
  4362. print_bilinear_leveling_grid();
  4363. refresh_bed_level();
  4364. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  4365. print_bilinear_leveling_grid_virt();
  4366. #endif
  4367. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  4368. // For LINEAR leveling calculate matrix, print reports, correct the position
  4369. /**
  4370. * solve the plane equation ax + by + d = z
  4371. * A is the matrix with rows [x y 1] for all the probed points
  4372. * B is the vector of the Z positions
  4373. * the normal vector to the plane is formed by the coefficients of the
  4374. * plane equation in the standard form, which is Vx*x+Vy*y+Vz*z+d = 0
  4375. * so Vx = -a Vy = -b Vz = 1 (we want the vector facing towards positive Z
  4376. */
  4377. float plane_equation_coefficients[3];
  4378. finish_incremental_LSF(&lsf_results);
  4379. plane_equation_coefficients[0] = -lsf_results.A; // We should be able to eliminate the '-' on these three lines and down below
  4380. plane_equation_coefficients[1] = -lsf_results.B; // but that is not yet tested.
  4381. plane_equation_coefficients[2] = -lsf_results.D;
  4382. mean /= abl2;
  4383. if (verbose_level) {
  4384. SERIAL_PROTOCOLPGM("Eqn coefficients: a: ");
  4385. SERIAL_PROTOCOL_F(plane_equation_coefficients[0], 8);
  4386. SERIAL_PROTOCOLPGM(" b: ");
  4387. SERIAL_PROTOCOL_F(plane_equation_coefficients[1], 8);
  4388. SERIAL_PROTOCOLPGM(" d: ");
  4389. SERIAL_PROTOCOL_F(plane_equation_coefficients[2], 8);
  4390. SERIAL_EOL();
  4391. if (verbose_level > 2) {
  4392. SERIAL_PROTOCOLPGM("Mean of sampled points: ");
  4393. SERIAL_PROTOCOL_F(mean, 8);
  4394. SERIAL_EOL();
  4395. }
  4396. }
  4397. // Create the matrix but don't correct the position yet
  4398. if (!dryrun)
  4399. planner.bed_level_matrix = matrix_3x3::create_look_at(
  4400. vector_3(-plane_equation_coefficients[0], -plane_equation_coefficients[1], 1) // We can eliminate the '-' here and up above
  4401. );
  4402. // Show the Topography map if enabled
  4403. if (do_topography_map) {
  4404. SERIAL_PROTOCOLLNPGM("\nBed Height Topography:\n"
  4405. " +--- BACK --+\n"
  4406. " | |\n"
  4407. " L | (+) | R\n"
  4408. " E | | I\n"
  4409. " F | (-) N (+) | G\n"
  4410. " T | | H\n"
  4411. " | (-) | T\n"
  4412. " | |\n"
  4413. " O-- FRONT --+\n"
  4414. " (0,0)");
  4415. float min_diff = 999;
  4416. for (int8_t yy = abl_grid_points_y - 1; yy >= 0; yy--) {
  4417. for (uint8_t xx = 0; xx < abl_grid_points_x; xx++) {
  4418. int ind = indexIntoAB[xx][yy];
  4419. float diff = eqnBVector[ind] - mean,
  4420. x_tmp = eqnAMatrix[ind + 0 * abl2],
  4421. y_tmp = eqnAMatrix[ind + 1 * abl2],
  4422. z_tmp = 0;
  4423. apply_rotation_xyz(planner.bed_level_matrix, x_tmp, y_tmp, z_tmp);
  4424. NOMORE(min_diff, eqnBVector[ind] - z_tmp);
  4425. if (diff >= 0.0)
  4426. SERIAL_PROTOCOLPGM(" +"); // Include + for column alignment
  4427. else
  4428. SERIAL_PROTOCOLCHAR(' ');
  4429. SERIAL_PROTOCOL_F(diff, 5);
  4430. } // xx
  4431. SERIAL_EOL();
  4432. } // yy
  4433. SERIAL_EOL();
  4434. if (verbose_level > 3) {
  4435. SERIAL_PROTOCOLLNPGM("\nCorrected Bed Height vs. Bed Topology:");
  4436. for (int8_t yy = abl_grid_points_y - 1; yy >= 0; yy--) {
  4437. for (uint8_t xx = 0; xx < abl_grid_points_x; xx++) {
  4438. int ind = indexIntoAB[xx][yy];
  4439. float x_tmp = eqnAMatrix[ind + 0 * abl2],
  4440. y_tmp = eqnAMatrix[ind + 1 * abl2],
  4441. z_tmp = 0;
  4442. apply_rotation_xyz(planner.bed_level_matrix, x_tmp, y_tmp, z_tmp);
  4443. float diff = eqnBVector[ind] - z_tmp - min_diff;
  4444. if (diff >= 0.0)
  4445. SERIAL_PROTOCOLPGM(" +");
  4446. // Include + for column alignment
  4447. else
  4448. SERIAL_PROTOCOLCHAR(' ');
  4449. SERIAL_PROTOCOL_F(diff, 5);
  4450. } // xx
  4451. SERIAL_EOL();
  4452. } // yy
  4453. SERIAL_EOL();
  4454. }
  4455. } //do_topography_map
  4456. #endif // AUTO_BED_LEVELING_LINEAR
  4457. #if ABL_PLANAR
  4458. // For LINEAR and 3POINT leveling correct the current position
  4459. if (verbose_level > 0)
  4460. planner.bed_level_matrix.debug(PSTR("\n\nBed Level Correction Matrix:"));
  4461. if (!dryrun) {
  4462. //
  4463. // Correct the current XYZ position based on the tilted plane.
  4464. //
  4465. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4466. if (DEBUGGING(LEVELING)) DEBUG_POS("G29 uncorrected XYZ", current_position);
  4467. #endif
  4468. float converted[XYZ];
  4469. COPY(converted, current_position);
  4470. planner.leveling_active = true;
  4471. planner.unapply_leveling(converted); // use conversion machinery
  4472. planner.leveling_active = false;
  4473. // Use the last measured distance to the bed, if possible
  4474. if ( NEAR(current_position[X_AXIS], xProbe - (X_PROBE_OFFSET_FROM_EXTRUDER))
  4475. && NEAR(current_position[Y_AXIS], yProbe - (Y_PROBE_OFFSET_FROM_EXTRUDER))
  4476. ) {
  4477. const float simple_z = current_position[Z_AXIS] - measured_z;
  4478. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4479. if (DEBUGGING(LEVELING)) {
  4480. SERIAL_ECHOPAIR("Z from Probe:", simple_z);
  4481. SERIAL_ECHOPAIR(" Matrix:", converted[Z_AXIS]);
  4482. SERIAL_ECHOLNPAIR(" Discrepancy:", simple_z - converted[Z_AXIS]);
  4483. }
  4484. #endif
  4485. converted[Z_AXIS] = simple_z;
  4486. }
  4487. // The rotated XY and corrected Z are now current_position
  4488. COPY(current_position, converted);
  4489. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4490. if (DEBUGGING(LEVELING)) DEBUG_POS("G29 corrected XYZ", current_position);
  4491. #endif
  4492. }
  4493. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4494. if (!dryrun) {
  4495. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4496. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("G29 uncorrected Z:", current_position[Z_AXIS]);
  4497. #endif
  4498. // Unapply the offset because it is going to be immediately applied
  4499. // and cause compensation movement in Z
  4500. current_position[Z_AXIS] -= bilinear_z_offset(current_position);
  4501. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4502. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR(" corrected Z:", current_position[Z_AXIS]);
  4503. #endif
  4504. }
  4505. #endif // ABL_PLANAR
  4506. #ifdef Z_PROBE_END_SCRIPT
  4507. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4508. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("Z Probe End Script: ", Z_PROBE_END_SCRIPT);
  4509. #endif
  4510. enqueue_and_echo_commands_P(PSTR(Z_PROBE_END_SCRIPT));
  4511. stepper.synchronize();
  4512. #endif
  4513. // Auto Bed Leveling is complete! Enable if possible.
  4514. planner.leveling_active = dryrun ? abl_should_enable : true;
  4515. } // !isnan(measured_z)
  4516. // Restore state after probing
  4517. if (!faux) clean_up_after_endstop_or_probe_move();
  4518. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4519. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G29");
  4520. #endif
  4521. report_current_position();
  4522. KEEPALIVE_STATE(IN_HANDLER);
  4523. if (planner.leveling_active)
  4524. SYNC_PLAN_POSITION_KINEMATIC();
  4525. }
  4526. #endif // OLDSCHOOL_ABL
  4527. #if HAS_BED_PROBE
  4528. /**
  4529. * G30: Do a single Z probe at the current XY
  4530. *
  4531. * Parameters:
  4532. *
  4533. * X Probe X position (default current X)
  4534. * Y Probe Y position (default current Y)
  4535. * E Engage the probe for each probe
  4536. */
  4537. inline void gcode_G30() {
  4538. const float xpos = parser.linearval('X', current_position[X_AXIS] + X_PROBE_OFFSET_FROM_EXTRUDER),
  4539. ypos = parser.linearval('Y', current_position[Y_AXIS] + Y_PROBE_OFFSET_FROM_EXTRUDER);
  4540. if (!position_is_reachable_by_probe(xpos, ypos)) return;
  4541. // Disable leveling so the planner won't mess with us
  4542. #if HAS_LEVELING
  4543. set_bed_leveling_enabled(false);
  4544. #endif
  4545. setup_for_endstop_or_probe_move();
  4546. const float measured_z = probe_pt(xpos, ypos, parser.boolval('E'), 1);
  4547. if (!isnan(measured_z)) {
  4548. SERIAL_PROTOCOLPAIR("Bed X: ", FIXFLOAT(xpos));
  4549. SERIAL_PROTOCOLPAIR(" Y: ", FIXFLOAT(ypos));
  4550. SERIAL_PROTOCOLLNPAIR(" Z: ", FIXFLOAT(measured_z));
  4551. }
  4552. clean_up_after_endstop_or_probe_move();
  4553. report_current_position();
  4554. }
  4555. #if ENABLED(Z_PROBE_SLED)
  4556. /**
  4557. * G31: Deploy the Z probe
  4558. */
  4559. inline void gcode_G31() { DEPLOY_PROBE(); }
  4560. /**
  4561. * G32: Stow the Z probe
  4562. */
  4563. inline void gcode_G32() { STOW_PROBE(); }
  4564. #endif // Z_PROBE_SLED
  4565. #endif // HAS_BED_PROBE
  4566. #if ENABLED(DELTA_AUTO_CALIBRATION)
  4567. constexpr uint8_t _7P_STEP = 1, // 7-point step - to change number of calibration points
  4568. _4P_STEP = _7P_STEP * 2, // 4-point step
  4569. NPP = _7P_STEP * 6; // number of calibration points on the radius
  4570. enum CalEnum { // the 7 main calibration points - add definitions if needed
  4571. CEN = 0,
  4572. __A = 1,
  4573. _AB = __A + _7P_STEP,
  4574. __B = _AB + _7P_STEP,
  4575. _BC = __B + _7P_STEP,
  4576. __C = _BC + _7P_STEP,
  4577. _CA = __C + _7P_STEP,
  4578. };
  4579. #define LOOP_CAL_PT(VAR, S, N) for (uint8_t VAR=S; VAR<=NPP; VAR+=N)
  4580. #define F_LOOP_CAL_PT(VAR, S, N) for (float VAR=S; VAR<NPP+0.9999; VAR+=N)
  4581. #define I_LOOP_CAL_PT(VAR, S, N) for (float VAR=S; VAR>CEN+0.9999; VAR-=N)
  4582. #define LOOP_CAL_ALL(VAR) LOOP_CAL_PT(VAR, CEN, 1)
  4583. #define LOOP_CAL_RAD(VAR) LOOP_CAL_PT(VAR, __A, _7P_STEP)
  4584. #define LOOP_CAL_ACT(VAR, _4P, _OP) LOOP_CAL_PT(VAR, _OP ? _AB : __A, _4P ? _4P_STEP : _7P_STEP)
  4585. static void print_signed_float(const char * const prefix, const float &f) {
  4586. SERIAL_PROTOCOLPGM(" ");
  4587. serialprintPGM(prefix);
  4588. SERIAL_PROTOCOLCHAR(':');
  4589. if (f >= 0) SERIAL_CHAR('+');
  4590. SERIAL_PROTOCOL_F(f, 2);
  4591. }
  4592. static void print_G33_settings(const bool end_stops, const bool tower_angles) {
  4593. SERIAL_PROTOCOLPAIR(".Height:", delta_height);
  4594. if (end_stops) {
  4595. print_signed_float(PSTR("Ex"), delta_endstop_adj[A_AXIS]);
  4596. print_signed_float(PSTR("Ey"), delta_endstop_adj[B_AXIS]);
  4597. print_signed_float(PSTR("Ez"), delta_endstop_adj[C_AXIS]);
  4598. }
  4599. if (end_stops && tower_angles) {
  4600. SERIAL_PROTOCOLPAIR(" Radius:", delta_radius);
  4601. SERIAL_EOL();
  4602. SERIAL_CHAR('.');
  4603. SERIAL_PROTOCOL_SP(13);
  4604. }
  4605. if (tower_angles) {
  4606. print_signed_float(PSTR("Tx"), delta_tower_angle_trim[A_AXIS]);
  4607. print_signed_float(PSTR("Ty"), delta_tower_angle_trim[B_AXIS]);
  4608. print_signed_float(PSTR("Tz"), delta_tower_angle_trim[C_AXIS]);
  4609. }
  4610. if ((!end_stops && tower_angles) || (end_stops && !tower_angles)) { // XOR
  4611. SERIAL_PROTOCOLPAIR(" Radius:", delta_radius);
  4612. }
  4613. SERIAL_EOL();
  4614. }
  4615. static void print_G33_results(const float z_at_pt[NPP + 1], const bool tower_points, const bool opposite_points) {
  4616. SERIAL_PROTOCOLPGM(". ");
  4617. print_signed_float(PSTR("c"), z_at_pt[CEN]);
  4618. if (tower_points) {
  4619. print_signed_float(PSTR(" x"), z_at_pt[__A]);
  4620. print_signed_float(PSTR(" y"), z_at_pt[__B]);
  4621. print_signed_float(PSTR(" z"), z_at_pt[__C]);
  4622. }
  4623. if (tower_points && opposite_points) {
  4624. SERIAL_EOL();
  4625. SERIAL_CHAR('.');
  4626. SERIAL_PROTOCOL_SP(13);
  4627. }
  4628. if (opposite_points) {
  4629. print_signed_float(PSTR("yz"), z_at_pt[_BC]);
  4630. print_signed_float(PSTR("zx"), z_at_pt[_CA]);
  4631. print_signed_float(PSTR("xy"), z_at_pt[_AB]);
  4632. }
  4633. SERIAL_EOL();
  4634. }
  4635. /**
  4636. * After G33:
  4637. * - Move to the print ceiling (DELTA_HOME_TO_SAFE_ZONE only)
  4638. * - Stow the probe
  4639. * - Restore endstops state
  4640. * - Select the old tool, if needed
  4641. */
  4642. static void G33_cleanup(
  4643. #if HOTENDS > 1
  4644. const uint8_t old_tool_index
  4645. #endif
  4646. ) {
  4647. #if ENABLED(DELTA_HOME_TO_SAFE_ZONE)
  4648. do_blocking_move_to_z(delta_clip_start_height);
  4649. #endif
  4650. STOW_PROBE();
  4651. clean_up_after_endstop_or_probe_move();
  4652. #if HOTENDS > 1
  4653. tool_change(old_tool_index, 0, true);
  4654. #endif
  4655. }
  4656. static float probe_G33_points(float z_at_pt[NPP + 1], const int8_t probe_points, const bool towers_set, const bool stow_after_each) {
  4657. const bool _0p_calibration = probe_points == 0,
  4658. _1p_calibration = probe_points == 1,
  4659. _4p_calibration = probe_points == 2,
  4660. _4p_opposite_points = _4p_calibration && !towers_set,
  4661. _7p_calibration = probe_points >= 3 || probe_points == 0,
  4662. _7p_no_intermediates = probe_points == 3,
  4663. _7p_1_intermediates = probe_points == 4,
  4664. _7p_2_intermediates = probe_points == 5,
  4665. _7p_4_intermediates = probe_points == 6,
  4666. _7p_6_intermediates = probe_points == 7,
  4667. _7p_8_intermediates = probe_points == 8,
  4668. _7p_11_intermediates = probe_points == 9,
  4669. _7p_14_intermediates = probe_points == 10,
  4670. _7p_intermed_points = probe_points >= 4,
  4671. _7p_6_centre = probe_points >= 5 && probe_points <= 7,
  4672. _7p_9_centre = probe_points >= 8;
  4673. #if HAS_BED_PROBE
  4674. const float dx = (X_PROBE_OFFSET_FROM_EXTRUDER),
  4675. dy = (Y_PROBE_OFFSET_FROM_EXTRUDER);
  4676. #endif
  4677. LOOP_CAL_ALL(axis) z_at_pt[axis] = 0.0;
  4678. if (!_0p_calibration) {
  4679. if (!_7p_no_intermediates && !_7p_4_intermediates && !_7p_11_intermediates) { // probe the center
  4680. z_at_pt[CEN] +=
  4681. #if HAS_BED_PROBE
  4682. probe_pt(dx, dy, stow_after_each, 1, false)
  4683. #else
  4684. lcd_probe_pt(0, 0)
  4685. #endif
  4686. ;
  4687. }
  4688. if (_7p_calibration) { // probe extra center points
  4689. const float start = _7p_9_centre ? _CA + _7P_STEP / 3.0 : _7p_6_centre ? _CA : __C,
  4690. steps = _7p_9_centre ? _4P_STEP / 3.0 : _7p_6_centre ? _7P_STEP : _4P_STEP;
  4691. I_LOOP_CAL_PT(axis, start, steps) {
  4692. const float a = RADIANS(210 + (360 / NPP) * (axis - 1)),
  4693. r = delta_calibration_radius * 0.1;
  4694. z_at_pt[CEN] +=
  4695. #if HAS_BED_PROBE
  4696. probe_pt(cos(a) * r + dx, sin(a) * r + dy, stow_after_each, 1, false)
  4697. #else
  4698. lcd_probe_pt(cos(a) * r, sin(a) * r)
  4699. #endif
  4700. ;
  4701. }
  4702. z_at_pt[CEN] /= float(_7p_2_intermediates ? 7 : probe_points);
  4703. }
  4704. if (!_1p_calibration) { // probe the radius
  4705. const CalEnum start = _4p_opposite_points ? _AB : __A;
  4706. const float steps = _7p_14_intermediates ? _7P_STEP / 15.0 : // 15r * 6 + 10c = 100
  4707. _7p_11_intermediates ? _7P_STEP / 12.0 : // 12r * 6 + 9c = 81
  4708. _7p_8_intermediates ? _7P_STEP / 9.0 : // 9r * 6 + 10c = 64
  4709. _7p_6_intermediates ? _7P_STEP / 7.0 : // 7r * 6 + 7c = 49
  4710. _7p_4_intermediates ? _7P_STEP / 5.0 : // 5r * 6 + 6c = 36
  4711. _7p_2_intermediates ? _7P_STEP / 3.0 : // 3r * 6 + 7c = 25
  4712. _7p_1_intermediates ? _7P_STEP / 2.0 : // 2r * 6 + 4c = 16
  4713. _7p_no_intermediates ? _7P_STEP : // 1r * 6 + 3c = 9
  4714. _4P_STEP; // .5r * 6 + 1c = 4
  4715. bool zig_zag = true;
  4716. F_LOOP_CAL_PT(axis, start, _7p_9_centre ? steps * 3 : steps) {
  4717. const int8_t offset = _7p_9_centre ? 1 : 0;
  4718. for (int8_t circle = -offset; circle <= offset; circle++) {
  4719. const float a = RADIANS(210 + (360 / NPP) * (axis - 1)),
  4720. r = delta_calibration_radius * (1 + 0.1 * (zig_zag ? circle : - circle)),
  4721. interpol = fmod(axis, 1);
  4722. const float z_temp =
  4723. #if HAS_BED_PROBE
  4724. probe_pt(cos(a) * r + dx, sin(a) * r + dy, stow_after_each, 1, false)
  4725. #else
  4726. lcd_probe_pt(cos(a) * r, sin(a) * r)
  4727. #endif
  4728. ;
  4729. // split probe point to neighbouring calibration points
  4730. z_at_pt[uint8_t(round(axis - interpol + NPP - 1)) % NPP + 1] += z_temp * sq(cos(RADIANS(interpol * 90)));
  4731. z_at_pt[uint8_t(round(axis - interpol )) % NPP + 1] += z_temp * sq(sin(RADIANS(interpol * 90)));
  4732. }
  4733. zig_zag = !zig_zag;
  4734. }
  4735. if (_7p_intermed_points)
  4736. LOOP_CAL_RAD(axis)
  4737. z_at_pt[axis] /= _7P_STEP / steps;
  4738. }
  4739. float S1 = z_at_pt[CEN],
  4740. S2 = sq(z_at_pt[CEN]);
  4741. int16_t N = 1;
  4742. if (!_1p_calibration) { // std dev from zero plane
  4743. LOOP_CAL_ACT(axis, _4p_calibration, _4p_opposite_points) {
  4744. S1 += z_at_pt[axis];
  4745. S2 += sq(z_at_pt[axis]);
  4746. N++;
  4747. }
  4748. return round(SQRT(S2 / N) * 1000.0) / 1000.0 + 0.00001;
  4749. }
  4750. }
  4751. return 0.00001;
  4752. }
  4753. #if HAS_BED_PROBE
  4754. static void G33_auto_tune() {
  4755. float z_at_pt[NPP + 1] = { 0.0 },
  4756. z_at_pt_base[NPP + 1] = { 0.0 },
  4757. z_temp, h_fac = 0.0, r_fac = 0.0, a_fac = 0.0, norm = 0.8;
  4758. #define ZP(N,I) ((N) * z_at_pt[I])
  4759. #define Z06(I) ZP(6, I)
  4760. #define Z03(I) ZP(3, I)
  4761. #define Z02(I) ZP(2, I)
  4762. #define Z01(I) ZP(1, I)
  4763. #define Z32(I) ZP(3/2, I)
  4764. SERIAL_PROTOCOLPGM("AUTO TUNE baseline");
  4765. SERIAL_EOL();
  4766. probe_G33_points(z_at_pt_base, 3, true, false);
  4767. print_G33_results(z_at_pt_base, true, true);
  4768. LOOP_XYZ(axis) {
  4769. delta_endstop_adj[axis] -= 1.0;
  4770. recalc_delta_settings();
  4771. endstops.enable(true);
  4772. if (!home_delta()) return;
  4773. endstops.not_homing();
  4774. SERIAL_PROTOCOLPGM("Tuning E");
  4775. SERIAL_CHAR(tolower(axis_codes[axis]));
  4776. SERIAL_EOL();
  4777. probe_G33_points(z_at_pt, 3, true, false);
  4778. LOOP_CAL_ALL(axis) z_at_pt[axis] -= z_at_pt_base[axis];
  4779. print_G33_results(z_at_pt, true, true);
  4780. delta_endstop_adj[axis] += 1.0;
  4781. recalc_delta_settings();
  4782. switch (axis) {
  4783. case A_AXIS :
  4784. h_fac += 4.0 / (Z03(CEN) +Z01(__A) +Z32(_CA) +Z32(_AB)); // Offset by X-tower end-stop
  4785. break;
  4786. case B_AXIS :
  4787. h_fac += 4.0 / (Z03(CEN) +Z01(__B) +Z32(_BC) +Z32(_AB)); // Offset by Y-tower end-stop
  4788. break;
  4789. case C_AXIS :
  4790. h_fac += 4.0 / (Z03(CEN) +Z01(__C) +Z32(_BC) +Z32(_CA) ); // Offset by Z-tower end-stop
  4791. break;
  4792. }
  4793. }
  4794. h_fac /= 3.0;
  4795. h_fac *= norm; // Normalize to 1.02 for Kossel mini
  4796. for (int8_t zig_zag = -1; zig_zag < 2; zig_zag += 2) {
  4797. delta_radius += 1.0 * zig_zag;
  4798. recalc_delta_settings();
  4799. endstops.enable(true);
  4800. if (!home_delta()) return;
  4801. endstops.not_homing();
  4802. SERIAL_PROTOCOLPGM("Tuning R");
  4803. SERIAL_PROTOCOL(zig_zag == -1 ? "-" : "+");
  4804. SERIAL_EOL();
  4805. probe_G33_points(z_at_pt, 3, true, false);
  4806. LOOP_CAL_ALL(axis) z_at_pt[axis] -= z_at_pt_base[axis];
  4807. print_G33_results(z_at_pt, true, true);
  4808. delta_radius -= 1.0 * zig_zag;
  4809. recalc_delta_settings();
  4810. r_fac -= zig_zag * 6.0 / (Z03(__A) +Z03(__B) +Z03(__C) +Z03(_BC) +Z03(_CA) +Z03(_AB)); // Offset by delta radius
  4811. }
  4812. r_fac /= 2.0;
  4813. r_fac *= 3 * norm; // Normalize to 2.25 for Kossel mini
  4814. LOOP_XYZ(axis) {
  4815. delta_tower_angle_trim[axis] += 1.0;
  4816. delta_endstop_adj[(axis + 1) % 3] -= 1.0 / 4.5;
  4817. delta_endstop_adj[(axis + 2) % 3] += 1.0 / 4.5;
  4818. z_temp = MAX3(delta_endstop_adj[A_AXIS], delta_endstop_adj[B_AXIS], delta_endstop_adj[C_AXIS]);
  4819. delta_height -= z_temp;
  4820. LOOP_XYZ(axis) delta_endstop_adj[axis] -= z_temp;
  4821. recalc_delta_settings();
  4822. endstops.enable(true);
  4823. if (!home_delta()) return;
  4824. endstops.not_homing();
  4825. SERIAL_PROTOCOLPGM("Tuning T");
  4826. SERIAL_CHAR(tolower(axis_codes[axis]));
  4827. SERIAL_EOL();
  4828. probe_G33_points(z_at_pt, 3, true, false);
  4829. LOOP_CAL_ALL(axis) z_at_pt[axis] -= z_at_pt_base[axis];
  4830. print_G33_results(z_at_pt, true, true);
  4831. delta_tower_angle_trim[axis] -= 1.0;
  4832. delta_endstop_adj[(axis+1) % 3] += 1.0/4.5;
  4833. delta_endstop_adj[(axis+2) % 3] -= 1.0/4.5;
  4834. z_temp = MAX3(delta_endstop_adj[A_AXIS], delta_endstop_adj[B_AXIS], delta_endstop_adj[C_AXIS]);
  4835. delta_height -= z_temp;
  4836. LOOP_XYZ(axis) delta_endstop_adj[axis] -= z_temp;
  4837. recalc_delta_settings();
  4838. switch (axis) {
  4839. case A_AXIS :
  4840. a_fac += 4.0 / ( Z06(__B) -Z06(__C) +Z06(_CA) -Z06(_AB)); // Offset by alpha tower angle
  4841. break;
  4842. case B_AXIS :
  4843. a_fac += 4.0 / (-Z06(__A) +Z06(__C) -Z06(_BC) +Z06(_AB)); // Offset by beta tower angle
  4844. break;
  4845. case C_AXIS :
  4846. a_fac += 4.0 / (Z06(__A) -Z06(__B) +Z06(_BC) -Z06(_CA) ); // Offset by gamma tower angle
  4847. break;
  4848. }
  4849. }
  4850. a_fac /= 3.0;
  4851. a_fac *= norm; // Normalize to 0.83 for Kossel mini
  4852. endstops.enable(true);
  4853. if (!home_delta()) return;
  4854. endstops.not_homing();
  4855. print_signed_float(PSTR( "H_FACTOR: "), h_fac);
  4856. print_signed_float(PSTR(" R_FACTOR: "), r_fac);
  4857. print_signed_float(PSTR(" A_FACTOR: "), a_fac);
  4858. SERIAL_EOL();
  4859. SERIAL_PROTOCOLPGM("Copy these values to Configuration.h");
  4860. SERIAL_EOL();
  4861. }
  4862. #endif // HAS_BED_PROBE
  4863. /**
  4864. * G33 - Delta '1-4-7-point' Auto-Calibration
  4865. * Calibrate height, endstops, delta radius, and tower angles.
  4866. *
  4867. * Parameters:
  4868. *
  4869. * Pn Number of probe points:
  4870. * P0 No probe. Normalize only.
  4871. * P1 Probe center and set height only.
  4872. * P2 Probe center and towers. Set height, endstops and delta radius.
  4873. * P3 Probe all positions: center, towers and opposite towers. Set all.
  4874. * P4-P10 Probe all positions + at different itermediate locations and average them.
  4875. *
  4876. * T Don't calibrate tower angle corrections
  4877. *
  4878. * Cn.nn Calibration precision; when omitted calibrates to maximum precision
  4879. *
  4880. * Fn Force to run at least n iterations and takes the best result
  4881. *
  4882. * A Auto tune calibartion factors (set in Configuration.h)
  4883. *
  4884. * Vn Verbose level:
  4885. * V0 Dry-run mode. Report settings and probe results. No calibration.
  4886. * V1 Report settings
  4887. * V2 Report settings and probe results
  4888. *
  4889. * E Engage the probe for each point
  4890. */
  4891. inline void gcode_G33() {
  4892. const int8_t probe_points = parser.intval('P', DELTA_CALIBRATION_DEFAULT_POINTS);
  4893. if (!WITHIN(probe_points, 0, 10)) {
  4894. SERIAL_PROTOCOLLNPGM("?(P)oints is implausible (0-10).");
  4895. return;
  4896. }
  4897. const int8_t verbose_level = parser.byteval('V', 1);
  4898. if (!WITHIN(verbose_level, 0, 2)) {
  4899. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-2).");
  4900. return;
  4901. }
  4902. const float calibration_precision = parser.floatval('C');
  4903. if (calibration_precision < 0) {
  4904. SERIAL_PROTOCOLLNPGM("?(C)alibration precision is implausible (>=0).");
  4905. return;
  4906. }
  4907. const int8_t force_iterations = parser.intval('F', 0);
  4908. if (!WITHIN(force_iterations, 0, 30)) {
  4909. SERIAL_PROTOCOLLNPGM("?(F)orce iteration is implausible (0-30).");
  4910. return;
  4911. }
  4912. const bool towers_set = !parser.boolval('T'),
  4913. auto_tune = parser.boolval('A'),
  4914. stow_after_each = parser.boolval('E'),
  4915. _0p_calibration = probe_points == 0,
  4916. _1p_calibration = probe_points == 1,
  4917. _4p_calibration = probe_points == 2,
  4918. _7p_9_centre = probe_points >= 8,
  4919. _tower_results = (_4p_calibration && towers_set)
  4920. || probe_points >= 3 || probe_points == 0,
  4921. _opposite_results = (_4p_calibration && !towers_set)
  4922. || probe_points >= 3 || probe_points == 0,
  4923. _endstop_results = probe_points != 1,
  4924. _angle_results = (probe_points >= 3 || probe_points == 0) && towers_set;
  4925. const static char save_message[] PROGMEM = "Save with M500 and/or copy to Configuration.h";
  4926. int8_t iterations = 0;
  4927. float test_precision,
  4928. zero_std_dev = (verbose_level ? 999.0 : 0.0), // 0.0 in dry-run mode : forced end
  4929. zero_std_dev_min = zero_std_dev,
  4930. e_old[ABC] = {
  4931. delta_endstop_adj[A_AXIS],
  4932. delta_endstop_adj[B_AXIS],
  4933. delta_endstop_adj[C_AXIS]
  4934. },
  4935. dr_old = delta_radius,
  4936. zh_old = delta_height,
  4937. ta_old[ABC] = {
  4938. delta_tower_angle_trim[A_AXIS],
  4939. delta_tower_angle_trim[B_AXIS],
  4940. delta_tower_angle_trim[C_AXIS]
  4941. };
  4942. SERIAL_PROTOCOLLNPGM("G33 Auto Calibrate");
  4943. if (!_1p_calibration && !_0p_calibration) { // test if the outer radius is reachable
  4944. LOOP_CAL_RAD(axis) {
  4945. const float a = RADIANS(210 + (360 / NPP) * (axis - 1)),
  4946. r = delta_calibration_radius * (1 + (_7p_9_centre ? 0.1 : 0.0));
  4947. if (!position_is_reachable(cos(a) * r, sin(a) * r)) {
  4948. SERIAL_PROTOCOLLNPGM("?(M665 B)ed radius is implausible.");
  4949. return;
  4950. }
  4951. }
  4952. }
  4953. stepper.synchronize();
  4954. #if HAS_LEVELING
  4955. reset_bed_level(); // After calibration bed-level data is no longer valid
  4956. #endif
  4957. #if HOTENDS > 1
  4958. const uint8_t old_tool_index = active_extruder;
  4959. tool_change(0, 0, true);
  4960. #define G33_CLEANUP() G33_cleanup(old_tool_index)
  4961. #else
  4962. #define G33_CLEANUP() G33_cleanup()
  4963. #endif
  4964. setup_for_endstop_or_probe_move();
  4965. endstops.enable(true);
  4966. if (!_0p_calibration) {
  4967. if (!home_delta())
  4968. return;
  4969. endstops.not_homing();
  4970. }
  4971. if (auto_tune) {
  4972. #if HAS_BED_PROBE
  4973. G33_auto_tune();
  4974. #else
  4975. SERIAL_PROTOCOLLNPGM("A probe is needed for auto-tune");
  4976. #endif
  4977. G33_CLEANUP();
  4978. return;
  4979. }
  4980. // Report settings
  4981. const char *checkingac = PSTR("Checking... AC"); // TODO: Make translatable string
  4982. serialprintPGM(checkingac);
  4983. if (verbose_level == 0) SERIAL_PROTOCOLPGM(" (DRY-RUN)");
  4984. SERIAL_EOL();
  4985. lcd_setstatusPGM(checkingac);
  4986. print_G33_settings(_endstop_results, _angle_results);
  4987. do {
  4988. float z_at_pt[NPP + 1] = { 0.0 };
  4989. test_precision = zero_std_dev;
  4990. iterations++;
  4991. // Probe the points
  4992. zero_std_dev = probe_G33_points(z_at_pt, probe_points, towers_set, stow_after_each);
  4993. // Solve matrices
  4994. if ((zero_std_dev < test_precision || iterations <= force_iterations) && zero_std_dev > calibration_precision) {
  4995. if (zero_std_dev < zero_std_dev_min) {
  4996. COPY(e_old, delta_endstop_adj);
  4997. dr_old = delta_radius;
  4998. zh_old = delta_height;
  4999. COPY(ta_old, delta_tower_angle_trim);
  5000. }
  5001. float e_delta[ABC] = { 0.0 }, r_delta = 0.0, t_delta[ABC] = { 0.0 };
  5002. const float r_diff = delta_radius - delta_calibration_radius,
  5003. h_factor = 1 / 6.0 *
  5004. #ifdef H_FACTOR
  5005. (H_FACTOR), // Set in Configuration.h
  5006. #else
  5007. (1.00 + r_diff * 0.001), // 1.02 for r_diff = 20mm
  5008. #endif
  5009. r_factor = 1 / 6.0 *
  5010. #ifdef R_FACTOR
  5011. -(R_FACTOR), // Set in Configuration.h
  5012. #else
  5013. -(1.75 + 0.005 * r_diff + 0.001 * sq(r_diff)), // 2.25 for r_diff = 20mm
  5014. #endif
  5015. a_factor = 1 / 6.0 *
  5016. #ifdef A_FACTOR
  5017. (A_FACTOR); // Set in Configuration.h
  5018. #else
  5019. (66.66 / delta_calibration_radius); // 0.83 for cal_rd = 80mm
  5020. #endif
  5021. #define ZP(N,I) ((N) * z_at_pt[I])
  5022. #define Z6(I) ZP(6, I)
  5023. #define Z4(I) ZP(4, I)
  5024. #define Z2(I) ZP(2, I)
  5025. #define Z1(I) ZP(1, I)
  5026. #if !HAS_BED_PROBE
  5027. test_precision = 0.00; // forced end
  5028. #endif
  5029. switch (probe_points) {
  5030. case 0:
  5031. test_precision = 0.00; // forced end
  5032. break;
  5033. case 1:
  5034. test_precision = 0.00; // forced end
  5035. LOOP_XYZ(axis) e_delta[axis] = Z1(CEN);
  5036. break;
  5037. case 2:
  5038. if (towers_set) {
  5039. e_delta[A_AXIS] = (Z6(CEN) +Z4(__A) -Z2(__B) -Z2(__C)) * h_factor;
  5040. e_delta[B_AXIS] = (Z6(CEN) -Z2(__A) +Z4(__B) -Z2(__C)) * h_factor;
  5041. e_delta[C_AXIS] = (Z6(CEN) -Z2(__A) -Z2(__B) +Z4(__C)) * h_factor;
  5042. r_delta = (Z6(CEN) -Z2(__A) -Z2(__B) -Z2(__C)) * r_factor;
  5043. }
  5044. else {
  5045. e_delta[A_AXIS] = (Z6(CEN) -Z4(_BC) +Z2(_CA) +Z2(_AB)) * h_factor;
  5046. e_delta[B_AXIS] = (Z6(CEN) +Z2(_BC) -Z4(_CA) +Z2(_AB)) * h_factor;
  5047. e_delta[C_AXIS] = (Z6(CEN) +Z2(_BC) +Z2(_CA) -Z4(_AB)) * h_factor;
  5048. r_delta = (Z6(CEN) -Z2(_BC) -Z2(_CA) -Z2(_AB)) * r_factor;
  5049. }
  5050. break;
  5051. default:
  5052. e_delta[A_AXIS] = (Z6(CEN) +Z2(__A) -Z1(__B) -Z1(__C) -Z2(_BC) +Z1(_CA) +Z1(_AB)) * h_factor;
  5053. e_delta[B_AXIS] = (Z6(CEN) -Z1(__A) +Z2(__B) -Z1(__C) +Z1(_BC) -Z2(_CA) +Z1(_AB)) * h_factor;
  5054. e_delta[C_AXIS] = (Z6(CEN) -Z1(__A) -Z1(__B) +Z2(__C) +Z1(_BC) +Z1(_CA) -Z2(_AB)) * h_factor;
  5055. r_delta = (Z6(CEN) -Z1(__A) -Z1(__B) -Z1(__C) -Z1(_BC) -Z1(_CA) -Z1(_AB)) * r_factor;
  5056. if (towers_set) {
  5057. t_delta[A_AXIS] = ( -Z4(__B) +Z4(__C) -Z4(_CA) +Z4(_AB)) * a_factor;
  5058. t_delta[B_AXIS] = ( Z4(__A) -Z4(__C) +Z4(_BC) -Z4(_AB)) * a_factor;
  5059. t_delta[C_AXIS] = (-Z4(__A) +Z4(__B) -Z4(_BC) +Z4(_CA) ) * a_factor;
  5060. e_delta[A_AXIS] += (t_delta[B_AXIS] - t_delta[C_AXIS]) / 4.5;
  5061. e_delta[B_AXIS] += (t_delta[C_AXIS] - t_delta[A_AXIS]) / 4.5;
  5062. e_delta[C_AXIS] += (t_delta[A_AXIS] - t_delta[B_AXIS]) / 4.5;
  5063. }
  5064. break;
  5065. }
  5066. LOOP_XYZ(axis) delta_endstop_adj[axis] += e_delta[axis];
  5067. delta_radius += r_delta;
  5068. LOOP_XYZ(axis) delta_tower_angle_trim[axis] += t_delta[axis];
  5069. }
  5070. else if (zero_std_dev >= test_precision) { // step one back
  5071. COPY(delta_endstop_adj, e_old);
  5072. delta_radius = dr_old;
  5073. delta_height = zh_old;
  5074. COPY(delta_tower_angle_trim, ta_old);
  5075. }
  5076. if (verbose_level != 0) { // !dry run
  5077. // normalise angles to least squares
  5078. if (_angle_results) {
  5079. float a_sum = 0.0;
  5080. LOOP_XYZ(axis) a_sum += delta_tower_angle_trim[axis];
  5081. LOOP_XYZ(axis) delta_tower_angle_trim[axis] -= a_sum / 3.0;
  5082. }
  5083. // adjust delta_height and endstops by the max amount
  5084. const float z_temp = MAX3(delta_endstop_adj[A_AXIS], delta_endstop_adj[B_AXIS], delta_endstop_adj[C_AXIS]);
  5085. delta_height -= z_temp;
  5086. LOOP_XYZ(axis) delta_endstop_adj[axis] -= z_temp;
  5087. }
  5088. recalc_delta_settings();
  5089. NOMORE(zero_std_dev_min, zero_std_dev);
  5090. // print report
  5091. if (verbose_level != 1)
  5092. print_G33_results(z_at_pt, _tower_results, _opposite_results);
  5093. if (verbose_level != 0) { // !dry run
  5094. if ((zero_std_dev >= test_precision && iterations > force_iterations) || zero_std_dev <= calibration_precision) { // end iterations
  5095. SERIAL_PROTOCOLPGM("Calibration OK");
  5096. SERIAL_PROTOCOL_SP(32);
  5097. #if HAS_BED_PROBE
  5098. if (zero_std_dev >= test_precision && !_1p_calibration)
  5099. SERIAL_PROTOCOLPGM("rolling back.");
  5100. else
  5101. #endif
  5102. {
  5103. SERIAL_PROTOCOLPGM("std dev:");
  5104. SERIAL_PROTOCOL_F(zero_std_dev_min, 3);
  5105. }
  5106. SERIAL_EOL();
  5107. char mess[21];
  5108. strcpy_P(mess, PSTR("Calibration sd:"));
  5109. if (zero_std_dev_min < 1)
  5110. sprintf_P(&mess[15], PSTR("0.%03i"), (int)round(zero_std_dev_min * 1000.0));
  5111. else
  5112. sprintf_P(&mess[15], PSTR("%03i.x"), (int)round(zero_std_dev_min));
  5113. lcd_setstatus(mess);
  5114. print_G33_settings(_endstop_results, _angle_results);
  5115. serialprintPGM(save_message);
  5116. SERIAL_EOL();
  5117. }
  5118. else { // !end iterations
  5119. char mess[15];
  5120. if (iterations < 31)
  5121. sprintf_P(mess, PSTR("Iteration : %02i"), (int)iterations);
  5122. else
  5123. strcpy_P(mess, PSTR("No convergence"));
  5124. SERIAL_PROTOCOL(mess);
  5125. SERIAL_PROTOCOL_SP(32);
  5126. SERIAL_PROTOCOLPGM("std dev:");
  5127. SERIAL_PROTOCOL_F(zero_std_dev, 3);
  5128. SERIAL_EOL();
  5129. lcd_setstatus(mess);
  5130. print_G33_settings(_endstop_results, _angle_results);
  5131. }
  5132. }
  5133. else { // dry run
  5134. const char *enddryrun = PSTR("End DRY-RUN");
  5135. serialprintPGM(enddryrun);
  5136. SERIAL_PROTOCOL_SP(35);
  5137. SERIAL_PROTOCOLPGM("std dev:");
  5138. SERIAL_PROTOCOL_F(zero_std_dev, 3);
  5139. SERIAL_EOL();
  5140. char mess[21];
  5141. strcpy_P(mess, enddryrun);
  5142. strcpy_P(&mess[11], PSTR(" sd:"));
  5143. if (zero_std_dev < 1)
  5144. sprintf_P(&mess[15], PSTR("0.%03i"), (int)round(zero_std_dev * 1000.0));
  5145. else
  5146. sprintf_P(&mess[15], PSTR("%03i.x"), (int)round(zero_std_dev));
  5147. lcd_setstatus(mess);
  5148. }
  5149. endstops.enable(true);
  5150. if (!home_delta())
  5151. return;
  5152. endstops.not_homing();
  5153. }
  5154. while (((zero_std_dev < test_precision && iterations < 31) || iterations <= force_iterations) && zero_std_dev > calibration_precision);
  5155. G33_CLEANUP();
  5156. }
  5157. #endif // DELTA_AUTO_CALIBRATION
  5158. #if ENABLED(G38_PROBE_TARGET)
  5159. static bool G38_run_probe() {
  5160. bool G38_pass_fail = false;
  5161. #if ENABLED(PROBE_DOUBLE_TOUCH)
  5162. // Get direction of move and retract
  5163. float retract_mm[XYZ];
  5164. LOOP_XYZ(i) {
  5165. float dist = destination[i] - current_position[i];
  5166. retract_mm[i] = FABS(dist) < G38_MINIMUM_MOVE ? 0 : home_bump_mm((AxisEnum)i) * (dist > 0 ? -1 : 1);
  5167. }
  5168. #endif
  5169. stepper.synchronize(); // wait until the machine is idle
  5170. // Move until destination reached or target hit
  5171. endstops.enable(true);
  5172. G38_move = true;
  5173. G38_endstop_hit = false;
  5174. prepare_move_to_destination();
  5175. stepper.synchronize();
  5176. G38_move = false;
  5177. endstops.hit_on_purpose();
  5178. set_current_from_steppers_for_axis(ALL_AXES);
  5179. SYNC_PLAN_POSITION_KINEMATIC();
  5180. if (G38_endstop_hit) {
  5181. G38_pass_fail = true;
  5182. #if ENABLED(PROBE_DOUBLE_TOUCH)
  5183. // Move away by the retract distance
  5184. set_destination_from_current();
  5185. LOOP_XYZ(i) destination[i] += retract_mm[i];
  5186. endstops.enable(false);
  5187. prepare_move_to_destination();
  5188. stepper.synchronize();
  5189. feedrate_mm_s /= 4;
  5190. // Bump the target more slowly
  5191. LOOP_XYZ(i) destination[i] -= retract_mm[i] * 2;
  5192. endstops.enable(true);
  5193. G38_move = true;
  5194. prepare_move_to_destination();
  5195. stepper.synchronize();
  5196. G38_move = false;
  5197. set_current_from_steppers_for_axis(ALL_AXES);
  5198. SYNC_PLAN_POSITION_KINEMATIC();
  5199. #endif
  5200. }
  5201. endstops.hit_on_purpose();
  5202. endstops.not_homing();
  5203. return G38_pass_fail;
  5204. }
  5205. /**
  5206. * G38.2 - probe toward workpiece, stop on contact, signal error if failure
  5207. * G38.3 - probe toward workpiece, stop on contact
  5208. *
  5209. * Like G28 except uses Z min probe for all axes
  5210. */
  5211. inline void gcode_G38(bool is_38_2) {
  5212. // Get X Y Z E F
  5213. gcode_get_destination();
  5214. setup_for_endstop_or_probe_move();
  5215. // If any axis has enough movement, do the move
  5216. LOOP_XYZ(i)
  5217. if (FABS(destination[i] - current_position[i]) >= G38_MINIMUM_MOVE) {
  5218. if (!parser.seenval('F')) feedrate_mm_s = homing_feedrate((AxisEnum)i);
  5219. // If G38.2 fails throw an error
  5220. if (!G38_run_probe() && is_38_2) {
  5221. SERIAL_ERROR_START();
  5222. SERIAL_ERRORLNPGM("Failed to reach target");
  5223. }
  5224. break;
  5225. }
  5226. clean_up_after_endstop_or_probe_move();
  5227. }
  5228. #endif // G38_PROBE_TARGET
  5229. #if HAS_MESH
  5230. /**
  5231. * G42: Move X & Y axes to mesh coordinates (I & J)
  5232. */
  5233. inline void gcode_G42() {
  5234. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  5235. if (axis_unhomed_error()) return;
  5236. #endif
  5237. if (IsRunning()) {
  5238. const bool hasI = parser.seenval('I');
  5239. const int8_t ix = RAW_X_POSITION(hasI ? parser.value_linear_units() : 0);
  5240. const bool hasJ = parser.seenval('J');
  5241. const int8_t iy = RAW_Y_POSITION(hasJ ? parser.value_linear_units() : 0);
  5242. if ((hasI && !WITHIN(ix, 0, GRID_MAX_POINTS_X - 1)) || (hasJ && !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1))) {
  5243. SERIAL_ECHOLNPGM(MSG_ERR_MESH_XY);
  5244. return;
  5245. }
  5246. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  5247. #define _GET_MESH_X(I) bilinear_start[X_AXIS] + I * bilinear_grid_spacing[X_AXIS]
  5248. #define _GET_MESH_Y(J) bilinear_start[Y_AXIS] + J * bilinear_grid_spacing[Y_AXIS]
  5249. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  5250. #define _GET_MESH_X(I) ubl.mesh_index_to_xpos(I)
  5251. #define _GET_MESH_Y(J) ubl.mesh_index_to_ypos(J)
  5252. #elif ENABLED(MESH_BED_LEVELING)
  5253. #define _GET_MESH_X(I) mbl.index_to_xpos[I]
  5254. #define _GET_MESH_Y(J) mbl.index_to_ypos[J]
  5255. #endif
  5256. set_destination_from_current();
  5257. if (hasI) destination[X_AXIS] = _GET_MESH_X(ix);
  5258. if (hasJ) destination[Y_AXIS] = _GET_MESH_Y(iy);
  5259. if (parser.boolval('P')) {
  5260. if (hasI) destination[X_AXIS] -= X_PROBE_OFFSET_FROM_EXTRUDER;
  5261. if (hasJ) destination[Y_AXIS] -= Y_PROBE_OFFSET_FROM_EXTRUDER;
  5262. }
  5263. const float fval = parser.linearval('F');
  5264. if (fval > 0.0) feedrate_mm_s = MMM_TO_MMS(fval);
  5265. // SCARA kinematic has "safe" XY raw moves
  5266. #if IS_SCARA
  5267. prepare_uninterpolated_move_to_destination();
  5268. #else
  5269. prepare_move_to_destination();
  5270. #endif
  5271. }
  5272. }
  5273. #endif // HAS_MESH
  5274. /**
  5275. * G92: Set current position to given X Y Z E
  5276. */
  5277. inline void gcode_G92() {
  5278. stepper.synchronize();
  5279. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  5280. switch (parser.subcode) {
  5281. case 1:
  5282. // Zero the G92 values and restore current position
  5283. #if !IS_SCARA
  5284. LOOP_XYZ(i) {
  5285. const float v = position_shift[i];
  5286. if (v) {
  5287. position_shift[i] = 0;
  5288. update_software_endstops((AxisEnum)i);
  5289. }
  5290. }
  5291. #endif // Not SCARA
  5292. return;
  5293. }
  5294. #endif
  5295. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  5296. #define IS_G92_0 (parser.subcode == 0)
  5297. #else
  5298. #define IS_G92_0 true
  5299. #endif
  5300. bool didXYZ = false, didE = false;
  5301. if (IS_G92_0) LOOP_XYZE(i) {
  5302. if (parser.seenval(axis_codes[i])) {
  5303. const float l = parser.value_axis_units((AxisEnum)i),
  5304. v = i == E_AXIS ? l : LOGICAL_TO_NATIVE(l, i),
  5305. d = v - current_position[i];
  5306. if (!NEAR_ZERO(d)) {
  5307. if (i == E_AXIS) didE = true; else didXYZ = true;
  5308. #if IS_SCARA
  5309. current_position[i] = v; // For SCARA just set the position directly
  5310. #elif HAS_POSITION_SHIFT
  5311. if (i == E_AXIS)
  5312. current_position[E_AXIS] = v; // When using coordinate spaces, only E is set directly
  5313. else {
  5314. position_shift[i] += d; // Other axes simply offset the coordinate space
  5315. update_software_endstops((AxisEnum)i);
  5316. }
  5317. #else
  5318. current_position[i] = v; // Without workspaces revert to Marlin 1.0 behavior
  5319. #endif
  5320. }
  5321. }
  5322. }
  5323. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  5324. // Apply workspace offset to the active coordinate system
  5325. if (WITHIN(active_coordinate_system, 0, MAX_COORDINATE_SYSTEMS - 1))
  5326. COPY(coordinate_system[active_coordinate_system], position_shift);
  5327. #endif
  5328. if (didXYZ)
  5329. SYNC_PLAN_POSITION_KINEMATIC();
  5330. else if (didE)
  5331. sync_plan_position_e();
  5332. report_current_position();
  5333. }
  5334. #if HAS_RESUME_CONTINUE
  5335. /**
  5336. * M0: Unconditional stop - Wait for user button press on LCD
  5337. * M1: Conditional stop - Wait for user button press on LCD
  5338. */
  5339. inline void gcode_M0_M1() {
  5340. const char * const args = parser.string_arg;
  5341. millis_t ms = 0;
  5342. bool hasP = false, hasS = false;
  5343. if (parser.seenval('P')) {
  5344. ms = parser.value_millis(); // milliseconds to wait
  5345. hasP = ms > 0;
  5346. }
  5347. if (parser.seenval('S')) {
  5348. ms = parser.value_millis_from_seconds(); // seconds to wait
  5349. hasS = ms > 0;
  5350. }
  5351. #if ENABLED(ULTIPANEL)
  5352. if (!hasP && !hasS && args && *args)
  5353. lcd_setstatus(args, true);
  5354. else {
  5355. LCD_MESSAGEPGM(MSG_USERWAIT);
  5356. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  5357. dontExpireStatus();
  5358. #endif
  5359. }
  5360. #else
  5361. if (!hasP && !hasS && args && *args) {
  5362. SERIAL_ECHO_START();
  5363. SERIAL_ECHOLN(args);
  5364. }
  5365. #endif
  5366. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5367. wait_for_user = true;
  5368. stepper.synchronize();
  5369. refresh_cmd_timeout();
  5370. if (ms > 0) {
  5371. ms += previous_cmd_ms; // wait until this time for a click
  5372. while (PENDING(millis(), ms) && wait_for_user) idle();
  5373. }
  5374. else {
  5375. #if ENABLED(ULTIPANEL)
  5376. if (lcd_detected()) {
  5377. while (wait_for_user) idle();
  5378. print_job_timer.isPaused() ? LCD_MESSAGEPGM(WELCOME_MSG) : LCD_MESSAGEPGM(MSG_RESUMING);
  5379. }
  5380. #else
  5381. while (wait_for_user) idle();
  5382. #endif
  5383. }
  5384. wait_for_user = false;
  5385. KEEPALIVE_STATE(IN_HANDLER);
  5386. }
  5387. #endif // HAS_RESUME_CONTINUE
  5388. #if ENABLED(SPINDLE_LASER_ENABLE)
  5389. /**
  5390. * M3: Spindle Clockwise
  5391. * M4: Spindle Counter-clockwise
  5392. *
  5393. * S0 turns off spindle.
  5394. *
  5395. * If no speed PWM output is defined then M3/M4 just turns it on.
  5396. *
  5397. * At least 12.8KHz (50Hz * 256) is needed for spindle PWM.
  5398. * Hardware PWM is required. ISRs are too slow.
  5399. *
  5400. * NOTE: WGM for timers 3, 4, and 5 must be either Mode 1 or Mode 5.
  5401. * No other settings give a PWM signal that goes from 0 to 5 volts.
  5402. *
  5403. * The system automatically sets WGM to Mode 1, so no special
  5404. * initialization is needed.
  5405. *
  5406. * WGM bits for timer 2 are automatically set by the system to
  5407. * Mode 1. This produces an acceptable 0 to 5 volt signal.
  5408. * No special initialization is needed.
  5409. *
  5410. * NOTE: A minimum PWM frequency of 50 Hz is needed. All prescaler
  5411. * factors for timers 2, 3, 4, and 5 are acceptable.
  5412. *
  5413. * SPINDLE_LASER_ENABLE_PIN needs an external pullup or it may power on
  5414. * the spindle/laser during power-up or when connecting to the host
  5415. * (usually goes through a reset which sets all I/O pins to tri-state)
  5416. *
  5417. * PWM duty cycle goes from 0 (off) to 255 (always on).
  5418. */
  5419. // Wait for spindle to come up to speed
  5420. inline void delay_for_power_up() { dwell(SPINDLE_LASER_POWERUP_DELAY); }
  5421. // Wait for spindle to stop turning
  5422. inline void delay_for_power_down() { dwell(SPINDLE_LASER_POWERDOWN_DELAY); }
  5423. /**
  5424. * ocr_val_mode() is used for debugging and to get the points needed to compute the RPM vs ocr_val line
  5425. *
  5426. * it accepts inputs of 0-255
  5427. */
  5428. inline void ocr_val_mode() {
  5429. uint8_t spindle_laser_power = parser.value_byte();
  5430. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low)
  5431. if (SPINDLE_LASER_PWM_INVERT) spindle_laser_power = 255 - spindle_laser_power;
  5432. analogWrite(SPINDLE_LASER_PWM_PIN, spindle_laser_power);
  5433. }
  5434. inline void gcode_M3_M4(bool is_M3) {
  5435. stepper.synchronize(); // wait until previous movement commands (G0/G0/G2/G3) have completed before playing with the spindle
  5436. #if SPINDLE_DIR_CHANGE
  5437. const bool rotation_dir = (is_M3 && !SPINDLE_INVERT_DIR || !is_M3 && SPINDLE_INVERT_DIR) ? HIGH : LOW;
  5438. if (SPINDLE_STOP_ON_DIR_CHANGE \
  5439. && READ(SPINDLE_LASER_ENABLE_PIN) == SPINDLE_LASER_ENABLE_INVERT \
  5440. && READ(SPINDLE_DIR_PIN) != rotation_dir
  5441. ) {
  5442. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // turn spindle off
  5443. delay_for_power_down();
  5444. }
  5445. WRITE(SPINDLE_DIR_PIN, rotation_dir);
  5446. #endif
  5447. /**
  5448. * Our final value for ocr_val is an unsigned 8 bit value between 0 and 255 which usually means uint8_t.
  5449. * Went to uint16_t because some of the uint8_t calculations would sometimes give 1000 0000 rather than 1111 1111.
  5450. * Then needed to AND the uint16_t result with 0x00FF to make sure we only wrote the byte of interest.
  5451. */
  5452. #if ENABLED(SPINDLE_LASER_PWM)
  5453. if (parser.seen('O')) ocr_val_mode();
  5454. else {
  5455. const float spindle_laser_power = parser.floatval('S');
  5456. if (spindle_laser_power == 0) {
  5457. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // turn spindle off (active low)
  5458. analogWrite(SPINDLE_LASER_PWM_PIN, SPINDLE_LASER_PWM_INVERT ? 255 : 0); // only write low byte
  5459. delay_for_power_down();
  5460. }
  5461. else {
  5462. int16_t ocr_val = (spindle_laser_power - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // convert RPM to PWM duty cycle
  5463. NOMORE(ocr_val, 255); // limit to max the Atmel PWM will support
  5464. if (spindle_laser_power <= SPEED_POWER_MIN)
  5465. ocr_val = (SPEED_POWER_MIN - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // minimum setting
  5466. if (spindle_laser_power >= SPEED_POWER_MAX)
  5467. ocr_val = (SPEED_POWER_MAX - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // limit to max RPM
  5468. if (SPINDLE_LASER_PWM_INVERT) ocr_val = 255 - ocr_val;
  5469. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low)
  5470. analogWrite(SPINDLE_LASER_PWM_PIN, ocr_val & 0xFF); // only write low byte
  5471. delay_for_power_up();
  5472. }
  5473. }
  5474. #else
  5475. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low) if spindle speed option not enabled
  5476. delay_for_power_up();
  5477. #endif
  5478. }
  5479. /**
  5480. * M5 turn off spindle
  5481. */
  5482. inline void gcode_M5() {
  5483. stepper.synchronize();
  5484. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT);
  5485. delay_for_power_down();
  5486. }
  5487. #endif // SPINDLE_LASER_ENABLE
  5488. /**
  5489. * M17: Enable power on all stepper motors
  5490. */
  5491. inline void gcode_M17() {
  5492. LCD_MESSAGEPGM(MSG_NO_MOVE);
  5493. enable_all_steppers();
  5494. }
  5495. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  5496. static float resume_position[XYZE];
  5497. static bool move_away_flag = false;
  5498. #if ENABLED(SDSUPPORT)
  5499. static bool sd_print_paused = false;
  5500. #endif
  5501. static void filament_change_beep(const int8_t max_beep_count, const bool init=false) {
  5502. static millis_t next_buzz = 0;
  5503. static int8_t runout_beep = 0;
  5504. if (init) next_buzz = runout_beep = 0;
  5505. const millis_t ms = millis();
  5506. if (ELAPSED(ms, next_buzz)) {
  5507. if (max_beep_count < 0 || runout_beep < max_beep_count + 5) { // Only beep as long as we're supposed to
  5508. next_buzz = ms + ((max_beep_count < 0 || runout_beep < max_beep_count) ? 2500 : 400);
  5509. BUZZ(300, 2000);
  5510. runout_beep++;
  5511. }
  5512. }
  5513. }
  5514. static void ensure_safe_temperature() {
  5515. bool heaters_heating = true;
  5516. wait_for_heatup = true; // M108 will clear this
  5517. while (wait_for_heatup && heaters_heating) {
  5518. idle();
  5519. heaters_heating = false;
  5520. HOTEND_LOOP() {
  5521. if (thermalManager.degTargetHotend(e) && abs(thermalManager.degHotend(e) - thermalManager.degTargetHotend(e)) > TEMP_HYSTERESIS) {
  5522. heaters_heating = true;
  5523. #if ENABLED(ULTIPANEL)
  5524. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_WAIT_FOR_NOZZLES_TO_HEAT);
  5525. #endif
  5526. break;
  5527. }
  5528. }
  5529. }
  5530. }
  5531. #if IS_KINEMATIC
  5532. #define RUNPLAN(RATE_MM_S) planner.buffer_line_kinematic(destination, RATE_MM_S, active_extruder)
  5533. #else
  5534. #define RUNPLAN(RATE_MM_S) buffer_line_to_destination(RATE_MM_S)
  5535. #endif
  5536. void do_pause_e_move(const float &length, const float fr) {
  5537. current_position[E_AXIS] += length / planner.e_factor[active_extruder];
  5538. set_destination_from_current();
  5539. RUNPLAN(fr);
  5540. stepper.synchronize();
  5541. }
  5542. static bool pause_print(const float &retract, const float &z_lift, const float &x_pos, const float &y_pos,
  5543. const float &unload_length = 0 , const int8_t max_beep_count = 0, const bool show_lcd = false
  5544. ) {
  5545. if (move_away_flag) return false; // already paused
  5546. if (!DEBUGGING(DRYRUN) && (unload_length != 0 || retract != 0)) {
  5547. #if ENABLED(PREVENT_COLD_EXTRUSION)
  5548. if (!thermalManager.allow_cold_extrude &&
  5549. thermalManager.degTargetHotend(active_extruder) < thermalManager.extrude_min_temp) {
  5550. SERIAL_ERROR_START();
  5551. SERIAL_ERRORLNPGM(MSG_TOO_COLD_FOR_M600);
  5552. return false;
  5553. }
  5554. #endif
  5555. ensure_safe_temperature(); // wait for extruder to heat up before unloading
  5556. }
  5557. // Indicate that the printer is paused
  5558. move_away_flag = true;
  5559. // Pause the print job and timer
  5560. #if ENABLED(SDSUPPORT)
  5561. if (card.sdprinting) {
  5562. card.pauseSDPrint();
  5563. sd_print_paused = true;
  5564. }
  5565. #endif
  5566. print_job_timer.pause();
  5567. // Show initial message and wait for synchronize steppers
  5568. if (show_lcd) {
  5569. #if ENABLED(ULTIPANEL)
  5570. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INIT);
  5571. #endif
  5572. }
  5573. // Save current position
  5574. stepper.synchronize();
  5575. COPY(resume_position, current_position);
  5576. // Initial retract before move to filament change position
  5577. if (retract) do_pause_e_move(retract, PAUSE_PARK_RETRACT_FEEDRATE);
  5578. // Lift Z axis
  5579. if (z_lift > 0)
  5580. do_blocking_move_to_z(current_position[Z_AXIS] + z_lift, PAUSE_PARK_Z_FEEDRATE);
  5581. // Move XY axes to filament exchange position
  5582. do_blocking_move_to_xy(x_pos, y_pos, PAUSE_PARK_XY_FEEDRATE);
  5583. if (unload_length != 0) {
  5584. if (show_lcd) {
  5585. #if ENABLED(ULTIPANEL)
  5586. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_UNLOAD);
  5587. idle();
  5588. #endif
  5589. }
  5590. // Unload filament
  5591. do_pause_e_move(unload_length, FILAMENT_CHANGE_UNLOAD_FEEDRATE);
  5592. }
  5593. if (show_lcd) {
  5594. #if ENABLED(ULTIPANEL)
  5595. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5596. #endif
  5597. }
  5598. #if HAS_BUZZER
  5599. filament_change_beep(max_beep_count, true);
  5600. #endif
  5601. idle();
  5602. // Disable extruders steppers for manual filament changing (only on boards that have separate ENABLE_PINS)
  5603. #if E0_ENABLE_PIN != X_ENABLE_PIN && E1_ENABLE_PIN != Y_ENABLE_PIN
  5604. disable_e_steppers();
  5605. safe_delay(100);
  5606. #endif
  5607. // Start the heater idle timers
  5608. const millis_t nozzle_timeout = (millis_t)(PAUSE_PARK_NOZZLE_TIMEOUT) * 1000UL;
  5609. HOTEND_LOOP()
  5610. thermalManager.start_heater_idle_timer(e, nozzle_timeout);
  5611. return true;
  5612. }
  5613. static void wait_for_filament_reload(const int8_t max_beep_count = 0) {
  5614. bool nozzle_timed_out = false;
  5615. // Wait for filament insert by user and press button
  5616. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5617. wait_for_user = true; // LCD click or M108 will clear this
  5618. while (wait_for_user) {
  5619. #if HAS_BUZZER
  5620. filament_change_beep(max_beep_count);
  5621. #endif
  5622. // If the nozzle has timed out, wait for the user to press the button to re-heat the nozzle, then
  5623. // re-heat the nozzle, re-show the insert screen, restart the idle timers, and start over
  5624. if (!nozzle_timed_out)
  5625. HOTEND_LOOP()
  5626. nozzle_timed_out |= thermalManager.is_heater_idle(e);
  5627. if (nozzle_timed_out) {
  5628. #if ENABLED(ULTIPANEL)
  5629. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_CLICK_TO_HEAT_NOZZLE);
  5630. #endif
  5631. // Wait for LCD click or M108
  5632. while (wait_for_user) idle(true);
  5633. // Re-enable the heaters if they timed out
  5634. HOTEND_LOOP() thermalManager.reset_heater_idle_timer(e);
  5635. // Wait for the heaters to reach the target temperatures
  5636. ensure_safe_temperature();
  5637. #if ENABLED(ULTIPANEL)
  5638. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5639. #endif
  5640. // Start the heater idle timers
  5641. const millis_t nozzle_timeout = (millis_t)(PAUSE_PARK_NOZZLE_TIMEOUT) * 1000UL;
  5642. HOTEND_LOOP()
  5643. thermalManager.start_heater_idle_timer(e, nozzle_timeout);
  5644. wait_for_user = true; /* Wait for user to load filament */
  5645. nozzle_timed_out = false;
  5646. #if HAS_BUZZER
  5647. filament_change_beep(max_beep_count, true);
  5648. #endif
  5649. }
  5650. idle(true);
  5651. }
  5652. KEEPALIVE_STATE(IN_HANDLER);
  5653. }
  5654. static void resume_print(const float &load_length = 0, const float &initial_extrude_length = 0, const int8_t max_beep_count = 0) {
  5655. bool nozzle_timed_out = false;
  5656. if (!move_away_flag) return;
  5657. // Re-enable the heaters if they timed out
  5658. HOTEND_LOOP() {
  5659. nozzle_timed_out |= thermalManager.is_heater_idle(e);
  5660. thermalManager.reset_heater_idle_timer(e);
  5661. }
  5662. if (nozzle_timed_out) ensure_safe_temperature();
  5663. #if HAS_BUZZER
  5664. filament_change_beep(max_beep_count, true);
  5665. #endif
  5666. set_destination_from_current();
  5667. if (load_length != 0) {
  5668. #if ENABLED(ULTIPANEL)
  5669. // Show "insert filament"
  5670. if (nozzle_timed_out)
  5671. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5672. #endif
  5673. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5674. wait_for_user = true; // LCD click or M108 will clear this
  5675. while (wait_for_user && nozzle_timed_out) {
  5676. #if HAS_BUZZER
  5677. filament_change_beep(max_beep_count);
  5678. #endif
  5679. idle(true);
  5680. }
  5681. KEEPALIVE_STATE(IN_HANDLER);
  5682. #if ENABLED(ULTIPANEL)
  5683. // Show "load" message
  5684. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_LOAD);
  5685. #endif
  5686. // Load filament
  5687. do_pause_e_move(load_length, FILAMENT_CHANGE_LOAD_FEEDRATE);
  5688. }
  5689. #if ENABLED(ULTIPANEL) && ADVANCED_PAUSE_EXTRUDE_LENGTH > 0
  5690. float extrude_length = initial_extrude_length;
  5691. do {
  5692. if (extrude_length > 0) {
  5693. // "Wait for filament extrude"
  5694. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_EXTRUDE);
  5695. // Extrude filament to get into hotend
  5696. do_pause_e_move(extrude_length, ADVANCED_PAUSE_EXTRUDE_FEEDRATE);
  5697. }
  5698. // Show "Extrude More" / "Resume" menu and wait for reply
  5699. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5700. wait_for_user = false;
  5701. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_OPTION);
  5702. while (advanced_pause_menu_response == ADVANCED_PAUSE_RESPONSE_WAIT_FOR) idle(true);
  5703. KEEPALIVE_STATE(IN_HANDLER);
  5704. extrude_length = ADVANCED_PAUSE_EXTRUDE_LENGTH;
  5705. // Keep looping if "Extrude More" was selected
  5706. } while (advanced_pause_menu_response == ADVANCED_PAUSE_RESPONSE_EXTRUDE_MORE);
  5707. #endif
  5708. #if ENABLED(ULTIPANEL)
  5709. // "Wait for print to resume"
  5710. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_RESUME);
  5711. #endif
  5712. // Set extruder to saved position
  5713. destination[E_AXIS] = current_position[E_AXIS] = resume_position[E_AXIS];
  5714. planner.set_e_position_mm(current_position[E_AXIS]);
  5715. // Move XY to starting position, then Z
  5716. do_blocking_move_to_xy(resume_position[X_AXIS], resume_position[Y_AXIS], PAUSE_PARK_XY_FEEDRATE);
  5717. do_blocking_move_to_z(resume_position[Z_AXIS], PAUSE_PARK_Z_FEEDRATE);
  5718. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  5719. filament_ran_out = false;
  5720. #endif
  5721. #if ENABLED(ULTIPANEL)
  5722. // Show status screen
  5723. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_STATUS);
  5724. #endif
  5725. #if ENABLED(SDSUPPORT)
  5726. if (sd_print_paused) {
  5727. card.startFileprint();
  5728. sd_print_paused = false;
  5729. }
  5730. #endif
  5731. move_away_flag = false;
  5732. }
  5733. #endif // ADVANCED_PAUSE_FEATURE
  5734. #if ENABLED(SDSUPPORT)
  5735. /**
  5736. * M20: List SD card to serial output
  5737. */
  5738. inline void gcode_M20() {
  5739. SERIAL_PROTOCOLLNPGM(MSG_BEGIN_FILE_LIST);
  5740. card.ls();
  5741. SERIAL_PROTOCOLLNPGM(MSG_END_FILE_LIST);
  5742. }
  5743. /**
  5744. * M21: Init SD Card
  5745. */
  5746. inline void gcode_M21() { card.initsd(); }
  5747. /**
  5748. * M22: Release SD Card
  5749. */
  5750. inline void gcode_M22() { card.release(); }
  5751. /**
  5752. * M23: Open a file
  5753. */
  5754. inline void gcode_M23() {
  5755. // Simplify3D includes the size, so zero out all spaces (#7227)
  5756. for (char *fn = parser.string_arg; *fn; ++fn) if (*fn == ' ') *fn = '\0';
  5757. card.openFile(parser.string_arg, true);
  5758. }
  5759. /**
  5760. * M24: Start or Resume SD Print
  5761. */
  5762. inline void gcode_M24() {
  5763. #if ENABLED(PARK_HEAD_ON_PAUSE)
  5764. resume_print();
  5765. #endif
  5766. card.startFileprint();
  5767. print_job_timer.start();
  5768. }
  5769. /**
  5770. * M25: Pause SD Print
  5771. */
  5772. inline void gcode_M25() {
  5773. card.pauseSDPrint();
  5774. print_job_timer.pause();
  5775. #if ENABLED(PARK_HEAD_ON_PAUSE)
  5776. enqueue_and_echo_commands_P(PSTR("M125")); // Must be enqueued with pauseSDPrint set to be last in the buffer
  5777. #endif
  5778. }
  5779. /**
  5780. * M26: Set SD Card file index
  5781. */
  5782. inline void gcode_M26() {
  5783. if (card.cardOK && parser.seenval('S'))
  5784. card.setIndex(parser.value_long());
  5785. }
  5786. /**
  5787. * M27: Get SD Card status
  5788. */
  5789. inline void gcode_M27() { card.getStatus(); }
  5790. /**
  5791. * M28: Start SD Write
  5792. */
  5793. inline void gcode_M28() { card.openFile(parser.string_arg, false); }
  5794. /**
  5795. * M29: Stop SD Write
  5796. * Processed in write to file routine above
  5797. */
  5798. inline void gcode_M29() {
  5799. // card.saving = false;
  5800. }
  5801. /**
  5802. * M30 <filename>: Delete SD Card file
  5803. */
  5804. inline void gcode_M30() {
  5805. if (card.cardOK) {
  5806. card.closefile();
  5807. card.removeFile(parser.string_arg);
  5808. }
  5809. }
  5810. #endif // SDSUPPORT
  5811. /**
  5812. * M31: Get the time since the start of SD Print (or last M109)
  5813. */
  5814. inline void gcode_M31() {
  5815. char buffer[21];
  5816. duration_t elapsed = print_job_timer.duration();
  5817. elapsed.toString(buffer);
  5818. lcd_setstatus(buffer);
  5819. SERIAL_ECHO_START();
  5820. SERIAL_ECHOLNPAIR("Print time: ", buffer);
  5821. }
  5822. #if ENABLED(SDSUPPORT)
  5823. /**
  5824. * M32: Select file and start SD Print
  5825. */
  5826. inline void gcode_M32() {
  5827. if (card.sdprinting)
  5828. stepper.synchronize();
  5829. char* namestartpos = parser.string_arg;
  5830. const bool call_procedure = parser.boolval('P');
  5831. if (card.cardOK) {
  5832. card.openFile(namestartpos, true, call_procedure);
  5833. if (parser.seenval('S'))
  5834. card.setIndex(parser.value_long());
  5835. card.startFileprint();
  5836. // Procedure calls count as normal print time.
  5837. if (!call_procedure) print_job_timer.start();
  5838. }
  5839. }
  5840. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  5841. /**
  5842. * M33: Get the long full path of a file or folder
  5843. *
  5844. * Parameters:
  5845. * <dospath> Case-insensitive DOS-style path to a file or folder
  5846. *
  5847. * Example:
  5848. * M33 miscel~1/armchair/armcha~1.gco
  5849. *
  5850. * Output:
  5851. * /Miscellaneous/Armchair/Armchair.gcode
  5852. */
  5853. inline void gcode_M33() {
  5854. card.printLongPath(parser.string_arg);
  5855. }
  5856. #endif
  5857. #if ENABLED(SDCARD_SORT_ALPHA) && ENABLED(SDSORT_GCODE)
  5858. /**
  5859. * M34: Set SD Card Sorting Options
  5860. */
  5861. inline void gcode_M34() {
  5862. if (parser.seen('S')) card.setSortOn(parser.value_bool());
  5863. if (parser.seenval('F')) {
  5864. const int v = parser.value_long();
  5865. card.setSortFolders(v < 0 ? -1 : v > 0 ? 1 : 0);
  5866. }
  5867. //if (parser.seen('R')) card.setSortReverse(parser.value_bool());
  5868. }
  5869. #endif // SDCARD_SORT_ALPHA && SDSORT_GCODE
  5870. /**
  5871. * M928: Start SD Write
  5872. */
  5873. inline void gcode_M928() {
  5874. card.openLogFile(parser.string_arg);
  5875. }
  5876. #endif // SDSUPPORT
  5877. /**
  5878. * Sensitive pin test for M42, M226
  5879. */
  5880. static bool pin_is_protected(const int8_t pin) {
  5881. static const int8_t sensitive_pins[] PROGMEM = SENSITIVE_PINS;
  5882. for (uint8_t i = 0; i < COUNT(sensitive_pins); i++)
  5883. if (pin == (int8_t)pgm_read_byte(&sensitive_pins[i])) return true;
  5884. return false;
  5885. }
  5886. /**
  5887. * M42: Change pin status via GCode
  5888. *
  5889. * P<pin> Pin number (LED if omitted)
  5890. * S<byte> Pin status from 0 - 255
  5891. */
  5892. inline void gcode_M42() {
  5893. if (!parser.seenval('S')) return;
  5894. const byte pin_status = parser.value_byte();
  5895. const int pin_number = parser.intval('P', LED_PIN);
  5896. if (pin_number < 0) return;
  5897. if (pin_is_protected(pin_number)) {
  5898. SERIAL_ERROR_START();
  5899. SERIAL_ERRORLNPGM(MSG_ERR_PROTECTED_PIN);
  5900. return;
  5901. }
  5902. pinMode(pin_number, OUTPUT);
  5903. digitalWrite(pin_number, pin_status);
  5904. analogWrite(pin_number, pin_status);
  5905. #if FAN_COUNT > 0
  5906. switch (pin_number) {
  5907. #if HAS_FAN0
  5908. case FAN_PIN: fanSpeeds[0] = pin_status; break;
  5909. #endif
  5910. #if HAS_FAN1
  5911. case FAN1_PIN: fanSpeeds[1] = pin_status; break;
  5912. #endif
  5913. #if HAS_FAN2
  5914. case FAN2_PIN: fanSpeeds[2] = pin_status; break;
  5915. #endif
  5916. }
  5917. #endif
  5918. }
  5919. #if ENABLED(PINS_DEBUGGING)
  5920. #include "pinsDebug.h"
  5921. inline void toggle_pins() {
  5922. const bool I_flag = parser.boolval('I');
  5923. const int repeat = parser.intval('R', 1),
  5924. start = parser.intval('S'),
  5925. end = parser.intval('E', NUM_DIGITAL_PINS - 1),
  5926. wait = parser.intval('W', 500);
  5927. for (uint8_t pin = start; pin <= end; pin++) {
  5928. //report_pin_state_extended(pin, I_flag, false);
  5929. if (!I_flag && pin_is_protected(pin)) {
  5930. report_pin_state_extended(pin, I_flag, true, "Untouched ");
  5931. SERIAL_EOL();
  5932. }
  5933. else {
  5934. report_pin_state_extended(pin, I_flag, true, "Pulsing ");
  5935. #if AVR_AT90USB1286_FAMILY // Teensy IDEs don't know about these pins so must use FASTIO
  5936. if (pin == TEENSY_E2) {
  5937. SET_OUTPUT(TEENSY_E2);
  5938. for (int16_t j = 0; j < repeat; j++) {
  5939. WRITE(TEENSY_E2, LOW); safe_delay(wait);
  5940. WRITE(TEENSY_E2, HIGH); safe_delay(wait);
  5941. WRITE(TEENSY_E2, LOW); safe_delay(wait);
  5942. }
  5943. }
  5944. else if (pin == TEENSY_E3) {
  5945. SET_OUTPUT(TEENSY_E3);
  5946. for (int16_t j = 0; j < repeat; j++) {
  5947. WRITE(TEENSY_E3, LOW); safe_delay(wait);
  5948. WRITE(TEENSY_E3, HIGH); safe_delay(wait);
  5949. WRITE(TEENSY_E3, LOW); safe_delay(wait);
  5950. }
  5951. }
  5952. else
  5953. #endif
  5954. {
  5955. pinMode(pin, OUTPUT);
  5956. for (int16_t j = 0; j < repeat; j++) {
  5957. digitalWrite(pin, 0); safe_delay(wait);
  5958. digitalWrite(pin, 1); safe_delay(wait);
  5959. digitalWrite(pin, 0); safe_delay(wait);
  5960. }
  5961. }
  5962. }
  5963. SERIAL_EOL();
  5964. }
  5965. SERIAL_ECHOLNPGM("Done.");
  5966. } // toggle_pins
  5967. inline void servo_probe_test() {
  5968. #if !(NUM_SERVOS > 0 && HAS_SERVO_0)
  5969. SERIAL_ERROR_START();
  5970. SERIAL_ERRORLNPGM("SERVO not setup");
  5971. #elif !HAS_Z_SERVO_ENDSTOP
  5972. SERIAL_ERROR_START();
  5973. SERIAL_ERRORLNPGM("Z_ENDSTOP_SERVO_NR not setup");
  5974. #else // HAS_Z_SERVO_ENDSTOP
  5975. const uint8_t probe_index = parser.byteval('P', Z_ENDSTOP_SERVO_NR);
  5976. SERIAL_PROTOCOLLNPGM("Servo probe test");
  5977. SERIAL_PROTOCOLLNPAIR(". using index: ", probe_index);
  5978. SERIAL_PROTOCOLLNPAIR(". deploy angle: ", z_servo_angle[0]);
  5979. SERIAL_PROTOCOLLNPAIR(". stow angle: ", z_servo_angle[1]);
  5980. bool probe_inverting;
  5981. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  5982. #define PROBE_TEST_PIN Z_MIN_PIN
  5983. SERIAL_PROTOCOLLNPAIR(". probe uses Z_MIN pin: ", PROBE_TEST_PIN);
  5984. SERIAL_PROTOCOLLNPGM(". uses Z_MIN_ENDSTOP_INVERTING (ignores Z_MIN_PROBE_ENDSTOP_INVERTING)");
  5985. SERIAL_PROTOCOLPGM(". Z_MIN_ENDSTOP_INVERTING: ");
  5986. #if Z_MIN_ENDSTOP_INVERTING
  5987. SERIAL_PROTOCOLLNPGM("true");
  5988. #else
  5989. SERIAL_PROTOCOLLNPGM("false");
  5990. #endif
  5991. probe_inverting = Z_MIN_ENDSTOP_INVERTING;
  5992. #elif ENABLED(Z_MIN_PROBE_ENDSTOP)
  5993. #define PROBE_TEST_PIN Z_MIN_PROBE_PIN
  5994. SERIAL_PROTOCOLLNPAIR(". probe uses Z_MIN_PROBE_PIN: ", PROBE_TEST_PIN);
  5995. SERIAL_PROTOCOLLNPGM(". uses Z_MIN_PROBE_ENDSTOP_INVERTING (ignores Z_MIN_ENDSTOP_INVERTING)");
  5996. SERIAL_PROTOCOLPGM(". Z_MIN_PROBE_ENDSTOP_INVERTING: ");
  5997. #if Z_MIN_PROBE_ENDSTOP_INVERTING
  5998. SERIAL_PROTOCOLLNPGM("true");
  5999. #else
  6000. SERIAL_PROTOCOLLNPGM("false");
  6001. #endif
  6002. probe_inverting = Z_MIN_PROBE_ENDSTOP_INVERTING;
  6003. #endif
  6004. SERIAL_PROTOCOLLNPGM(". deploy & stow 4 times");
  6005. SET_INPUT_PULLUP(PROBE_TEST_PIN);
  6006. bool deploy_state, stow_state;
  6007. for (uint8_t i = 0; i < 4; i++) {
  6008. MOVE_SERVO(probe_index, z_servo_angle[0]); //deploy
  6009. safe_delay(500);
  6010. deploy_state = READ(PROBE_TEST_PIN);
  6011. MOVE_SERVO(probe_index, z_servo_angle[1]); //stow
  6012. safe_delay(500);
  6013. stow_state = READ(PROBE_TEST_PIN);
  6014. }
  6015. if (probe_inverting != deploy_state) SERIAL_PROTOCOLLNPGM("WARNING - INVERTING setting probably backwards");
  6016. refresh_cmd_timeout();
  6017. if (deploy_state != stow_state) {
  6018. SERIAL_PROTOCOLLNPGM("BLTouch clone detected");
  6019. if (deploy_state) {
  6020. SERIAL_PROTOCOLLNPGM(". DEPLOYED state: HIGH (logic 1)");
  6021. SERIAL_PROTOCOLLNPGM(". STOWED (triggered) state: LOW (logic 0)");
  6022. }
  6023. else {
  6024. SERIAL_PROTOCOLLNPGM(". DEPLOYED state: LOW (logic 0)");
  6025. SERIAL_PROTOCOLLNPGM(". STOWED (triggered) state: HIGH (logic 1)");
  6026. }
  6027. #if ENABLED(BLTOUCH)
  6028. SERIAL_PROTOCOLLNPGM("ERROR: BLTOUCH enabled - set this device up as a Z Servo Probe with inverting as true.");
  6029. #endif
  6030. }
  6031. else { // measure active signal length
  6032. MOVE_SERVO(probe_index, z_servo_angle[0]); // deploy
  6033. safe_delay(500);
  6034. SERIAL_PROTOCOLLNPGM("please trigger probe");
  6035. uint16_t probe_counter = 0;
  6036. // Allow 30 seconds max for operator to trigger probe
  6037. for (uint16_t j = 0; j < 500 * 30 && probe_counter == 0 ; j++) {
  6038. safe_delay(2);
  6039. if (0 == j % (500 * 1)) // keep cmd_timeout happy
  6040. refresh_cmd_timeout();
  6041. if (deploy_state != READ(PROBE_TEST_PIN)) { // probe triggered
  6042. for (probe_counter = 1; probe_counter < 50 && deploy_state != READ(PROBE_TEST_PIN); ++probe_counter)
  6043. safe_delay(2);
  6044. if (probe_counter == 50)
  6045. SERIAL_PROTOCOLLNPGM("Z Servo Probe detected"); // >= 100mS active time
  6046. else if (probe_counter >= 2)
  6047. SERIAL_PROTOCOLLNPAIR("BLTouch compatible probe detected - pulse width (+/- 4mS): ", probe_counter * 2); // allow 4 - 100mS pulse
  6048. else
  6049. SERIAL_PROTOCOLLNPGM("noise detected - please re-run test"); // less than 2mS pulse
  6050. MOVE_SERVO(probe_index, z_servo_angle[1]); //stow
  6051. } // pulse detected
  6052. } // for loop waiting for trigger
  6053. if (probe_counter == 0) SERIAL_PROTOCOLLNPGM("trigger not detected");
  6054. } // measure active signal length
  6055. #endif
  6056. } // servo_probe_test
  6057. /**
  6058. * M43: Pin debug - report pin state, watch pins, toggle pins and servo probe test/report
  6059. *
  6060. * M43 - report name and state of pin(s)
  6061. * P<pin> Pin to read or watch. If omitted, reads all pins.
  6062. * I Flag to ignore Marlin's pin protection.
  6063. *
  6064. * M43 W - Watch pins -reporting changes- until reset, click, or M108.
  6065. * P<pin> Pin to read or watch. If omitted, read/watch all pins.
  6066. * I Flag to ignore Marlin's pin protection.
  6067. *
  6068. * M43 E<bool> - Enable / disable background endstop monitoring
  6069. * - Machine continues to operate
  6070. * - Reports changes to endstops
  6071. * - Toggles LED_PIN when an endstop changes
  6072. * - Can not reliably catch the 5mS pulse from BLTouch type probes
  6073. *
  6074. * M43 T - Toggle pin(s) and report which pin is being toggled
  6075. * S<pin> - Start Pin number. If not given, will default to 0
  6076. * L<pin> - End Pin number. If not given, will default to last pin defined for this board
  6077. * I<bool> - Flag to ignore Marlin's pin protection. Use with caution!!!!
  6078. * R - Repeat pulses on each pin this number of times before continueing to next pin
  6079. * W - Wait time (in miliseconds) between pulses. If not given will default to 500
  6080. *
  6081. * M43 S - Servo probe test
  6082. * P<index> - Probe index (optional - defaults to 0
  6083. */
  6084. inline void gcode_M43() {
  6085. if (parser.seen('T')) { // must be first or else its "S" and "E" parameters will execute endstop or servo test
  6086. toggle_pins();
  6087. return;
  6088. }
  6089. // Enable or disable endstop monitoring
  6090. if (parser.seen('E')) {
  6091. endstop_monitor_flag = parser.value_bool();
  6092. SERIAL_PROTOCOLPGM("endstop monitor ");
  6093. serialprintPGM(endstop_monitor_flag ? PSTR("en") : PSTR("dis"));
  6094. SERIAL_PROTOCOLLNPGM("abled");
  6095. return;
  6096. }
  6097. if (parser.seen('S')) {
  6098. servo_probe_test();
  6099. return;
  6100. }
  6101. // Get the range of pins to test or watch
  6102. const uint8_t first_pin = parser.byteval('P'),
  6103. last_pin = parser.seenval('P') ? first_pin : NUM_DIGITAL_PINS - 1;
  6104. if (first_pin > last_pin) return;
  6105. const bool ignore_protection = parser.boolval('I');
  6106. // Watch until click, M108, or reset
  6107. if (parser.boolval('W')) {
  6108. SERIAL_PROTOCOLLNPGM("Watching pins");
  6109. byte pin_state[last_pin - first_pin + 1];
  6110. for (int8_t pin = first_pin; pin <= last_pin; pin++) {
  6111. if (pin_is_protected(pin) && !ignore_protection) continue;
  6112. pinMode(pin, INPUT_PULLUP);
  6113. delay(1);
  6114. /*
  6115. if (IS_ANALOG(pin))
  6116. pin_state[pin - first_pin] = analogRead(pin - analogInputToDigitalPin(0)); // int16_t pin_state[...]
  6117. else
  6118. //*/
  6119. pin_state[pin - first_pin] = digitalRead(pin);
  6120. }
  6121. #if HAS_RESUME_CONTINUE
  6122. wait_for_user = true;
  6123. KEEPALIVE_STATE(PAUSED_FOR_USER);
  6124. #endif
  6125. for (;;) {
  6126. for (int8_t pin = first_pin; pin <= last_pin; pin++) {
  6127. if (pin_is_protected(pin) && !ignore_protection) continue;
  6128. const byte val =
  6129. /*
  6130. IS_ANALOG(pin)
  6131. ? analogRead(pin - analogInputToDigitalPin(0)) : // int16_t val
  6132. :
  6133. //*/
  6134. digitalRead(pin);
  6135. if (val != pin_state[pin - first_pin]) {
  6136. report_pin_state_extended(pin, ignore_protection, false);
  6137. pin_state[pin - first_pin] = val;
  6138. }
  6139. }
  6140. #if HAS_RESUME_CONTINUE
  6141. if (!wait_for_user) {
  6142. KEEPALIVE_STATE(IN_HANDLER);
  6143. break;
  6144. }
  6145. #endif
  6146. safe_delay(200);
  6147. }
  6148. return;
  6149. }
  6150. // Report current state of selected pin(s)
  6151. for (uint8_t pin = first_pin; pin <= last_pin; pin++)
  6152. report_pin_state_extended(pin, ignore_protection, true);
  6153. }
  6154. #endif // PINS_DEBUGGING
  6155. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  6156. /**
  6157. * M48: Z probe repeatability measurement function.
  6158. *
  6159. * Usage:
  6160. * M48 <P#> <X#> <Y#> <V#> <E> <L#>
  6161. * P = Number of sampled points (4-50, default 10)
  6162. * X = Sample X position
  6163. * Y = Sample Y position
  6164. * V = Verbose level (0-4, default=1)
  6165. * E = Engage Z probe for each reading
  6166. * L = Number of legs of movement before probe
  6167. * S = Schizoid (Or Star if you prefer)
  6168. *
  6169. * This function assumes the bed has been homed. Specifically, that a G28 command
  6170. * as been issued prior to invoking the M48 Z probe repeatability measurement function.
  6171. * Any information generated by a prior G29 Bed leveling command will be lost and need to be
  6172. * regenerated.
  6173. */
  6174. inline void gcode_M48() {
  6175. if (axis_unhomed_error()) return;
  6176. const int8_t verbose_level = parser.byteval('V', 1);
  6177. if (!WITHIN(verbose_level, 0, 4)) {
  6178. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-4).");
  6179. return;
  6180. }
  6181. if (verbose_level > 0)
  6182. SERIAL_PROTOCOLLNPGM("M48 Z-Probe Repeatability Test");
  6183. const int8_t n_samples = parser.byteval('P', 10);
  6184. if (!WITHIN(n_samples, 4, 50)) {
  6185. SERIAL_PROTOCOLLNPGM("?Sample size not plausible (4-50).");
  6186. return;
  6187. }
  6188. const bool stow_probe_after_each = parser.boolval('E');
  6189. float X_current = current_position[X_AXIS],
  6190. Y_current = current_position[Y_AXIS];
  6191. const float X_probe_location = parser.linearval('X', X_current + X_PROBE_OFFSET_FROM_EXTRUDER),
  6192. Y_probe_location = parser.linearval('Y', Y_current + Y_PROBE_OFFSET_FROM_EXTRUDER);
  6193. #if DISABLED(DELTA)
  6194. if (!WITHIN(X_probe_location, MIN_PROBE_X, MAX_PROBE_X)) {
  6195. out_of_range_error(PSTR("X"));
  6196. return;
  6197. }
  6198. if (!WITHIN(Y_probe_location, MIN_PROBE_Y, MAX_PROBE_Y)) {
  6199. out_of_range_error(PSTR("Y"));
  6200. return;
  6201. }
  6202. #else
  6203. if (!position_is_reachable_by_probe(X_probe_location, Y_probe_location)) {
  6204. SERIAL_PROTOCOLLNPGM("? (X,Y) location outside of probeable radius.");
  6205. return;
  6206. }
  6207. #endif
  6208. bool seen_L = parser.seen('L');
  6209. uint8_t n_legs = seen_L ? parser.value_byte() : 0;
  6210. if (n_legs > 15) {
  6211. SERIAL_PROTOCOLLNPGM("?Number of legs in movement not plausible (0-15).");
  6212. return;
  6213. }
  6214. if (n_legs == 1) n_legs = 2;
  6215. const bool schizoid_flag = parser.boolval('S');
  6216. if (schizoid_flag && !seen_L) n_legs = 7;
  6217. /**
  6218. * Now get everything to the specified probe point So we can safely do a
  6219. * probe to get us close to the bed. If the Z-Axis is far from the bed,
  6220. * we don't want to use that as a starting point for each probe.
  6221. */
  6222. if (verbose_level > 2)
  6223. SERIAL_PROTOCOLLNPGM("Positioning the probe...");
  6224. // Disable bed level correction in M48 because we want the raw data when we probe
  6225. #if HAS_LEVELING
  6226. const bool was_enabled = planner.leveling_active;
  6227. set_bed_leveling_enabled(false);
  6228. #endif
  6229. setup_for_endstop_or_probe_move();
  6230. double mean = 0.0, sigma = 0.0, min = 99999.9, max = -99999.9, sample_set[n_samples];
  6231. // Move to the first point, deploy, and probe
  6232. const float t = probe_pt(X_probe_location, Y_probe_location, stow_probe_after_each, verbose_level);
  6233. bool probing_good = !isnan(t);
  6234. if (probing_good) {
  6235. randomSeed(millis());
  6236. for (uint8_t n = 0; n < n_samples; n++) {
  6237. if (n_legs) {
  6238. const int dir = (random(0, 10) > 5.0) ? -1 : 1; // clockwise or counter clockwise
  6239. float angle = random(0.0, 360.0);
  6240. const float radius = random(
  6241. #if ENABLED(DELTA)
  6242. 0.1250000000 * (DELTA_PROBEABLE_RADIUS),
  6243. 0.3333333333 * (DELTA_PROBEABLE_RADIUS)
  6244. #else
  6245. 5.0, 0.125 * min(X_BED_SIZE, Y_BED_SIZE)
  6246. #endif
  6247. );
  6248. if (verbose_level > 3) {
  6249. SERIAL_ECHOPAIR("Starting radius: ", radius);
  6250. SERIAL_ECHOPAIR(" angle: ", angle);
  6251. SERIAL_ECHOPGM(" Direction: ");
  6252. if (dir > 0) SERIAL_ECHOPGM("Counter-");
  6253. SERIAL_ECHOLNPGM("Clockwise");
  6254. }
  6255. for (uint8_t l = 0; l < n_legs - 1; l++) {
  6256. double delta_angle;
  6257. if (schizoid_flag)
  6258. // The points of a 5 point star are 72 degrees apart. We need to
  6259. // skip a point and go to the next one on the star.
  6260. delta_angle = dir * 2.0 * 72.0;
  6261. else
  6262. // If we do this line, we are just trying to move further
  6263. // around the circle.
  6264. delta_angle = dir * (float) random(25, 45);
  6265. angle += delta_angle;
  6266. while (angle > 360.0) // We probably do not need to keep the angle between 0 and 2*PI, but the
  6267. angle -= 360.0; // Arduino documentation says the trig functions should not be given values
  6268. while (angle < 0.0) // outside of this range. It looks like they behave correctly with
  6269. angle += 360.0; // numbers outside of the range, but just to be safe we clamp them.
  6270. X_current = X_probe_location - (X_PROBE_OFFSET_FROM_EXTRUDER) + cos(RADIANS(angle)) * radius;
  6271. Y_current = Y_probe_location - (Y_PROBE_OFFSET_FROM_EXTRUDER) + sin(RADIANS(angle)) * radius;
  6272. #if DISABLED(DELTA)
  6273. X_current = constrain(X_current, X_MIN_POS, X_MAX_POS);
  6274. Y_current = constrain(Y_current, Y_MIN_POS, Y_MAX_POS);
  6275. #else
  6276. // If we have gone out too far, we can do a simple fix and scale the numbers
  6277. // back in closer to the origin.
  6278. while (!position_is_reachable_by_probe(X_current, Y_current)) {
  6279. X_current *= 0.8;
  6280. Y_current *= 0.8;
  6281. if (verbose_level > 3) {
  6282. SERIAL_ECHOPAIR("Pulling point towards center:", X_current);
  6283. SERIAL_ECHOLNPAIR(", ", Y_current);
  6284. }
  6285. }
  6286. #endif
  6287. if (verbose_level > 3) {
  6288. SERIAL_PROTOCOLPGM("Going to:");
  6289. SERIAL_ECHOPAIR(" X", X_current);
  6290. SERIAL_ECHOPAIR(" Y", Y_current);
  6291. SERIAL_ECHOLNPAIR(" Z", current_position[Z_AXIS]);
  6292. }
  6293. do_blocking_move_to_xy(X_current, Y_current);
  6294. } // n_legs loop
  6295. } // n_legs
  6296. // Probe a single point
  6297. sample_set[n] = probe_pt(X_probe_location, Y_probe_location, stow_probe_after_each, 0);
  6298. // Break the loop if the probe fails
  6299. probing_good = !isnan(sample_set[n]);
  6300. if (!probing_good) break;
  6301. /**
  6302. * Get the current mean for the data points we have so far
  6303. */
  6304. double sum = 0.0;
  6305. for (uint8_t j = 0; j <= n; j++) sum += sample_set[j];
  6306. mean = sum / (n + 1);
  6307. NOMORE(min, sample_set[n]);
  6308. NOLESS(max, sample_set[n]);
  6309. /**
  6310. * Now, use that mean to calculate the standard deviation for the
  6311. * data points we have so far
  6312. */
  6313. sum = 0.0;
  6314. for (uint8_t j = 0; j <= n; j++)
  6315. sum += sq(sample_set[j] - mean);
  6316. sigma = SQRT(sum / (n + 1));
  6317. if (verbose_level > 0) {
  6318. if (verbose_level > 1) {
  6319. SERIAL_PROTOCOL(n + 1);
  6320. SERIAL_PROTOCOLPGM(" of ");
  6321. SERIAL_PROTOCOL((int)n_samples);
  6322. SERIAL_PROTOCOLPGM(": z: ");
  6323. SERIAL_PROTOCOL_F(sample_set[n], 3);
  6324. if (verbose_level > 2) {
  6325. SERIAL_PROTOCOLPGM(" mean: ");
  6326. SERIAL_PROTOCOL_F(mean, 4);
  6327. SERIAL_PROTOCOLPGM(" sigma: ");
  6328. SERIAL_PROTOCOL_F(sigma, 6);
  6329. SERIAL_PROTOCOLPGM(" min: ");
  6330. SERIAL_PROTOCOL_F(min, 3);
  6331. SERIAL_PROTOCOLPGM(" max: ");
  6332. SERIAL_PROTOCOL_F(max, 3);
  6333. SERIAL_PROTOCOLPGM(" range: ");
  6334. SERIAL_PROTOCOL_F(max-min, 3);
  6335. }
  6336. SERIAL_EOL();
  6337. }
  6338. }
  6339. } // n_samples loop
  6340. }
  6341. STOW_PROBE();
  6342. if (probing_good) {
  6343. SERIAL_PROTOCOLLNPGM("Finished!");
  6344. if (verbose_level > 0) {
  6345. SERIAL_PROTOCOLPGM("Mean: ");
  6346. SERIAL_PROTOCOL_F(mean, 6);
  6347. SERIAL_PROTOCOLPGM(" Min: ");
  6348. SERIAL_PROTOCOL_F(min, 3);
  6349. SERIAL_PROTOCOLPGM(" Max: ");
  6350. SERIAL_PROTOCOL_F(max, 3);
  6351. SERIAL_PROTOCOLPGM(" Range: ");
  6352. SERIAL_PROTOCOL_F(max-min, 3);
  6353. SERIAL_EOL();
  6354. }
  6355. SERIAL_PROTOCOLPGM("Standard Deviation: ");
  6356. SERIAL_PROTOCOL_F(sigma, 6);
  6357. SERIAL_EOL();
  6358. SERIAL_EOL();
  6359. }
  6360. clean_up_after_endstop_or_probe_move();
  6361. // Re-enable bed level correction if it had been on
  6362. #if HAS_LEVELING
  6363. set_bed_leveling_enabled(was_enabled);
  6364. #endif
  6365. report_current_position();
  6366. }
  6367. #endif // Z_MIN_PROBE_REPEATABILITY_TEST
  6368. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
  6369. inline void gcode_M49() {
  6370. ubl.g26_debug_flag ^= true;
  6371. SERIAL_PROTOCOLPGM("UBL Debug Flag turned ");
  6372. serialprintPGM(ubl.g26_debug_flag ? PSTR("on.") : PSTR("off."));
  6373. }
  6374. #endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION
  6375. #if ENABLED(ULTRA_LCD) && ENABLED(LCD_SET_PROGRESS_MANUALLY)
  6376. /**
  6377. * M73: Set percentage complete (for display on LCD)
  6378. *
  6379. * Example:
  6380. * M73 P25 ; Set progress to 25%
  6381. *
  6382. * Notes:
  6383. * This has no effect during an SD print job
  6384. */
  6385. inline void gcode_M73() {
  6386. if (!IS_SD_PRINTING && parser.seen('P')) {
  6387. progress_bar_percent = parser.value_byte();
  6388. NOMORE(progress_bar_percent, 100);
  6389. }
  6390. }
  6391. #endif // ULTRA_LCD && LCD_SET_PROGRESS_MANUALLY
  6392. /**
  6393. * M75: Start print timer
  6394. */
  6395. inline void gcode_M75() { print_job_timer.start(); }
  6396. /**
  6397. * M76: Pause print timer
  6398. */
  6399. inline void gcode_M76() { print_job_timer.pause(); }
  6400. /**
  6401. * M77: Stop print timer
  6402. */
  6403. inline void gcode_M77() { print_job_timer.stop(); }
  6404. #if ENABLED(PRINTCOUNTER)
  6405. /**
  6406. * M78: Show print statistics
  6407. */
  6408. inline void gcode_M78() {
  6409. // "M78 S78" will reset the statistics
  6410. if (parser.intval('S') == 78)
  6411. print_job_timer.initStats();
  6412. else
  6413. print_job_timer.showStats();
  6414. }
  6415. #endif
  6416. /**
  6417. * M104: Set hot end temperature
  6418. */
  6419. inline void gcode_M104() {
  6420. if (get_target_extruder_from_command(104)) return;
  6421. if (DEBUGGING(DRYRUN)) return;
  6422. #if ENABLED(SINGLENOZZLE)
  6423. if (target_extruder != active_extruder) return;
  6424. #endif
  6425. if (parser.seenval('S')) {
  6426. const int16_t temp = parser.value_celsius();
  6427. thermalManager.setTargetHotend(temp, target_extruder);
  6428. #if ENABLED(DUAL_X_CARRIAGE)
  6429. if (dual_x_carriage_mode == DXC_DUPLICATION_MODE && target_extruder == 0)
  6430. thermalManager.setTargetHotend(temp ? temp + duplicate_extruder_temp_offset : 0, 1);
  6431. #endif
  6432. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  6433. /**
  6434. * Stop the timer at the end of print. Start is managed by 'heat and wait' M109.
  6435. * We use half EXTRUDE_MINTEMP here to allow nozzles to be put into hot
  6436. * standby mode, for instance in a dual extruder setup, without affecting
  6437. * the running print timer.
  6438. */
  6439. if (parser.value_celsius() <= (EXTRUDE_MINTEMP) / 2) {
  6440. print_job_timer.stop();
  6441. LCD_MESSAGEPGM(WELCOME_MSG);
  6442. }
  6443. #endif
  6444. if (parser.value_celsius() > thermalManager.degHotend(target_extruder))
  6445. lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
  6446. }
  6447. #if ENABLED(AUTOTEMP)
  6448. planner.autotemp_M104_M109();
  6449. #endif
  6450. }
  6451. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  6452. void print_heater_state(const float &c, const float &t,
  6453. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  6454. const float r,
  6455. #endif
  6456. const int8_t e=-2
  6457. ) {
  6458. #if !(HAS_TEMP_BED && HAS_TEMP_HOTEND) && HOTENDS <= 1
  6459. UNUSED(e);
  6460. #endif
  6461. SERIAL_PROTOCOLCHAR(' ');
  6462. SERIAL_PROTOCOLCHAR(
  6463. #if HAS_TEMP_BED && HAS_TEMP_HOTEND
  6464. e == -1 ? 'B' : 'T'
  6465. #elif HAS_TEMP_HOTEND
  6466. 'T'
  6467. #else
  6468. 'B'
  6469. #endif
  6470. );
  6471. #if HOTENDS > 1
  6472. if (e >= 0) SERIAL_PROTOCOLCHAR('0' + e);
  6473. #endif
  6474. SERIAL_PROTOCOLCHAR(':');
  6475. SERIAL_PROTOCOL(c);
  6476. SERIAL_PROTOCOLPAIR(" /" , t);
  6477. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  6478. SERIAL_PROTOCOLPAIR(" (", r / OVERSAMPLENR);
  6479. SERIAL_PROTOCOLCHAR(')');
  6480. #endif
  6481. }
  6482. void print_heaterstates() {
  6483. #if HAS_TEMP_HOTEND
  6484. print_heater_state(thermalManager.degHotend(target_extruder), thermalManager.degTargetHotend(target_extruder)
  6485. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  6486. , thermalManager.rawHotendTemp(target_extruder)
  6487. #endif
  6488. );
  6489. #endif
  6490. #if HAS_TEMP_BED
  6491. print_heater_state(thermalManager.degBed(), thermalManager.degTargetBed(),
  6492. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  6493. thermalManager.rawBedTemp(),
  6494. #endif
  6495. -1 // BED
  6496. );
  6497. #endif
  6498. #if HOTENDS > 1
  6499. HOTEND_LOOP() print_heater_state(thermalManager.degHotend(e), thermalManager.degTargetHotend(e),
  6500. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  6501. thermalManager.rawHotendTemp(e),
  6502. #endif
  6503. e
  6504. );
  6505. #endif
  6506. SERIAL_PROTOCOLPGM(" @:");
  6507. SERIAL_PROTOCOL(thermalManager.getHeaterPower(target_extruder));
  6508. #if HAS_TEMP_BED
  6509. SERIAL_PROTOCOLPGM(" B@:");
  6510. SERIAL_PROTOCOL(thermalManager.getHeaterPower(-1));
  6511. #endif
  6512. #if HOTENDS > 1
  6513. HOTEND_LOOP() {
  6514. SERIAL_PROTOCOLPAIR(" @", e);
  6515. SERIAL_PROTOCOLCHAR(':');
  6516. SERIAL_PROTOCOL(thermalManager.getHeaterPower(e));
  6517. }
  6518. #endif
  6519. }
  6520. #endif
  6521. /**
  6522. * M105: Read hot end and bed temperature
  6523. */
  6524. inline void gcode_M105() {
  6525. if (get_target_extruder_from_command(105)) return;
  6526. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  6527. SERIAL_PROTOCOLPGM(MSG_OK);
  6528. print_heaterstates();
  6529. #else // !HAS_TEMP_HOTEND && !HAS_TEMP_BED
  6530. SERIAL_ERROR_START();
  6531. SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
  6532. #endif
  6533. SERIAL_EOL();
  6534. }
  6535. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  6536. static uint8_t auto_report_temp_interval;
  6537. static millis_t next_temp_report_ms;
  6538. /**
  6539. * M155: Set temperature auto-report interval. M155 S<seconds>
  6540. */
  6541. inline void gcode_M155() {
  6542. if (parser.seenval('S')) {
  6543. auto_report_temp_interval = parser.value_byte();
  6544. NOMORE(auto_report_temp_interval, 60);
  6545. next_temp_report_ms = millis() + 1000UL * auto_report_temp_interval;
  6546. }
  6547. }
  6548. inline void auto_report_temperatures() {
  6549. if (auto_report_temp_interval && ELAPSED(millis(), next_temp_report_ms)) {
  6550. next_temp_report_ms = millis() + 1000UL * auto_report_temp_interval;
  6551. print_heaterstates();
  6552. SERIAL_EOL();
  6553. }
  6554. }
  6555. #endif // AUTO_REPORT_TEMPERATURES
  6556. #if FAN_COUNT > 0
  6557. /**
  6558. * M106: Set Fan Speed
  6559. *
  6560. * S<int> Speed between 0-255
  6561. * P<index> Fan index, if more than one fan
  6562. *
  6563. * With EXTRA_FAN_SPEED enabled:
  6564. *
  6565. * T<int> Restore/Use/Set Temporary Speed:
  6566. * 1 = Restore previous speed after T2
  6567. * 2 = Use temporary speed set with T3-255
  6568. * 3-255 = Set the speed for use with T2
  6569. */
  6570. inline void gcode_M106() {
  6571. const uint8_t p = parser.byteval('P');
  6572. if (p < FAN_COUNT) {
  6573. #if ENABLED(EXTRA_FAN_SPEED)
  6574. const int16_t t = parser.intval('T');
  6575. NOMORE(t, 255);
  6576. if (t > 0) {
  6577. switch (t) {
  6578. case 1:
  6579. fanSpeeds[p] = old_fanSpeeds[p];
  6580. break;
  6581. case 2:
  6582. old_fanSpeeds[p] = fanSpeeds[p];
  6583. fanSpeeds[p] = new_fanSpeeds[p];
  6584. break;
  6585. default:
  6586. new_fanSpeeds[p] = t;
  6587. break;
  6588. }
  6589. return;
  6590. }
  6591. #endif // EXTRA_FAN_SPEED
  6592. const uint16_t s = parser.ushortval('S', 255);
  6593. fanSpeeds[p] = min(s, 255);
  6594. }
  6595. }
  6596. /**
  6597. * M107: Fan Off
  6598. */
  6599. inline void gcode_M107() {
  6600. const uint16_t p = parser.ushortval('P');
  6601. if (p < FAN_COUNT) fanSpeeds[p] = 0;
  6602. }
  6603. #endif // FAN_COUNT > 0
  6604. #if DISABLED(EMERGENCY_PARSER)
  6605. /**
  6606. * M108: Stop the waiting for heaters in M109, M190, M303. Does not affect the target temperature.
  6607. */
  6608. inline void gcode_M108() { wait_for_heatup = false; }
  6609. /**
  6610. * M112: Emergency Stop
  6611. */
  6612. inline void gcode_M112() { kill(PSTR(MSG_KILLED)); }
  6613. /**
  6614. * M410: Quickstop - Abort all planned moves
  6615. *
  6616. * This will stop the carriages mid-move, so most likely they
  6617. * will be out of sync with the stepper position after this.
  6618. */
  6619. inline void gcode_M410() { quickstop_stepper(); }
  6620. #endif
  6621. /**
  6622. * M109: Sxxx Wait for extruder(s) to reach temperature. Waits only when heating.
  6623. * Rxxx Wait for extruder(s) to reach temperature. Waits when heating and cooling.
  6624. */
  6625. #ifndef MIN_COOLING_SLOPE_DEG
  6626. #define MIN_COOLING_SLOPE_DEG 1.50
  6627. #endif
  6628. #ifndef MIN_COOLING_SLOPE_TIME
  6629. #define MIN_COOLING_SLOPE_TIME 60
  6630. #endif
  6631. inline void gcode_M109() {
  6632. if (get_target_extruder_from_command(109)) return;
  6633. if (DEBUGGING(DRYRUN)) return;
  6634. #if ENABLED(SINGLENOZZLE)
  6635. if (target_extruder != active_extruder) return;
  6636. #endif
  6637. const bool no_wait_for_cooling = parser.seenval('S');
  6638. if (no_wait_for_cooling || parser.seenval('R')) {
  6639. const int16_t temp = parser.value_celsius();
  6640. thermalManager.setTargetHotend(temp, target_extruder);
  6641. #if ENABLED(DUAL_X_CARRIAGE)
  6642. if (dual_x_carriage_mode == DXC_DUPLICATION_MODE && target_extruder == 0)
  6643. thermalManager.setTargetHotend(temp ? temp + duplicate_extruder_temp_offset : 0, 1);
  6644. #endif
  6645. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  6646. /**
  6647. * Use half EXTRUDE_MINTEMP to allow nozzles to be put into hot
  6648. * standby mode, (e.g., in a dual extruder setup) without affecting
  6649. * the running print timer.
  6650. */
  6651. if (parser.value_celsius() <= (EXTRUDE_MINTEMP) / 2) {
  6652. print_job_timer.stop();
  6653. LCD_MESSAGEPGM(WELCOME_MSG);
  6654. }
  6655. else
  6656. print_job_timer.start();
  6657. #endif
  6658. if (thermalManager.isHeatingHotend(target_extruder)) lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
  6659. }
  6660. else return;
  6661. #if ENABLED(AUTOTEMP)
  6662. planner.autotemp_M104_M109();
  6663. #endif
  6664. #if TEMP_RESIDENCY_TIME > 0
  6665. millis_t residency_start_ms = 0;
  6666. // Loop until the temperature has stabilized
  6667. #define TEMP_CONDITIONS (!residency_start_ms || PENDING(now, residency_start_ms + (TEMP_RESIDENCY_TIME) * 1000UL))
  6668. #else
  6669. // Loop until the temperature is very close target
  6670. #define TEMP_CONDITIONS (wants_to_cool ? thermalManager.isCoolingHotend(target_extruder) : thermalManager.isHeatingHotend(target_extruder))
  6671. #endif
  6672. float target_temp = -1.0, old_temp = 9999.0;
  6673. bool wants_to_cool = false;
  6674. wait_for_heatup = true;
  6675. millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
  6676. #if DISABLED(BUSY_WHILE_HEATING)
  6677. KEEPALIVE_STATE(NOT_BUSY);
  6678. #endif
  6679. #if ENABLED(PRINTER_EVENT_LEDS)
  6680. const float start_temp = thermalManager.degHotend(target_extruder);
  6681. uint8_t old_blue = 0;
  6682. #endif
  6683. do {
  6684. // Target temperature might be changed during the loop
  6685. if (target_temp != thermalManager.degTargetHotend(target_extruder)) {
  6686. wants_to_cool = thermalManager.isCoolingHotend(target_extruder);
  6687. target_temp = thermalManager.degTargetHotend(target_extruder);
  6688. // Exit if S<lower>, continue if S<higher>, R<lower>, or R<higher>
  6689. if (no_wait_for_cooling && wants_to_cool) break;
  6690. }
  6691. now = millis();
  6692. if (ELAPSED(now, next_temp_ms)) { //Print temp & remaining time every 1s while waiting
  6693. next_temp_ms = now + 1000UL;
  6694. print_heaterstates();
  6695. #if TEMP_RESIDENCY_TIME > 0
  6696. SERIAL_PROTOCOLPGM(" W:");
  6697. if (residency_start_ms)
  6698. SERIAL_PROTOCOL(long((((TEMP_RESIDENCY_TIME) * 1000UL) - (now - residency_start_ms)) / 1000UL));
  6699. else
  6700. SERIAL_PROTOCOLCHAR('?');
  6701. #endif
  6702. SERIAL_EOL();
  6703. }
  6704. idle();
  6705. refresh_cmd_timeout(); // to prevent stepper_inactive_time from running out
  6706. const float temp = thermalManager.degHotend(target_extruder);
  6707. #if ENABLED(PRINTER_EVENT_LEDS)
  6708. // Gradually change LED strip from violet to red as nozzle heats up
  6709. if (!wants_to_cool) {
  6710. const uint8_t blue = map(constrain(temp, start_temp, target_temp), start_temp, target_temp, 255, 0);
  6711. if (blue != old_blue) {
  6712. old_blue = blue;
  6713. set_led_color(255, 0, blue
  6714. #if ENABLED(NEOPIXEL_LED)
  6715. , 0
  6716. , pixels.getBrightness()
  6717. #if ENABLED(NEOPIXEL_IS_SEQUENTIAL)
  6718. , true
  6719. #endif
  6720. #endif
  6721. );
  6722. }
  6723. }
  6724. #endif
  6725. #if TEMP_RESIDENCY_TIME > 0
  6726. const float temp_diff = FABS(target_temp - temp);
  6727. if (!residency_start_ms) {
  6728. // Start the TEMP_RESIDENCY_TIME timer when we reach target temp for the first time.
  6729. if (temp_diff < TEMP_WINDOW) residency_start_ms = now;
  6730. }
  6731. else if (temp_diff > TEMP_HYSTERESIS) {
  6732. // Restart the timer whenever the temperature falls outside the hysteresis.
  6733. residency_start_ms = now;
  6734. }
  6735. #endif
  6736. // Prevent a wait-forever situation if R is misused i.e. M109 R0
  6737. if (wants_to_cool) {
  6738. // break after MIN_COOLING_SLOPE_TIME seconds
  6739. // if the temperature did not drop at least MIN_COOLING_SLOPE_DEG
  6740. if (!next_cool_check_ms || ELAPSED(now, next_cool_check_ms)) {
  6741. if (old_temp - temp < MIN_COOLING_SLOPE_DEG) break;
  6742. next_cool_check_ms = now + 1000UL * MIN_COOLING_SLOPE_TIME;
  6743. old_temp = temp;
  6744. }
  6745. }
  6746. } while (wait_for_heatup && TEMP_CONDITIONS);
  6747. if (wait_for_heatup) {
  6748. LCD_MESSAGEPGM(MSG_HEATING_COMPLETE);
  6749. #if ENABLED(PRINTER_EVENT_LEDS)
  6750. #if ENABLED(RGB_LED) || ENABLED(BLINKM) || ENABLED(PCA9632) || ENABLED(RGBW_LED)
  6751. set_led_color(LED_WHITE);
  6752. #endif
  6753. #if ENABLED(NEOPIXEL_LED)
  6754. set_neopixel_color(pixels.Color(NEO_WHITE));
  6755. #endif
  6756. #endif
  6757. }
  6758. #if DISABLED(BUSY_WHILE_HEATING)
  6759. KEEPALIVE_STATE(IN_HANDLER);
  6760. #endif
  6761. }
  6762. #if HAS_TEMP_BED
  6763. #ifndef MIN_COOLING_SLOPE_DEG_BED
  6764. #define MIN_COOLING_SLOPE_DEG_BED 1.50
  6765. #endif
  6766. #ifndef MIN_COOLING_SLOPE_TIME_BED
  6767. #define MIN_COOLING_SLOPE_TIME_BED 60
  6768. #endif
  6769. /**
  6770. * M190: Sxxx Wait for bed current temp to reach target temp. Waits only when heating
  6771. * Rxxx Wait for bed current temp to reach target temp. Waits when heating and cooling
  6772. */
  6773. inline void gcode_M190() {
  6774. if (DEBUGGING(DRYRUN)) return;
  6775. LCD_MESSAGEPGM(MSG_BED_HEATING);
  6776. const bool no_wait_for_cooling = parser.seenval('S');
  6777. if (no_wait_for_cooling || parser.seenval('R')) {
  6778. thermalManager.setTargetBed(parser.value_celsius());
  6779. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  6780. if (parser.value_celsius() > BED_MINTEMP)
  6781. print_job_timer.start();
  6782. #endif
  6783. }
  6784. else return;
  6785. #if TEMP_BED_RESIDENCY_TIME > 0
  6786. millis_t residency_start_ms = 0;
  6787. // Loop until the temperature has stabilized
  6788. #define TEMP_BED_CONDITIONS (!residency_start_ms || PENDING(now, residency_start_ms + (TEMP_BED_RESIDENCY_TIME) * 1000UL))
  6789. #else
  6790. // Loop until the temperature is very close target
  6791. #define TEMP_BED_CONDITIONS (wants_to_cool ? thermalManager.isCoolingBed() : thermalManager.isHeatingBed())
  6792. #endif
  6793. float target_temp = -1.0, old_temp = 9999.0;
  6794. bool wants_to_cool = false;
  6795. wait_for_heatup = true;
  6796. millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
  6797. #if DISABLED(BUSY_WHILE_HEATING)
  6798. KEEPALIVE_STATE(NOT_BUSY);
  6799. #endif
  6800. target_extruder = active_extruder; // for print_heaterstates
  6801. #if ENABLED(PRINTER_EVENT_LEDS)
  6802. const float start_temp = thermalManager.degBed();
  6803. uint8_t old_red = 255;
  6804. #endif
  6805. do {
  6806. // Target temperature might be changed during the loop
  6807. if (target_temp != thermalManager.degTargetBed()) {
  6808. wants_to_cool = thermalManager.isCoolingBed();
  6809. target_temp = thermalManager.degTargetBed();
  6810. // Exit if S<lower>, continue if S<higher>, R<lower>, or R<higher>
  6811. if (no_wait_for_cooling && wants_to_cool) break;
  6812. }
  6813. now = millis();
  6814. if (ELAPSED(now, next_temp_ms)) { //Print Temp Reading every 1 second while heating up.
  6815. next_temp_ms = now + 1000UL;
  6816. print_heaterstates();
  6817. #if TEMP_BED_RESIDENCY_TIME > 0
  6818. SERIAL_PROTOCOLPGM(" W:");
  6819. if (residency_start_ms)
  6820. SERIAL_PROTOCOL(long((((TEMP_BED_RESIDENCY_TIME) * 1000UL) - (now - residency_start_ms)) / 1000UL));
  6821. else
  6822. SERIAL_PROTOCOLCHAR('?');
  6823. #endif
  6824. SERIAL_EOL();
  6825. }
  6826. idle();
  6827. refresh_cmd_timeout(); // to prevent stepper_inactive_time from running out
  6828. const float temp = thermalManager.degBed();
  6829. #if ENABLED(PRINTER_EVENT_LEDS)
  6830. // Gradually change LED strip from blue to violet as bed heats up
  6831. if (!wants_to_cool) {
  6832. const uint8_t red = map(constrain(temp, start_temp, target_temp), start_temp, target_temp, 0, 255);
  6833. if (red != old_red) {
  6834. old_red = red;
  6835. set_led_color(red, 0, 255
  6836. #if ENABLED(NEOPIXEL_LED)
  6837. , 0, pixels.getBrightness()
  6838. #if ENABLED(NEOPIXEL_IS_SEQUENTIAL)
  6839. , true
  6840. #endif
  6841. #endif
  6842. );
  6843. }
  6844. }
  6845. #endif
  6846. #if TEMP_BED_RESIDENCY_TIME > 0
  6847. const float temp_diff = FABS(target_temp - temp);
  6848. if (!residency_start_ms) {
  6849. // Start the TEMP_BED_RESIDENCY_TIME timer when we reach target temp for the first time.
  6850. if (temp_diff < TEMP_BED_WINDOW) residency_start_ms = now;
  6851. }
  6852. else if (temp_diff > TEMP_BED_HYSTERESIS) {
  6853. // Restart the timer whenever the temperature falls outside the hysteresis.
  6854. residency_start_ms = now;
  6855. }
  6856. #endif // TEMP_BED_RESIDENCY_TIME > 0
  6857. // Prevent a wait-forever situation if R is misused i.e. M190 R0
  6858. if (wants_to_cool) {
  6859. // Break after MIN_COOLING_SLOPE_TIME_BED seconds
  6860. // if the temperature did not drop at least MIN_COOLING_SLOPE_DEG_BED
  6861. if (!next_cool_check_ms || ELAPSED(now, next_cool_check_ms)) {
  6862. if (old_temp - temp < MIN_COOLING_SLOPE_DEG_BED) break;
  6863. next_cool_check_ms = now + 1000UL * MIN_COOLING_SLOPE_TIME_BED;
  6864. old_temp = temp;
  6865. }
  6866. }
  6867. } while (wait_for_heatup && TEMP_BED_CONDITIONS);
  6868. if (wait_for_heatup) LCD_MESSAGEPGM(MSG_BED_DONE);
  6869. #if DISABLED(BUSY_WHILE_HEATING)
  6870. KEEPALIVE_STATE(IN_HANDLER);
  6871. #endif
  6872. }
  6873. #endif // HAS_TEMP_BED
  6874. /**
  6875. * M110: Set Current Line Number
  6876. */
  6877. inline void gcode_M110() {
  6878. if (parser.seenval('N')) gcode_LastN = parser.value_long();
  6879. }
  6880. /**
  6881. * M111: Set the debug level
  6882. */
  6883. inline void gcode_M111() {
  6884. if (parser.seen('S')) marlin_debug_flags = parser.byteval('S');
  6885. const static char str_debug_1[] PROGMEM = MSG_DEBUG_ECHO,
  6886. str_debug_2[] PROGMEM = MSG_DEBUG_INFO,
  6887. str_debug_4[] PROGMEM = MSG_DEBUG_ERRORS,
  6888. str_debug_8[] PROGMEM = MSG_DEBUG_DRYRUN,
  6889. str_debug_16[] PROGMEM = MSG_DEBUG_COMMUNICATION
  6890. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6891. , str_debug_32[] PROGMEM = MSG_DEBUG_LEVELING
  6892. #endif
  6893. ;
  6894. const static char* const debug_strings[] PROGMEM = {
  6895. str_debug_1, str_debug_2, str_debug_4, str_debug_8, str_debug_16
  6896. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6897. , str_debug_32
  6898. #endif
  6899. };
  6900. SERIAL_ECHO_START();
  6901. SERIAL_ECHOPGM(MSG_DEBUG_PREFIX);
  6902. if (marlin_debug_flags) {
  6903. uint8_t comma = 0;
  6904. for (uint8_t i = 0; i < COUNT(debug_strings); i++) {
  6905. if (TEST(marlin_debug_flags, i)) {
  6906. if (comma++) SERIAL_CHAR(',');
  6907. serialprintPGM((char*)pgm_read_word(&debug_strings[i]));
  6908. }
  6909. }
  6910. }
  6911. else {
  6912. SERIAL_ECHOPGM(MSG_DEBUG_OFF);
  6913. }
  6914. SERIAL_EOL();
  6915. }
  6916. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  6917. /**
  6918. * M113: Get or set Host Keepalive interval (0 to disable)
  6919. *
  6920. * S<seconds> Optional. Set the keepalive interval.
  6921. */
  6922. inline void gcode_M113() {
  6923. if (parser.seenval('S')) {
  6924. host_keepalive_interval = parser.value_byte();
  6925. NOMORE(host_keepalive_interval, 60);
  6926. }
  6927. else {
  6928. SERIAL_ECHO_START();
  6929. SERIAL_ECHOLNPAIR("M113 S", (unsigned long)host_keepalive_interval);
  6930. }
  6931. }
  6932. #endif
  6933. #if ENABLED(BARICUDA)
  6934. #if HAS_HEATER_1
  6935. /**
  6936. * M126: Heater 1 valve open
  6937. */
  6938. inline void gcode_M126() { baricuda_valve_pressure = parser.byteval('S', 255); }
  6939. /**
  6940. * M127: Heater 1 valve close
  6941. */
  6942. inline void gcode_M127() { baricuda_valve_pressure = 0; }
  6943. #endif
  6944. #if HAS_HEATER_2
  6945. /**
  6946. * M128: Heater 2 valve open
  6947. */
  6948. inline void gcode_M128() { baricuda_e_to_p_pressure = parser.byteval('S', 255); }
  6949. /**
  6950. * M129: Heater 2 valve close
  6951. */
  6952. inline void gcode_M129() { baricuda_e_to_p_pressure = 0; }
  6953. #endif
  6954. #endif // BARICUDA
  6955. /**
  6956. * M140: Set bed temperature
  6957. */
  6958. inline void gcode_M140() {
  6959. if (DEBUGGING(DRYRUN)) return;
  6960. if (parser.seenval('S')) thermalManager.setTargetBed(parser.value_celsius());
  6961. }
  6962. #if ENABLED(ULTIPANEL)
  6963. /**
  6964. * M145: Set the heatup state for a material in the LCD menu
  6965. *
  6966. * S<material> (0=PLA, 1=ABS)
  6967. * H<hotend temp>
  6968. * B<bed temp>
  6969. * F<fan speed>
  6970. */
  6971. inline void gcode_M145() {
  6972. const uint8_t material = (uint8_t)parser.intval('S');
  6973. if (material >= COUNT(lcd_preheat_hotend_temp)) {
  6974. SERIAL_ERROR_START();
  6975. SERIAL_ERRORLNPGM(MSG_ERR_MATERIAL_INDEX);
  6976. }
  6977. else {
  6978. int v;
  6979. if (parser.seenval('H')) {
  6980. v = parser.value_int();
  6981. lcd_preheat_hotend_temp[material] = constrain(v, EXTRUDE_MINTEMP, HEATER_0_MAXTEMP - 15);
  6982. }
  6983. if (parser.seenval('F')) {
  6984. v = parser.value_int();
  6985. lcd_preheat_fan_speed[material] = constrain(v, 0, 255);
  6986. }
  6987. #if TEMP_SENSOR_BED != 0
  6988. if (parser.seenval('B')) {
  6989. v = parser.value_int();
  6990. lcd_preheat_bed_temp[material] = constrain(v, BED_MINTEMP, BED_MAXTEMP - 15);
  6991. }
  6992. #endif
  6993. }
  6994. }
  6995. #endif // ULTIPANEL
  6996. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  6997. /**
  6998. * M149: Set temperature units
  6999. */
  7000. inline void gcode_M149() {
  7001. if (parser.seenval('C')) parser.set_input_temp_units(TEMPUNIT_C);
  7002. else if (parser.seenval('K')) parser.set_input_temp_units(TEMPUNIT_K);
  7003. else if (parser.seenval('F')) parser.set_input_temp_units(TEMPUNIT_F);
  7004. }
  7005. #endif
  7006. #if HAS_POWER_SWITCH
  7007. /**
  7008. * M80 : Turn on the Power Supply
  7009. * M80 S : Report the current state and exit
  7010. */
  7011. inline void gcode_M80() {
  7012. // S: Report the current power supply state and exit
  7013. if (parser.seen('S')) {
  7014. serialprintPGM(powersupply_on ? PSTR("PS:1\n") : PSTR("PS:0\n"));
  7015. return;
  7016. }
  7017. OUT_WRITE(PS_ON_PIN, PS_ON_AWAKE); // GND
  7018. /**
  7019. * If you have a switch on suicide pin, this is useful
  7020. * if you want to start another print with suicide feature after
  7021. * a print without suicide...
  7022. */
  7023. #if HAS_SUICIDE
  7024. OUT_WRITE(SUICIDE_PIN, HIGH);
  7025. #endif
  7026. #if ENABLED(HAVE_TMC2130)
  7027. delay(100);
  7028. tmc2130_init(); // Settings only stick when the driver has power
  7029. #endif
  7030. powersupply_on = true;
  7031. #if ENABLED(ULTIPANEL)
  7032. LCD_MESSAGEPGM(WELCOME_MSG);
  7033. #endif
  7034. }
  7035. #endif // HAS_POWER_SWITCH
  7036. /**
  7037. * M81: Turn off Power, including Power Supply, if there is one.
  7038. *
  7039. * This code should ALWAYS be available for EMERGENCY SHUTDOWN!
  7040. */
  7041. inline void gcode_M81() {
  7042. thermalManager.disable_all_heaters();
  7043. stepper.finish_and_disable();
  7044. #if FAN_COUNT > 0
  7045. for (uint8_t i = 0; i < FAN_COUNT; i++) fanSpeeds[i] = 0;
  7046. #if ENABLED(PROBING_FANS_OFF)
  7047. fans_paused = false;
  7048. ZERO(paused_fanSpeeds);
  7049. #endif
  7050. #endif
  7051. safe_delay(1000); // Wait 1 second before switching off
  7052. #if HAS_SUICIDE
  7053. stepper.synchronize();
  7054. suicide();
  7055. #elif HAS_POWER_SWITCH
  7056. OUT_WRITE(PS_ON_PIN, PS_ON_ASLEEP);
  7057. powersupply_on = false;
  7058. #endif
  7059. #if ENABLED(ULTIPANEL)
  7060. LCD_MESSAGEPGM(MACHINE_NAME " " MSG_OFF ".");
  7061. #endif
  7062. }
  7063. /**
  7064. * M82: Set E codes absolute (default)
  7065. */
  7066. inline void gcode_M82() { axis_relative_modes[E_AXIS] = false; }
  7067. /**
  7068. * M83: Set E codes relative while in Absolute Coordinates (G90) mode
  7069. */
  7070. inline void gcode_M83() { axis_relative_modes[E_AXIS] = true; }
  7071. /**
  7072. * M18, M84: Disable stepper motors
  7073. */
  7074. inline void gcode_M18_M84() {
  7075. if (parser.seenval('S')) {
  7076. stepper_inactive_time = parser.value_millis_from_seconds();
  7077. }
  7078. else {
  7079. bool all_axis = !((parser.seen('X')) || (parser.seen('Y')) || (parser.seen('Z')) || (parser.seen('E')));
  7080. if (all_axis) {
  7081. stepper.finish_and_disable();
  7082. }
  7083. else {
  7084. stepper.synchronize();
  7085. if (parser.seen('X')) disable_X();
  7086. if (parser.seen('Y')) disable_Y();
  7087. if (parser.seen('Z')) disable_Z();
  7088. #if E0_ENABLE_PIN != X_ENABLE_PIN && E1_ENABLE_PIN != Y_ENABLE_PIN // Only enable on boards that have separate ENABLE_PINS
  7089. if (parser.seen('E')) disable_e_steppers();
  7090. #endif
  7091. }
  7092. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTRA_LCD) // Only needed with an LCD
  7093. ubl_lcd_map_control = defer_return_to_status = false;
  7094. #endif
  7095. }
  7096. }
  7097. /**
  7098. * M85: Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
  7099. */
  7100. inline void gcode_M85() {
  7101. if (parser.seen('S')) max_inactive_time = parser.value_millis_from_seconds();
  7102. }
  7103. /**
  7104. * Multi-stepper support for M92, M201, M203
  7105. */
  7106. #if ENABLED(DISTINCT_E_FACTORS)
  7107. #define GET_TARGET_EXTRUDER(CMD) if (get_target_extruder_from_command(CMD)) return
  7108. #define TARGET_EXTRUDER target_extruder
  7109. #else
  7110. #define GET_TARGET_EXTRUDER(CMD) NOOP
  7111. #define TARGET_EXTRUDER 0
  7112. #endif
  7113. /**
  7114. * M92: Set axis steps-per-unit for one or more axes, X, Y, Z, and E.
  7115. * (Follows the same syntax as G92)
  7116. *
  7117. * With multiple extruders use T to specify which one.
  7118. */
  7119. inline void gcode_M92() {
  7120. GET_TARGET_EXTRUDER(92);
  7121. LOOP_XYZE(i) {
  7122. if (parser.seen(axis_codes[i])) {
  7123. if (i == E_AXIS) {
  7124. const float value = parser.value_per_axis_unit((AxisEnum)(E_AXIS + TARGET_EXTRUDER));
  7125. if (value < 20.0) {
  7126. float factor = planner.axis_steps_per_mm[E_AXIS + TARGET_EXTRUDER] / value; // increase e constants if M92 E14 is given for netfab.
  7127. planner.max_jerk[E_AXIS] *= factor;
  7128. planner.max_feedrate_mm_s[E_AXIS + TARGET_EXTRUDER] *= factor;
  7129. planner.max_acceleration_steps_per_s2[E_AXIS + TARGET_EXTRUDER] *= factor;
  7130. }
  7131. planner.axis_steps_per_mm[E_AXIS + TARGET_EXTRUDER] = value;
  7132. }
  7133. else {
  7134. planner.axis_steps_per_mm[i] = parser.value_per_axis_unit((AxisEnum)i);
  7135. }
  7136. }
  7137. }
  7138. planner.refresh_positioning();
  7139. }
  7140. /**
  7141. * Output the current position to serial
  7142. */
  7143. void report_current_position() {
  7144. SERIAL_PROTOCOLPGM("X:");
  7145. SERIAL_PROTOCOL(LOGICAL_X_POSITION(current_position[X_AXIS]));
  7146. SERIAL_PROTOCOLPGM(" Y:");
  7147. SERIAL_PROTOCOL(LOGICAL_Y_POSITION(current_position[Y_AXIS]));
  7148. SERIAL_PROTOCOLPGM(" Z:");
  7149. SERIAL_PROTOCOL(LOGICAL_Z_POSITION(current_position[Z_AXIS]));
  7150. SERIAL_PROTOCOLPGM(" E:");
  7151. SERIAL_PROTOCOL(current_position[E_AXIS]);
  7152. stepper.report_positions();
  7153. #if IS_SCARA
  7154. SERIAL_PROTOCOLPAIR("SCARA Theta:", stepper.get_axis_position_degrees(A_AXIS));
  7155. SERIAL_PROTOCOLLNPAIR(" Psi+Theta:", stepper.get_axis_position_degrees(B_AXIS));
  7156. SERIAL_EOL();
  7157. #endif
  7158. }
  7159. #ifdef M114_DETAIL
  7160. void report_xyze(const float pos[XYZE], const uint8_t n = 4, const uint8_t precision = 3) {
  7161. char str[12];
  7162. for (uint8_t i = 0; i < n; i++) {
  7163. SERIAL_CHAR(' ');
  7164. SERIAL_CHAR(axis_codes[i]);
  7165. SERIAL_CHAR(':');
  7166. SERIAL_PROTOCOL(dtostrf(pos[i], 8, precision, str));
  7167. }
  7168. SERIAL_EOL();
  7169. }
  7170. inline void report_xyz(const float pos[XYZ]) { report_xyze(pos, 3); }
  7171. void report_current_position_detail() {
  7172. stepper.synchronize();
  7173. SERIAL_PROTOCOLPGM("\nLogical:");
  7174. const float logical[XYZ] = {
  7175. LOGICAL_X_POSITION(current_position[X_AXIS]),
  7176. LOGICAL_Y_POSITION(current_position[Y_AXIS]),
  7177. LOGICAL_Z_POSITION(current_position[Z_AXIS])
  7178. };
  7179. report_xyze(logical);
  7180. SERIAL_PROTOCOLPGM("Raw: ");
  7181. report_xyz(current_position);
  7182. SERIAL_PROTOCOLPGM("Leveled:");
  7183. float leveled[XYZ] = { current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS] };
  7184. planner.apply_leveling(leveled);
  7185. report_xyz(leveled);
  7186. SERIAL_PROTOCOLPGM("UnLevel:");
  7187. float unleveled[XYZ] = { leveled[X_AXIS], leveled[Y_AXIS], leveled[Z_AXIS] };
  7188. planner.unapply_leveling(unleveled);
  7189. report_xyz(unleveled);
  7190. #if IS_KINEMATIC
  7191. #if IS_SCARA
  7192. SERIAL_PROTOCOLPGM("ScaraK: ");
  7193. #else
  7194. SERIAL_PROTOCOLPGM("DeltaK: ");
  7195. #endif
  7196. inverse_kinematics(leveled); // writes delta[]
  7197. report_xyz(delta);
  7198. #endif
  7199. SERIAL_PROTOCOLPGM("Stepper:");
  7200. const float step_count[XYZE] = { stepper.position(X_AXIS), stepper.position(Y_AXIS), stepper.position(Z_AXIS), stepper.position(E_AXIS) };
  7201. report_xyze(step_count, 4, 0);
  7202. #if IS_SCARA
  7203. const float deg[XYZ] = {
  7204. stepper.get_axis_position_degrees(A_AXIS),
  7205. stepper.get_axis_position_degrees(B_AXIS)
  7206. };
  7207. SERIAL_PROTOCOLPGM("Degrees:");
  7208. report_xyze(deg, 2);
  7209. #endif
  7210. SERIAL_PROTOCOLPGM("FromStp:");
  7211. get_cartesian_from_steppers(); // writes cartes[XYZ] (with forward kinematics)
  7212. const float from_steppers[XYZE] = { cartes[X_AXIS], cartes[Y_AXIS], cartes[Z_AXIS], stepper.get_axis_position_mm(E_AXIS) };
  7213. report_xyze(from_steppers);
  7214. const float diff[XYZE] = {
  7215. from_steppers[X_AXIS] - leveled[X_AXIS],
  7216. from_steppers[Y_AXIS] - leveled[Y_AXIS],
  7217. from_steppers[Z_AXIS] - leveled[Z_AXIS],
  7218. from_steppers[E_AXIS] - current_position[E_AXIS]
  7219. };
  7220. SERIAL_PROTOCOLPGM("Differ: ");
  7221. report_xyze(diff);
  7222. }
  7223. #endif // M114_DETAIL
  7224. /**
  7225. * M114: Report current position to host
  7226. */
  7227. inline void gcode_M114() {
  7228. #ifdef M114_DETAIL
  7229. if (parser.seen('D')) {
  7230. report_current_position_detail();
  7231. return;
  7232. }
  7233. #endif
  7234. stepper.synchronize();
  7235. report_current_position();
  7236. }
  7237. /**
  7238. * M115: Capabilities string
  7239. */
  7240. inline void gcode_M115() {
  7241. SERIAL_PROTOCOLLNPGM(MSG_M115_REPORT);
  7242. #if ENABLED(EXTENDED_CAPABILITIES_REPORT)
  7243. // EEPROM (M500, M501)
  7244. #if ENABLED(EEPROM_SETTINGS)
  7245. SERIAL_PROTOCOLLNPGM("Cap:EEPROM:1");
  7246. #else
  7247. SERIAL_PROTOCOLLNPGM("Cap:EEPROM:0");
  7248. #endif
  7249. // AUTOREPORT_TEMP (M155)
  7250. #if ENABLED(AUTO_REPORT_TEMPERATURES)
  7251. SERIAL_PROTOCOLLNPGM("Cap:AUTOREPORT_TEMP:1");
  7252. #else
  7253. SERIAL_PROTOCOLLNPGM("Cap:AUTOREPORT_TEMP:0");
  7254. #endif
  7255. // PROGRESS (M530 S L, M531 <file>, M532 X L)
  7256. SERIAL_PROTOCOLLNPGM("Cap:PROGRESS:0");
  7257. // Print Job timer M75, M76, M77
  7258. SERIAL_PROTOCOLLNPGM("Cap:PRINT_JOB:1");
  7259. // AUTOLEVEL (G29)
  7260. #if HAS_ABL
  7261. SERIAL_PROTOCOLLNPGM("Cap:AUTOLEVEL:1");
  7262. #else
  7263. SERIAL_PROTOCOLLNPGM("Cap:AUTOLEVEL:0");
  7264. #endif
  7265. // Z_PROBE (G30)
  7266. #if HAS_BED_PROBE
  7267. SERIAL_PROTOCOLLNPGM("Cap:Z_PROBE:1");
  7268. #else
  7269. SERIAL_PROTOCOLLNPGM("Cap:Z_PROBE:0");
  7270. #endif
  7271. // MESH_REPORT (M420 V)
  7272. #if HAS_LEVELING
  7273. SERIAL_PROTOCOLLNPGM("Cap:LEVELING_DATA:1");
  7274. #else
  7275. SERIAL_PROTOCOLLNPGM("Cap:LEVELING_DATA:0");
  7276. #endif
  7277. // BUILD_PERCENT (M73)
  7278. #if ENABLED(LCD_SET_PROGRESS_MANUALLY)
  7279. SERIAL_PROTOCOLLNPGM("Cap:BUILD_PERCENT:1");
  7280. #else
  7281. SERIAL_PROTOCOLLNPGM("Cap:BUILD_PERCENT:0");
  7282. #endif
  7283. // SOFTWARE_POWER (M80, M81)
  7284. #if HAS_POWER_SWITCH
  7285. SERIAL_PROTOCOLLNPGM("Cap:SOFTWARE_POWER:1");
  7286. #else
  7287. SERIAL_PROTOCOLLNPGM("Cap:SOFTWARE_POWER:0");
  7288. #endif
  7289. // CASE LIGHTS (M355)
  7290. #if HAS_CASE_LIGHT
  7291. SERIAL_PROTOCOLLNPGM("Cap:TOGGLE_LIGHTS:1");
  7292. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) {
  7293. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:1");
  7294. }
  7295. else
  7296. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:0");
  7297. #else
  7298. SERIAL_PROTOCOLLNPGM("Cap:TOGGLE_LIGHTS:0");
  7299. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:0");
  7300. #endif
  7301. // EMERGENCY_PARSER (M108, M112, M410)
  7302. #if ENABLED(EMERGENCY_PARSER)
  7303. SERIAL_PROTOCOLLNPGM("Cap:EMERGENCY_PARSER:1");
  7304. #else
  7305. SERIAL_PROTOCOLLNPGM("Cap:EMERGENCY_PARSER:0");
  7306. #endif
  7307. #endif // EXTENDED_CAPABILITIES_REPORT
  7308. }
  7309. /**
  7310. * M117: Set LCD Status Message
  7311. */
  7312. inline void gcode_M117() { lcd_setstatus(parser.string_arg); }
  7313. /**
  7314. * M118: Display a message in the host console.
  7315. *
  7316. * A1 Append '// ' for an action command, as in OctoPrint
  7317. * E1 Have the host 'echo:' the text
  7318. */
  7319. inline void gcode_M118() {
  7320. if (parser.boolval('E')) SERIAL_ECHO_START();
  7321. if (parser.boolval('A')) SERIAL_ECHOPGM("// ");
  7322. SERIAL_ECHOLN(parser.string_arg);
  7323. }
  7324. /**
  7325. * M119: Output endstop states to serial output
  7326. */
  7327. inline void gcode_M119() { endstops.M119(); }
  7328. /**
  7329. * M120: Enable endstops and set non-homing endstop state to "enabled"
  7330. */
  7331. inline void gcode_M120() { endstops.enable_globally(true); }
  7332. /**
  7333. * M121: Disable endstops and set non-homing endstop state to "disabled"
  7334. */
  7335. inline void gcode_M121() { endstops.enable_globally(false); }
  7336. #if ENABLED(PARK_HEAD_ON_PAUSE)
  7337. /**
  7338. * M125: Store current position and move to filament change position.
  7339. * Called on pause (by M25) to prevent material leaking onto the
  7340. * object. On resume (M24) the head will be moved back and the
  7341. * print will resume.
  7342. *
  7343. * If Marlin is compiled without SD Card support, M125 can be
  7344. * used directly to pause the print and move to park position,
  7345. * resuming with a button click or M108.
  7346. *
  7347. * L = override retract length
  7348. * X = override X
  7349. * Y = override Y
  7350. * Z = override Z raise
  7351. */
  7352. inline void gcode_M125() {
  7353. // Initial retract before move to filament change position
  7354. const float retract = parser.seen('L') ? parser.value_axis_units(E_AXIS) : 0
  7355. #ifdef PAUSE_PARK_RETRACT_LENGTH
  7356. - (PAUSE_PARK_RETRACT_LENGTH)
  7357. #endif
  7358. ;
  7359. // Lift Z axis
  7360. const float z_lift = parser.linearval('Z')
  7361. #ifdef PAUSE_PARK_Z_ADD
  7362. + PAUSE_PARK_Z_ADD
  7363. #endif
  7364. ;
  7365. // Move XY axes to filament change position or given position
  7366. const float x_pos = parser.linearval('X')
  7367. #ifdef PAUSE_PARK_X_POS
  7368. + PAUSE_PARK_X_POS
  7369. #endif
  7370. #if HOTENDS > 1 && DISABLED(DUAL_X_CARRIAGE)
  7371. + (active_extruder ? hotend_offset[X_AXIS][active_extruder] : 0)
  7372. #endif
  7373. ;
  7374. const float y_pos = parser.linearval('Y')
  7375. #ifdef PAUSE_PARK_Y_POS
  7376. + PAUSE_PARK_Y_POS
  7377. #endif
  7378. #if HOTENDS > 1 && DISABLED(DUAL_X_CARRIAGE)
  7379. + (active_extruder ? hotend_offset[Y_AXIS][active_extruder] : 0)
  7380. #endif
  7381. ;
  7382. #if DISABLED(SDSUPPORT)
  7383. const bool job_running = print_job_timer.isRunning();
  7384. #endif
  7385. if (pause_print(retract, z_lift, x_pos, y_pos)) {
  7386. #if DISABLED(SDSUPPORT)
  7387. // Wait for lcd click or M108
  7388. wait_for_filament_reload();
  7389. // Return to print position and continue
  7390. resume_print();
  7391. if (job_running) print_job_timer.start();
  7392. #endif
  7393. }
  7394. }
  7395. #endif // PARK_HEAD_ON_PAUSE
  7396. #if HAS_COLOR_LEDS
  7397. /**
  7398. * M150: Set Status LED Color - Use R-U-B-W for R-G-B-W
  7399. * and Brightness - Use P (for NEOPIXEL only)
  7400. *
  7401. * Always sets all 3 or 4 components. If a component is left out, set to 0.
  7402. * If brightness is left out, no value changed
  7403. *
  7404. * Examples:
  7405. *
  7406. * M150 R255 ; Turn LED red
  7407. * M150 R255 U127 ; Turn LED orange (PWM only)
  7408. * M150 ; Turn LED off
  7409. * M150 R U B ; Turn LED white
  7410. * M150 W ; Turn LED white using a white LED
  7411. * M150 P127 ; Set LED 50% brightness
  7412. * M150 P ; Set LED full brightness
  7413. */
  7414. inline void gcode_M150() {
  7415. set_led_color(
  7416. parser.seen('R') ? (parser.has_value() ? parser.value_byte() : 255) : 0,
  7417. parser.seen('U') ? (parser.has_value() ? parser.value_byte() : 255) : 0,
  7418. parser.seen('B') ? (parser.has_value() ? parser.value_byte() : 255) : 0
  7419. #if ENABLED(RGBW_LED) || ENABLED(NEOPIXEL_LED)
  7420. , parser.seen('W') ? (parser.has_value() ? parser.value_byte() : 255) : 0
  7421. #if ENABLED(NEOPIXEL_LED)
  7422. , parser.seen('P') ? (parser.has_value() ? parser.value_byte() : 255) : pixels.getBrightness()
  7423. #endif
  7424. #endif
  7425. );
  7426. }
  7427. #endif // HAS_COLOR_LEDS
  7428. /**
  7429. * M200: Set filament diameter and set E axis units to cubic units
  7430. *
  7431. * T<extruder> - Optional extruder number. Current extruder if omitted.
  7432. * D<linear> - Diameter of the filament. Use "D0" to switch back to linear units on the E axis.
  7433. */
  7434. inline void gcode_M200() {
  7435. if (get_target_extruder_from_command(200)) return;
  7436. if (parser.seen('D')) {
  7437. // setting any extruder filament size disables volumetric on the assumption that
  7438. // slicers either generate in extruder values as cubic mm or as as filament feeds
  7439. // for all extruders
  7440. if ( (parser.volumetric_enabled = (parser.value_linear_units() != 0.0)) ) {
  7441. planner.filament_size[target_extruder] = parser.value_linear_units();
  7442. // make sure all extruders have some sane value for the filament size
  7443. for (uint8_t i = 0; i < COUNT(planner.filament_size); i++)
  7444. if (!planner.filament_size[i]) planner.filament_size[i] = DEFAULT_NOMINAL_FILAMENT_DIA;
  7445. }
  7446. }
  7447. planner.calculate_volumetric_multipliers();
  7448. }
  7449. /**
  7450. * M201: Set max acceleration in units/s^2 for print moves (M201 X1000 Y1000)
  7451. *
  7452. * With multiple extruders use T to specify which one.
  7453. */
  7454. inline void gcode_M201() {
  7455. GET_TARGET_EXTRUDER(201);
  7456. LOOP_XYZE(i) {
  7457. if (parser.seen(axis_codes[i])) {
  7458. const uint8_t a = i + (i == E_AXIS ? TARGET_EXTRUDER : 0);
  7459. planner.max_acceleration_mm_per_s2[a] = parser.value_axis_units((AxisEnum)a);
  7460. }
  7461. }
  7462. // 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)
  7463. planner.reset_acceleration_rates();
  7464. }
  7465. #if 0 // Not used for Sprinter/grbl gen6
  7466. inline void gcode_M202() {
  7467. LOOP_XYZE(i) {
  7468. 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];
  7469. }
  7470. }
  7471. #endif
  7472. /**
  7473. * M203: Set maximum feedrate that your machine can sustain (M203 X200 Y200 Z300 E10000) in units/sec
  7474. *
  7475. * With multiple extruders use T to specify which one.
  7476. */
  7477. inline void gcode_M203() {
  7478. GET_TARGET_EXTRUDER(203);
  7479. LOOP_XYZE(i)
  7480. if (parser.seen(axis_codes[i])) {
  7481. const uint8_t a = i + (i == E_AXIS ? TARGET_EXTRUDER : 0);
  7482. planner.max_feedrate_mm_s[a] = parser.value_axis_units((AxisEnum)a);
  7483. }
  7484. }
  7485. /**
  7486. * M204: Set Accelerations in units/sec^2 (M204 P1200 R3000 T3000)
  7487. *
  7488. * P = Printing moves
  7489. * R = Retract only (no X, Y, Z) moves
  7490. * T = Travel (non printing) moves
  7491. *
  7492. * Also sets minimum segment time in ms (B20000) to prevent buffer under-runs and M20 minimum feedrate
  7493. */
  7494. inline void gcode_M204() {
  7495. if (parser.seen('S')) { // Kept for legacy compatibility. Should NOT BE USED for new developments.
  7496. planner.travel_acceleration = planner.acceleration = parser.value_linear_units();
  7497. SERIAL_ECHOLNPAIR("Setting Print and Travel Acceleration: ", planner.acceleration);
  7498. }
  7499. if (parser.seen('P')) {
  7500. planner.acceleration = parser.value_linear_units();
  7501. SERIAL_ECHOLNPAIR("Setting Print Acceleration: ", planner.acceleration);
  7502. }
  7503. if (parser.seen('R')) {
  7504. planner.retract_acceleration = parser.value_linear_units();
  7505. SERIAL_ECHOLNPAIR("Setting Retract Acceleration: ", planner.retract_acceleration);
  7506. }
  7507. if (parser.seen('T')) {
  7508. planner.travel_acceleration = parser.value_linear_units();
  7509. SERIAL_ECHOLNPAIR("Setting Travel Acceleration: ", planner.travel_acceleration);
  7510. }
  7511. }
  7512. /**
  7513. * M205: Set Advanced Settings
  7514. *
  7515. * S = Min Feed Rate (units/s)
  7516. * T = Min Travel Feed Rate (units/s)
  7517. * B = Min Segment Time (µs)
  7518. * X = Max X Jerk (units/sec^2)
  7519. * Y = Max Y Jerk (units/sec^2)
  7520. * Z = Max Z Jerk (units/sec^2)
  7521. * E = Max E Jerk (units/sec^2)
  7522. */
  7523. inline void gcode_M205() {
  7524. if (parser.seen('S')) planner.min_feedrate_mm_s = parser.value_linear_units();
  7525. if (parser.seen('T')) planner.min_travel_feedrate_mm_s = parser.value_linear_units();
  7526. if (parser.seen('B')) planner.min_segment_time_us = parser.value_ulong();
  7527. if (parser.seen('X')) planner.max_jerk[X_AXIS] = parser.value_linear_units();
  7528. if (parser.seen('Y')) planner.max_jerk[Y_AXIS] = parser.value_linear_units();
  7529. if (parser.seen('Z')) planner.max_jerk[Z_AXIS] = parser.value_linear_units();
  7530. if (parser.seen('E')) planner.max_jerk[E_AXIS] = parser.value_linear_units();
  7531. }
  7532. #if HAS_M206_COMMAND
  7533. /**
  7534. * M206: Set Additional Homing Offset (X Y Z). SCARA aliases T=X, P=Y
  7535. *
  7536. * *** @thinkyhead: I recommend deprecating M206 for SCARA in favor of M665.
  7537. * *** M206 for SCARA will remain enabled in 1.1.x for compatibility.
  7538. * *** In the next 1.2 release, it will simply be disabled by default.
  7539. */
  7540. inline void gcode_M206() {
  7541. LOOP_XYZ(i)
  7542. if (parser.seen(axis_codes[i]))
  7543. set_home_offset((AxisEnum)i, parser.value_linear_units());
  7544. #if ENABLED(MORGAN_SCARA)
  7545. if (parser.seen('T')) set_home_offset(A_AXIS, parser.value_linear_units()); // Theta
  7546. if (parser.seen('P')) set_home_offset(B_AXIS, parser.value_linear_units()); // Psi
  7547. #endif
  7548. report_current_position();
  7549. }
  7550. #endif // HAS_M206_COMMAND
  7551. #if ENABLED(DELTA)
  7552. /**
  7553. * M665: Set delta configurations
  7554. *
  7555. * H = delta height
  7556. * L = diagonal rod
  7557. * R = delta radius
  7558. * S = segments per second
  7559. * B = delta calibration radius
  7560. * X = Alpha (Tower 1) angle trim
  7561. * Y = Beta (Tower 2) angle trim
  7562. * Z = Rotate A and B by this angle
  7563. */
  7564. inline void gcode_M665() {
  7565. if (parser.seen('H')) {
  7566. delta_height = parser.value_linear_units();
  7567. update_software_endstops(Z_AXIS);
  7568. }
  7569. if (parser.seen('L')) delta_diagonal_rod = parser.value_linear_units();
  7570. if (parser.seen('R')) delta_radius = parser.value_linear_units();
  7571. if (parser.seen('S')) delta_segments_per_second = parser.value_float();
  7572. if (parser.seen('B')) delta_calibration_radius = parser.value_float();
  7573. if (parser.seen('X')) delta_tower_angle_trim[A_AXIS] = parser.value_float();
  7574. if (parser.seen('Y')) delta_tower_angle_trim[B_AXIS] = parser.value_float();
  7575. if (parser.seen('Z')) delta_tower_angle_trim[C_AXIS] = parser.value_float();
  7576. recalc_delta_settings();
  7577. }
  7578. /**
  7579. * M666: Set delta endstop adjustment
  7580. */
  7581. inline void gcode_M666() {
  7582. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7583. if (DEBUGGING(LEVELING)) {
  7584. SERIAL_ECHOLNPGM(">>> gcode_M666");
  7585. }
  7586. #endif
  7587. LOOP_XYZ(i) {
  7588. if (parser.seen(axis_codes[i])) {
  7589. if (parser.value_linear_units() * Z_HOME_DIR <= 0)
  7590. delta_endstop_adj[i] = parser.value_linear_units();
  7591. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7592. if (DEBUGGING(LEVELING)) {
  7593. SERIAL_ECHOPAIR("delta_endstop_adj[", axis_codes[i]);
  7594. SERIAL_ECHOLNPAIR("] = ", delta_endstop_adj[i]);
  7595. }
  7596. #endif
  7597. }
  7598. }
  7599. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7600. if (DEBUGGING(LEVELING)) {
  7601. SERIAL_ECHOLNPGM("<<< gcode_M666");
  7602. }
  7603. #endif
  7604. }
  7605. #elif IS_SCARA
  7606. /**
  7607. * M665: Set SCARA settings
  7608. *
  7609. * Parameters:
  7610. *
  7611. * S[segments-per-second] - Segments-per-second
  7612. * P[theta-psi-offset] - Theta-Psi offset, added to the shoulder (A/X) angle
  7613. * T[theta-offset] - Theta offset, added to the elbow (B/Y) angle
  7614. *
  7615. * A, P, and X are all aliases for the shoulder angle
  7616. * B, T, and Y are all aliases for the elbow angle
  7617. */
  7618. inline void gcode_M665() {
  7619. if (parser.seen('S')) delta_segments_per_second = parser.value_float();
  7620. const bool hasA = parser.seen('A'), hasP = parser.seen('P'), hasX = parser.seen('X');
  7621. const uint8_t sumAPX = hasA + hasP + hasX;
  7622. if (sumAPX == 1)
  7623. home_offset[A_AXIS] = parser.value_float();
  7624. else if (sumAPX > 1) {
  7625. SERIAL_ERROR_START();
  7626. SERIAL_ERRORLNPGM("Only one of A, P, or X is allowed.");
  7627. return;
  7628. }
  7629. const bool hasB = parser.seen('B'), hasT = parser.seen('T'), hasY = parser.seen('Y');
  7630. const uint8_t sumBTY = hasB + hasT + hasY;
  7631. if (sumBTY == 1)
  7632. home_offset[B_AXIS] = parser.value_float();
  7633. else if (sumBTY > 1) {
  7634. SERIAL_ERROR_START();
  7635. SERIAL_ERRORLNPGM("Only one of B, T, or Y is allowed.");
  7636. return;
  7637. }
  7638. }
  7639. #elif ENABLED(X_DUAL_ENDSTOPS) || ENABLED(Y_DUAL_ENDSTOPS) || ENABLED(Z_DUAL_ENDSTOPS)
  7640. /**
  7641. * M666: For Z Dual Endstop setup, set z axis offset to the z2 axis.
  7642. */
  7643. inline void gcode_M666() {
  7644. SERIAL_ECHOPGM("Dual Endstop Adjustment (mm): ");
  7645. #if ENABLED(X_DUAL_ENDSTOPS)
  7646. if (parser.seen('X')) x_endstop_adj = parser.value_linear_units();
  7647. SERIAL_ECHOPAIR(" X", x_endstop_adj);
  7648. #endif
  7649. #if ENABLED(Y_DUAL_ENDSTOPS)
  7650. if (parser.seen('Y')) y_endstop_adj = parser.value_linear_units();
  7651. SERIAL_ECHOPAIR(" Y", y_endstop_adj);
  7652. #endif
  7653. #if ENABLED(Z_DUAL_ENDSTOPS)
  7654. if (parser.seen('Z')) z_endstop_adj = parser.value_linear_units();
  7655. SERIAL_ECHOPAIR(" Z", z_endstop_adj);
  7656. #endif
  7657. SERIAL_EOL();
  7658. }
  7659. #endif // !DELTA && Z_DUAL_ENDSTOPS
  7660. #if ENABLED(FWRETRACT)
  7661. /**
  7662. * M207: Set firmware retraction values
  7663. *
  7664. * S[+units] retract_length
  7665. * W[+units] swap_retract_length (multi-extruder)
  7666. * F[units/min] retract_feedrate_mm_s
  7667. * Z[units] retract_zlift
  7668. */
  7669. inline void gcode_M207() {
  7670. if (parser.seen('S')) retract_length = parser.value_axis_units(E_AXIS);
  7671. if (parser.seen('F')) retract_feedrate_mm_s = MMM_TO_MMS(parser.value_axis_units(E_AXIS));
  7672. if (parser.seen('Z')) retract_zlift = parser.value_linear_units();
  7673. if (parser.seen('W')) swap_retract_length = parser.value_axis_units(E_AXIS);
  7674. }
  7675. /**
  7676. * M208: Set firmware un-retraction values
  7677. *
  7678. * S[+units] retract_recover_length (in addition to M207 S*)
  7679. * W[+units] swap_retract_recover_length (multi-extruder)
  7680. * F[units/min] retract_recover_feedrate_mm_s
  7681. * R[units/min] swap_retract_recover_feedrate_mm_s
  7682. */
  7683. inline void gcode_M208() {
  7684. if (parser.seen('S')) retract_recover_length = parser.value_axis_units(E_AXIS);
  7685. if (parser.seen('F')) retract_recover_feedrate_mm_s = MMM_TO_MMS(parser.value_axis_units(E_AXIS));
  7686. if (parser.seen('R')) swap_retract_recover_feedrate_mm_s = MMM_TO_MMS(parser.value_axis_units(E_AXIS));
  7687. if (parser.seen('W')) swap_retract_recover_length = parser.value_axis_units(E_AXIS);
  7688. }
  7689. /**
  7690. * M209: Enable automatic retract (M209 S1)
  7691. * For slicers that don't support G10/11, reversed extrude-only
  7692. * moves will be classified as retraction.
  7693. */
  7694. inline void gcode_M209() {
  7695. if (MIN_AUTORETRACT <= MAX_AUTORETRACT) {
  7696. if (parser.seen('S')) {
  7697. autoretract_enabled = parser.value_bool();
  7698. for (uint8_t i = 0; i < EXTRUDERS; i++) retracted[i] = false;
  7699. }
  7700. }
  7701. }
  7702. #endif // FWRETRACT
  7703. /**
  7704. * M211: Enable, Disable, and/or Report software endstops
  7705. *
  7706. * Usage: M211 S1 to enable, M211 S0 to disable, M211 alone for report
  7707. */
  7708. inline void gcode_M211() {
  7709. SERIAL_ECHO_START();
  7710. #if HAS_SOFTWARE_ENDSTOPS
  7711. if (parser.seen('S')) soft_endstops_enabled = parser.value_bool();
  7712. SERIAL_ECHOPGM(MSG_SOFT_ENDSTOPS);
  7713. serialprintPGM(soft_endstops_enabled ? PSTR(MSG_ON) : PSTR(MSG_OFF));
  7714. #else
  7715. SERIAL_ECHOPGM(MSG_SOFT_ENDSTOPS);
  7716. SERIAL_ECHOPGM(MSG_OFF);
  7717. #endif
  7718. SERIAL_ECHOPGM(MSG_SOFT_MIN);
  7719. SERIAL_ECHOPAIR( MSG_X, soft_endstop_min[X_AXIS]);
  7720. SERIAL_ECHOPAIR(" " MSG_Y, soft_endstop_min[Y_AXIS]);
  7721. SERIAL_ECHOPAIR(" " MSG_Z, soft_endstop_min[Z_AXIS]);
  7722. SERIAL_ECHOPGM(MSG_SOFT_MAX);
  7723. SERIAL_ECHOPAIR( MSG_X, soft_endstop_max[X_AXIS]);
  7724. SERIAL_ECHOPAIR(" " MSG_Y, soft_endstop_max[Y_AXIS]);
  7725. SERIAL_ECHOLNPAIR(" " MSG_Z, soft_endstop_max[Z_AXIS]);
  7726. }
  7727. #if HOTENDS > 1
  7728. /**
  7729. * M218 - set hotend offset (in linear units)
  7730. *
  7731. * T<tool>
  7732. * X<xoffset>
  7733. * Y<yoffset>
  7734. * Z<zoffset> - Available with DUAL_X_CARRIAGE and SWITCHING_NOZZLE
  7735. */
  7736. inline void gcode_M218() {
  7737. if (get_target_extruder_from_command(218) || target_extruder == 0) return;
  7738. if (parser.seenval('X')) hotend_offset[X_AXIS][target_extruder] = parser.value_linear_units();
  7739. if (parser.seenval('Y')) hotend_offset[Y_AXIS][target_extruder] = parser.value_linear_units();
  7740. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE) || ENABLED(PARKING_EXTRUDER)
  7741. if (parser.seenval('Z')) hotend_offset[Z_AXIS][target_extruder] = parser.value_linear_units();
  7742. #endif
  7743. SERIAL_ECHO_START();
  7744. SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
  7745. HOTEND_LOOP() {
  7746. SERIAL_CHAR(' ');
  7747. SERIAL_ECHO(hotend_offset[X_AXIS][e]);
  7748. SERIAL_CHAR(',');
  7749. SERIAL_ECHO(hotend_offset[Y_AXIS][e]);
  7750. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE) || ENABLED(PARKING_EXTRUDER)
  7751. SERIAL_CHAR(',');
  7752. SERIAL_ECHO(hotend_offset[Z_AXIS][e]);
  7753. #endif
  7754. }
  7755. SERIAL_EOL();
  7756. }
  7757. #endif // HOTENDS > 1
  7758. /**
  7759. * M220: Set speed percentage factor, aka "Feed Rate" (M220 S95)
  7760. */
  7761. inline void gcode_M220() {
  7762. if (parser.seenval('S')) feedrate_percentage = parser.value_int();
  7763. }
  7764. /**
  7765. * M221: Set extrusion percentage (M221 T0 S95)
  7766. */
  7767. inline void gcode_M221() {
  7768. if (get_target_extruder_from_command(221)) return;
  7769. if (parser.seenval('S')) {
  7770. planner.flow_percentage[target_extruder] = parser.value_int();
  7771. planner.refresh_e_factor(target_extruder);
  7772. }
  7773. }
  7774. /**
  7775. * M226: Wait until the specified pin reaches the state required (M226 P<pin> S<state>)
  7776. */
  7777. inline void gcode_M226() {
  7778. if (parser.seen('P')) {
  7779. const int pin_number = parser.value_int(),
  7780. pin_state = parser.intval('S', -1); // required pin state - default is inverted
  7781. if (WITHIN(pin_state, -1, 1) && pin_number > -1 && !pin_is_protected(pin_number)) {
  7782. int target = LOW;
  7783. stepper.synchronize();
  7784. pinMode(pin_number, INPUT);
  7785. switch (pin_state) {
  7786. case 1:
  7787. target = HIGH;
  7788. break;
  7789. case 0:
  7790. target = LOW;
  7791. break;
  7792. case -1:
  7793. target = !digitalRead(pin_number);
  7794. break;
  7795. }
  7796. while (digitalRead(pin_number) != target) idle();
  7797. } // pin_state -1 0 1 && pin_number > -1
  7798. } // parser.seen('P')
  7799. }
  7800. #if ENABLED(EXPERIMENTAL_I2CBUS)
  7801. /**
  7802. * M260: Send data to a I2C slave device
  7803. *
  7804. * This is a PoC, the formating and arguments for the GCODE will
  7805. * change to be more compatible, the current proposal is:
  7806. *
  7807. * M260 A<slave device address base 10> ; Sets the I2C slave address the data will be sent to
  7808. *
  7809. * M260 B<byte-1 value in base 10>
  7810. * M260 B<byte-2 value in base 10>
  7811. * M260 B<byte-3 value in base 10>
  7812. *
  7813. * M260 S1 ; Send the buffered data and reset the buffer
  7814. * M260 R1 ; Reset the buffer without sending data
  7815. *
  7816. */
  7817. inline void gcode_M260() {
  7818. // Set the target address
  7819. if (parser.seen('A')) i2c.address(parser.value_byte());
  7820. // Add a new byte to the buffer
  7821. if (parser.seen('B')) i2c.addbyte(parser.value_byte());
  7822. // Flush the buffer to the bus
  7823. if (parser.seen('S')) i2c.send();
  7824. // Reset and rewind the buffer
  7825. else if (parser.seen('R')) i2c.reset();
  7826. }
  7827. /**
  7828. * M261: Request X bytes from I2C slave device
  7829. *
  7830. * Usage: M261 A<slave device address base 10> B<number of bytes>
  7831. */
  7832. inline void gcode_M261() {
  7833. if (parser.seen('A')) i2c.address(parser.value_byte());
  7834. uint8_t bytes = parser.byteval('B', 1);
  7835. if (i2c.addr && bytes && bytes <= TWIBUS_BUFFER_SIZE) {
  7836. i2c.relay(bytes);
  7837. }
  7838. else {
  7839. SERIAL_ERROR_START();
  7840. SERIAL_ERRORLN("Bad i2c request");
  7841. }
  7842. }
  7843. #endif // EXPERIMENTAL_I2CBUS
  7844. #if HAS_SERVOS
  7845. /**
  7846. * M280: Get or set servo position. P<index> [S<angle>]
  7847. */
  7848. inline void gcode_M280() {
  7849. if (!parser.seen('P')) return;
  7850. const int servo_index = parser.value_int();
  7851. if (WITHIN(servo_index, 0, NUM_SERVOS - 1)) {
  7852. if (parser.seen('S'))
  7853. MOVE_SERVO(servo_index, parser.value_int());
  7854. else {
  7855. SERIAL_ECHO_START();
  7856. SERIAL_ECHOPAIR(" Servo ", servo_index);
  7857. SERIAL_ECHOLNPAIR(": ", servo[servo_index].read());
  7858. }
  7859. }
  7860. else {
  7861. SERIAL_ERROR_START();
  7862. SERIAL_ECHOPAIR("Servo ", servo_index);
  7863. SERIAL_ECHOLNPGM(" out of range");
  7864. }
  7865. }
  7866. #endif // HAS_SERVOS
  7867. #if ENABLED(BABYSTEPPING)
  7868. /**
  7869. * M290: Babystepping
  7870. */
  7871. inline void gcode_M290() {
  7872. #if ENABLED(BABYSTEP_XY)
  7873. for (uint8_t a = X_AXIS; a <= Z_AXIS; a++)
  7874. if (parser.seenval(axis_codes[a]) || (a == Z_AXIS && parser.seenval('S'))) {
  7875. const float offs = constrain(parser.value_axis_units(a), -2, 2);
  7876. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  7877. if (a == Z_AXIS) {
  7878. zprobe_zoffset += offs;
  7879. refresh_zprobe_zoffset(true); // 'true' to not babystep
  7880. }
  7881. #endif
  7882. thermalManager.babystep_axis(a, offs * planner.axis_steps_per_mm[a]);
  7883. }
  7884. #else
  7885. if (parser.seenval('Z') || parser.seenval('S')) {
  7886. const float offs = constrain(parser.value_axis_units(Z_AXIS), -2, 2);
  7887. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  7888. zprobe_zoffset += offs;
  7889. refresh_zprobe_zoffset(); // This will babystep the axis
  7890. #else
  7891. thermalManager.babystep_axis(Z_AXIS, parser.value_axis_units(Z_AXIS) * planner.axis_steps_per_mm[Z_AXIS]);
  7892. #endif
  7893. }
  7894. #endif
  7895. }
  7896. #endif // BABYSTEPPING
  7897. #if HAS_BUZZER
  7898. /**
  7899. * M300: Play beep sound S<frequency Hz> P<duration ms>
  7900. */
  7901. inline void gcode_M300() {
  7902. uint16_t const frequency = parser.ushortval('S', 260);
  7903. uint16_t duration = parser.ushortval('P', 1000);
  7904. // Limits the tone duration to 0-5 seconds.
  7905. NOMORE(duration, 5000);
  7906. BUZZ(duration, frequency);
  7907. }
  7908. #endif // HAS_BUZZER
  7909. #if ENABLED(PIDTEMP)
  7910. /**
  7911. * M301: Set PID parameters P I D (and optionally C, L)
  7912. *
  7913. * P[float] Kp term
  7914. * I[float] Ki term (unscaled)
  7915. * D[float] Kd term (unscaled)
  7916. *
  7917. * With PID_EXTRUSION_SCALING:
  7918. *
  7919. * C[float] Kc term
  7920. * L[float] LPQ length
  7921. */
  7922. inline void gcode_M301() {
  7923. // multi-extruder PID patch: M301 updates or prints a single extruder's PID values
  7924. // default behaviour (omitting E parameter) is to update for extruder 0 only
  7925. const uint8_t e = parser.byteval('E'); // extruder being updated
  7926. if (e < HOTENDS) { // catch bad input value
  7927. if (parser.seen('P')) PID_PARAM(Kp, e) = parser.value_float();
  7928. if (parser.seen('I')) PID_PARAM(Ki, e) = scalePID_i(parser.value_float());
  7929. if (parser.seen('D')) PID_PARAM(Kd, e) = scalePID_d(parser.value_float());
  7930. #if ENABLED(PID_EXTRUSION_SCALING)
  7931. if (parser.seen('C')) PID_PARAM(Kc, e) = parser.value_float();
  7932. if (parser.seen('L')) lpq_len = parser.value_float();
  7933. NOMORE(lpq_len, LPQ_MAX_LEN);
  7934. #endif
  7935. thermalManager.updatePID();
  7936. SERIAL_ECHO_START();
  7937. #if ENABLED(PID_PARAMS_PER_HOTEND)
  7938. SERIAL_ECHOPAIR(" e:", e); // specify extruder in serial output
  7939. #endif // PID_PARAMS_PER_HOTEND
  7940. SERIAL_ECHOPAIR(" p:", PID_PARAM(Kp, e));
  7941. SERIAL_ECHOPAIR(" i:", unscalePID_i(PID_PARAM(Ki, e)));
  7942. SERIAL_ECHOPAIR(" d:", unscalePID_d(PID_PARAM(Kd, e)));
  7943. #if ENABLED(PID_EXTRUSION_SCALING)
  7944. //Kc does not have scaling applied above, or in resetting defaults
  7945. SERIAL_ECHOPAIR(" c:", PID_PARAM(Kc, e));
  7946. #endif
  7947. SERIAL_EOL();
  7948. }
  7949. else {
  7950. SERIAL_ERROR_START();
  7951. SERIAL_ERRORLN(MSG_INVALID_EXTRUDER);
  7952. }
  7953. }
  7954. #endif // PIDTEMP
  7955. #if ENABLED(PIDTEMPBED)
  7956. inline void gcode_M304() {
  7957. if (parser.seen('P')) thermalManager.bedKp = parser.value_float();
  7958. if (parser.seen('I')) thermalManager.bedKi = scalePID_i(parser.value_float());
  7959. if (parser.seen('D')) thermalManager.bedKd = scalePID_d(parser.value_float());
  7960. SERIAL_ECHO_START();
  7961. SERIAL_ECHOPAIR(" p:", thermalManager.bedKp);
  7962. SERIAL_ECHOPAIR(" i:", unscalePID_i(thermalManager.bedKi));
  7963. SERIAL_ECHOLNPAIR(" d:", unscalePID_d(thermalManager.bedKd));
  7964. }
  7965. #endif // PIDTEMPBED
  7966. #if defined(CHDK) || HAS_PHOTOGRAPH
  7967. /**
  7968. * M240: Trigger a camera by emulating a Canon RC-1
  7969. * See http://www.doc-diy.net/photo/rc-1_hacked/
  7970. */
  7971. inline void gcode_M240() {
  7972. #ifdef CHDK
  7973. OUT_WRITE(CHDK, HIGH);
  7974. chdkHigh = millis();
  7975. chdkActive = true;
  7976. #elif HAS_PHOTOGRAPH
  7977. const uint8_t NUM_PULSES = 16;
  7978. const float PULSE_LENGTH = 0.01524;
  7979. for (int i = 0; i < NUM_PULSES; i++) {
  7980. WRITE(PHOTOGRAPH_PIN, HIGH);
  7981. _delay_ms(PULSE_LENGTH);
  7982. WRITE(PHOTOGRAPH_PIN, LOW);
  7983. _delay_ms(PULSE_LENGTH);
  7984. }
  7985. delay(7.33);
  7986. for (int i = 0; i < NUM_PULSES; i++) {
  7987. WRITE(PHOTOGRAPH_PIN, HIGH);
  7988. _delay_ms(PULSE_LENGTH);
  7989. WRITE(PHOTOGRAPH_PIN, LOW);
  7990. _delay_ms(PULSE_LENGTH);
  7991. }
  7992. #endif // !CHDK && HAS_PHOTOGRAPH
  7993. }
  7994. #endif // CHDK || PHOTOGRAPH_PIN
  7995. #if HAS_LCD_CONTRAST
  7996. /**
  7997. * M250: Read and optionally set the LCD contrast
  7998. */
  7999. inline void gcode_M250() {
  8000. if (parser.seen('C')) set_lcd_contrast(parser.value_int());
  8001. SERIAL_PROTOCOLPGM("lcd contrast value: ");
  8002. SERIAL_PROTOCOL(lcd_contrast);
  8003. SERIAL_EOL();
  8004. }
  8005. #endif // HAS_LCD_CONTRAST
  8006. #if ENABLED(PREVENT_COLD_EXTRUSION)
  8007. /**
  8008. * M302: Allow cold extrudes, or set the minimum extrude temperature
  8009. *
  8010. * S<temperature> sets the minimum extrude temperature
  8011. * P<bool> enables (1) or disables (0) cold extrusion
  8012. *
  8013. * Examples:
  8014. *
  8015. * M302 ; report current cold extrusion state
  8016. * M302 P0 ; enable cold extrusion checking
  8017. * M302 P1 ; disables cold extrusion checking
  8018. * M302 S0 ; always allow extrusion (disables checking)
  8019. * M302 S170 ; only allow extrusion above 170
  8020. * M302 S170 P1 ; set min extrude temp to 170 but leave disabled
  8021. */
  8022. inline void gcode_M302() {
  8023. const bool seen_S = parser.seen('S');
  8024. if (seen_S) {
  8025. thermalManager.extrude_min_temp = parser.value_celsius();
  8026. thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0);
  8027. }
  8028. if (parser.seen('P'))
  8029. thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0) || parser.value_bool();
  8030. else if (!seen_S) {
  8031. // Report current state
  8032. SERIAL_ECHO_START();
  8033. SERIAL_ECHOPAIR("Cold extrudes are ", (thermalManager.allow_cold_extrude ? "en" : "dis"));
  8034. SERIAL_ECHOPAIR("abled (min temp ", thermalManager.extrude_min_temp);
  8035. SERIAL_ECHOLNPGM("C)");
  8036. }
  8037. }
  8038. #endif // PREVENT_COLD_EXTRUSION
  8039. /**
  8040. * M303: PID relay autotune
  8041. *
  8042. * S<temperature> sets the target temperature. (default 150C)
  8043. * E<extruder> (-1 for the bed) (default 0)
  8044. * C<cycles>
  8045. * U<bool> with a non-zero value will apply the result to current settings
  8046. */
  8047. inline void gcode_M303() {
  8048. #if HAS_PID_HEATING
  8049. const int e = parser.intval('E'), c = parser.intval('C', 5);
  8050. const bool u = parser.boolval('U');
  8051. int16_t temp = parser.celsiusval('S', e < 0 ? 70 : 150);
  8052. if (WITHIN(e, 0, HOTENDS - 1))
  8053. target_extruder = e;
  8054. #if DISABLED(BUSY_WHILE_HEATING)
  8055. KEEPALIVE_STATE(NOT_BUSY);
  8056. #endif
  8057. thermalManager.PID_autotune(temp, e, c, u);
  8058. #if DISABLED(BUSY_WHILE_HEATING)
  8059. KEEPALIVE_STATE(IN_HANDLER);
  8060. #endif
  8061. #else
  8062. SERIAL_ERROR_START();
  8063. SERIAL_ERRORLNPGM(MSG_ERR_M303_DISABLED);
  8064. #endif
  8065. }
  8066. #if ENABLED(MORGAN_SCARA)
  8067. bool SCARA_move_to_cal(const uint8_t delta_a, const uint8_t delta_b) {
  8068. if (IsRunning()) {
  8069. forward_kinematics_SCARA(delta_a, delta_b);
  8070. destination[X_AXIS] = cartes[X_AXIS];
  8071. destination[Y_AXIS] = cartes[Y_AXIS];
  8072. destination[Z_AXIS] = current_position[Z_AXIS];
  8073. prepare_move_to_destination();
  8074. return true;
  8075. }
  8076. return false;
  8077. }
  8078. /**
  8079. * M360: SCARA calibration: Move to cal-position ThetaA (0 deg calibration)
  8080. */
  8081. inline bool gcode_M360() {
  8082. SERIAL_ECHOLNPGM(" Cal: Theta 0");
  8083. return SCARA_move_to_cal(0, 120);
  8084. }
  8085. /**
  8086. * M361: SCARA calibration: Move to cal-position ThetaB (90 deg calibration - steps per degree)
  8087. */
  8088. inline bool gcode_M361() {
  8089. SERIAL_ECHOLNPGM(" Cal: Theta 90");
  8090. return SCARA_move_to_cal(90, 130);
  8091. }
  8092. /**
  8093. * M362: SCARA calibration: Move to cal-position PsiA (0 deg calibration)
  8094. */
  8095. inline bool gcode_M362() {
  8096. SERIAL_ECHOLNPGM(" Cal: Psi 0");
  8097. return SCARA_move_to_cal(60, 180);
  8098. }
  8099. /**
  8100. * M363: SCARA calibration: Move to cal-position PsiB (90 deg calibration - steps per degree)
  8101. */
  8102. inline bool gcode_M363() {
  8103. SERIAL_ECHOLNPGM(" Cal: Psi 90");
  8104. return SCARA_move_to_cal(50, 90);
  8105. }
  8106. /**
  8107. * M364: SCARA calibration: Move to cal-position PsiC (90 deg to Theta calibration position)
  8108. */
  8109. inline bool gcode_M364() {
  8110. SERIAL_ECHOLNPGM(" Cal: Theta-Psi 90");
  8111. return SCARA_move_to_cal(45, 135);
  8112. }
  8113. #endif // SCARA
  8114. #if ENABLED(EXT_SOLENOID)
  8115. void enable_solenoid(const uint8_t num) {
  8116. switch (num) {
  8117. case 0:
  8118. OUT_WRITE(SOL0_PIN, HIGH);
  8119. break;
  8120. #if HAS_SOLENOID_1 && EXTRUDERS > 1
  8121. case 1:
  8122. OUT_WRITE(SOL1_PIN, HIGH);
  8123. break;
  8124. #endif
  8125. #if HAS_SOLENOID_2 && EXTRUDERS > 2
  8126. case 2:
  8127. OUT_WRITE(SOL2_PIN, HIGH);
  8128. break;
  8129. #endif
  8130. #if HAS_SOLENOID_3 && EXTRUDERS > 3
  8131. case 3:
  8132. OUT_WRITE(SOL3_PIN, HIGH);
  8133. break;
  8134. #endif
  8135. #if HAS_SOLENOID_4 && EXTRUDERS > 4
  8136. case 4:
  8137. OUT_WRITE(SOL4_PIN, HIGH);
  8138. break;
  8139. #endif
  8140. default:
  8141. SERIAL_ECHO_START();
  8142. SERIAL_ECHOLNPGM(MSG_INVALID_SOLENOID);
  8143. break;
  8144. }
  8145. }
  8146. void enable_solenoid_on_active_extruder() { enable_solenoid(active_extruder); }
  8147. void disable_all_solenoids() {
  8148. OUT_WRITE(SOL0_PIN, LOW);
  8149. #if HAS_SOLENOID_1 && EXTRUDERS > 1
  8150. OUT_WRITE(SOL1_PIN, LOW);
  8151. #endif
  8152. #if HAS_SOLENOID_2 && EXTRUDERS > 2
  8153. OUT_WRITE(SOL2_PIN, LOW);
  8154. #endif
  8155. #if HAS_SOLENOID_3 && EXTRUDERS > 3
  8156. OUT_WRITE(SOL3_PIN, LOW);
  8157. #endif
  8158. #if HAS_SOLENOID_4 && EXTRUDERS > 4
  8159. OUT_WRITE(SOL4_PIN, LOW);
  8160. #endif
  8161. }
  8162. /**
  8163. * M380: Enable solenoid on the active extruder
  8164. */
  8165. inline void gcode_M380() { enable_solenoid_on_active_extruder(); }
  8166. /**
  8167. * M381: Disable all solenoids
  8168. */
  8169. inline void gcode_M381() { disable_all_solenoids(); }
  8170. #endif // EXT_SOLENOID
  8171. /**
  8172. * M400: Finish all moves
  8173. */
  8174. inline void gcode_M400() { stepper.synchronize(); }
  8175. #if HAS_BED_PROBE
  8176. /**
  8177. * M401: Engage Z Servo endstop if available
  8178. */
  8179. inline void gcode_M401() { DEPLOY_PROBE(); }
  8180. /**
  8181. * M402: Retract Z Servo endstop if enabled
  8182. */
  8183. inline void gcode_M402() { STOW_PROBE(); }
  8184. #endif // HAS_BED_PROBE
  8185. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  8186. /**
  8187. * M404: Display or set (in current units) the nominal filament width (3mm, 1.75mm ) W<3.0>
  8188. */
  8189. inline void gcode_M404() {
  8190. if (parser.seen('W')) {
  8191. filament_width_nominal = parser.value_linear_units();
  8192. }
  8193. else {
  8194. SERIAL_PROTOCOLPGM("Filament dia (nominal mm):");
  8195. SERIAL_PROTOCOLLN(filament_width_nominal);
  8196. }
  8197. }
  8198. /**
  8199. * M405: Turn on filament sensor for control
  8200. */
  8201. inline void gcode_M405() {
  8202. // This is technically a linear measurement, but since it's quantized to centimeters and is a different
  8203. // unit than everything else, it uses parser.value_byte() instead of parser.value_linear_units().
  8204. if (parser.seen('D')) {
  8205. meas_delay_cm = parser.value_byte();
  8206. NOMORE(meas_delay_cm, MAX_MEASUREMENT_DELAY);
  8207. }
  8208. if (filwidth_delay_index[1] == -1) { // Initialize the ring buffer if not done since startup
  8209. const uint8_t temp_ratio = thermalManager.widthFil_to_size_ratio() - 100; // -100 to scale within a signed byte
  8210. for (uint8_t i = 0; i < COUNT(measurement_delay); ++i)
  8211. measurement_delay[i] = temp_ratio;
  8212. filwidth_delay_index[0] = filwidth_delay_index[1] = 0;
  8213. }
  8214. filament_sensor = true;
  8215. //SERIAL_PROTOCOLPGM("Filament dia (measured mm):");
  8216. //SERIAL_PROTOCOL(filament_width_meas);
  8217. //SERIAL_PROTOCOLPGM("Extrusion ratio(%):");
  8218. //SERIAL_PROTOCOL(planner.flow_percentage[active_extruder]);
  8219. }
  8220. /**
  8221. * M406: Turn off filament sensor for control
  8222. */
  8223. inline void gcode_M406() {
  8224. filament_sensor = false;
  8225. planner.calculate_volumetric_multipliers(); // Restore correct 'volumetric_multiplier' value
  8226. }
  8227. /**
  8228. * M407: Get measured filament diameter on serial output
  8229. */
  8230. inline void gcode_M407() {
  8231. SERIAL_PROTOCOLPGM("Filament dia (measured mm):");
  8232. SERIAL_PROTOCOLLN(filament_width_meas);
  8233. }
  8234. #endif // FILAMENT_WIDTH_SENSOR
  8235. void quickstop_stepper() {
  8236. stepper.quick_stop();
  8237. stepper.synchronize();
  8238. set_current_from_steppers_for_axis(ALL_AXES);
  8239. SYNC_PLAN_POSITION_KINEMATIC();
  8240. }
  8241. #if HAS_LEVELING
  8242. /**
  8243. * M420: Enable/Disable Bed Leveling and/or set the Z fade height.
  8244. *
  8245. * S[bool] Turns leveling on or off
  8246. * Z[height] Sets the Z fade height (0 or none to disable)
  8247. * V[bool] Verbose - Print the leveling grid
  8248. *
  8249. * With AUTO_BED_LEVELING_UBL only:
  8250. *
  8251. * L[index] Load UBL mesh from index (0 is default)
  8252. */
  8253. inline void gcode_M420() {
  8254. #if ENABLED(AUTO_BED_LEVELING_UBL)
  8255. // L to load a mesh from the EEPROM
  8256. if (parser.seen('L')) {
  8257. #if ENABLED(EEPROM_SETTINGS)
  8258. const int8_t storage_slot = parser.has_value() ? parser.value_int() : ubl.storage_slot;
  8259. const int16_t a = settings.calc_num_meshes();
  8260. if (!a) {
  8261. SERIAL_PROTOCOLLNPGM("?EEPROM storage not available.");
  8262. return;
  8263. }
  8264. if (!WITHIN(storage_slot, 0, a - 1)) {
  8265. SERIAL_PROTOCOLLNPGM("?Invalid storage slot.");
  8266. SERIAL_PROTOCOLLNPAIR("?Use 0 to ", a - 1);
  8267. return;
  8268. }
  8269. settings.load_mesh(storage_slot);
  8270. ubl.storage_slot = storage_slot;
  8271. #else
  8272. SERIAL_PROTOCOLLNPGM("?EEPROM storage not available.");
  8273. return;
  8274. #endif
  8275. }
  8276. // L to load a mesh from the EEPROM
  8277. if (parser.seen('L') || parser.seen('V')) {
  8278. ubl.display_map(0); // Currently only supports one map type
  8279. SERIAL_ECHOLNPAIR("UBL_MESH_VALID = ", UBL_MESH_VALID);
  8280. SERIAL_ECHOLNPAIR("ubl.storage_slot = ", ubl.storage_slot);
  8281. }
  8282. #endif // AUTO_BED_LEVELING_UBL
  8283. // V to print the matrix or mesh
  8284. if (parser.seen('V')) {
  8285. #if ABL_PLANAR
  8286. planner.bed_level_matrix.debug(PSTR("Bed Level Correction Matrix:"));
  8287. #else
  8288. if (leveling_is_valid()) {
  8289. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  8290. print_bilinear_leveling_grid();
  8291. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  8292. print_bilinear_leveling_grid_virt();
  8293. #endif
  8294. #elif ENABLED(MESH_BED_LEVELING)
  8295. SERIAL_ECHOLNPGM("Mesh Bed Level data:");
  8296. mbl_mesh_report();
  8297. #endif
  8298. }
  8299. #endif
  8300. }
  8301. const bool to_enable = parser.boolval('S');
  8302. if (parser.seen('S'))
  8303. set_bed_leveling_enabled(to_enable);
  8304. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  8305. if (parser.seen('Z')) set_z_fade_height(parser.value_linear_units());
  8306. #endif
  8307. const bool new_status = planner.leveling_active;
  8308. if (to_enable && !new_status) {
  8309. SERIAL_ERROR_START();
  8310. SERIAL_ERRORLNPGM(MSG_ERR_M420_FAILED);
  8311. }
  8312. SERIAL_ECHO_START();
  8313. SERIAL_ECHOLNPAIR("Bed Leveling ", new_status ? MSG_ON : MSG_OFF);
  8314. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  8315. SERIAL_ECHO_START();
  8316. SERIAL_ECHOPGM("Fade Height ");
  8317. if (planner.z_fade_height > 0.0)
  8318. SERIAL_ECHOLN(planner.z_fade_height);
  8319. else
  8320. SERIAL_ECHOLNPGM(MSG_OFF);
  8321. #endif
  8322. }
  8323. #endif
  8324. #if ENABLED(MESH_BED_LEVELING)
  8325. /**
  8326. * M421: Set a single Mesh Bed Leveling Z coordinate
  8327. *
  8328. * Usage:
  8329. * M421 X<linear> Y<linear> Z<linear>
  8330. * M421 X<linear> Y<linear> Q<offset>
  8331. * M421 I<xindex> J<yindex> Z<linear>
  8332. * M421 I<xindex> J<yindex> Q<offset>
  8333. */
  8334. inline void gcode_M421() {
  8335. const bool hasX = parser.seen('X'), hasI = parser.seen('I');
  8336. const int8_t ix = hasI ? parser.value_int() : hasX ? mbl.probe_index_x(parser.value_linear_units()) : -1;
  8337. const bool hasY = parser.seen('Y'), hasJ = parser.seen('J');
  8338. const int8_t iy = hasJ ? parser.value_int() : hasY ? mbl.probe_index_y(parser.value_linear_units()) : -1;
  8339. const bool hasZ = parser.seen('Z'), hasQ = !hasZ && parser.seen('Q');
  8340. if (int(hasI && hasJ) + int(hasX && hasY) != 1 || !(hasZ || hasQ)) {
  8341. SERIAL_ERROR_START();
  8342. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  8343. }
  8344. else if (ix < 0 || iy < 0) {
  8345. SERIAL_ERROR_START();
  8346. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  8347. }
  8348. else
  8349. mbl.set_z(ix, iy, parser.value_linear_units() + (hasQ ? mbl.z_values[ix][iy] : 0));
  8350. }
  8351. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  8352. /**
  8353. * M421: Set a single Mesh Bed Leveling Z coordinate
  8354. *
  8355. * Usage:
  8356. * M421 I<xindex> J<yindex> Z<linear>
  8357. * M421 I<xindex> J<yindex> Q<offset>
  8358. */
  8359. inline void gcode_M421() {
  8360. int8_t ix = parser.intval('I', -1), iy = parser.intval('J', -1);
  8361. const bool hasI = ix >= 0,
  8362. hasJ = iy >= 0,
  8363. hasZ = parser.seen('Z'),
  8364. hasQ = !hasZ && parser.seen('Q');
  8365. if (!hasI || !hasJ || !(hasZ || hasQ)) {
  8366. SERIAL_ERROR_START();
  8367. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  8368. }
  8369. else if (!WITHIN(ix, 0, GRID_MAX_POINTS_X - 1) || !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1)) {
  8370. SERIAL_ERROR_START();
  8371. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  8372. }
  8373. else {
  8374. z_values[ix][iy] = parser.value_linear_units() + (hasQ ? z_values[ix][iy] : 0);
  8375. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  8376. bed_level_virt_interpolate();
  8377. #endif
  8378. }
  8379. }
  8380. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  8381. /**
  8382. * M421: Set a single Mesh Bed Leveling Z coordinate
  8383. *
  8384. * Usage:
  8385. * M421 I<xindex> J<yindex> Z<linear>
  8386. * M421 I<xindex> J<yindex> Q<offset>
  8387. * M421 C Z<linear>
  8388. * M421 C Q<offset>
  8389. */
  8390. inline void gcode_M421() {
  8391. int8_t ix = parser.intval('I', -1), iy = parser.intval('J', -1);
  8392. const bool hasI = ix >= 0,
  8393. hasJ = iy >= 0,
  8394. hasC = parser.seen('C'),
  8395. hasZ = parser.seen('Z'),
  8396. hasQ = !hasZ && parser.seen('Q');
  8397. if (hasC) {
  8398. 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);
  8399. ix = location.x_index;
  8400. iy = location.y_index;
  8401. }
  8402. if (int(hasC) + int(hasI && hasJ) != 1 || !(hasZ || hasQ)) {
  8403. SERIAL_ERROR_START();
  8404. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  8405. }
  8406. else if (!WITHIN(ix, 0, GRID_MAX_POINTS_X - 1) || !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1)) {
  8407. SERIAL_ERROR_START();
  8408. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  8409. }
  8410. else
  8411. ubl.z_values[ix][iy] = parser.value_linear_units() + (hasQ ? ubl.z_values[ix][iy] : 0);
  8412. }
  8413. #endif // AUTO_BED_LEVELING_UBL
  8414. #if HAS_M206_COMMAND
  8415. /**
  8416. * M428: Set home_offset based on the distance between the
  8417. * current_position and the nearest "reference point."
  8418. * If an axis is past center its endstop position
  8419. * is the reference-point. Otherwise it uses 0. This allows
  8420. * the Z offset to be set near the bed when using a max endstop.
  8421. *
  8422. * M428 can't be used more than 2cm away from 0 or an endstop.
  8423. *
  8424. * Use M206 to set these values directly.
  8425. */
  8426. inline void gcode_M428() {
  8427. bool err = false;
  8428. LOOP_XYZ(i) {
  8429. if (axis_homed[i]) {
  8430. const float base = (current_position[i] > (soft_endstop_min[i] + soft_endstop_max[i]) * 0.5) ? base_home_pos((AxisEnum)i) : 0,
  8431. diff = base - current_position[i];
  8432. if (WITHIN(diff, -20, 20)) {
  8433. set_home_offset((AxisEnum)i, diff);
  8434. }
  8435. else {
  8436. SERIAL_ERROR_START();
  8437. SERIAL_ERRORLNPGM(MSG_ERR_M428_TOO_FAR);
  8438. LCD_ALERTMESSAGEPGM("Err: Too far!");
  8439. BUZZ(200, 40);
  8440. err = true;
  8441. break;
  8442. }
  8443. }
  8444. }
  8445. if (!err) {
  8446. report_current_position();
  8447. LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
  8448. BUZZ(100, 659);
  8449. BUZZ(100, 698);
  8450. }
  8451. }
  8452. #endif // HAS_M206_COMMAND
  8453. /**
  8454. * M500: Store settings in EEPROM
  8455. */
  8456. inline void gcode_M500() {
  8457. (void)settings.save();
  8458. }
  8459. /**
  8460. * M501: Read settings from EEPROM
  8461. */
  8462. inline void gcode_M501() {
  8463. (void)settings.load();
  8464. }
  8465. /**
  8466. * M502: Revert to default settings
  8467. */
  8468. inline void gcode_M502() {
  8469. (void)settings.reset();
  8470. }
  8471. #if DISABLED(DISABLE_M503)
  8472. /**
  8473. * M503: print settings currently in memory
  8474. */
  8475. inline void gcode_M503() {
  8476. (void)settings.report(parser.boolval('S'));
  8477. }
  8478. #endif
  8479. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  8480. /**
  8481. * M540: Set whether SD card print should abort on endstop hit (M540 S<0|1>)
  8482. */
  8483. inline void gcode_M540() {
  8484. if (parser.seen('S')) stepper.abort_on_endstop_hit = parser.value_bool();
  8485. }
  8486. #endif // ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
  8487. #if HAS_BED_PROBE
  8488. void refresh_zprobe_zoffset(const bool no_babystep/*=false*/) {
  8489. static float last_zoffset = NAN;
  8490. if (!isnan(last_zoffset)) {
  8491. #if ENABLED(AUTO_BED_LEVELING_BILINEAR) || ENABLED(BABYSTEP_ZPROBE_OFFSET) || ENABLED(DELTA)
  8492. const float diff = zprobe_zoffset - last_zoffset;
  8493. #endif
  8494. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  8495. // Correct bilinear grid for new probe offset
  8496. if (diff) {
  8497. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
  8498. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
  8499. z_values[x][y] -= diff;
  8500. }
  8501. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  8502. bed_level_virt_interpolate();
  8503. #endif
  8504. #endif
  8505. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  8506. if (!no_babystep && planner.leveling_active)
  8507. thermalManager.babystep_axis(Z_AXIS, -LROUND(diff * planner.axis_steps_per_mm[Z_AXIS]));
  8508. #else
  8509. UNUSED(no_babystep);
  8510. #endif
  8511. #if ENABLED(DELTA) // correct the delta_height
  8512. delta_height -= diff;
  8513. #endif
  8514. }
  8515. last_zoffset = zprobe_zoffset;
  8516. }
  8517. inline void gcode_M851() {
  8518. SERIAL_ECHO_START();
  8519. SERIAL_ECHOPGM(MSG_ZPROBE_ZOFFSET " ");
  8520. if (parser.seen('Z')) {
  8521. const float value = parser.value_linear_units();
  8522. if (WITHIN(value, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX)) {
  8523. zprobe_zoffset = value;
  8524. refresh_zprobe_zoffset();
  8525. SERIAL_ECHO(zprobe_zoffset);
  8526. }
  8527. else
  8528. SERIAL_ECHOPGM(MSG_Z_MIN " " STRINGIFY(Z_PROBE_OFFSET_RANGE_MIN) " " MSG_Z_MAX " " STRINGIFY(Z_PROBE_OFFSET_RANGE_MAX));
  8529. }
  8530. else
  8531. SERIAL_ECHOPAIR(": ", zprobe_zoffset);
  8532. SERIAL_EOL();
  8533. }
  8534. #endif // HAS_BED_PROBE
  8535. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  8536. /**
  8537. * M600: Pause for filament change
  8538. *
  8539. * E[distance] - Retract the filament this far (negative value)
  8540. * Z[distance] - Move the Z axis by this distance
  8541. * X[position] - Move to this X position, with Y
  8542. * Y[position] - Move to this Y position, with X
  8543. * U[distance] - Retract distance for removal (negative value) (manual reload)
  8544. * L[distance] - Extrude distance for insertion (positive value) (manual reload)
  8545. * B[count] - Number of times to beep, -1 for indefinite (if equipped with a buzzer)
  8546. *
  8547. * Default values are used for omitted arguments.
  8548. *
  8549. */
  8550. inline void gcode_M600() {
  8551. #if ENABLED(HOME_BEFORE_FILAMENT_CHANGE)
  8552. // Don't allow filament change without homing first
  8553. if (axis_unhomed_error()) home_all_axes();
  8554. #endif
  8555. // Initial retract before move to filament change position
  8556. const float retract = parser.seen('E') ? parser.value_axis_units(E_AXIS) : 0
  8557. #ifdef PAUSE_PARK_RETRACT_LENGTH
  8558. - (PAUSE_PARK_RETRACT_LENGTH)
  8559. #endif
  8560. ;
  8561. // Lift Z axis
  8562. const float z_lift = parser.linearval('Z', 0
  8563. #ifdef PAUSE_PARK_Z_ADD
  8564. + PAUSE_PARK_Z_ADD
  8565. #endif
  8566. );
  8567. // Move XY axes to filament exchange position
  8568. const float x_pos = parser.linearval('X', 0
  8569. #ifdef PAUSE_PARK_X_POS
  8570. + PAUSE_PARK_X_POS
  8571. #endif
  8572. );
  8573. const float y_pos = parser.linearval('Y', 0
  8574. #ifdef PAUSE_PARK_Y_POS
  8575. + PAUSE_PARK_Y_POS
  8576. #endif
  8577. );
  8578. // Unload filament
  8579. const float unload_length = parser.seen('U') ? parser.value_axis_units(E_AXIS) : 0
  8580. #if defined(FILAMENT_CHANGE_UNLOAD_LENGTH) && FILAMENT_CHANGE_UNLOAD_LENGTH > 0
  8581. - (FILAMENT_CHANGE_UNLOAD_LENGTH)
  8582. #endif
  8583. ;
  8584. // Load filament
  8585. const float load_length = parser.seen('L') ? parser.value_axis_units(E_AXIS) : 0
  8586. #ifdef FILAMENT_CHANGE_LOAD_LENGTH
  8587. + FILAMENT_CHANGE_LOAD_LENGTH
  8588. #endif
  8589. ;
  8590. const int beep_count = parser.intval('B',
  8591. #ifdef FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS
  8592. FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS
  8593. #else
  8594. -1
  8595. #endif
  8596. );
  8597. const bool job_running = print_job_timer.isRunning();
  8598. if (pause_print(retract, z_lift, x_pos, y_pos, unload_length, beep_count, true)) {
  8599. wait_for_filament_reload(beep_count);
  8600. resume_print(load_length, ADVANCED_PAUSE_EXTRUDE_LENGTH, beep_count);
  8601. }
  8602. // Resume the print job timer if it was running
  8603. if (job_running) print_job_timer.start();
  8604. }
  8605. #endif // ADVANCED_PAUSE_FEATURE
  8606. #if ENABLED(MK2_MULTIPLEXER)
  8607. inline void select_multiplexed_stepper(const uint8_t e) {
  8608. stepper.synchronize();
  8609. disable_e_steppers();
  8610. WRITE(E_MUX0_PIN, TEST(e, 0) ? HIGH : LOW);
  8611. WRITE(E_MUX1_PIN, TEST(e, 1) ? HIGH : LOW);
  8612. WRITE(E_MUX2_PIN, TEST(e, 2) ? HIGH : LOW);
  8613. safe_delay(100);
  8614. }
  8615. /**
  8616. * M702: Unload all extruders
  8617. */
  8618. inline void gcode_M702() {
  8619. for (uint8_t s = 0; s < E_STEPPERS; s++) {
  8620. select_multiplexed_stepper(e);
  8621. // TODO: standard unload filament function
  8622. // MK2 firmware behavior:
  8623. // - Make sure temperature is high enough
  8624. // - Raise Z to at least 15 to make room
  8625. // - Extrude 1cm of filament in 1 second
  8626. // - Under 230C quickly purge ~12mm, over 230C purge ~10mm
  8627. // - Change E max feedrate to 80, eject the filament from the tube. Sync.
  8628. // - Restore E max feedrate to 50
  8629. }
  8630. // Go back to the last active extruder
  8631. select_multiplexed_stepper(active_extruder);
  8632. disable_e_steppers();
  8633. }
  8634. #endif // MK2_MULTIPLEXER
  8635. #if ENABLED(DUAL_X_CARRIAGE)
  8636. /**
  8637. * M605: Set dual x-carriage movement mode
  8638. *
  8639. * M605 S0: Full control mode. The slicer has full control over x-carriage movement
  8640. * M605 S1: Auto-park mode. The inactive head will auto park/unpark without slicer involvement
  8641. * M605 S2 [Xnnn] [Rmmm]: Duplication mode. The second extruder will duplicate the first with nnn
  8642. * units x-offset and an optional differential hotend temperature of
  8643. * mmm degrees. E.g., with "M605 S2 X100 R2" the second extruder will duplicate
  8644. * the first with a spacing of 100mm in the x direction and 2 degrees hotter.
  8645. *
  8646. * Note: the X axis should be homed after changing dual x-carriage mode.
  8647. */
  8648. inline void gcode_M605() {
  8649. stepper.synchronize();
  8650. if (parser.seen('S')) dual_x_carriage_mode = (DualXMode)parser.value_byte();
  8651. switch (dual_x_carriage_mode) {
  8652. case DXC_FULL_CONTROL_MODE:
  8653. case DXC_AUTO_PARK_MODE:
  8654. break;
  8655. case DXC_DUPLICATION_MODE:
  8656. if (parser.seen('X')) duplicate_extruder_x_offset = max(parser.value_linear_units(), X2_MIN_POS - x_home_pos(0));
  8657. if (parser.seen('R')) duplicate_extruder_temp_offset = parser.value_celsius_diff();
  8658. SERIAL_ECHO_START();
  8659. SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
  8660. SERIAL_CHAR(' ');
  8661. SERIAL_ECHO(hotend_offset[X_AXIS][0]);
  8662. SERIAL_CHAR(',');
  8663. SERIAL_ECHO(hotend_offset[Y_AXIS][0]);
  8664. SERIAL_CHAR(' ');
  8665. SERIAL_ECHO(duplicate_extruder_x_offset);
  8666. SERIAL_CHAR(',');
  8667. SERIAL_ECHOLN(hotend_offset[Y_AXIS][1]);
  8668. break;
  8669. default:
  8670. dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
  8671. break;
  8672. }
  8673. active_extruder_parked = false;
  8674. extruder_duplication_enabled = false;
  8675. delayed_move_time = 0;
  8676. }
  8677. #elif ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  8678. inline void gcode_M605() {
  8679. stepper.synchronize();
  8680. extruder_duplication_enabled = parser.intval('S') == (int)DXC_DUPLICATION_MODE;
  8681. SERIAL_ECHO_START();
  8682. SERIAL_ECHOLNPAIR(MSG_DUPLICATION_MODE, extruder_duplication_enabled ? MSG_ON : MSG_OFF);
  8683. }
  8684. #endif // DUAL_NOZZLE_DUPLICATION_MODE
  8685. #if ENABLED(LIN_ADVANCE)
  8686. /**
  8687. * M900: Set and/or Get advance K factor and WH/D ratio
  8688. *
  8689. * K<factor> Set advance K factor
  8690. * R<ratio> Set ratio directly (overrides WH/D)
  8691. * W<width> H<height> D<diam> Set ratio from WH/D
  8692. */
  8693. inline void gcode_M900() {
  8694. stepper.synchronize();
  8695. const float newK = parser.floatval('K', -1);
  8696. if (newK >= 0) planner.extruder_advance_k = newK;
  8697. float newR = parser.floatval('R', -1);
  8698. if (newR < 0) {
  8699. const float newD = parser.floatval('D', -1),
  8700. newW = parser.floatval('W', -1),
  8701. newH = parser.floatval('H', -1);
  8702. if (newD >= 0 && newW >= 0 && newH >= 0)
  8703. newR = newD ? (newW * newH) / (sq(newD * 0.5) * M_PI) : 0;
  8704. }
  8705. if (newR >= 0) planner.advance_ed_ratio = newR;
  8706. SERIAL_ECHO_START();
  8707. SERIAL_ECHOPAIR("Advance K=", planner.extruder_advance_k);
  8708. SERIAL_ECHOPGM(" E/D=");
  8709. const float ratio = planner.advance_ed_ratio;
  8710. if (ratio) SERIAL_ECHO(ratio); else SERIAL_ECHOPGM("Auto");
  8711. SERIAL_EOL();
  8712. }
  8713. #endif // LIN_ADVANCE
  8714. #if ENABLED(HAVE_TMC2130)
  8715. static void tmc2130_get_current(TMC2130Stepper &st, const char name) {
  8716. SERIAL_CHAR(name);
  8717. SERIAL_ECHOPGM(" axis driver current: ");
  8718. SERIAL_ECHOLN(st.getCurrent());
  8719. }
  8720. static void tmc2130_set_current(TMC2130Stepper &st, const char name, const int mA) {
  8721. st.setCurrent(mA, R_SENSE, HOLD_MULTIPLIER);
  8722. tmc2130_get_current(st, name);
  8723. }
  8724. static void tmc2130_report_otpw(TMC2130Stepper &st, const char name) {
  8725. SERIAL_CHAR(name);
  8726. SERIAL_ECHOPGM(" axis temperature prewarn triggered: ");
  8727. serialprintPGM(st.getOTPW() ? PSTR("true") : PSTR("false"));
  8728. SERIAL_EOL();
  8729. }
  8730. static void tmc2130_clear_otpw(TMC2130Stepper &st, const char name) {
  8731. st.clear_otpw();
  8732. SERIAL_CHAR(name);
  8733. SERIAL_ECHOLNPGM(" prewarn flag cleared");
  8734. }
  8735. static void tmc2130_get_pwmthrs(TMC2130Stepper &st, const char name, const uint16_t spmm) {
  8736. SERIAL_CHAR(name);
  8737. SERIAL_ECHOPGM(" stealthChop max speed set to ");
  8738. SERIAL_ECHOLN(12650000UL * st.microsteps() / (256 * st.stealth_max_speed() * spmm));
  8739. }
  8740. static void tmc2130_set_pwmthrs(TMC2130Stepper &st, const char name, const int32_t thrs, const uint32_t spmm) {
  8741. st.stealth_max_speed(12650000UL * st.microsteps() / (256 * thrs * spmm));
  8742. tmc2130_get_pwmthrs(st, name, spmm);
  8743. }
  8744. static void tmc2130_get_sgt(TMC2130Stepper &st, const char name) {
  8745. SERIAL_CHAR(name);
  8746. SERIAL_ECHOPGM(" driver homing sensitivity set to ");
  8747. SERIAL_ECHOLN(st.sgt());
  8748. }
  8749. static void tmc2130_set_sgt(TMC2130Stepper &st, const char name, const int8_t sgt_val) {
  8750. st.sgt(sgt_val);
  8751. tmc2130_get_sgt(st, name);
  8752. }
  8753. /**
  8754. * M906: Set motor current in milliamps using axis codes X, Y, Z, E
  8755. * Report driver currents when no axis specified
  8756. *
  8757. * S1: Enable automatic current control
  8758. * S0: Disable
  8759. */
  8760. inline void gcode_M906() {
  8761. uint16_t values[XYZE];
  8762. LOOP_XYZE(i)
  8763. values[i] = parser.intval(axis_codes[i]);
  8764. #if ENABLED(X_IS_TMC2130)
  8765. if (values[X_AXIS]) tmc2130_set_current(stepperX, 'X', values[X_AXIS]);
  8766. else tmc2130_get_current(stepperX, 'X');
  8767. #endif
  8768. #if ENABLED(Y_IS_TMC2130)
  8769. if (values[Y_AXIS]) tmc2130_set_current(stepperY, 'Y', values[Y_AXIS]);
  8770. else tmc2130_get_current(stepperY, 'Y');
  8771. #endif
  8772. #if ENABLED(Z_IS_TMC2130)
  8773. if (values[Z_AXIS]) tmc2130_set_current(stepperZ, 'Z', values[Z_AXIS]);
  8774. else tmc2130_get_current(stepperZ, 'Z');
  8775. #endif
  8776. #if ENABLED(E0_IS_TMC2130)
  8777. if (values[E_AXIS]) tmc2130_set_current(stepperE0, 'E', values[E_AXIS]);
  8778. else tmc2130_get_current(stepperE0, 'E');
  8779. #endif
  8780. #if ENABLED(AUTOMATIC_CURRENT_CONTROL)
  8781. if (parser.seen('S')) auto_current_control = parser.value_bool();
  8782. #endif
  8783. }
  8784. /**
  8785. * M911: Report TMC2130 stepper driver overtemperature pre-warn flag
  8786. * The flag is held by the library and persist until manually cleared by M912
  8787. */
  8788. inline void gcode_M911() {
  8789. const bool reportX = parser.seen('X'), reportY = parser.seen('Y'), reportZ = parser.seen('Z'), reportE = parser.seen('E'),
  8790. reportAll = (!reportX && !reportY && !reportZ && !reportE) || (reportX && reportY && reportZ && reportE);
  8791. #if ENABLED(X_IS_TMC2130)
  8792. if (reportX || reportAll) tmc2130_report_otpw(stepperX, 'X');
  8793. #endif
  8794. #if ENABLED(Y_IS_TMC2130)
  8795. if (reportY || reportAll) tmc2130_report_otpw(stepperY, 'Y');
  8796. #endif
  8797. #if ENABLED(Z_IS_TMC2130)
  8798. if (reportZ || reportAll) tmc2130_report_otpw(stepperZ, 'Z');
  8799. #endif
  8800. #if ENABLED(E0_IS_TMC2130)
  8801. if (reportE || reportAll) tmc2130_report_otpw(stepperE0, 'E');
  8802. #endif
  8803. }
  8804. /**
  8805. * M912: Clear TMC2130 stepper driver overtemperature pre-warn flag held by the library
  8806. */
  8807. inline void gcode_M912() {
  8808. const bool clearX = parser.seen('X'), clearY = parser.seen('Y'), clearZ = parser.seen('Z'), clearE = parser.seen('E'),
  8809. clearAll = (!clearX && !clearY && !clearZ && !clearE) || (clearX && clearY && clearZ && clearE);
  8810. #if ENABLED(X_IS_TMC2130)
  8811. if (clearX || clearAll) tmc2130_clear_otpw(stepperX, 'X');
  8812. #endif
  8813. #if ENABLED(Y_IS_TMC2130)
  8814. if (clearY || clearAll) tmc2130_clear_otpw(stepperY, 'Y');
  8815. #endif
  8816. #if ENABLED(Z_IS_TMC2130)
  8817. if (clearZ || clearAll) tmc2130_clear_otpw(stepperZ, 'Z');
  8818. #endif
  8819. #if ENABLED(E0_IS_TMC2130)
  8820. if (clearE || clearAll) tmc2130_clear_otpw(stepperE0, 'E');
  8821. #endif
  8822. }
  8823. /**
  8824. * M913: Set HYBRID_THRESHOLD speed.
  8825. */
  8826. #if ENABLED(HYBRID_THRESHOLD)
  8827. inline void gcode_M913() {
  8828. uint16_t values[XYZE];
  8829. LOOP_XYZE(i)
  8830. values[i] = parser.intval(axis_codes[i]);
  8831. #if ENABLED(X_IS_TMC2130)
  8832. if (values[X_AXIS]) tmc2130_set_pwmthrs(stepperX, 'X', values[X_AXIS], planner.axis_steps_per_mm[X_AXIS]);
  8833. else tmc2130_get_pwmthrs(stepperX, 'X', planner.axis_steps_per_mm[X_AXIS]);
  8834. #endif
  8835. #if ENABLED(Y_IS_TMC2130)
  8836. if (values[Y_AXIS]) tmc2130_set_pwmthrs(stepperY, 'Y', values[Y_AXIS], planner.axis_steps_per_mm[Y_AXIS]);
  8837. else tmc2130_get_pwmthrs(stepperY, 'Y', planner.axis_steps_per_mm[Y_AXIS]);
  8838. #endif
  8839. #if ENABLED(Z_IS_TMC2130)
  8840. if (values[Z_AXIS]) tmc2130_set_pwmthrs(stepperZ, 'Z', values[Z_AXIS], planner.axis_steps_per_mm[Z_AXIS]);
  8841. else tmc2130_get_pwmthrs(stepperZ, 'Z', planner.axis_steps_per_mm[Z_AXIS]);
  8842. #endif
  8843. #if ENABLED(E0_IS_TMC2130)
  8844. if (values[E_AXIS]) tmc2130_set_pwmthrs(stepperE0, 'E', values[E_AXIS], planner.axis_steps_per_mm[E_AXIS]);
  8845. else tmc2130_get_pwmthrs(stepperE0, 'E', planner.axis_steps_per_mm[E_AXIS]);
  8846. #endif
  8847. }
  8848. #endif // HYBRID_THRESHOLD
  8849. /**
  8850. * M914: Set SENSORLESS_HOMING sensitivity.
  8851. */
  8852. #if ENABLED(SENSORLESS_HOMING)
  8853. inline void gcode_M914() {
  8854. #if ENABLED(X_IS_TMC2130)
  8855. if (parser.seen(axis_codes[X_AXIS])) tmc2130_set_sgt(stepperX, 'X', parser.value_int());
  8856. else tmc2130_get_sgt(stepperX, 'X');
  8857. #endif
  8858. #if ENABLED(Y_IS_TMC2130)
  8859. if (parser.seen(axis_codes[Y_AXIS])) tmc2130_set_sgt(stepperY, 'Y', parser.value_int());
  8860. else tmc2130_get_sgt(stepperY, 'Y');
  8861. #endif
  8862. }
  8863. #endif // SENSORLESS_HOMING
  8864. #endif // HAVE_TMC2130
  8865. /**
  8866. * M907: Set digital trimpot motor current using axis codes X, Y, Z, E, B, S
  8867. */
  8868. inline void gcode_M907() {
  8869. #if HAS_DIGIPOTSS
  8870. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) stepper.digipot_current(i, parser.value_int());
  8871. if (parser.seen('B')) stepper.digipot_current(4, parser.value_int());
  8872. if (parser.seen('S')) for (uint8_t i = 0; i <= 4; i++) stepper.digipot_current(i, parser.value_int());
  8873. #elif HAS_MOTOR_CURRENT_PWM
  8874. #if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
  8875. if (parser.seen('X')) stepper.digipot_current(0, parser.value_int());
  8876. #endif
  8877. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
  8878. if (parser.seen('Z')) stepper.digipot_current(1, parser.value_int());
  8879. #endif
  8880. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
  8881. if (parser.seen('E')) stepper.digipot_current(2, parser.value_int());
  8882. #endif
  8883. #endif
  8884. #if ENABLED(DIGIPOT_I2C)
  8885. // this one uses actual amps in floating point
  8886. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) digipot_i2c_set_current(i, parser.value_float());
  8887. // for each additional extruder (named B,C,D,E..., channels 4,5,6,7...)
  8888. 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());
  8889. #endif
  8890. #if ENABLED(DAC_STEPPER_CURRENT)
  8891. if (parser.seen('S')) {
  8892. const float dac_percent = parser.value_float();
  8893. for (uint8_t i = 0; i <= 4; i++) dac_current_percent(i, dac_percent);
  8894. }
  8895. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) dac_current_percent(i, parser.value_float());
  8896. #endif
  8897. }
  8898. #if HAS_DIGIPOTSS || ENABLED(DAC_STEPPER_CURRENT)
  8899. /**
  8900. * M908: Control digital trimpot directly (M908 P<pin> S<current>)
  8901. */
  8902. inline void gcode_M908() {
  8903. #if HAS_DIGIPOTSS
  8904. stepper.digitalPotWrite(
  8905. parser.intval('P'),
  8906. parser.intval('S')
  8907. );
  8908. #endif
  8909. #ifdef DAC_STEPPER_CURRENT
  8910. dac_current_raw(
  8911. parser.byteval('P', -1),
  8912. parser.ushortval('S', 0)
  8913. );
  8914. #endif
  8915. }
  8916. #if ENABLED(DAC_STEPPER_CURRENT) // As with Printrbot RevF
  8917. inline void gcode_M909() { dac_print_values(); }
  8918. inline void gcode_M910() { dac_commit_eeprom(); }
  8919. #endif
  8920. #endif // HAS_DIGIPOTSS || DAC_STEPPER_CURRENT
  8921. #if HAS_MICROSTEPS
  8922. // M350 Set microstepping mode. Warning: Steps per unit remains unchanged. S code sets stepping mode for all drivers.
  8923. inline void gcode_M350() {
  8924. if (parser.seen('S')) for (int i = 0; i <= 4; i++) stepper.microstep_mode(i, parser.value_byte());
  8925. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) stepper.microstep_mode(i, parser.value_byte());
  8926. if (parser.seen('B')) stepper.microstep_mode(4, parser.value_byte());
  8927. stepper.microstep_readings();
  8928. }
  8929. /**
  8930. * M351: Toggle MS1 MS2 pins directly with axis codes X Y Z E B
  8931. * S# determines MS1 or MS2, X# sets the pin high/low.
  8932. */
  8933. inline void gcode_M351() {
  8934. if (parser.seenval('S')) switch (parser.value_byte()) {
  8935. case 1:
  8936. LOOP_XYZE(i) if (parser.seenval(axis_codes[i])) stepper.microstep_ms(i, parser.value_byte(), -1);
  8937. if (parser.seenval('B')) stepper.microstep_ms(4, parser.value_byte(), -1);
  8938. break;
  8939. case 2:
  8940. LOOP_XYZE(i) if (parser.seenval(axis_codes[i])) stepper.microstep_ms(i, -1, parser.value_byte());
  8941. if (parser.seenval('B')) stepper.microstep_ms(4, -1, parser.value_byte());
  8942. break;
  8943. }
  8944. stepper.microstep_readings();
  8945. }
  8946. #endif // HAS_MICROSTEPS
  8947. #if HAS_CASE_LIGHT
  8948. #ifndef INVERT_CASE_LIGHT
  8949. #define INVERT_CASE_LIGHT false
  8950. #endif
  8951. uint8_t case_light_brightness; // LCD routine wants INT
  8952. bool case_light_on;
  8953. void update_case_light() {
  8954. pinMode(CASE_LIGHT_PIN, OUTPUT); // digitalWrite doesn't set the port mode
  8955. if (case_light_on) {
  8956. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN))
  8957. analogWrite(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? 255 - case_light_brightness : case_light_brightness);
  8958. else
  8959. WRITE(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? LOW : HIGH);
  8960. }
  8961. else {
  8962. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN))
  8963. analogWrite(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? 255 : 0);
  8964. else
  8965. WRITE(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? HIGH : LOW);
  8966. }
  8967. }
  8968. #endif // HAS_CASE_LIGHT
  8969. /**
  8970. * M355: Turn case light on/off and set brightness
  8971. *
  8972. * P<byte> Set case light brightness (PWM pin required - ignored otherwise)
  8973. *
  8974. * S<bool> Set case light on/off
  8975. *
  8976. * When S turns on the light on a PWM pin then the current brightness level is used/restored
  8977. *
  8978. * M355 P200 S0 turns off the light & sets the brightness level
  8979. * M355 S1 turns on the light with a brightness of 200 (assuming a PWM pin)
  8980. */
  8981. inline void gcode_M355() {
  8982. #if HAS_CASE_LIGHT
  8983. uint8_t args = 0;
  8984. if (parser.seenval('P')) ++args, case_light_brightness = parser.value_byte();
  8985. if (parser.seenval('S')) ++args, case_light_on = parser.value_bool();
  8986. if (args) update_case_light();
  8987. // always report case light status
  8988. SERIAL_ECHO_START();
  8989. if (!case_light_on) {
  8990. SERIAL_ECHOLN("Case light: off");
  8991. }
  8992. else {
  8993. if (!USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) SERIAL_ECHOLN("Case light: on");
  8994. else SERIAL_ECHOLNPAIR("Case light: ", (int)case_light_brightness);
  8995. }
  8996. #else
  8997. SERIAL_ERROR_START();
  8998. SERIAL_ERRORLNPGM(MSG_ERR_M355_NONE);
  8999. #endif // HAS_CASE_LIGHT
  9000. }
  9001. #if ENABLED(MIXING_EXTRUDER)
  9002. /**
  9003. * M163: Set a single mix factor for a mixing extruder
  9004. * This is called "weight" by some systems.
  9005. *
  9006. * S[index] The channel index to set
  9007. * P[float] The mix value
  9008. *
  9009. */
  9010. inline void gcode_M163() {
  9011. const int mix_index = parser.intval('S');
  9012. if (mix_index < MIXING_STEPPERS) {
  9013. float mix_value = parser.floatval('P');
  9014. NOLESS(mix_value, 0.0);
  9015. mixing_factor[mix_index] = RECIPROCAL(mix_value);
  9016. }
  9017. }
  9018. #if MIXING_VIRTUAL_TOOLS > 1
  9019. /**
  9020. * M164: Store the current mix factors as a virtual tool.
  9021. *
  9022. * S[index] The virtual tool to store
  9023. *
  9024. */
  9025. inline void gcode_M164() {
  9026. const int tool_index = parser.intval('S');
  9027. if (tool_index < MIXING_VIRTUAL_TOOLS) {
  9028. normalize_mix();
  9029. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  9030. mixing_virtual_tool_mix[tool_index][i] = mixing_factor[i];
  9031. }
  9032. }
  9033. #endif
  9034. #if ENABLED(DIRECT_MIXING_IN_G1)
  9035. /**
  9036. * M165: Set multiple mix factors for a mixing extruder.
  9037. * Factors that are left out will be set to 0.
  9038. * All factors together must add up to 1.0.
  9039. *
  9040. * A[factor] Mix factor for extruder stepper 1
  9041. * B[factor] Mix factor for extruder stepper 2
  9042. * C[factor] Mix factor for extruder stepper 3
  9043. * D[factor] Mix factor for extruder stepper 4
  9044. * H[factor] Mix factor for extruder stepper 5
  9045. * I[factor] Mix factor for extruder stepper 6
  9046. *
  9047. */
  9048. inline void gcode_M165() { gcode_get_mix(); }
  9049. #endif
  9050. #endif // MIXING_EXTRUDER
  9051. /**
  9052. * M999: Restart after being stopped
  9053. *
  9054. * Default behaviour is to flush the serial buffer and request
  9055. * a resend to the host starting on the last N line received.
  9056. *
  9057. * Sending "M999 S1" will resume printing without flushing the
  9058. * existing command buffer.
  9059. *
  9060. */
  9061. inline void gcode_M999() {
  9062. Running = true;
  9063. lcd_reset_alert_level();
  9064. if (parser.boolval('S')) return;
  9065. // gcode_LastN = Stopped_gcode_LastN;
  9066. FlushSerialRequestResend();
  9067. }
  9068. #if ENABLED(SWITCHING_EXTRUDER)
  9069. #if EXTRUDERS > 3
  9070. #define REQ_ANGLES 4
  9071. #define _SERVO_NR (e < 2 ? SWITCHING_EXTRUDER_SERVO_NR : SWITCHING_EXTRUDER_E23_SERVO_NR)
  9072. #else
  9073. #define REQ_ANGLES 2
  9074. #define _SERVO_NR SWITCHING_EXTRUDER_SERVO_NR
  9075. #endif
  9076. inline void move_extruder_servo(const uint8_t e) {
  9077. constexpr int16_t angles[] = SWITCHING_EXTRUDER_SERVO_ANGLES;
  9078. static_assert(COUNT(angles) == REQ_ANGLES, "SWITCHING_EXTRUDER_SERVO_ANGLES needs " STRINGIFY(REQ_ANGLES) " angles.");
  9079. stepper.synchronize();
  9080. #if EXTRUDERS & 1
  9081. if (e < EXTRUDERS - 1)
  9082. #endif
  9083. {
  9084. MOVE_SERVO(_SERVO_NR, angles[e]);
  9085. safe_delay(500);
  9086. }
  9087. }
  9088. #endif // SWITCHING_EXTRUDER
  9089. #if ENABLED(SWITCHING_NOZZLE)
  9090. inline void move_nozzle_servo(const uint8_t e) {
  9091. const int16_t angles[2] = SWITCHING_NOZZLE_SERVO_ANGLES;
  9092. stepper.synchronize();
  9093. MOVE_SERVO(SWITCHING_NOZZLE_SERVO_NR, angles[e]);
  9094. safe_delay(500);
  9095. }
  9096. #endif
  9097. inline void invalid_extruder_error(const uint8_t e) {
  9098. SERIAL_ECHO_START();
  9099. SERIAL_CHAR('T');
  9100. SERIAL_ECHO_F(e, DEC);
  9101. SERIAL_CHAR(' ');
  9102. SERIAL_ECHOLN(MSG_INVALID_EXTRUDER);
  9103. }
  9104. #if ENABLED(PARKING_EXTRUDER)
  9105. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  9106. #define PE_MAGNET_ON_STATE !PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE
  9107. #else
  9108. #define PE_MAGNET_ON_STATE PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE
  9109. #endif
  9110. void pe_set_magnet(const uint8_t extruder_num, const uint8_t state) {
  9111. switch (extruder_num) {
  9112. case 1: OUT_WRITE(SOL1_PIN, state); break;
  9113. default: OUT_WRITE(SOL0_PIN, state); break;
  9114. }
  9115. #if PARKING_EXTRUDER_SOLENOIDS_DELAY > 0
  9116. dwell(PARKING_EXTRUDER_SOLENOIDS_DELAY);
  9117. #endif
  9118. }
  9119. inline void pe_activate_magnet(const uint8_t extruder_num) { pe_set_magnet(extruder_num, PE_MAGNET_ON_STATE); }
  9120. inline void pe_deactivate_magnet(const uint8_t extruder_num) { pe_set_magnet(extruder_num, !PE_MAGNET_ON_STATE); }
  9121. #endif // PARKING_EXTRUDER
  9122. #if HAS_FANMUX
  9123. void fanmux_switch(const uint8_t e) {
  9124. WRITE(FANMUX0_PIN, TEST(e, 0) ? HIGH : LOW);
  9125. #if PIN_EXISTS(FANMUX1)
  9126. WRITE(FANMUX1_PIN, TEST(e, 1) ? HIGH : LOW);
  9127. #if PIN_EXISTS(FANMUX2)
  9128. WRITE(FANMUX2, TEST(e, 2) ? HIGH : LOW);
  9129. #endif
  9130. #endif
  9131. }
  9132. FORCE_INLINE void fanmux_init(void) {
  9133. SET_OUTPUT(FANMUX0_PIN);
  9134. #if PIN_EXISTS(FANMUX1)
  9135. SET_OUTPUT(FANMUX1_PIN);
  9136. #if PIN_EXISTS(FANMUX2)
  9137. SET_OUTPUT(FANMUX2_PIN);
  9138. #endif
  9139. #endif
  9140. fanmux_switch(0);
  9141. }
  9142. #endif // HAS_FANMUX
  9143. /**
  9144. * Perform a tool-change, which may result in moving the
  9145. * previous tool out of the way and the new tool into place.
  9146. */
  9147. void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool no_move/*=false*/) {
  9148. #if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
  9149. if (tmp_extruder >= MIXING_VIRTUAL_TOOLS)
  9150. return invalid_extruder_error(tmp_extruder);
  9151. // T0-Tnnn: Switch virtual tool by changing the mix
  9152. for (uint8_t j = 0; j < MIXING_STEPPERS; j++)
  9153. mixing_factor[j] = mixing_virtual_tool_mix[tmp_extruder][j];
  9154. #else // !MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
  9155. if (tmp_extruder >= EXTRUDERS)
  9156. return invalid_extruder_error(tmp_extruder);
  9157. #if HOTENDS > 1
  9158. const float old_feedrate_mm_s = fr_mm_s > 0.0 ? fr_mm_s : feedrate_mm_s;
  9159. feedrate_mm_s = fr_mm_s > 0.0 ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  9160. if (tmp_extruder != active_extruder) {
  9161. if (!no_move && axis_unhomed_error()) {
  9162. no_move = true;
  9163. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9164. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("No move on toolchange");
  9165. #endif
  9166. }
  9167. // Save current position to destination, for use later
  9168. set_destination_from_current();
  9169. #if ENABLED(DUAL_X_CARRIAGE)
  9170. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9171. if (DEBUGGING(LEVELING)) {
  9172. SERIAL_ECHOPGM("Dual X Carriage Mode ");
  9173. switch (dual_x_carriage_mode) {
  9174. case DXC_FULL_CONTROL_MODE: SERIAL_ECHOLNPGM("DXC_FULL_CONTROL_MODE"); break;
  9175. case DXC_AUTO_PARK_MODE: SERIAL_ECHOLNPGM("DXC_AUTO_PARK_MODE"); break;
  9176. case DXC_DUPLICATION_MODE: SERIAL_ECHOLNPGM("DXC_DUPLICATION_MODE"); break;
  9177. }
  9178. }
  9179. #endif
  9180. const float xhome = x_home_pos(active_extruder);
  9181. if (dual_x_carriage_mode == DXC_AUTO_PARK_MODE
  9182. && IsRunning()
  9183. && (delayed_move_time || current_position[X_AXIS] != xhome)
  9184. ) {
  9185. float raised_z = current_position[Z_AXIS] + TOOLCHANGE_PARK_ZLIFT;
  9186. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  9187. NOMORE(raised_z, soft_endstop_max[Z_AXIS]);
  9188. #endif
  9189. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9190. if (DEBUGGING(LEVELING)) {
  9191. SERIAL_ECHOLNPAIR("Raise to ", raised_z);
  9192. SERIAL_ECHOLNPAIR("MoveX to ", xhome);
  9193. SERIAL_ECHOLNPAIR("Lower to ", current_position[Z_AXIS]);
  9194. }
  9195. #endif
  9196. // Park old head: 1) raise 2) move to park position 3) lower
  9197. for (uint8_t i = 0; i < 3; i++)
  9198. planner.buffer_line(
  9199. i == 0 ? current_position[X_AXIS] : xhome,
  9200. current_position[Y_AXIS],
  9201. i == 2 ? current_position[Z_AXIS] : raised_z,
  9202. current_position[E_AXIS],
  9203. planner.max_feedrate_mm_s[i == 1 ? X_AXIS : Z_AXIS],
  9204. active_extruder
  9205. );
  9206. stepper.synchronize();
  9207. }
  9208. // Apply Y & Z extruder offset (X offset is used as home pos with Dual X)
  9209. current_position[Y_AXIS] -= hotend_offset[Y_AXIS][active_extruder] - hotend_offset[Y_AXIS][tmp_extruder];
  9210. current_position[Z_AXIS] -= hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder];
  9211. // Activate the new extruder ahead of calling set_axis_is_at_home!
  9212. active_extruder = tmp_extruder;
  9213. // This function resets the max/min values - the current position may be overwritten below.
  9214. set_axis_is_at_home(X_AXIS);
  9215. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9216. if (DEBUGGING(LEVELING)) DEBUG_POS("New Extruder", current_position);
  9217. #endif
  9218. // Only when auto-parking are carriages safe to move
  9219. if (dual_x_carriage_mode != DXC_AUTO_PARK_MODE) no_move = true;
  9220. switch (dual_x_carriage_mode) {
  9221. case DXC_FULL_CONTROL_MODE:
  9222. // New current position is the position of the activated extruder
  9223. current_position[X_AXIS] = inactive_extruder_x_pos;
  9224. // Save the inactive extruder's position (from the old current_position)
  9225. inactive_extruder_x_pos = destination[X_AXIS];
  9226. break;
  9227. case DXC_AUTO_PARK_MODE:
  9228. // record raised toolhead position for use by unpark
  9229. COPY(raised_parked_position, current_position);
  9230. raised_parked_position[Z_AXIS] += TOOLCHANGE_UNPARK_ZLIFT;
  9231. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  9232. NOMORE(raised_parked_position[Z_AXIS], soft_endstop_max[Z_AXIS]);
  9233. #endif
  9234. active_extruder_parked = true;
  9235. delayed_move_time = 0;
  9236. break;
  9237. case DXC_DUPLICATION_MODE:
  9238. // If the new extruder is the left one, set it "parked"
  9239. // This triggers the second extruder to move into the duplication position
  9240. active_extruder_parked = (active_extruder == 0);
  9241. if (active_extruder_parked)
  9242. current_position[X_AXIS] = inactive_extruder_x_pos;
  9243. else
  9244. current_position[X_AXIS] = destination[X_AXIS] + duplicate_extruder_x_offset;
  9245. inactive_extruder_x_pos = destination[X_AXIS];
  9246. extruder_duplication_enabled = false;
  9247. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9248. if (DEBUGGING(LEVELING)) {
  9249. SERIAL_ECHOLNPAIR("Set inactive_extruder_x_pos=", inactive_extruder_x_pos);
  9250. SERIAL_ECHOLNPGM("Clear extruder_duplication_enabled");
  9251. }
  9252. #endif
  9253. break;
  9254. }
  9255. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9256. if (DEBUGGING(LEVELING)) {
  9257. SERIAL_ECHOLNPAIR("Active extruder parked: ", active_extruder_parked ? "yes" : "no");
  9258. DEBUG_POS("New extruder (parked)", current_position);
  9259. }
  9260. #endif
  9261. // No extra case for HAS_ABL in DUAL_X_CARRIAGE. Does that mean they don't work together?
  9262. #else // !DUAL_X_CARRIAGE
  9263. #if ENABLED(PARKING_EXTRUDER) // Dual Parking extruder
  9264. const float z_diff = hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder];
  9265. float z_raise = PARKING_EXTRUDER_SECURITY_RAISE;
  9266. if (!no_move) {
  9267. const float parkingposx[] = PARKING_EXTRUDER_PARKING_X,
  9268. midpos = ((parkingposx[1] - parkingposx[0])/2) + parkingposx[0] + hotend_offset[X_AXIS][active_extruder],
  9269. grabpos = parkingposx[tmp_extruder] + hotend_offset[X_AXIS][active_extruder]
  9270. + (tmp_extruder == 0 ? -(PARKING_EXTRUDER_GRAB_DISTANCE) : PARKING_EXTRUDER_GRAB_DISTANCE);
  9271. /**
  9272. * Steps:
  9273. * 1. Raise Z-Axis to give enough clearance
  9274. * 2. Move to park position of old extruder
  9275. * 3. Disengage magnetic field, wait for delay
  9276. * 4. Move near new extruder
  9277. * 5. Engage magnetic field for new extruder
  9278. * 6. Move to parking incl. offset of new extruder
  9279. * 7. Lower Z-Axis
  9280. */
  9281. // STEP 1
  9282. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9283. SERIAL_ECHOLNPGM("Starting Autopark");
  9284. if (DEBUGGING(LEVELING)) DEBUG_POS("current position:", current_position);
  9285. #endif
  9286. current_position[Z_AXIS] += z_raise;
  9287. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9288. SERIAL_ECHOLNPGM("(1) Raise Z-Axis ");
  9289. if (DEBUGGING(LEVELING)) DEBUG_POS("Moving to Raised Z-Position", current_position);
  9290. #endif
  9291. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
  9292. stepper.synchronize();
  9293. // STEP 2
  9294. current_position[X_AXIS] = parkingposx[active_extruder] + hotend_offset[X_AXIS][active_extruder];
  9295. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9296. SERIAL_ECHOLNPAIR("(2) Park extruder ", active_extruder);
  9297. if (DEBUGGING(LEVELING)) DEBUG_POS("Moving ParkPos", current_position);
  9298. #endif
  9299. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9300. stepper.synchronize();
  9301. // STEP 3
  9302. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9303. SERIAL_ECHOLNPGM("(3) Disengage magnet ");
  9304. #endif
  9305. pe_deactivate_magnet(active_extruder);
  9306. // STEP 4
  9307. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9308. SERIAL_ECHOLNPGM("(4) Move to position near new extruder");
  9309. #endif
  9310. current_position[X_AXIS] += (active_extruder == 0 ? 10 : -10); // move 10mm away from parked extruder
  9311. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9312. if (DEBUGGING(LEVELING)) DEBUG_POS("Moving away from parked extruder", current_position);
  9313. #endif
  9314. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9315. stepper.synchronize();
  9316. // STEP 5
  9317. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9318. SERIAL_ECHOLNPGM("(5) Engage magnetic field");
  9319. #endif
  9320. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  9321. pe_activate_magnet(active_extruder); //just save power for inverted magnets
  9322. #endif
  9323. pe_activate_magnet(tmp_extruder);
  9324. // STEP 6
  9325. current_position[X_AXIS] = grabpos + (tmp_extruder == 0 ? (+10) : (-10));
  9326. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9327. current_position[X_AXIS] = grabpos;
  9328. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9329. SERIAL_ECHOLNPAIR("(6) Unpark extruder ", tmp_extruder);
  9330. if (DEBUGGING(LEVELING)) DEBUG_POS("Move UnparkPos", current_position);
  9331. #endif
  9332. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS]/2, active_extruder);
  9333. stepper.synchronize();
  9334. // Step 7
  9335. current_position[X_AXIS] = midpos - hotend_offset[X_AXIS][tmp_extruder];
  9336. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9337. SERIAL_ECHOLNPGM("(7) Move midway between hotends");
  9338. if (DEBUGGING(LEVELING)) DEBUG_POS("Move midway to new extruder", current_position);
  9339. #endif
  9340. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9341. stepper.synchronize();
  9342. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9343. SERIAL_ECHOLNPGM("Autopark done.");
  9344. #endif
  9345. }
  9346. else { // nomove == true
  9347. // Only engage magnetic field for new extruder
  9348. pe_activate_magnet(tmp_extruder);
  9349. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  9350. pe_activate_magnet(active_extruder); // Just save power for inverted magnets
  9351. #endif
  9352. }
  9353. current_position[Z_AXIS] -= hotend_offset[Z_AXIS][tmp_extruder] - hotend_offset[Z_AXIS][active_extruder]; // Apply Zoffset
  9354. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9355. if (DEBUGGING(LEVELING)) DEBUG_POS("Applying Z-offset", current_position);
  9356. #endif
  9357. #endif // dualParking extruder
  9358. #if ENABLED(SWITCHING_NOZZLE)
  9359. #define DONT_SWITCH (SWITCHING_EXTRUDER_SERVO_NR == SWITCHING_NOZZLE_SERVO_NR)
  9360. // <0 if the new nozzle is higher, >0 if lower. A bigger raise when lower.
  9361. const float z_diff = hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder],
  9362. z_raise = 0.3 + (z_diff > 0.0 ? z_diff : 0.0);
  9363. // Always raise by some amount (destination copied from current_position earlier)
  9364. current_position[Z_AXIS] += z_raise;
  9365. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
  9366. move_nozzle_servo(tmp_extruder);
  9367. #endif
  9368. /**
  9369. * Set current_position to the position of the new nozzle.
  9370. * Offsets are based on linear distance, so we need to get
  9371. * the resulting position in coordinate space.
  9372. *
  9373. * - With grid or 3-point leveling, offset XYZ by a tilted vector
  9374. * - With mesh leveling, update Z for the new position
  9375. * - Otherwise, just use the raw linear distance
  9376. *
  9377. * Software endstops are altered here too. Consider a case where:
  9378. * E0 at X=0 ... E1 at X=10
  9379. * When we switch to E1 now X=10, but E1 can't move left.
  9380. * To express this we apply the change in XY to the software endstops.
  9381. * E1 can move farther right than E0, so the right limit is extended.
  9382. *
  9383. * Note that we don't adjust the Z software endstops. Why not?
  9384. * Consider a case where Z=0 (here) and switching to E1 makes Z=1
  9385. * because the bed is 1mm lower at the new position. As long as
  9386. * the first nozzle is out of the way, the carriage should be
  9387. * allowed to move 1mm lower. This technically "breaks" the
  9388. * Z software endstop. But this is technically correct (and
  9389. * there is no viable alternative).
  9390. */
  9391. #if ABL_PLANAR
  9392. // Offset extruder, make sure to apply the bed level rotation matrix
  9393. vector_3 tmp_offset_vec = vector_3(hotend_offset[X_AXIS][tmp_extruder],
  9394. hotend_offset[Y_AXIS][tmp_extruder],
  9395. 0),
  9396. act_offset_vec = vector_3(hotend_offset[X_AXIS][active_extruder],
  9397. hotend_offset[Y_AXIS][active_extruder],
  9398. 0),
  9399. offset_vec = tmp_offset_vec - act_offset_vec;
  9400. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9401. if (DEBUGGING(LEVELING)) {
  9402. tmp_offset_vec.debug(PSTR("tmp_offset_vec"));
  9403. act_offset_vec.debug(PSTR("act_offset_vec"));
  9404. offset_vec.debug(PSTR("offset_vec (BEFORE)"));
  9405. }
  9406. #endif
  9407. offset_vec.apply_rotation(planner.bed_level_matrix.transpose(planner.bed_level_matrix));
  9408. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9409. if (DEBUGGING(LEVELING)) offset_vec.debug(PSTR("offset_vec (AFTER)"));
  9410. #endif
  9411. // Adjustments to the current position
  9412. const float xydiff[2] = { offset_vec.x, offset_vec.y };
  9413. current_position[Z_AXIS] += offset_vec.z;
  9414. #else // !ABL_PLANAR
  9415. const float xydiff[2] = {
  9416. hotend_offset[X_AXIS][tmp_extruder] - hotend_offset[X_AXIS][active_extruder],
  9417. hotend_offset[Y_AXIS][tmp_extruder] - hotend_offset[Y_AXIS][active_extruder]
  9418. };
  9419. #if ENABLED(MESH_BED_LEVELING)
  9420. if (planner.leveling_active) {
  9421. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9422. if (DEBUGGING(LEVELING)) SERIAL_ECHOPAIR("Z before MBL: ", current_position[Z_AXIS]);
  9423. #endif
  9424. float x2 = current_position[X_AXIS] + xydiff[X_AXIS],
  9425. y2 = current_position[Y_AXIS] + xydiff[Y_AXIS],
  9426. z1 = current_position[Z_AXIS], z2 = z1;
  9427. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], z1);
  9428. planner.apply_leveling(x2, y2, z2);
  9429. current_position[Z_AXIS] += z2 - z1;
  9430. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9431. if (DEBUGGING(LEVELING))
  9432. SERIAL_ECHOLNPAIR(" after: ", current_position[Z_AXIS]);
  9433. #endif
  9434. }
  9435. #endif // MESH_BED_LEVELING
  9436. #endif // !HAS_ABL
  9437. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9438. if (DEBUGGING(LEVELING)) {
  9439. SERIAL_ECHOPAIR("Offset Tool XY by { ", xydiff[X_AXIS]);
  9440. SERIAL_ECHOPAIR(", ", xydiff[Y_AXIS]);
  9441. SERIAL_ECHOLNPGM(" }");
  9442. }
  9443. #endif
  9444. // The newly-selected extruder XY is actually at...
  9445. current_position[X_AXIS] += xydiff[X_AXIS];
  9446. current_position[Y_AXIS] += xydiff[Y_AXIS];
  9447. // Set the new active extruder
  9448. active_extruder = tmp_extruder;
  9449. #endif // !DUAL_X_CARRIAGE
  9450. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9451. if (DEBUGGING(LEVELING)) DEBUG_POS("Sync After Toolchange", current_position);
  9452. #endif
  9453. // Tell the planner the new "current position"
  9454. SYNC_PLAN_POSITION_KINEMATIC();
  9455. // Move to the "old position" (move the extruder into place)
  9456. if (!no_move && IsRunning()) {
  9457. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9458. if (DEBUGGING(LEVELING)) DEBUG_POS("Move back", destination);
  9459. #endif
  9460. prepare_move_to_destination();
  9461. }
  9462. #if ENABLED(SWITCHING_NOZZLE)
  9463. // Move back down, if needed. (Including when the new tool is higher.)
  9464. if (z_raise != z_diff) {
  9465. destination[Z_AXIS] += z_diff;
  9466. feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS];
  9467. prepare_move_to_destination();
  9468. }
  9469. #endif
  9470. } // (tmp_extruder != active_extruder)
  9471. stepper.synchronize();
  9472. #if ENABLED(EXT_SOLENOID) && !ENABLED(PARKING_EXTRUDER)
  9473. disable_all_solenoids();
  9474. enable_solenoid_on_active_extruder();
  9475. #endif // EXT_SOLENOID
  9476. feedrate_mm_s = old_feedrate_mm_s;
  9477. #else // HOTENDS <= 1
  9478. UNUSED(fr_mm_s);
  9479. UNUSED(no_move);
  9480. #if ENABLED(MK2_MULTIPLEXER)
  9481. if (tmp_extruder >= E_STEPPERS)
  9482. return invalid_extruder_error(tmp_extruder);
  9483. select_multiplexed_stepper(tmp_extruder);
  9484. #endif
  9485. // Set the new active extruder
  9486. active_extruder = tmp_extruder;
  9487. #endif // HOTENDS <= 1
  9488. #if ENABLED(SWITCHING_EXTRUDER) && !DONT_SWITCH
  9489. stepper.synchronize();
  9490. move_extruder_servo(active_extruder);
  9491. #endif
  9492. #if HAS_FANMUX
  9493. fanmux_switch(active_extruder);
  9494. #endif
  9495. SERIAL_ECHO_START();
  9496. SERIAL_ECHOLNPAIR(MSG_ACTIVE_EXTRUDER, (int)active_extruder);
  9497. #endif // !MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
  9498. }
  9499. /**
  9500. * T0-T3: Switch tool, usually switching extruders
  9501. *
  9502. * F[units/min] Set the movement feedrate
  9503. * S1 Don't move the tool in XY after change
  9504. */
  9505. inline void gcode_T(const uint8_t tmp_extruder) {
  9506. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9507. if (DEBUGGING(LEVELING)) {
  9508. SERIAL_ECHOPAIR(">>> gcode_T(", tmp_extruder);
  9509. SERIAL_CHAR(')');
  9510. SERIAL_EOL();
  9511. DEBUG_POS("BEFORE", current_position);
  9512. }
  9513. #endif
  9514. #if HOTENDS == 1 || (ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1)
  9515. tool_change(tmp_extruder);
  9516. #elif HOTENDS > 1
  9517. tool_change(
  9518. tmp_extruder,
  9519. MMM_TO_MMS(parser.linearval('F')),
  9520. (tmp_extruder == active_extruder) || parser.boolval('S')
  9521. );
  9522. #endif
  9523. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9524. if (DEBUGGING(LEVELING)) {
  9525. DEBUG_POS("AFTER", current_position);
  9526. SERIAL_ECHOLNPGM("<<< gcode_T");
  9527. }
  9528. #endif
  9529. }
  9530. /**
  9531. * Process the parsed command and dispatch it to its handler
  9532. */
  9533. void process_parsed_command() {
  9534. KEEPALIVE_STATE(IN_HANDLER);
  9535. // Handle a known G, M, or T
  9536. switch (parser.command_letter) {
  9537. case 'G': switch (parser.codenum) {
  9538. // G0, G1
  9539. case 0:
  9540. case 1:
  9541. #if IS_SCARA
  9542. gcode_G0_G1(parser.codenum == 0);
  9543. #else
  9544. gcode_G0_G1();
  9545. #endif
  9546. break;
  9547. // G2, G3
  9548. #if ENABLED(ARC_SUPPORT) && DISABLED(SCARA)
  9549. case 2: // G2: CW ARC
  9550. case 3: // G3: CCW ARC
  9551. gcode_G2_G3(parser.codenum == 2);
  9552. break;
  9553. #endif
  9554. // G4 Dwell
  9555. case 4:
  9556. gcode_G4();
  9557. break;
  9558. #if ENABLED(BEZIER_CURVE_SUPPORT)
  9559. case 5: // G5: Cubic B_spline
  9560. gcode_G5();
  9561. break;
  9562. #endif // BEZIER_CURVE_SUPPORT
  9563. #if ENABLED(FWRETRACT)
  9564. case 10: // G10: retract
  9565. gcode_G10();
  9566. break;
  9567. case 11: // G11: retract_recover
  9568. gcode_G11();
  9569. break;
  9570. #endif // FWRETRACT
  9571. #if ENABLED(NOZZLE_CLEAN_FEATURE)
  9572. case 12:
  9573. gcode_G12(); // G12: Nozzle Clean
  9574. break;
  9575. #endif // NOZZLE_CLEAN_FEATURE
  9576. #if ENABLED(CNC_WORKSPACE_PLANES)
  9577. case 17: // G17: Select Plane XY
  9578. gcode_G17();
  9579. break;
  9580. case 18: // G18: Select Plane ZX
  9581. gcode_G18();
  9582. break;
  9583. case 19: // G19: Select Plane YZ
  9584. gcode_G19();
  9585. break;
  9586. #endif // CNC_WORKSPACE_PLANES
  9587. #if ENABLED(INCH_MODE_SUPPORT)
  9588. case 20: // G20: Inch Mode
  9589. gcode_G20();
  9590. break;
  9591. case 21: // G21: MM Mode
  9592. gcode_G21();
  9593. break;
  9594. #endif // INCH_MODE_SUPPORT
  9595. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
  9596. case 26: // G26: Mesh Validation Pattern generation
  9597. gcode_G26();
  9598. break;
  9599. #endif // AUTO_BED_LEVELING_UBL
  9600. #if ENABLED(NOZZLE_PARK_FEATURE)
  9601. case 27: // G27: Nozzle Park
  9602. gcode_G27();
  9603. break;
  9604. #endif // NOZZLE_PARK_FEATURE
  9605. case 28: // G28: Home all axes, one at a time
  9606. gcode_G28(false);
  9607. break;
  9608. #if HAS_LEVELING
  9609. case 29: // G29 Detailed Z probe, probes the bed at 3 or more points,
  9610. // or provides access to the UBL System if enabled.
  9611. gcode_G29();
  9612. break;
  9613. #endif // HAS_LEVELING
  9614. #if HAS_BED_PROBE
  9615. case 30: // G30 Single Z probe
  9616. gcode_G30();
  9617. break;
  9618. #if ENABLED(Z_PROBE_SLED)
  9619. case 31: // G31: dock the sled
  9620. gcode_G31();
  9621. break;
  9622. case 32: // G32: undock the sled
  9623. gcode_G32();
  9624. break;
  9625. #endif // Z_PROBE_SLED
  9626. #endif // HAS_BED_PROBE
  9627. #if ENABLED(DELTA_AUTO_CALIBRATION)
  9628. case 33: // G33: Delta Auto-Calibration
  9629. gcode_G33();
  9630. break;
  9631. #endif // DELTA_AUTO_CALIBRATION
  9632. #if ENABLED(G38_PROBE_TARGET)
  9633. case 38: // G38.2 & G38.3
  9634. if (parser.subcode == 2 || parser.subcode == 3)
  9635. gcode_G38(parser.subcode == 2);
  9636. break;
  9637. #endif
  9638. case 90: // G90
  9639. relative_mode = false;
  9640. break;
  9641. case 91: // G91
  9642. relative_mode = true;
  9643. break;
  9644. case 92: // G92
  9645. gcode_G92();
  9646. break;
  9647. #if HAS_MESH
  9648. case 42:
  9649. gcode_G42();
  9650. break;
  9651. #endif
  9652. #if ENABLED(DEBUG_GCODE_PARSER)
  9653. case 800:
  9654. parser.debug(); // GCode Parser Test for G
  9655. break;
  9656. #endif
  9657. }
  9658. break;
  9659. case 'M': switch (parser.codenum) {
  9660. #if HAS_RESUME_CONTINUE
  9661. case 0: // M0: Unconditional stop - Wait for user button press on LCD
  9662. case 1: // M1: Conditional stop - Wait for user button press on LCD
  9663. gcode_M0_M1();
  9664. break;
  9665. #endif // ULTIPANEL
  9666. #if ENABLED(SPINDLE_LASER_ENABLE)
  9667. case 3:
  9668. gcode_M3_M4(true); // M3: turn spindle/laser on, set laser/spindle power/speed, set rotation direction CW
  9669. break; // synchronizes with movement commands
  9670. case 4:
  9671. gcode_M3_M4(false); // M4: turn spindle/laser on, set laser/spindle power/speed, set rotation direction CCW
  9672. break; // synchronizes with movement commands
  9673. case 5:
  9674. gcode_M5(); // M5 - turn spindle/laser off
  9675. break; // synchronizes with movement commands
  9676. #endif
  9677. case 17: // M17: Enable all stepper motors
  9678. gcode_M17();
  9679. break;
  9680. #if ENABLED(SDSUPPORT)
  9681. case 20: // M20: list SD card
  9682. gcode_M20(); break;
  9683. case 21: // M21: init SD card
  9684. gcode_M21(); break;
  9685. case 22: // M22: release SD card
  9686. gcode_M22(); break;
  9687. case 23: // M23: Select file
  9688. gcode_M23(); break;
  9689. case 24: // M24: Start SD print
  9690. gcode_M24(); break;
  9691. case 25: // M25: Pause SD print
  9692. gcode_M25(); break;
  9693. case 26: // M26: Set SD index
  9694. gcode_M26(); break;
  9695. case 27: // M27: Get SD status
  9696. gcode_M27(); break;
  9697. case 28: // M28: Start SD write
  9698. gcode_M28(); break;
  9699. case 29: // M29: Stop SD write
  9700. gcode_M29(); break;
  9701. case 30: // M30 <filename> Delete File
  9702. gcode_M30(); break;
  9703. case 32: // M32: Select file and start SD print
  9704. gcode_M32(); break;
  9705. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  9706. case 33: // M33: Get the long full path to a file or folder
  9707. gcode_M33(); break;
  9708. #endif
  9709. #if ENABLED(SDCARD_SORT_ALPHA) && ENABLED(SDSORT_GCODE)
  9710. case 34: // M34: Set SD card sorting options
  9711. gcode_M34(); break;
  9712. #endif // SDCARD_SORT_ALPHA && SDSORT_GCODE
  9713. case 928: // M928: Start SD write
  9714. gcode_M928(); break;
  9715. #endif // SDSUPPORT
  9716. case 31: // M31: Report time since the start of SD print or last M109
  9717. gcode_M31(); break;
  9718. case 42: // M42: Change pin state
  9719. gcode_M42(); break;
  9720. #if ENABLED(PINS_DEBUGGING)
  9721. case 43: // M43: Read pin state
  9722. gcode_M43(); break;
  9723. #endif
  9724. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  9725. case 48: // M48: Z probe repeatability test
  9726. gcode_M48();
  9727. break;
  9728. #endif // Z_MIN_PROBE_REPEATABILITY_TEST
  9729. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
  9730. case 49: // M49: Turn on or off G26 debug flag for verbose output
  9731. gcode_M49();
  9732. break;
  9733. #endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION
  9734. #if ENABLED(ULTRA_LCD) && ENABLED(LCD_SET_PROGRESS_MANUALLY)
  9735. case 73: // M73: Set print progress percentage
  9736. gcode_M73(); break;
  9737. #endif
  9738. case 75: // M75: Start print timer
  9739. gcode_M75(); break;
  9740. case 76: // M76: Pause print timer
  9741. gcode_M76(); break;
  9742. case 77: // M77: Stop print timer
  9743. gcode_M77(); break;
  9744. #if ENABLED(PRINTCOUNTER)
  9745. case 78: // M78: Show print statistics
  9746. gcode_M78(); break;
  9747. #endif
  9748. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  9749. case 100: // M100: Free Memory Report
  9750. gcode_M100();
  9751. break;
  9752. #endif
  9753. case 104: // M104: Set hot end temperature
  9754. gcode_M104();
  9755. break;
  9756. case 110: // M110: Set Current Line Number
  9757. gcode_M110();
  9758. break;
  9759. case 111: // M111: Set debug level
  9760. gcode_M111();
  9761. break;
  9762. #if DISABLED(EMERGENCY_PARSER)
  9763. case 108: // M108: Cancel Waiting
  9764. gcode_M108();
  9765. break;
  9766. case 112: // M112: Emergency Stop
  9767. gcode_M112();
  9768. break;
  9769. case 410: // M410 quickstop - Abort all the planned moves.
  9770. gcode_M410();
  9771. break;
  9772. #endif
  9773. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  9774. case 113: // M113: Set Host Keepalive interval
  9775. gcode_M113();
  9776. break;
  9777. #endif
  9778. case 140: // M140: Set bed temperature
  9779. gcode_M140();
  9780. break;
  9781. case 105: // M105: Report current temperature
  9782. gcode_M105();
  9783. KEEPALIVE_STATE(NOT_BUSY);
  9784. return; // "ok" already printed
  9785. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  9786. case 155: // M155: Set temperature auto-report interval
  9787. gcode_M155();
  9788. break;
  9789. #endif
  9790. case 109: // M109: Wait for hotend temperature to reach target
  9791. gcode_M109();
  9792. break;
  9793. #if HAS_TEMP_BED
  9794. case 190: // M190: Wait for bed temperature to reach target
  9795. gcode_M190();
  9796. break;
  9797. #endif // HAS_TEMP_BED
  9798. #if FAN_COUNT > 0
  9799. case 106: // M106: Fan On
  9800. gcode_M106();
  9801. break;
  9802. case 107: // M107: Fan Off
  9803. gcode_M107();
  9804. break;
  9805. #endif // FAN_COUNT > 0
  9806. #if ENABLED(PARK_HEAD_ON_PAUSE)
  9807. case 125: // M125: Store current position and move to filament change position
  9808. gcode_M125(); break;
  9809. #endif
  9810. #if ENABLED(BARICUDA)
  9811. // PWM for HEATER_1_PIN
  9812. #if HAS_HEATER_1
  9813. case 126: // M126: valve open
  9814. gcode_M126();
  9815. break;
  9816. case 127: // M127: valve closed
  9817. gcode_M127();
  9818. break;
  9819. #endif // HAS_HEATER_1
  9820. // PWM for HEATER_2_PIN
  9821. #if HAS_HEATER_2
  9822. case 128: // M128: valve open
  9823. gcode_M128();
  9824. break;
  9825. case 129: // M129: valve closed
  9826. gcode_M129();
  9827. break;
  9828. #endif // HAS_HEATER_2
  9829. #endif // BARICUDA
  9830. #if HAS_POWER_SWITCH
  9831. case 80: // M80: Turn on Power Supply
  9832. gcode_M80();
  9833. break;
  9834. #endif // HAS_POWER_SWITCH
  9835. case 81: // M81: Turn off Power, including Power Supply, if possible
  9836. gcode_M81();
  9837. break;
  9838. case 82: // M82: Set E axis normal mode (same as other axes)
  9839. gcode_M82();
  9840. break;
  9841. case 83: // M83: Set E axis relative mode
  9842. gcode_M83();
  9843. break;
  9844. case 18: // M18 => M84
  9845. case 84: // M84: Disable all steppers or set timeout
  9846. gcode_M18_M84();
  9847. break;
  9848. case 85: // M85: Set inactivity stepper shutdown timeout
  9849. gcode_M85();
  9850. break;
  9851. case 92: // M92: Set the steps-per-unit for one or more axes
  9852. gcode_M92();
  9853. break;
  9854. case 114: // M114: Report current position
  9855. gcode_M114();
  9856. break;
  9857. case 115: // M115: Report capabilities
  9858. gcode_M115();
  9859. break;
  9860. case 117: // M117: Set LCD message text, if possible
  9861. gcode_M117();
  9862. break;
  9863. case 118: // M118: Display a message in the host console
  9864. gcode_M118();
  9865. break;
  9866. case 119: // M119: Report endstop states
  9867. gcode_M119();
  9868. break;
  9869. case 120: // M120: Enable endstops
  9870. gcode_M120();
  9871. break;
  9872. case 121: // M121: Disable endstops
  9873. gcode_M121();
  9874. break;
  9875. #if ENABLED(ULTIPANEL)
  9876. case 145: // M145: Set material heatup parameters
  9877. gcode_M145();
  9878. break;
  9879. #endif
  9880. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  9881. case 149: // M149: Set temperature units
  9882. gcode_M149();
  9883. break;
  9884. #endif
  9885. #if HAS_COLOR_LEDS
  9886. case 150: // M150: Set Status LED Color
  9887. gcode_M150();
  9888. break;
  9889. #endif // HAS_COLOR_LEDS
  9890. #if ENABLED(MIXING_EXTRUDER)
  9891. case 163: // M163: Set a component weight for mixing extruder
  9892. gcode_M163();
  9893. break;
  9894. #if MIXING_VIRTUAL_TOOLS > 1
  9895. case 164: // M164: Save current mix as a virtual extruder
  9896. gcode_M164();
  9897. break;
  9898. #endif
  9899. #if ENABLED(DIRECT_MIXING_IN_G1)
  9900. case 165: // M165: Set multiple mix weights
  9901. gcode_M165();
  9902. break;
  9903. #endif
  9904. #endif
  9905. case 200: // M200: Set filament diameter, E to cubic units
  9906. gcode_M200();
  9907. break;
  9908. case 201: // M201: Set max acceleration for print moves (units/s^2)
  9909. gcode_M201();
  9910. break;
  9911. #if 0 // Not used for Sprinter/grbl gen6
  9912. case 202: // M202
  9913. gcode_M202();
  9914. break;
  9915. #endif
  9916. case 203: // M203: Set max feedrate (units/sec)
  9917. gcode_M203();
  9918. break;
  9919. case 204: // M204: Set acceleration
  9920. gcode_M204();
  9921. break;
  9922. case 205: // M205: Set advanced settings
  9923. gcode_M205();
  9924. break;
  9925. #if HAS_M206_COMMAND
  9926. case 206: // M206: Set home offsets
  9927. gcode_M206();
  9928. break;
  9929. #endif
  9930. #if ENABLED(DELTA)
  9931. case 665: // M665: Set delta configurations
  9932. gcode_M665();
  9933. break;
  9934. #endif
  9935. #if ENABLED(DELTA) || ENABLED(X_DUAL_ENDSTOPS) || ENABLED(Y_DUAL_ENDSTOPS) || ENABLED(Z_DUAL_ENDSTOPS)
  9936. case 666: // M666: Set delta or dual endstop adjustment
  9937. gcode_M666();
  9938. break;
  9939. #endif
  9940. #if ENABLED(FWRETRACT)
  9941. case 207: // M207: Set Retract Length, Feedrate, and Z lift
  9942. gcode_M207();
  9943. break;
  9944. case 208: // M208: Set Recover (unretract) Additional Length and Feedrate
  9945. gcode_M208();
  9946. break;
  9947. case 209: // M209: Turn Automatic Retract Detection on/off
  9948. if (MIN_AUTORETRACT <= MAX_AUTORETRACT) gcode_M209();
  9949. break;
  9950. #endif // FWRETRACT
  9951. case 211: // M211: Enable, Disable, and/or Report software endstops
  9952. gcode_M211();
  9953. break;
  9954. #if HOTENDS > 1
  9955. case 218: // M218: Set a tool offset
  9956. gcode_M218();
  9957. break;
  9958. #endif // HOTENDS > 1
  9959. case 220: // M220: Set Feedrate Percentage: S<percent> ("FR" on your LCD)
  9960. gcode_M220();
  9961. break;
  9962. case 221: // M221: Set Flow Percentage
  9963. gcode_M221();
  9964. break;
  9965. case 226: // M226: Wait until a pin reaches a state
  9966. gcode_M226();
  9967. break;
  9968. #if HAS_SERVOS
  9969. case 280: // M280: Set servo position absolute
  9970. gcode_M280();
  9971. break;
  9972. #endif // HAS_SERVOS
  9973. #if ENABLED(BABYSTEPPING)
  9974. case 290: // M290: Babystepping
  9975. gcode_M290();
  9976. break;
  9977. #endif // BABYSTEPPING
  9978. #if HAS_BUZZER
  9979. case 300: // M300: Play beep tone
  9980. gcode_M300();
  9981. break;
  9982. #endif // HAS_BUZZER
  9983. #if ENABLED(PIDTEMP)
  9984. case 301: // M301: Set hotend PID parameters
  9985. gcode_M301();
  9986. break;
  9987. #endif // PIDTEMP
  9988. #if ENABLED(PIDTEMPBED)
  9989. case 304: // M304: Set bed PID parameters
  9990. gcode_M304();
  9991. break;
  9992. #endif // PIDTEMPBED
  9993. #if defined(CHDK) || HAS_PHOTOGRAPH
  9994. case 240: // M240: Trigger a camera by emulating a Canon RC-1 : http://www.doc-diy.net/photo/rc-1_hacked/
  9995. gcode_M240();
  9996. break;
  9997. #endif // CHDK || PHOTOGRAPH_PIN
  9998. #if HAS_LCD_CONTRAST
  9999. case 250: // M250: Set LCD contrast
  10000. gcode_M250();
  10001. break;
  10002. #endif // HAS_LCD_CONTRAST
  10003. #if ENABLED(EXPERIMENTAL_I2CBUS)
  10004. case 260: // M260: Send data to an i2c slave
  10005. gcode_M260();
  10006. break;
  10007. case 261: // M261: Request data from an i2c slave
  10008. gcode_M261();
  10009. break;
  10010. #endif // EXPERIMENTAL_I2CBUS
  10011. #if ENABLED(PREVENT_COLD_EXTRUSION)
  10012. case 302: // M302: Allow cold extrudes (set the minimum extrude temperature)
  10013. gcode_M302();
  10014. break;
  10015. #endif // PREVENT_COLD_EXTRUSION
  10016. case 303: // M303: PID autotune
  10017. gcode_M303();
  10018. break;
  10019. #if ENABLED(MORGAN_SCARA)
  10020. case 360: // M360: SCARA Theta pos1
  10021. if (gcode_M360()) return;
  10022. break;
  10023. case 361: // M361: SCARA Theta pos2
  10024. if (gcode_M361()) return;
  10025. break;
  10026. case 362: // M362: SCARA Psi pos1
  10027. if (gcode_M362()) return;
  10028. break;
  10029. case 363: // M363: SCARA Psi pos2
  10030. if (gcode_M363()) return;
  10031. break;
  10032. case 364: // M364: SCARA Psi pos3 (90 deg to Theta)
  10033. if (gcode_M364()) return;
  10034. break;
  10035. #endif // SCARA
  10036. case 400: // M400: Finish all moves
  10037. gcode_M400();
  10038. break;
  10039. #if HAS_BED_PROBE
  10040. case 401: // M401: Deploy probe
  10041. gcode_M401();
  10042. break;
  10043. case 402: // M402: Stow probe
  10044. gcode_M402();
  10045. break;
  10046. #endif // HAS_BED_PROBE
  10047. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  10048. case 404: // M404: Enter the nominal filament width (3mm, 1.75mm ) N<3.0> or display nominal filament width
  10049. gcode_M404();
  10050. break;
  10051. case 405: // M405: Turn on filament sensor for control
  10052. gcode_M405();
  10053. break;
  10054. case 406: // M406: Turn off filament sensor for control
  10055. gcode_M406();
  10056. break;
  10057. case 407: // M407: Display measured filament diameter
  10058. gcode_M407();
  10059. break;
  10060. #endif // FILAMENT_WIDTH_SENSOR
  10061. #if HAS_LEVELING
  10062. case 420: // M420: Enable/Disable Bed Leveling
  10063. gcode_M420();
  10064. break;
  10065. #endif
  10066. #if HAS_MESH
  10067. case 421: // M421: Set a Mesh Bed Leveling Z coordinate
  10068. gcode_M421();
  10069. break;
  10070. #endif
  10071. #if HAS_M206_COMMAND
  10072. case 428: // M428: Apply current_position to home_offset
  10073. gcode_M428();
  10074. break;
  10075. #endif
  10076. case 500: // M500: Store settings in EEPROM
  10077. gcode_M500();
  10078. break;
  10079. case 501: // M501: Read settings from EEPROM
  10080. gcode_M501();
  10081. break;
  10082. case 502: // M502: Revert to default settings
  10083. gcode_M502();
  10084. break;
  10085. #if DISABLED(DISABLE_M503)
  10086. case 503: // M503: print settings currently in memory
  10087. gcode_M503();
  10088. break;
  10089. #endif
  10090. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  10091. case 540: // M540: Set abort on endstop hit for SD printing
  10092. gcode_M540();
  10093. break;
  10094. #endif
  10095. #if HAS_BED_PROBE
  10096. case 851: // M851: Set Z Probe Z Offset
  10097. gcode_M851();
  10098. break;
  10099. #endif // HAS_BED_PROBE
  10100. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  10101. case 600: // M600: Pause for filament change
  10102. gcode_M600();
  10103. break;
  10104. #endif // ADVANCED_PAUSE_FEATURE
  10105. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  10106. case 605: // M605: Set Dual X Carriage movement mode
  10107. gcode_M605();
  10108. break;
  10109. #endif // DUAL_X_CARRIAGE
  10110. #if ENABLED(MK2_MULTIPLEXER)
  10111. case 702: // M702: Unload all extruders
  10112. gcode_M702();
  10113. break;
  10114. #endif
  10115. #if ENABLED(LIN_ADVANCE)
  10116. case 900: // M900: Set advance K factor.
  10117. gcode_M900();
  10118. break;
  10119. #endif
  10120. #if ENABLED(HAVE_TMC2130)
  10121. case 906: // M906: Set motor current in milliamps using axis codes X, Y, Z, E
  10122. gcode_M906();
  10123. break;
  10124. #endif
  10125. case 907: // M907: Set digital trimpot motor current using axis codes.
  10126. gcode_M907();
  10127. break;
  10128. #if HAS_DIGIPOTSS || ENABLED(DAC_STEPPER_CURRENT)
  10129. case 908: // M908: Control digital trimpot directly.
  10130. gcode_M908();
  10131. break;
  10132. #if ENABLED(DAC_STEPPER_CURRENT) // As with Printrbot RevF
  10133. case 909: // M909: Print digipot/DAC current value
  10134. gcode_M909();
  10135. break;
  10136. case 910: // M910: Commit digipot/DAC value to external EEPROM
  10137. gcode_M910();
  10138. break;
  10139. #endif
  10140. #endif // HAS_DIGIPOTSS || DAC_STEPPER_CURRENT
  10141. #if ENABLED(HAVE_TMC2130)
  10142. case 911: // M911: Report TMC2130 prewarn triggered flags
  10143. gcode_M911();
  10144. break;
  10145. case 912: // M911: Clear TMC2130 prewarn triggered flags
  10146. gcode_M912();
  10147. break;
  10148. #if ENABLED(HYBRID_THRESHOLD)
  10149. case 913: // M913: Set HYBRID_THRESHOLD speed.
  10150. gcode_M913();
  10151. break;
  10152. #endif
  10153. #if ENABLED(SENSORLESS_HOMING)
  10154. case 914: // M914: Set SENSORLESS_HOMING sensitivity.
  10155. gcode_M914();
  10156. break;
  10157. #endif
  10158. #endif
  10159. #if HAS_MICROSTEPS
  10160. case 350: // M350: Set microstepping mode. Warning: Steps per unit remains unchanged. S code sets stepping mode for all drivers.
  10161. gcode_M350();
  10162. break;
  10163. case 351: // M351: Toggle MS1 MS2 pins directly, S# determines MS1 or MS2, X# sets the pin high/low.
  10164. gcode_M351();
  10165. break;
  10166. #endif // HAS_MICROSTEPS
  10167. case 355: // M355 set case light brightness
  10168. gcode_M355();
  10169. break;
  10170. #if ENABLED(DEBUG_GCODE_PARSER)
  10171. case 800:
  10172. parser.debug(); // GCode Parser Test for M
  10173. break;
  10174. #endif
  10175. #if ENABLED(I2C_POSITION_ENCODERS)
  10176. case 860: // M860 Report encoder module position
  10177. gcode_M860();
  10178. break;
  10179. case 861: // M861 Report encoder module status
  10180. gcode_M861();
  10181. break;
  10182. case 862: // M862 Perform axis test
  10183. gcode_M862();
  10184. break;
  10185. case 863: // M863 Calibrate steps/mm
  10186. gcode_M863();
  10187. break;
  10188. case 864: // M864 Change module address
  10189. gcode_M864();
  10190. break;
  10191. case 865: // M865 Check module firmware version
  10192. gcode_M865();
  10193. break;
  10194. case 866: // M866 Report axis error count
  10195. gcode_M866();
  10196. break;
  10197. case 867: // M867 Toggle error correction
  10198. gcode_M867();
  10199. break;
  10200. case 868: // M868 Set error correction threshold
  10201. gcode_M868();
  10202. break;
  10203. case 869: // M869 Report axis error
  10204. gcode_M869();
  10205. break;
  10206. #endif // I2C_POSITION_ENCODERS
  10207. case 999: // M999: Restart after being Stopped
  10208. gcode_M999();
  10209. break;
  10210. }
  10211. break;
  10212. case 'T':
  10213. gcode_T(parser.codenum);
  10214. break;
  10215. default: parser.unknown_command_error();
  10216. }
  10217. KEEPALIVE_STATE(NOT_BUSY);
  10218. ok_to_send();
  10219. }
  10220. void process_next_command() {
  10221. char * const current_command = command_queue[cmd_queue_index_r];
  10222. if (DEBUGGING(ECHO)) {
  10223. SERIAL_ECHO_START();
  10224. SERIAL_ECHOLN(current_command);
  10225. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  10226. SERIAL_ECHOPAIR("slot:", cmd_queue_index_r);
  10227. M100_dump_routine(" Command Queue:", (const char*)command_queue, (const char*)(command_queue + sizeof(command_queue)));
  10228. #endif
  10229. }
  10230. // Parse the next command in the queue
  10231. parser.parse(current_command);
  10232. process_parsed_command();
  10233. }
  10234. /**
  10235. * Send a "Resend: nnn" message to the host to
  10236. * indicate that a command needs to be re-sent.
  10237. */
  10238. void FlushSerialRequestResend() {
  10239. //char command_queue[cmd_queue_index_r][100]="Resend:";
  10240. MYSERIAL.flush();
  10241. SERIAL_PROTOCOLPGM(MSG_RESEND);
  10242. SERIAL_PROTOCOLLN(gcode_LastN + 1);
  10243. ok_to_send();
  10244. }
  10245. /**
  10246. * Send an "ok" message to the host, indicating
  10247. * that a command was successfully processed.
  10248. *
  10249. * If ADVANCED_OK is enabled also include:
  10250. * N<int> Line number of the command, if any
  10251. * P<int> Planner space remaining
  10252. * B<int> Block queue space remaining
  10253. */
  10254. void ok_to_send() {
  10255. refresh_cmd_timeout();
  10256. if (!send_ok[cmd_queue_index_r]) return;
  10257. SERIAL_PROTOCOLPGM(MSG_OK);
  10258. #if ENABLED(ADVANCED_OK)
  10259. char* p = command_queue[cmd_queue_index_r];
  10260. if (*p == 'N') {
  10261. SERIAL_PROTOCOL(' ');
  10262. SERIAL_ECHO(*p++);
  10263. while (NUMERIC_SIGNED(*p))
  10264. SERIAL_ECHO(*p++);
  10265. }
  10266. SERIAL_PROTOCOLPGM(" P"); SERIAL_PROTOCOL(int(BLOCK_BUFFER_SIZE - planner.movesplanned() - 1));
  10267. SERIAL_PROTOCOLPGM(" B"); SERIAL_PROTOCOL(BUFSIZE - commands_in_queue);
  10268. #endif
  10269. SERIAL_EOL();
  10270. }
  10271. #if HAS_SOFTWARE_ENDSTOPS
  10272. /**
  10273. * Constrain the given coordinates to the software endstops.
  10274. *
  10275. * For DELTA/SCARA the XY constraint is based on the smallest
  10276. * radius within the set software endstops.
  10277. */
  10278. void clamp_to_software_endstops(float target[XYZ]) {
  10279. if (!soft_endstops_enabled) return;
  10280. #if IS_KINEMATIC
  10281. const float dist_2 = HYPOT2(target[X_AXIS], target[Y_AXIS]);
  10282. if (dist_2 > soft_endstop_radius_2) {
  10283. const float ratio = soft_endstop_radius / SQRT(dist_2); // 200 / 300 = 0.66
  10284. target[X_AXIS] *= ratio;
  10285. target[Y_AXIS] *= ratio;
  10286. }
  10287. #else
  10288. #if ENABLED(MIN_SOFTWARE_ENDSTOP_X)
  10289. NOLESS(target[X_AXIS], soft_endstop_min[X_AXIS]);
  10290. #endif
  10291. #if ENABLED(MIN_SOFTWARE_ENDSTOP_Y)
  10292. NOLESS(target[Y_AXIS], soft_endstop_min[Y_AXIS]);
  10293. #endif
  10294. #if ENABLED(MAX_SOFTWARE_ENDSTOP_X)
  10295. NOMORE(target[X_AXIS], soft_endstop_max[X_AXIS]);
  10296. #endif
  10297. #if ENABLED(MAX_SOFTWARE_ENDSTOP_Y)
  10298. NOMORE(target[Y_AXIS], soft_endstop_max[Y_AXIS]);
  10299. #endif
  10300. #endif
  10301. #if ENABLED(MIN_SOFTWARE_ENDSTOP_Z)
  10302. NOLESS(target[Z_AXIS], soft_endstop_min[Z_AXIS]);
  10303. #endif
  10304. #if ENABLED(MAX_SOFTWARE_ENDSTOP_Z)
  10305. NOMORE(target[Z_AXIS], soft_endstop_max[Z_AXIS]);
  10306. #endif
  10307. }
  10308. #endif
  10309. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  10310. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  10311. #define ABL_BG_SPACING(A) bilinear_grid_spacing_virt[A]
  10312. #define ABL_BG_FACTOR(A) bilinear_grid_factor_virt[A]
  10313. #define ABL_BG_POINTS_X ABL_GRID_POINTS_VIRT_X
  10314. #define ABL_BG_POINTS_Y ABL_GRID_POINTS_VIRT_Y
  10315. #define ABL_BG_GRID(X,Y) z_values_virt[X][Y]
  10316. #else
  10317. #define ABL_BG_SPACING(A) bilinear_grid_spacing[A]
  10318. #define ABL_BG_FACTOR(A) bilinear_grid_factor[A]
  10319. #define ABL_BG_POINTS_X GRID_MAX_POINTS_X
  10320. #define ABL_BG_POINTS_Y GRID_MAX_POINTS_Y
  10321. #define ABL_BG_GRID(X,Y) z_values[X][Y]
  10322. #endif
  10323. // Get the Z adjustment for non-linear bed leveling
  10324. float bilinear_z_offset(const float raw[XYZ]) {
  10325. static float z1, d2, z3, d4, L, D, ratio_x, ratio_y,
  10326. last_x = -999.999, last_y = -999.999;
  10327. // Whole units for the grid line indices. Constrained within bounds.
  10328. static int8_t gridx, gridy, nextx, nexty,
  10329. last_gridx = -99, last_gridy = -99;
  10330. // XY relative to the probed area
  10331. const float rx = raw[X_AXIS] - bilinear_start[X_AXIS],
  10332. ry = raw[Y_AXIS] - bilinear_start[Y_AXIS];
  10333. #if ENABLED(EXTRAPOLATE_BEYOND_GRID)
  10334. // Keep using the last grid box
  10335. #define FAR_EDGE_OR_BOX 2
  10336. #else
  10337. // Just use the grid far edge
  10338. #define FAR_EDGE_OR_BOX 1
  10339. #endif
  10340. if (last_x != rx) {
  10341. last_x = rx;
  10342. ratio_x = rx * ABL_BG_FACTOR(X_AXIS);
  10343. const float gx = constrain(FLOOR(ratio_x), 0, ABL_BG_POINTS_X - FAR_EDGE_OR_BOX);
  10344. ratio_x -= gx; // Subtract whole to get the ratio within the grid box
  10345. #if DISABLED(EXTRAPOLATE_BEYOND_GRID)
  10346. // Beyond the grid maintain height at grid edges
  10347. NOLESS(ratio_x, 0); // Never < 0.0. (> 1.0 is ok when nextx==gridx.)
  10348. #endif
  10349. gridx = gx;
  10350. nextx = min(gridx + 1, ABL_BG_POINTS_X - 1);
  10351. }
  10352. if (last_y != ry || last_gridx != gridx) {
  10353. if (last_y != ry) {
  10354. last_y = ry;
  10355. ratio_y = ry * ABL_BG_FACTOR(Y_AXIS);
  10356. const float gy = constrain(FLOOR(ratio_y), 0, ABL_BG_POINTS_Y - FAR_EDGE_OR_BOX);
  10357. ratio_y -= gy;
  10358. #if DISABLED(EXTRAPOLATE_BEYOND_GRID)
  10359. // Beyond the grid maintain height at grid edges
  10360. NOLESS(ratio_y, 0); // Never < 0.0. (> 1.0 is ok when nexty==gridy.)
  10361. #endif
  10362. gridy = gy;
  10363. nexty = min(gridy + 1, ABL_BG_POINTS_Y - 1);
  10364. }
  10365. if (last_gridx != gridx || last_gridy != gridy) {
  10366. last_gridx = gridx;
  10367. last_gridy = gridy;
  10368. // Z at the box corners
  10369. z1 = ABL_BG_GRID(gridx, gridy); // left-front
  10370. d2 = ABL_BG_GRID(gridx, nexty) - z1; // left-back (delta)
  10371. z3 = ABL_BG_GRID(nextx, gridy); // right-front
  10372. d4 = ABL_BG_GRID(nextx, nexty) - z3; // right-back (delta)
  10373. }
  10374. // Bilinear interpolate. Needed since ry or gridx has changed.
  10375. L = z1 + d2 * ratio_y; // Linear interp. LF -> LB
  10376. const float R = z3 + d4 * ratio_y; // Linear interp. RF -> RB
  10377. D = R - L;
  10378. }
  10379. const float offset = L + ratio_x * D; // the offset almost always changes
  10380. /*
  10381. static float last_offset = 0;
  10382. if (FABS(last_offset - offset) > 0.2) {
  10383. SERIAL_ECHOPGM("Sudden Shift at ");
  10384. SERIAL_ECHOPAIR("x=", rx);
  10385. SERIAL_ECHOPAIR(" / ", bilinear_grid_spacing[X_AXIS]);
  10386. SERIAL_ECHOLNPAIR(" -> gridx=", gridx);
  10387. SERIAL_ECHOPAIR(" y=", ry);
  10388. SERIAL_ECHOPAIR(" / ", bilinear_grid_spacing[Y_AXIS]);
  10389. SERIAL_ECHOLNPAIR(" -> gridy=", gridy);
  10390. SERIAL_ECHOPAIR(" ratio_x=", ratio_x);
  10391. SERIAL_ECHOLNPAIR(" ratio_y=", ratio_y);
  10392. SERIAL_ECHOPAIR(" z1=", z1);
  10393. SERIAL_ECHOPAIR(" z2=", z2);
  10394. SERIAL_ECHOPAIR(" z3=", z3);
  10395. SERIAL_ECHOLNPAIR(" z4=", z4);
  10396. SERIAL_ECHOPAIR(" L=", L);
  10397. SERIAL_ECHOPAIR(" R=", R);
  10398. SERIAL_ECHOLNPAIR(" offset=", offset);
  10399. }
  10400. last_offset = offset;
  10401. //*/
  10402. return offset;
  10403. }
  10404. #endif // AUTO_BED_LEVELING_BILINEAR
  10405. #if ENABLED(DELTA)
  10406. /**
  10407. * Recalculate factors used for delta kinematics whenever
  10408. * settings have been changed (e.g., by M665).
  10409. */
  10410. void recalc_delta_settings() {
  10411. const float trt[ABC] = DELTA_RADIUS_TRIM_TOWER,
  10412. drt[ABC] = DELTA_DIAGONAL_ROD_TRIM_TOWER;
  10413. delta_tower[A_AXIS][X_AXIS] = cos(RADIANS(210 + delta_tower_angle_trim[A_AXIS])) * (delta_radius + trt[A_AXIS]); // front left tower
  10414. delta_tower[A_AXIS][Y_AXIS] = sin(RADIANS(210 + delta_tower_angle_trim[A_AXIS])) * (delta_radius + trt[A_AXIS]);
  10415. delta_tower[B_AXIS][X_AXIS] = cos(RADIANS(330 + delta_tower_angle_trim[B_AXIS])) * (delta_radius + trt[B_AXIS]); // front right tower
  10416. delta_tower[B_AXIS][Y_AXIS] = sin(RADIANS(330 + delta_tower_angle_trim[B_AXIS])) * (delta_radius + trt[B_AXIS]);
  10417. delta_tower[C_AXIS][X_AXIS] = cos(RADIANS( 90 + delta_tower_angle_trim[C_AXIS])) * (delta_radius + trt[C_AXIS]); // back middle tower
  10418. delta_tower[C_AXIS][Y_AXIS] = sin(RADIANS( 90 + delta_tower_angle_trim[C_AXIS])) * (delta_radius + trt[C_AXIS]);
  10419. delta_diagonal_rod_2_tower[A_AXIS] = sq(delta_diagonal_rod + drt[A_AXIS]);
  10420. delta_diagonal_rod_2_tower[B_AXIS] = sq(delta_diagonal_rod + drt[B_AXIS]);
  10421. delta_diagonal_rod_2_tower[C_AXIS] = sq(delta_diagonal_rod + drt[C_AXIS]);
  10422. update_software_endstops(Z_AXIS);
  10423. axis_homed[X_AXIS] = axis_homed[Y_AXIS] = axis_homed[Z_AXIS] = false;
  10424. }
  10425. #if ENABLED(DELTA_FAST_SQRT)
  10426. /**
  10427. * Fast inverse sqrt from Quake III Arena
  10428. * See: https://en.wikipedia.org/wiki/Fast_inverse_square_root
  10429. */
  10430. float Q_rsqrt(float number) {
  10431. long i;
  10432. float x2, y;
  10433. const float threehalfs = 1.5f;
  10434. x2 = number * 0.5f;
  10435. y = number;
  10436. i = * ( long * ) &y; // evil floating point bit level hacking
  10437. i = 0x5F3759DF - ( i >> 1 ); // what the f***?
  10438. y = * ( float * ) &i;
  10439. y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
  10440. // y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
  10441. return y;
  10442. }
  10443. #define _SQRT(n) (1.0f / Q_rsqrt(n))
  10444. #else
  10445. #define _SQRT(n) SQRT(n)
  10446. #endif
  10447. /**
  10448. * Delta Inverse Kinematics
  10449. *
  10450. * Calculate the tower positions for a given machine
  10451. * position, storing the result in the delta[] array.
  10452. *
  10453. * This is an expensive calculation, requiring 3 square
  10454. * roots per segmented linear move, and strains the limits
  10455. * of a Mega2560 with a Graphical Display.
  10456. *
  10457. * Suggested optimizations include:
  10458. *
  10459. * - Disable the home_offset (M206) and/or position_shift (G92)
  10460. * features to remove up to 12 float additions.
  10461. *
  10462. * - Use a fast-inverse-sqrt function and add the reciprocal.
  10463. * (see above)
  10464. */
  10465. // Macro to obtain the Z position of an individual tower
  10466. #define DELTA_Z(T) raw[Z_AXIS] + _SQRT( \
  10467. delta_diagonal_rod_2_tower[T] - HYPOT2( \
  10468. delta_tower[T][X_AXIS] - raw[X_AXIS], \
  10469. delta_tower[T][Y_AXIS] - raw[Y_AXIS] \
  10470. ) \
  10471. )
  10472. #define DELTA_RAW_IK() do { \
  10473. delta[A_AXIS] = DELTA_Z(A_AXIS); \
  10474. delta[B_AXIS] = DELTA_Z(B_AXIS); \
  10475. delta[C_AXIS] = DELTA_Z(C_AXIS); \
  10476. }while(0)
  10477. #define DELTA_DEBUG() do { \
  10478. SERIAL_ECHOPAIR("cartesian X:", raw[X_AXIS]); \
  10479. SERIAL_ECHOPAIR(" Y:", raw[Y_AXIS]); \
  10480. SERIAL_ECHOLNPAIR(" Z:", raw[Z_AXIS]); \
  10481. SERIAL_ECHOPAIR("delta A:", delta[A_AXIS]); \
  10482. SERIAL_ECHOPAIR(" B:", delta[B_AXIS]); \
  10483. SERIAL_ECHOLNPAIR(" C:", delta[C_AXIS]); \
  10484. }while(0)
  10485. void inverse_kinematics(const float raw[XYZ]) {
  10486. DELTA_RAW_IK();
  10487. // DELTA_DEBUG();
  10488. }
  10489. /**
  10490. * Calculate the highest Z position where the
  10491. * effector has the full range of XY motion.
  10492. */
  10493. float delta_safe_distance_from_top() {
  10494. float cartesian[XYZ] = { 0, 0, 0 };
  10495. inverse_kinematics(cartesian);
  10496. float distance = delta[A_AXIS];
  10497. cartesian[Y_AXIS] = LOGICAL_Y_POSITION(DELTA_PRINTABLE_RADIUS);
  10498. inverse_kinematics(cartesian);
  10499. return FABS(distance - delta[A_AXIS]);
  10500. }
  10501. /**
  10502. * Delta Forward Kinematics
  10503. *
  10504. * See the Wikipedia article "Trilateration"
  10505. * https://en.wikipedia.org/wiki/Trilateration
  10506. *
  10507. * Establish a new coordinate system in the plane of the
  10508. * three carriage points. This system has its origin at
  10509. * tower1, with tower2 on the X axis. Tower3 is in the X-Y
  10510. * plane with a Z component of zero.
  10511. * We will define unit vectors in this coordinate system
  10512. * in our original coordinate system. Then when we calculate
  10513. * the Xnew, Ynew and Znew values, we can translate back into
  10514. * the original system by moving along those unit vectors
  10515. * by the corresponding values.
  10516. *
  10517. * Variable names matched to Marlin, c-version, and avoid the
  10518. * use of any vector library.
  10519. *
  10520. * by Andreas Hardtung 2016-06-07
  10521. * based on a Java function from "Delta Robot Kinematics V3"
  10522. * by Steve Graves
  10523. *
  10524. * The result is stored in the cartes[] array.
  10525. */
  10526. void forward_kinematics_DELTA(float z1, float z2, float z3) {
  10527. // Create a vector in old coordinates along x axis of new coordinate
  10528. 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 };
  10529. // Get the Magnitude of vector.
  10530. float d = SQRT( sq(p12[0]) + sq(p12[1]) + sq(p12[2]) );
  10531. // Create unit vector by dividing by magnitude.
  10532. float ex[3] = { p12[0] / d, p12[1] / d, p12[2] / d };
  10533. // Get the vector from the origin of the new system to the third point.
  10534. 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 };
  10535. // Use the dot product to find the component of this vector on the X axis.
  10536. float i = ex[0] * p13[0] + ex[1] * p13[1] + ex[2] * p13[2];
  10537. // Create a vector along the x axis that represents the x component of p13.
  10538. float iex[3] = { ex[0] * i, ex[1] * i, ex[2] * i };
  10539. // Subtract the X component from the original vector leaving only Y. We use the
  10540. // variable that will be the unit vector after we scale it.
  10541. float ey[3] = { p13[0] - iex[0], p13[1] - iex[1], p13[2] - iex[2] };
  10542. // The magnitude of Y component
  10543. float j = SQRT( sq(ey[0]) + sq(ey[1]) + sq(ey[2]) );
  10544. // Convert to a unit vector
  10545. ey[0] /= j; ey[1] /= j; ey[2] /= j;
  10546. // The cross product of the unit x and y is the unit z
  10547. // float[] ez = vectorCrossProd(ex, ey);
  10548. float ez[3] = {
  10549. ex[1] * ey[2] - ex[2] * ey[1],
  10550. ex[2] * ey[0] - ex[0] * ey[2],
  10551. ex[0] * ey[1] - ex[1] * ey[0]
  10552. };
  10553. // We now have the d, i and j values defined in Wikipedia.
  10554. // Plug them into the equations defined in Wikipedia for Xnew, Ynew and Znew
  10555. float Xnew = (delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[B_AXIS] + sq(d)) / (d * 2),
  10556. Ynew = ((delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[C_AXIS] + HYPOT2(i, j)) / 2 - i * Xnew) / j,
  10557. Znew = SQRT(delta_diagonal_rod_2_tower[A_AXIS] - HYPOT2(Xnew, Ynew));
  10558. // Start from the origin of the old coordinates and add vectors in the
  10559. // old coords that represent the Xnew, Ynew and Znew to find the point
  10560. // in the old system.
  10561. cartes[X_AXIS] = delta_tower[A_AXIS][X_AXIS] + ex[0] * Xnew + ey[0] * Ynew - ez[0] * Znew;
  10562. cartes[Y_AXIS] = delta_tower[A_AXIS][Y_AXIS] + ex[1] * Xnew + ey[1] * Ynew - ez[1] * Znew;
  10563. cartes[Z_AXIS] = z1 + ex[2] * Xnew + ey[2] * Ynew - ez[2] * Znew;
  10564. }
  10565. void forward_kinematics_DELTA(float point[ABC]) {
  10566. forward_kinematics_DELTA(point[A_AXIS], point[B_AXIS], point[C_AXIS]);
  10567. }
  10568. #endif // DELTA
  10569. /**
  10570. * Get the stepper positions in the cartes[] array.
  10571. * Forward kinematics are applied for DELTA and SCARA.
  10572. *
  10573. * The result is in the current coordinate space with
  10574. * leveling applied. The coordinates need to be run through
  10575. * unapply_leveling to obtain machine coordinates suitable
  10576. * for current_position, etc.
  10577. */
  10578. void get_cartesian_from_steppers() {
  10579. #if ENABLED(DELTA)
  10580. forward_kinematics_DELTA(
  10581. stepper.get_axis_position_mm(A_AXIS),
  10582. stepper.get_axis_position_mm(B_AXIS),
  10583. stepper.get_axis_position_mm(C_AXIS)
  10584. );
  10585. #else
  10586. #if IS_SCARA
  10587. forward_kinematics_SCARA(
  10588. stepper.get_axis_position_degrees(A_AXIS),
  10589. stepper.get_axis_position_degrees(B_AXIS)
  10590. );
  10591. #else
  10592. cartes[X_AXIS] = stepper.get_axis_position_mm(X_AXIS);
  10593. cartes[Y_AXIS] = stepper.get_axis_position_mm(Y_AXIS);
  10594. #endif
  10595. cartes[Z_AXIS] = stepper.get_axis_position_mm(Z_AXIS);
  10596. #endif
  10597. }
  10598. /**
  10599. * Set the current_position for an axis based on
  10600. * the stepper positions, removing any leveling that
  10601. * may have been applied.
  10602. */
  10603. void set_current_from_steppers_for_axis(const AxisEnum axis) {
  10604. get_cartesian_from_steppers();
  10605. #if PLANNER_LEVELING
  10606. planner.unapply_leveling(cartes);
  10607. #endif
  10608. if (axis == ALL_AXES)
  10609. COPY(current_position, cartes);
  10610. else
  10611. current_position[axis] = cartes[axis];
  10612. }
  10613. #if ENABLED(MESH_BED_LEVELING)
  10614. /**
  10615. * Prepare a mesh-leveled linear move in a Cartesian setup,
  10616. * splitting the move where it crosses mesh borders.
  10617. */
  10618. void mesh_line_to_destination(const float fr_mm_s, uint8_t x_splits = 0xFF, uint8_t y_splits = 0xFF) {
  10619. int cx1 = mbl.cell_index_x(current_position[X_AXIS]),
  10620. cy1 = mbl.cell_index_y(current_position[Y_AXIS]),
  10621. cx2 = mbl.cell_index_x(destination[X_AXIS]),
  10622. cy2 = mbl.cell_index_y(destination[Y_AXIS]);
  10623. NOMORE(cx1, GRID_MAX_POINTS_X - 2);
  10624. NOMORE(cy1, GRID_MAX_POINTS_Y - 2);
  10625. NOMORE(cx2, GRID_MAX_POINTS_X - 2);
  10626. NOMORE(cy2, GRID_MAX_POINTS_Y - 2);
  10627. if (cx1 == cx2 && cy1 == cy2) {
  10628. // Start and end on same mesh square
  10629. buffer_line_to_destination(fr_mm_s);
  10630. set_current_from_destination();
  10631. return;
  10632. }
  10633. #define MBL_SEGMENT_END(A) (current_position[A ##_AXIS] + (destination[A ##_AXIS] - current_position[A ##_AXIS]) * normalized_dist)
  10634. float normalized_dist, end[XYZE];
  10635. // Split at the left/front border of the right/top square
  10636. const int8_t gcx = max(cx1, cx2), gcy = max(cy1, cy2);
  10637. if (cx2 != cx1 && TEST(x_splits, gcx)) {
  10638. COPY(end, destination);
  10639. destination[X_AXIS] = mbl.index_to_xpos[gcx];
  10640. normalized_dist = (destination[X_AXIS] - current_position[X_AXIS]) / (end[X_AXIS] - current_position[X_AXIS]);
  10641. destination[Y_AXIS] = MBL_SEGMENT_END(Y);
  10642. CBI(x_splits, gcx);
  10643. }
  10644. else if (cy2 != cy1 && TEST(y_splits, gcy)) {
  10645. COPY(end, destination);
  10646. destination[Y_AXIS] = mbl.index_to_ypos[gcy];
  10647. normalized_dist = (destination[Y_AXIS] - current_position[Y_AXIS]) / (end[Y_AXIS] - current_position[Y_AXIS]);
  10648. destination[X_AXIS] = MBL_SEGMENT_END(X);
  10649. CBI(y_splits, gcy);
  10650. }
  10651. else {
  10652. // Already split on a border
  10653. buffer_line_to_destination(fr_mm_s);
  10654. set_current_from_destination();
  10655. return;
  10656. }
  10657. destination[Z_AXIS] = MBL_SEGMENT_END(Z);
  10658. destination[E_AXIS] = MBL_SEGMENT_END(E);
  10659. // Do the split and look for more borders
  10660. mesh_line_to_destination(fr_mm_s, x_splits, y_splits);
  10661. // Restore destination from stack
  10662. COPY(destination, end);
  10663. mesh_line_to_destination(fr_mm_s, x_splits, y_splits);
  10664. }
  10665. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR) && !IS_KINEMATIC
  10666. #define CELL_INDEX(A,V) ((V - bilinear_start[A##_AXIS]) * ABL_BG_FACTOR(A##_AXIS))
  10667. /**
  10668. * Prepare a bilinear-leveled linear move on Cartesian,
  10669. * splitting the move where it crosses grid borders.
  10670. */
  10671. void bilinear_line_to_destination(const float fr_mm_s, uint16_t x_splits = 0xFFFF, uint16_t y_splits = 0xFFFF) {
  10672. int cx1 = CELL_INDEX(X, current_position[X_AXIS]),
  10673. cy1 = CELL_INDEX(Y, current_position[Y_AXIS]),
  10674. cx2 = CELL_INDEX(X, destination[X_AXIS]),
  10675. cy2 = CELL_INDEX(Y, destination[Y_AXIS]);
  10676. cx1 = constrain(cx1, 0, ABL_BG_POINTS_X - 2);
  10677. cy1 = constrain(cy1, 0, ABL_BG_POINTS_Y - 2);
  10678. cx2 = constrain(cx2, 0, ABL_BG_POINTS_X - 2);
  10679. cy2 = constrain(cy2, 0, ABL_BG_POINTS_Y - 2);
  10680. if (cx1 == cx2 && cy1 == cy2) {
  10681. // Start and end on same mesh square
  10682. buffer_line_to_destination(fr_mm_s);
  10683. set_current_from_destination();
  10684. return;
  10685. }
  10686. #define LINE_SEGMENT_END(A) (current_position[A ##_AXIS] + (destination[A ##_AXIS] - current_position[A ##_AXIS]) * normalized_dist)
  10687. float normalized_dist, end[XYZE];
  10688. // Split at the left/front border of the right/top square
  10689. const int8_t gcx = max(cx1, cx2), gcy = max(cy1, cy2);
  10690. if (cx2 != cx1 && TEST(x_splits, gcx)) {
  10691. COPY(end, destination);
  10692. destination[X_AXIS] = bilinear_start[X_AXIS] + ABL_BG_SPACING(X_AXIS) * gcx;
  10693. normalized_dist = (destination[X_AXIS] - current_position[X_AXIS]) / (end[X_AXIS] - current_position[X_AXIS]);
  10694. destination[Y_AXIS] = LINE_SEGMENT_END(Y);
  10695. CBI(x_splits, gcx);
  10696. }
  10697. else if (cy2 != cy1 && TEST(y_splits, gcy)) {
  10698. COPY(end, destination);
  10699. destination[Y_AXIS] = bilinear_start[Y_AXIS] + ABL_BG_SPACING(Y_AXIS) * gcy;
  10700. normalized_dist = (destination[Y_AXIS] - current_position[Y_AXIS]) / (end[Y_AXIS] - current_position[Y_AXIS]);
  10701. destination[X_AXIS] = LINE_SEGMENT_END(X);
  10702. CBI(y_splits, gcy);
  10703. }
  10704. else {
  10705. // Already split on a border
  10706. buffer_line_to_destination(fr_mm_s);
  10707. set_current_from_destination();
  10708. return;
  10709. }
  10710. destination[Z_AXIS] = LINE_SEGMENT_END(Z);
  10711. destination[E_AXIS] = LINE_SEGMENT_END(E);
  10712. // Do the split and look for more borders
  10713. bilinear_line_to_destination(fr_mm_s, x_splits, y_splits);
  10714. // Restore destination from stack
  10715. COPY(destination, end);
  10716. bilinear_line_to_destination(fr_mm_s, x_splits, y_splits);
  10717. }
  10718. #endif // AUTO_BED_LEVELING_BILINEAR
  10719. #if !UBL_DELTA
  10720. #if IS_KINEMATIC
  10721. /**
  10722. * Prepare a linear move in a DELTA or SCARA setup.
  10723. *
  10724. * This calls planner.buffer_line several times, adding
  10725. * small incremental moves for DELTA or SCARA.
  10726. *
  10727. * For Unified Bed Leveling (Delta or Segmented Cartesian)
  10728. * the ubl.prepare_segmented_line_to method replaces this.
  10729. */
  10730. inline bool prepare_kinematic_move_to(float rtarget[XYZE]) {
  10731. // Get the top feedrate of the move in the XY plane
  10732. const float _feedrate_mm_s = MMS_SCALED(feedrate_mm_s);
  10733. // If the move is only in Z/E don't split up the move
  10734. if (rtarget[X_AXIS] == current_position[X_AXIS] && rtarget[Y_AXIS] == current_position[Y_AXIS]) {
  10735. planner.buffer_line_kinematic(rtarget, _feedrate_mm_s, active_extruder);
  10736. return false;
  10737. }
  10738. // Fail if attempting move outside printable radius
  10739. if (!position_is_reachable(rtarget[X_AXIS], rtarget[Y_AXIS])) return true;
  10740. // Get the cartesian distances moved in XYZE
  10741. const float difference[XYZE] = {
  10742. rtarget[X_AXIS] - current_position[X_AXIS],
  10743. rtarget[Y_AXIS] - current_position[Y_AXIS],
  10744. rtarget[Z_AXIS] - current_position[Z_AXIS],
  10745. rtarget[E_AXIS] - current_position[E_AXIS]
  10746. };
  10747. // Get the linear distance in XYZ
  10748. float cartesian_mm = SQRT(sq(difference[X_AXIS]) + sq(difference[Y_AXIS]) + sq(difference[Z_AXIS]));
  10749. // If the move is very short, check the E move distance
  10750. if (UNEAR_ZERO(cartesian_mm)) cartesian_mm = FABS(difference[E_AXIS]);
  10751. // No E move either? Game over.
  10752. if (UNEAR_ZERO(cartesian_mm)) return true;
  10753. // Minimum number of seconds to move the given distance
  10754. const float seconds = cartesian_mm / _feedrate_mm_s;
  10755. // The number of segments-per-second times the duration
  10756. // gives the number of segments
  10757. uint16_t segments = delta_segments_per_second * seconds;
  10758. // For SCARA minimum segment size is 0.25mm
  10759. #if IS_SCARA
  10760. NOMORE(segments, cartesian_mm * 4);
  10761. #endif
  10762. // At least one segment is required
  10763. NOLESS(segments, 1);
  10764. // The approximate length of each segment
  10765. const float inv_segments = 1.0 / float(segments),
  10766. segment_distance[XYZE] = {
  10767. difference[X_AXIS] * inv_segments,
  10768. difference[Y_AXIS] * inv_segments,
  10769. difference[Z_AXIS] * inv_segments,
  10770. difference[E_AXIS] * inv_segments
  10771. };
  10772. // SERIAL_ECHOPAIR("mm=", cartesian_mm);
  10773. // SERIAL_ECHOPAIR(" seconds=", seconds);
  10774. // SERIAL_ECHOLNPAIR(" segments=", segments);
  10775. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  10776. // SCARA needs to scale the feed rate from mm/s to degrees/s
  10777. const float inv_segment_length = min(10.0, float(segments) / cartesian_mm), // 1/mm/segs
  10778. feed_factor = inv_segment_length * _feedrate_mm_s;
  10779. float oldA = stepper.get_axis_position_degrees(A_AXIS),
  10780. oldB = stepper.get_axis_position_degrees(B_AXIS);
  10781. #endif
  10782. // Get the raw current position as starting point
  10783. float raw[XYZE];
  10784. COPY(raw, current_position);
  10785. // Drop one segment so the last move is to the exact target.
  10786. // If there's only 1 segment, loops will be skipped entirely.
  10787. --segments;
  10788. // Calculate and execute the segments
  10789. for (uint16_t s = segments + 1; --s;) {
  10790. LOOP_XYZE(i) raw[i] += segment_distance[i];
  10791. #if ENABLED(DELTA)
  10792. DELTA_RAW_IK(); // Delta can inline its kinematics
  10793. #else
  10794. inverse_kinematics(raw);
  10795. #endif
  10796. ADJUST_DELTA(raw); // Adjust Z if bed leveling is enabled
  10797. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  10798. // For SCARA scale the feed rate from mm/s to degrees/s
  10799. // Use ratio between the length of the move and the larger angle change
  10800. const float adiff = abs(delta[A_AXIS] - oldA),
  10801. bdiff = abs(delta[B_AXIS] - oldB);
  10802. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], raw[E_AXIS], max(adiff, bdiff) * feed_factor, active_extruder);
  10803. oldA = delta[A_AXIS];
  10804. oldB = delta[B_AXIS];
  10805. #else
  10806. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], raw[E_AXIS], _feedrate_mm_s, active_extruder);
  10807. #endif
  10808. }
  10809. // Since segment_distance is only approximate,
  10810. // the final move must be to the exact destination.
  10811. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  10812. // For SCARA scale the feed rate from mm/s to degrees/s
  10813. // With segments > 1 length is 1 segment, otherwise total length
  10814. inverse_kinematics(rtarget);
  10815. ADJUST_DELTA(rtarget);
  10816. const float adiff = abs(delta[A_AXIS] - oldA),
  10817. bdiff = abs(delta[B_AXIS] - oldB);
  10818. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], raw[E_AXIS], max(adiff, bdiff) * feed_factor, active_extruder);
  10819. #else
  10820. planner.buffer_line_kinematic(rtarget, _feedrate_mm_s, active_extruder);
  10821. #endif
  10822. return false;
  10823. }
  10824. #else // !IS_KINEMATIC
  10825. /**
  10826. * Prepare a linear move in a Cartesian setup.
  10827. *
  10828. * When a mesh-based leveling system is active, moves are segmented
  10829. * according to the configuration of the leveling system.
  10830. *
  10831. * Returns true if current_position[] was set to destination[]
  10832. */
  10833. inline bool prepare_move_to_destination_cartesian() {
  10834. #if HAS_MESH
  10835. if (planner.leveling_active) {
  10836. #if ENABLED(AUTO_BED_LEVELING_UBL)
  10837. ubl.line_to_destination_cartesian(MMS_SCALED(feedrate_mm_s), active_extruder); // UBL's motion routine needs to know about
  10838. return true; // all moves, including Z-only moves.
  10839. #else
  10840. /**
  10841. * For MBL and ABL-BILINEAR only segment moves when X or Y are involved.
  10842. * Otherwise fall through to do a direct single move.
  10843. */
  10844. if (current_position[X_AXIS] != destination[X_AXIS] || current_position[Y_AXIS] != destination[Y_AXIS]) {
  10845. #if ENABLED(MESH_BED_LEVELING)
  10846. mesh_line_to_destination(MMS_SCALED(feedrate_mm_s));
  10847. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  10848. bilinear_line_to_destination(MMS_SCALED(feedrate_mm_s));
  10849. #endif
  10850. return true;
  10851. }
  10852. #endif
  10853. }
  10854. #endif // HAS_MESH
  10855. buffer_line_to_destination(MMS_SCALED(feedrate_mm_s));
  10856. return false;
  10857. }
  10858. #endif // !IS_KINEMATIC
  10859. #endif // !UBL_DELTA
  10860. #if ENABLED(DUAL_X_CARRIAGE)
  10861. /**
  10862. * Prepare a linear move in a dual X axis setup
  10863. */
  10864. inline bool prepare_move_to_destination_dualx() {
  10865. if (active_extruder_parked) {
  10866. switch (dual_x_carriage_mode) {
  10867. case DXC_FULL_CONTROL_MODE:
  10868. break;
  10869. case DXC_AUTO_PARK_MODE:
  10870. if (current_position[E_AXIS] == destination[E_AXIS]) {
  10871. // This is a travel move (with no extrusion)
  10872. // Skip it, but keep track of the current position
  10873. // (so it can be used as the start of the next non-travel move)
  10874. if (delayed_move_time != 0xFFFFFFFFUL) {
  10875. set_current_from_destination();
  10876. NOLESS(raised_parked_position[Z_AXIS], destination[Z_AXIS]);
  10877. delayed_move_time = millis();
  10878. return true;
  10879. }
  10880. }
  10881. // unpark extruder: 1) raise, 2) move into starting XY position, 3) lower
  10882. for (uint8_t i = 0; i < 3; i++)
  10883. planner.buffer_line(
  10884. i == 0 ? raised_parked_position[X_AXIS] : current_position[X_AXIS],
  10885. i == 0 ? raised_parked_position[Y_AXIS] : current_position[Y_AXIS],
  10886. i == 2 ? current_position[Z_AXIS] : raised_parked_position[Z_AXIS],
  10887. current_position[E_AXIS],
  10888. i == 1 ? PLANNER_XY_FEEDRATE() : planner.max_feedrate_mm_s[Z_AXIS],
  10889. active_extruder
  10890. );
  10891. delayed_move_time = 0;
  10892. active_extruder_parked = false;
  10893. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10894. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Clear active_extruder_parked");
  10895. #endif
  10896. break;
  10897. case DXC_DUPLICATION_MODE:
  10898. if (active_extruder == 0) {
  10899. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10900. if (DEBUGGING(LEVELING)) {
  10901. SERIAL_ECHOPAIR("Set planner X", inactive_extruder_x_pos);
  10902. SERIAL_ECHOLNPAIR(" ... Line to X", current_position[X_AXIS] + duplicate_extruder_x_offset);
  10903. }
  10904. #endif
  10905. // move duplicate extruder into correct duplication position.
  10906. planner.set_position_mm(
  10907. inactive_extruder_x_pos,
  10908. current_position[Y_AXIS],
  10909. current_position[Z_AXIS],
  10910. current_position[E_AXIS]
  10911. );
  10912. planner.buffer_line(
  10913. current_position[X_AXIS] + duplicate_extruder_x_offset,
  10914. current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS],
  10915. planner.max_feedrate_mm_s[X_AXIS], 1
  10916. );
  10917. SYNC_PLAN_POSITION_KINEMATIC();
  10918. stepper.synchronize();
  10919. extruder_duplication_enabled = true;
  10920. active_extruder_parked = false;
  10921. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10922. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Set extruder_duplication_enabled\nClear active_extruder_parked");
  10923. #endif
  10924. }
  10925. else {
  10926. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10927. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Active extruder not 0");
  10928. #endif
  10929. }
  10930. break;
  10931. }
  10932. }
  10933. return prepare_move_to_destination_cartesian();
  10934. }
  10935. #endif // DUAL_X_CARRIAGE
  10936. /**
  10937. * Prepare a single move and get ready for the next one
  10938. *
  10939. * This may result in several calls to planner.buffer_line to
  10940. * do smaller moves for DELTA, SCARA, mesh moves, etc.
  10941. *
  10942. * Make sure current_position[E] and destination[E] are good
  10943. * before calling or cold/lengthy extrusion may get missed.
  10944. */
  10945. void prepare_move_to_destination() {
  10946. clamp_to_software_endstops(destination);
  10947. refresh_cmd_timeout();
  10948. #if ENABLED(PREVENT_COLD_EXTRUSION) || ENABLED(PREVENT_LENGTHY_EXTRUDE)
  10949. if (!DEBUGGING(DRYRUN)) {
  10950. if (destination[E_AXIS] != current_position[E_AXIS]) {
  10951. #if ENABLED(PREVENT_COLD_EXTRUSION)
  10952. if (thermalManager.tooColdToExtrude(active_extruder)) {
  10953. current_position[E_AXIS] = destination[E_AXIS]; // Behave as if the move really took place, but ignore E part
  10954. SERIAL_ECHO_START();
  10955. SERIAL_ECHOLNPGM(MSG_ERR_COLD_EXTRUDE_STOP);
  10956. }
  10957. #endif // PREVENT_COLD_EXTRUSION
  10958. #if ENABLED(PREVENT_LENGTHY_EXTRUDE)
  10959. if (FABS(destination[E_AXIS] - current_position[E_AXIS]) * planner.e_factor[active_extruder] > (EXTRUDE_MAXLENGTH)) {
  10960. current_position[E_AXIS] = destination[E_AXIS]; // Behave as if the move really took place, but ignore E part
  10961. SERIAL_ECHO_START();
  10962. SERIAL_ECHOLNPGM(MSG_ERR_LONG_EXTRUDE_STOP);
  10963. }
  10964. #endif // PREVENT_LENGTHY_EXTRUDE
  10965. }
  10966. }
  10967. #endif
  10968. if (
  10969. #if UBL_DELTA // Also works for CARTESIAN (smaller segments follow mesh more closely)
  10970. ubl.prepare_segmented_line_to(destination, MMS_SCALED(feedrate_mm_s))
  10971. #elif IS_KINEMATIC
  10972. prepare_kinematic_move_to(destination)
  10973. #elif ENABLED(DUAL_X_CARRIAGE)
  10974. prepare_move_to_destination_dualx()
  10975. #else
  10976. prepare_move_to_destination_cartesian()
  10977. #endif
  10978. ) return;
  10979. set_current_from_destination();
  10980. }
  10981. #if ENABLED(ARC_SUPPORT)
  10982. #if N_ARC_CORRECTION < 1
  10983. #undef N_ARC_CORRECTION
  10984. #define N_ARC_CORRECTION 1
  10985. #endif
  10986. /**
  10987. * Plan an arc in 2 dimensions
  10988. *
  10989. * The arc is approximated by generating many small linear segments.
  10990. * The length of each segment is configured in MM_PER_ARC_SEGMENT (Default 1mm)
  10991. * Arcs should only be made relatively large (over 5mm), as larger arcs with
  10992. * larger segments will tend to be more efficient. Your slicer should have
  10993. * options for G2/G3 arc generation. In future these options may be GCode tunable.
  10994. */
  10995. void plan_arc(
  10996. float raw[XYZE], // Destination position
  10997. float *offset, // Center of rotation relative to current_position
  10998. uint8_t clockwise // Clockwise?
  10999. ) {
  11000. #if ENABLED(CNC_WORKSPACE_PLANES)
  11001. AxisEnum p_axis, q_axis, l_axis;
  11002. switch (workspace_plane) {
  11003. default:
  11004. case PLANE_XY: p_axis = X_AXIS; q_axis = Y_AXIS; l_axis = Z_AXIS; break;
  11005. case PLANE_ZX: p_axis = Z_AXIS; q_axis = X_AXIS; l_axis = Y_AXIS; break;
  11006. case PLANE_YZ: p_axis = Y_AXIS; q_axis = Z_AXIS; l_axis = X_AXIS; break;
  11007. }
  11008. #else
  11009. constexpr AxisEnum p_axis = X_AXIS, q_axis = Y_AXIS, l_axis = Z_AXIS;
  11010. #endif
  11011. // Radius vector from center to current location
  11012. float r_P = -offset[0], r_Q = -offset[1];
  11013. const float radius = HYPOT(r_P, r_Q),
  11014. center_P = current_position[p_axis] - r_P,
  11015. center_Q = current_position[q_axis] - r_Q,
  11016. rt_X = raw[p_axis] - center_P,
  11017. rt_Y = raw[q_axis] - center_Q,
  11018. linear_travel = raw[l_axis] - current_position[l_axis],
  11019. extruder_travel = raw[E_AXIS] - current_position[E_AXIS];
  11020. // CCW angle of rotation between position and target from the circle center. Only one atan2() trig computation required.
  11021. float angular_travel = ATAN2(r_P * rt_Y - r_Q * rt_X, r_P * rt_X + r_Q * rt_Y);
  11022. if (angular_travel < 0) angular_travel += RADIANS(360);
  11023. if (clockwise) angular_travel -= RADIANS(360);
  11024. // Make a circle if the angular rotation is 0 and the target is current position
  11025. if (angular_travel == 0 && current_position[p_axis] == raw[p_axis] && current_position[q_axis] == raw[q_axis])
  11026. angular_travel = RADIANS(360);
  11027. const float mm_of_travel = HYPOT(angular_travel * radius, FABS(linear_travel));
  11028. if (mm_of_travel < 0.001) return;
  11029. uint16_t segments = FLOOR(mm_of_travel / (MM_PER_ARC_SEGMENT));
  11030. if (segments == 0) segments = 1;
  11031. /**
  11032. * Vector rotation by transformation matrix: r is the original vector, r_T is the rotated vector,
  11033. * and phi is the angle of rotation. Based on the solution approach by Jens Geisler.
  11034. * r_T = [cos(phi) -sin(phi);
  11035. * sin(phi) cos(phi)] * r ;
  11036. *
  11037. * For arc generation, the center of the circle is the axis of rotation and the radius vector is
  11038. * defined from the circle center to the initial position. Each line segment is formed by successive
  11039. * vector rotations. This requires only two cos() and sin() computations to form the rotation
  11040. * matrix for the duration of the entire arc. Error may accumulate from numerical round-off, since
  11041. * all double numbers are single precision on the Arduino. (True double precision will not have
  11042. * round off issues for CNC applications.) Single precision error can accumulate to be greater than
  11043. * tool precision in some cases. Therefore, arc path correction is implemented.
  11044. *
  11045. * Small angle approximation may be used to reduce computation overhead further. This approximation
  11046. * holds for everything, but very small circles and large MM_PER_ARC_SEGMENT values. In other words,
  11047. * theta_per_segment would need to be greater than 0.1 rad and N_ARC_CORRECTION would need to be large
  11048. * to cause an appreciable drift error. N_ARC_CORRECTION~=25 is more than small enough to correct for
  11049. * numerical drift error. N_ARC_CORRECTION may be on the order a hundred(s) before error becomes an
  11050. * issue for CNC machines with the single precision Arduino calculations.
  11051. *
  11052. * This approximation also allows plan_arc to immediately insert a line segment into the planner
  11053. * without the initial overhead of computing cos() or sin(). By the time the arc needs to be applied
  11054. * a correction, the planner should have caught up to the lag caused by the initial plan_arc overhead.
  11055. * This is important when there are successive arc motions.
  11056. */
  11057. // Vector rotation matrix values
  11058. float arc_target[XYZE];
  11059. const float theta_per_segment = angular_travel / segments,
  11060. linear_per_segment = linear_travel / segments,
  11061. extruder_per_segment = extruder_travel / segments,
  11062. sin_T = theta_per_segment,
  11063. cos_T = 1 - 0.5 * sq(theta_per_segment); // Small angle approximation
  11064. // Initialize the linear axis
  11065. arc_target[l_axis] = current_position[l_axis];
  11066. // Initialize the extruder axis
  11067. arc_target[E_AXIS] = current_position[E_AXIS];
  11068. const float fr_mm_s = MMS_SCALED(feedrate_mm_s);
  11069. millis_t next_idle_ms = millis() + 200UL;
  11070. #if N_ARC_CORRECTION > 1
  11071. int8_t arc_recalc_count = N_ARC_CORRECTION;
  11072. #endif
  11073. for (uint16_t i = 1; i < segments; i++) { // Iterate (segments-1) times
  11074. thermalManager.manage_heater();
  11075. if (ELAPSED(millis(), next_idle_ms)) {
  11076. next_idle_ms = millis() + 200UL;
  11077. idle();
  11078. }
  11079. #if N_ARC_CORRECTION > 1
  11080. if (--arc_recalc_count) {
  11081. // Apply vector rotation matrix to previous r_P / 1
  11082. const float r_new_Y = r_P * sin_T + r_Q * cos_T;
  11083. r_P = r_P * cos_T - r_Q * sin_T;
  11084. r_Q = r_new_Y;
  11085. }
  11086. else
  11087. #endif
  11088. {
  11089. #if N_ARC_CORRECTION > 1
  11090. arc_recalc_count = N_ARC_CORRECTION;
  11091. #endif
  11092. // Arc correction to radius vector. Computed only every N_ARC_CORRECTION increments.
  11093. // Compute exact location by applying transformation matrix from initial radius vector(=-offset).
  11094. // To reduce stuttering, the sin and cos could be computed at different times.
  11095. // For now, compute both at the same time.
  11096. const float cos_Ti = cos(i * theta_per_segment), sin_Ti = sin(i * theta_per_segment);
  11097. r_P = -offset[0] * cos_Ti + offset[1] * sin_Ti;
  11098. r_Q = -offset[0] * sin_Ti - offset[1] * cos_Ti;
  11099. }
  11100. // Update arc_target location
  11101. arc_target[p_axis] = center_P + r_P;
  11102. arc_target[q_axis] = center_Q + r_Q;
  11103. arc_target[l_axis] += linear_per_segment;
  11104. arc_target[E_AXIS] += extruder_per_segment;
  11105. clamp_to_software_endstops(arc_target);
  11106. planner.buffer_line_kinematic(arc_target, fr_mm_s, active_extruder);
  11107. }
  11108. // Ensure last segment arrives at target location.
  11109. planner.buffer_line_kinematic(raw, fr_mm_s, active_extruder);
  11110. // As far as the parser is concerned, the position is now == target. In reality the
  11111. // motion control system might still be processing the action and the real tool position
  11112. // in any intermediate location.
  11113. set_current_from_destination();
  11114. } // plan_arc
  11115. #endif // ARC_SUPPORT
  11116. #if ENABLED(BEZIER_CURVE_SUPPORT)
  11117. void plan_cubic_move(const float offset[4]) {
  11118. cubic_b_spline(current_position, destination, offset, MMS_SCALED(feedrate_mm_s), active_extruder);
  11119. // As far as the parser is concerned, the position is now == destination. In reality the
  11120. // motion control system might still be processing the action and the real tool position
  11121. // in any intermediate location.
  11122. set_current_from_destination();
  11123. }
  11124. #endif // BEZIER_CURVE_SUPPORT
  11125. #if ENABLED(USE_CONTROLLER_FAN)
  11126. void controllerFan() {
  11127. static millis_t lastMotorOn = 0, // Last time a motor was turned on
  11128. nextMotorCheck = 0; // Last time the state was checked
  11129. const millis_t ms = millis();
  11130. if (ELAPSED(ms, nextMotorCheck)) {
  11131. nextMotorCheck = ms + 2500UL; // Not a time critical function, so only check every 2.5s
  11132. 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
  11133. || E0_ENABLE_READ == E_ENABLE_ON // If any of the drivers are enabled...
  11134. #if E_STEPPERS > 1
  11135. || E1_ENABLE_READ == E_ENABLE_ON
  11136. #if HAS_X2_ENABLE
  11137. || X2_ENABLE_READ == X_ENABLE_ON
  11138. #endif
  11139. #if E_STEPPERS > 2
  11140. || E2_ENABLE_READ == E_ENABLE_ON
  11141. #if E_STEPPERS > 3
  11142. || E3_ENABLE_READ == E_ENABLE_ON
  11143. #if E_STEPPERS > 4
  11144. || E4_ENABLE_READ == E_ENABLE_ON
  11145. #endif // E_STEPPERS > 4
  11146. #endif // E_STEPPERS > 3
  11147. #endif // E_STEPPERS > 2
  11148. #endif // E_STEPPERS > 1
  11149. ) {
  11150. lastMotorOn = ms; //... set time to NOW so the fan will turn on
  11151. }
  11152. // Fan off if no steppers have been enabled for CONTROLLERFAN_SECS seconds
  11153. uint8_t speed = (!lastMotorOn || ELAPSED(ms, lastMotorOn + (CONTROLLERFAN_SECS) * 1000UL)) ? 0 : CONTROLLERFAN_SPEED;
  11154. // allows digital or PWM fan output to be used (see M42 handling)
  11155. WRITE(CONTROLLER_FAN_PIN, speed);
  11156. analogWrite(CONTROLLER_FAN_PIN, speed);
  11157. }
  11158. }
  11159. #endif // USE_CONTROLLER_FAN
  11160. #if ENABLED(MORGAN_SCARA)
  11161. /**
  11162. * Morgan SCARA Forward Kinematics. Results in cartes[].
  11163. * Maths and first version by QHARLEY.
  11164. * Integrated into Marlin and slightly restructured by Joachim Cerny.
  11165. */
  11166. void forward_kinematics_SCARA(const float &a, const float &b) {
  11167. float a_sin = sin(RADIANS(a)) * L1,
  11168. a_cos = cos(RADIANS(a)) * L1,
  11169. b_sin = sin(RADIANS(b)) * L2,
  11170. b_cos = cos(RADIANS(b)) * L2;
  11171. cartes[X_AXIS] = a_cos + b_cos + SCARA_OFFSET_X; //theta
  11172. cartes[Y_AXIS] = a_sin + b_sin + SCARA_OFFSET_Y; //theta+phi
  11173. /*
  11174. SERIAL_ECHOPAIR("SCARA FK Angle a=", a);
  11175. SERIAL_ECHOPAIR(" b=", b);
  11176. SERIAL_ECHOPAIR(" a_sin=", a_sin);
  11177. SERIAL_ECHOPAIR(" a_cos=", a_cos);
  11178. SERIAL_ECHOPAIR(" b_sin=", b_sin);
  11179. SERIAL_ECHOLNPAIR(" b_cos=", b_cos);
  11180. SERIAL_ECHOPAIR(" cartes[X_AXIS]=", cartes[X_AXIS]);
  11181. SERIAL_ECHOLNPAIR(" cartes[Y_AXIS]=", cartes[Y_AXIS]);
  11182. //*/
  11183. }
  11184. /**
  11185. * Morgan SCARA Inverse Kinematics. Results in delta[].
  11186. *
  11187. * See http://forums.reprap.org/read.php?185,283327
  11188. *
  11189. * Maths and first version by QHARLEY.
  11190. * Integrated into Marlin and slightly restructured by Joachim Cerny.
  11191. */
  11192. void inverse_kinematics(const float raw[XYZ]) {
  11193. static float C2, S2, SK1, SK2, THETA, PSI;
  11194. float sx = raw[X_AXIS] - SCARA_OFFSET_X, // Translate SCARA to standard X Y
  11195. sy = raw[Y_AXIS] - SCARA_OFFSET_Y; // With scaling factor.
  11196. if (L1 == L2)
  11197. C2 = HYPOT2(sx, sy) / L1_2_2 - 1;
  11198. else
  11199. C2 = (HYPOT2(sx, sy) - (L1_2 + L2_2)) / (2.0 * L1 * L2);
  11200. S2 = SQRT(1 - sq(C2));
  11201. // Unrotated Arm1 plus rotated Arm2 gives the distance from Center to End
  11202. SK1 = L1 + L2 * C2;
  11203. // Rotated Arm2 gives the distance from Arm1 to Arm2
  11204. SK2 = L2 * S2;
  11205. // Angle of Arm1 is the difference between Center-to-End angle and the Center-to-Elbow
  11206. THETA = ATAN2(SK1, SK2) - ATAN2(sx, sy);
  11207. // Angle of Arm2
  11208. PSI = ATAN2(S2, C2);
  11209. delta[A_AXIS] = DEGREES(THETA); // theta is support arm angle
  11210. delta[B_AXIS] = DEGREES(THETA + PSI); // equal to sub arm angle (inverted motor)
  11211. delta[C_AXIS] = raw[Z_AXIS];
  11212. /*
  11213. DEBUG_POS("SCARA IK", raw);
  11214. DEBUG_POS("SCARA IK", delta);
  11215. SERIAL_ECHOPAIR(" SCARA (x,y) ", sx);
  11216. SERIAL_ECHOPAIR(",", sy);
  11217. SERIAL_ECHOPAIR(" C2=", C2);
  11218. SERIAL_ECHOPAIR(" S2=", S2);
  11219. SERIAL_ECHOPAIR(" Theta=", THETA);
  11220. SERIAL_ECHOLNPAIR(" Phi=", PHI);
  11221. //*/
  11222. }
  11223. #endif // MORGAN_SCARA
  11224. #if ENABLED(TEMP_STAT_LEDS)
  11225. static bool red_led = false;
  11226. static millis_t next_status_led_update_ms = 0;
  11227. void handle_status_leds(void) {
  11228. if (ELAPSED(millis(), next_status_led_update_ms)) {
  11229. next_status_led_update_ms += 500; // Update every 0.5s
  11230. float max_temp = 0.0;
  11231. #if HAS_TEMP_BED
  11232. max_temp = MAX3(max_temp, thermalManager.degTargetBed(), thermalManager.degBed());
  11233. #endif
  11234. HOTEND_LOOP()
  11235. max_temp = MAX3(max_temp, thermalManager.degHotend(e), thermalManager.degTargetHotend(e));
  11236. const bool new_led = (max_temp > 55.0) ? true : (max_temp < 54.0) ? false : red_led;
  11237. if (new_led != red_led) {
  11238. red_led = new_led;
  11239. #if PIN_EXISTS(STAT_LED_RED)
  11240. WRITE(STAT_LED_RED_PIN, new_led ? HIGH : LOW);
  11241. #if PIN_EXISTS(STAT_LED_BLUE)
  11242. WRITE(STAT_LED_BLUE_PIN, new_led ? LOW : HIGH);
  11243. #endif
  11244. #else
  11245. WRITE(STAT_LED_BLUE_PIN, new_led ? HIGH : LOW);
  11246. #endif
  11247. }
  11248. }
  11249. }
  11250. #endif
  11251. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  11252. void handle_filament_runout() {
  11253. if (!filament_ran_out) {
  11254. filament_ran_out = true;
  11255. enqueue_and_echo_commands_P(PSTR(FILAMENT_RUNOUT_SCRIPT));
  11256. stepper.synchronize();
  11257. }
  11258. }
  11259. #endif // FILAMENT_RUNOUT_SENSOR
  11260. #if ENABLED(FAST_PWM_FAN)
  11261. void setPwmFrequency(uint8_t pin, int val) {
  11262. val &= 0x07;
  11263. switch (digitalPinToTimer(pin)) {
  11264. #ifdef TCCR0A
  11265. #if !AVR_AT90USB1286_FAMILY
  11266. case TIMER0A:
  11267. #endif
  11268. case TIMER0B:
  11269. //_SET_CS(0, val);
  11270. break;
  11271. #endif
  11272. #ifdef TCCR1A
  11273. case TIMER1A:
  11274. case TIMER1B:
  11275. //_SET_CS(1, val);
  11276. break;
  11277. #endif
  11278. #ifdef TCCR2
  11279. case TIMER2:
  11280. case TIMER2:
  11281. _SET_CS(2, val);
  11282. break;
  11283. #endif
  11284. #ifdef TCCR2A
  11285. case TIMER2A:
  11286. case TIMER2B:
  11287. _SET_CS(2, val);
  11288. break;
  11289. #endif
  11290. #ifdef TCCR3A
  11291. case TIMER3A:
  11292. case TIMER3B:
  11293. case TIMER3C:
  11294. _SET_CS(3, val);
  11295. break;
  11296. #endif
  11297. #ifdef TCCR4A
  11298. case TIMER4A:
  11299. case TIMER4B:
  11300. case TIMER4C:
  11301. _SET_CS(4, val);
  11302. break;
  11303. #endif
  11304. #ifdef TCCR5A
  11305. case TIMER5A:
  11306. case TIMER5B:
  11307. case TIMER5C:
  11308. _SET_CS(5, val);
  11309. break;
  11310. #endif
  11311. }
  11312. }
  11313. #endif // FAST_PWM_FAN
  11314. void enable_all_steppers() {
  11315. enable_X();
  11316. enable_Y();
  11317. enable_Z();
  11318. enable_E0();
  11319. enable_E1();
  11320. enable_E2();
  11321. enable_E3();
  11322. enable_E4();
  11323. }
  11324. void disable_e_steppers() {
  11325. disable_E0();
  11326. disable_E1();
  11327. disable_E2();
  11328. disable_E3();
  11329. disable_E4();
  11330. }
  11331. void disable_all_steppers() {
  11332. disable_X();
  11333. disable_Y();
  11334. disable_Z();
  11335. disable_e_steppers();
  11336. }
  11337. #if ENABLED(HAVE_TMC2130)
  11338. void automatic_current_control(TMC2130Stepper &st, String axisID) {
  11339. // Check otpw even if we don't use automatic control. Allows for flag inspection.
  11340. const bool is_otpw = st.checkOT();
  11341. // Report if a warning was triggered
  11342. static bool previous_otpw = false;
  11343. if (is_otpw && !previous_otpw) {
  11344. char timestamp[10];
  11345. duration_t elapsed = print_job_timer.duration();
  11346. const bool has_days = (elapsed.value > 60*60*24L);
  11347. (void)elapsed.toDigital(timestamp, has_days);
  11348. SERIAL_ECHO(timestamp);
  11349. SERIAL_ECHOPGM(": ");
  11350. SERIAL_ECHO(axisID);
  11351. SERIAL_ECHOLNPGM(" driver overtemperature warning!");
  11352. }
  11353. previous_otpw = is_otpw;
  11354. #if CURRENT_STEP > 0 && ENABLED(AUTOMATIC_CURRENT_CONTROL)
  11355. // Return if user has not enabled current control start with M906 S1.
  11356. if (!auto_current_control) return;
  11357. /**
  11358. * Decrease current if is_otpw is true.
  11359. * Bail out if driver is disabled.
  11360. * Increase current if OTPW has not been triggered yet.
  11361. */
  11362. uint16_t current = st.getCurrent();
  11363. if (is_otpw) {
  11364. st.setCurrent(current - CURRENT_STEP, R_SENSE, HOLD_MULTIPLIER);
  11365. #if ENABLED(REPORT_CURRENT_CHANGE)
  11366. SERIAL_ECHO(axisID);
  11367. SERIAL_ECHOPAIR(" current decreased to ", st.getCurrent());
  11368. #endif
  11369. }
  11370. else if (!st.isEnabled())
  11371. return;
  11372. else if (!is_otpw && !st.getOTPW()) {
  11373. current += CURRENT_STEP;
  11374. if (current <= AUTO_ADJUST_MAX) {
  11375. st.setCurrent(current, R_SENSE, HOLD_MULTIPLIER);
  11376. #if ENABLED(REPORT_CURRENT_CHANGE)
  11377. SERIAL_ECHO(axisID);
  11378. SERIAL_ECHOPAIR(" current increased to ", st.getCurrent());
  11379. #endif
  11380. }
  11381. }
  11382. SERIAL_EOL();
  11383. #endif
  11384. }
  11385. void checkOverTemp() {
  11386. static millis_t next_cOT = 0;
  11387. if (ELAPSED(millis(), next_cOT)) {
  11388. next_cOT = millis() + 5000;
  11389. #if ENABLED(X_IS_TMC2130)
  11390. automatic_current_control(stepperX, "X");
  11391. #endif
  11392. #if ENABLED(Y_IS_TMC2130)
  11393. automatic_current_control(stepperY, "Y");
  11394. #endif
  11395. #if ENABLED(Z_IS_TMC2130)
  11396. automatic_current_control(stepperZ, "Z");
  11397. #endif
  11398. #if ENABLED(X2_IS_TMC2130)
  11399. automatic_current_control(stepperX2, "X2");
  11400. #endif
  11401. #if ENABLED(Y2_IS_TMC2130)
  11402. automatic_current_control(stepperY2, "Y2");
  11403. #endif
  11404. #if ENABLED(Z2_IS_TMC2130)
  11405. automatic_current_control(stepperZ2, "Z2");
  11406. #endif
  11407. #if ENABLED(E0_IS_TMC2130)
  11408. automatic_current_control(stepperE0, "E0");
  11409. #endif
  11410. #if ENABLED(E1_IS_TMC2130)
  11411. automatic_current_control(stepperE1, "E1");
  11412. #endif
  11413. #if ENABLED(E2_IS_TMC2130)
  11414. automatic_current_control(stepperE2, "E2");
  11415. #endif
  11416. #if ENABLED(E3_IS_TMC2130)
  11417. automatic_current_control(stepperE3, "E3");
  11418. #endif
  11419. #if ENABLED(E4_IS_TMC2130)
  11420. automatic_current_control(stepperE4, "E4");
  11421. #endif
  11422. }
  11423. }
  11424. #endif // HAVE_TMC2130
  11425. /**
  11426. * Manage several activities:
  11427. * - Check for Filament Runout
  11428. * - Keep the command buffer full
  11429. * - Check for maximum inactive time between commands
  11430. * - Check for maximum inactive time between stepper commands
  11431. * - Check if pin CHDK needs to go LOW
  11432. * - Check for KILL button held down
  11433. * - Check for HOME button held down
  11434. * - Check if cooling fan needs to be switched on
  11435. * - Check if an idle but hot extruder needs filament extruded (EXTRUDER_RUNOUT_PREVENT)
  11436. */
  11437. void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
  11438. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  11439. if ((IS_SD_PRINTING || print_job_timer.isRunning()) && (READ(FIL_RUNOUT_PIN) == FIL_RUNOUT_INVERTING))
  11440. handle_filament_runout();
  11441. #endif
  11442. if (commands_in_queue < BUFSIZE) get_available_commands();
  11443. const millis_t ms = millis();
  11444. if (max_inactive_time && ELAPSED(ms, previous_cmd_ms + max_inactive_time)) {
  11445. SERIAL_ERROR_START();
  11446. SERIAL_ECHOLNPAIR(MSG_KILL_INACTIVE_TIME, parser.command_ptr);
  11447. kill(PSTR(MSG_KILLED));
  11448. }
  11449. // Prevent steppers timing-out in the middle of M600
  11450. #if ENABLED(ADVANCED_PAUSE_FEATURE) && ENABLED(PAUSE_PARK_NO_STEPPER_TIMEOUT)
  11451. #define MOVE_AWAY_TEST !move_away_flag
  11452. #else
  11453. #define MOVE_AWAY_TEST true
  11454. #endif
  11455. if (MOVE_AWAY_TEST && stepper_inactive_time && ELAPSED(ms, previous_cmd_ms + stepper_inactive_time)
  11456. && !ignore_stepper_queue && !planner.blocks_queued()) {
  11457. #if ENABLED(DISABLE_INACTIVE_X)
  11458. disable_X();
  11459. #endif
  11460. #if ENABLED(DISABLE_INACTIVE_Y)
  11461. disable_Y();
  11462. #endif
  11463. #if ENABLED(DISABLE_INACTIVE_Z)
  11464. disable_Z();
  11465. #endif
  11466. #if ENABLED(DISABLE_INACTIVE_E)
  11467. disable_e_steppers();
  11468. #endif
  11469. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTRA_LCD) // Only needed with an LCD
  11470. ubl_lcd_map_control = defer_return_to_status = false;
  11471. #endif
  11472. }
  11473. #ifdef CHDK // Check if pin should be set to LOW after M240 set it to HIGH
  11474. if (chdkActive && ELAPSED(ms, chdkHigh + CHDK_DELAY)) {
  11475. chdkActive = false;
  11476. WRITE(CHDK, LOW);
  11477. }
  11478. #endif
  11479. #if HAS_KILL
  11480. // Check if the kill button was pressed and wait just in case it was an accidental
  11481. // key kill key press
  11482. // -------------------------------------------------------------------------------
  11483. static int killCount = 0; // make the inactivity button a bit less responsive
  11484. const int KILL_DELAY = 750;
  11485. if (!READ(KILL_PIN))
  11486. killCount++;
  11487. else if (killCount > 0)
  11488. killCount--;
  11489. // Exceeded threshold and we can confirm that it was not accidental
  11490. // KILL the machine
  11491. // ----------------------------------------------------------------
  11492. if (killCount >= KILL_DELAY) {
  11493. SERIAL_ERROR_START();
  11494. SERIAL_ERRORLNPGM(MSG_KILL_BUTTON);
  11495. kill(PSTR(MSG_KILLED));
  11496. }
  11497. #endif
  11498. #if HAS_HOME
  11499. // Check to see if we have to home, use poor man's debouncer
  11500. // ---------------------------------------------------------
  11501. static int homeDebounceCount = 0; // poor man's debouncing count
  11502. const int HOME_DEBOUNCE_DELAY = 2500;
  11503. if (!IS_SD_PRINTING && !READ(HOME_PIN)) {
  11504. if (!homeDebounceCount) {
  11505. enqueue_and_echo_commands_P(PSTR("G28"));
  11506. LCD_MESSAGEPGM(MSG_AUTO_HOME);
  11507. }
  11508. if (homeDebounceCount < HOME_DEBOUNCE_DELAY)
  11509. homeDebounceCount++;
  11510. else
  11511. homeDebounceCount = 0;
  11512. }
  11513. #endif
  11514. #if ENABLED(USE_CONTROLLER_FAN)
  11515. controllerFan(); // Check if fan should be turned on to cool stepper drivers down
  11516. #endif
  11517. #if ENABLED(EXTRUDER_RUNOUT_PREVENT)
  11518. if (ELAPSED(ms, previous_cmd_ms + (EXTRUDER_RUNOUT_SECONDS) * 1000UL)
  11519. && thermalManager.degHotend(active_extruder) > EXTRUDER_RUNOUT_MINTEMP) {
  11520. #if ENABLED(SWITCHING_EXTRUDER)
  11521. const bool oldstatus = E0_ENABLE_READ;
  11522. enable_E0();
  11523. #else // !SWITCHING_EXTRUDER
  11524. bool oldstatus;
  11525. switch (active_extruder) {
  11526. default: oldstatus = E0_ENABLE_READ; enable_E0(); break;
  11527. #if E_STEPPERS > 1
  11528. case 1: oldstatus = E1_ENABLE_READ; enable_E1(); break;
  11529. #if E_STEPPERS > 2
  11530. case 2: oldstatus = E2_ENABLE_READ; enable_E2(); break;
  11531. #if E_STEPPERS > 3
  11532. case 3: oldstatus = E3_ENABLE_READ; enable_E3(); break;
  11533. #if E_STEPPERS > 4
  11534. case 4: oldstatus = E4_ENABLE_READ; enable_E4(); break;
  11535. #endif // E_STEPPERS > 4
  11536. #endif // E_STEPPERS > 3
  11537. #endif // E_STEPPERS > 2
  11538. #endif // E_STEPPERS > 1
  11539. }
  11540. #endif // !SWITCHING_EXTRUDER
  11541. previous_cmd_ms = ms; // refresh_cmd_timeout()
  11542. const float olde = current_position[E_AXIS];
  11543. current_position[E_AXIS] += EXTRUDER_RUNOUT_EXTRUDE;
  11544. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(EXTRUDER_RUNOUT_SPEED), active_extruder);
  11545. current_position[E_AXIS] = olde;
  11546. planner.set_e_position_mm(olde);
  11547. stepper.synchronize();
  11548. #if ENABLED(SWITCHING_EXTRUDER)
  11549. E0_ENABLE_WRITE(oldstatus);
  11550. #else
  11551. switch (active_extruder) {
  11552. case 0: E0_ENABLE_WRITE(oldstatus); break;
  11553. #if E_STEPPERS > 1
  11554. case 1: E1_ENABLE_WRITE(oldstatus); break;
  11555. #if E_STEPPERS > 2
  11556. case 2: E2_ENABLE_WRITE(oldstatus); break;
  11557. #if E_STEPPERS > 3
  11558. case 3: E3_ENABLE_WRITE(oldstatus); break;
  11559. #if E_STEPPERS > 4
  11560. case 4: E4_ENABLE_WRITE(oldstatus); break;
  11561. #endif // E_STEPPERS > 4
  11562. #endif // E_STEPPERS > 3
  11563. #endif // E_STEPPERS > 2
  11564. #endif // E_STEPPERS > 1
  11565. }
  11566. #endif // !SWITCHING_EXTRUDER
  11567. }
  11568. #endif // EXTRUDER_RUNOUT_PREVENT
  11569. #if ENABLED(DUAL_X_CARRIAGE)
  11570. // handle delayed move timeout
  11571. if (delayed_move_time && ELAPSED(ms, delayed_move_time + 1000UL) && IsRunning()) {
  11572. // travel moves have been received so enact them
  11573. delayed_move_time = 0xFFFFFFFFUL; // force moves to be done
  11574. set_destination_from_current();
  11575. prepare_move_to_destination();
  11576. }
  11577. #endif
  11578. #if ENABLED(TEMP_STAT_LEDS)
  11579. handle_status_leds();
  11580. #endif
  11581. #if ENABLED(HAVE_TMC2130)
  11582. checkOverTemp();
  11583. #endif
  11584. planner.check_axes_activity();
  11585. }
  11586. /**
  11587. * Standard idle routine keeps the machine alive
  11588. */
  11589. void idle(
  11590. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  11591. bool no_stepper_sleep/*=false*/
  11592. #endif
  11593. ) {
  11594. #if ENABLED(MAX7219_DEBUG)
  11595. Max7219_idle_tasks();
  11596. #endif // MAX7219_DEBUG
  11597. lcd_update();
  11598. host_keepalive();
  11599. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  11600. auto_report_temperatures();
  11601. #endif
  11602. manage_inactivity(
  11603. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  11604. no_stepper_sleep
  11605. #endif
  11606. );
  11607. thermalManager.manage_heater();
  11608. #if ENABLED(PRINTCOUNTER)
  11609. print_job_timer.tick();
  11610. #endif
  11611. #if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
  11612. buzzer.tick();
  11613. #endif
  11614. #if ENABLED(I2C_POSITION_ENCODERS)
  11615. if (planner.blocks_queued() &&
  11616. ( (blockBufferIndexRef != planner.block_buffer_head) ||
  11617. ((lastUpdateMillis + I2CPE_MIN_UPD_TIME_MS) < millis())) ) {
  11618. blockBufferIndexRef = planner.block_buffer_head;
  11619. I2CPEM.update();
  11620. lastUpdateMillis = millis();
  11621. }
  11622. #endif
  11623. }
  11624. /**
  11625. * Kill all activity and lock the machine.
  11626. * After this the machine will need to be reset.
  11627. */
  11628. void kill(const char* lcd_msg) {
  11629. SERIAL_ERROR_START();
  11630. SERIAL_ERRORLNPGM(MSG_ERR_KILLED);
  11631. thermalManager.disable_all_heaters();
  11632. disable_all_steppers();
  11633. #if ENABLED(ULTRA_LCD)
  11634. kill_screen(lcd_msg);
  11635. #else
  11636. UNUSED(lcd_msg);
  11637. #endif
  11638. _delay_ms(600); // Wait a short time (allows messages to get out before shutting down.
  11639. cli(); // Stop interrupts
  11640. _delay_ms(250); //Wait to ensure all interrupts routines stopped
  11641. thermalManager.disable_all_heaters(); //turn off heaters again
  11642. #ifdef ACTION_ON_KILL
  11643. SERIAL_ECHOLNPGM("//action:" ACTION_ON_KILL);
  11644. #endif
  11645. #if HAS_POWER_SWITCH
  11646. SET_INPUT(PS_ON_PIN);
  11647. #endif
  11648. suicide();
  11649. while (1) {
  11650. #if ENABLED(USE_WATCHDOG)
  11651. watchdog_reset();
  11652. #endif
  11653. } // Wait for reset
  11654. }
  11655. /**
  11656. * Turn off heaters and stop the print in progress
  11657. * After a stop the machine may be resumed with M999
  11658. */
  11659. void stop() {
  11660. thermalManager.disable_all_heaters(); // 'unpause' taken care of in here
  11661. #if ENABLED(PROBING_FANS_OFF)
  11662. if (fans_paused) fans_pause(false); // put things back the way they were
  11663. #endif
  11664. if (IsRunning()) {
  11665. Stopped_gcode_LastN = gcode_LastN; // Save last g_code for restart
  11666. SERIAL_ERROR_START();
  11667. SERIAL_ERRORLNPGM(MSG_ERR_STOPPED);
  11668. LCD_MESSAGEPGM(MSG_STOPPED);
  11669. safe_delay(350); // allow enough time for messages to get out before stopping
  11670. Running = false;
  11671. }
  11672. }
  11673. /**
  11674. * Marlin entry-point: Set up before the program loop
  11675. * - Set up the kill pin, filament runout, power hold
  11676. * - Start the serial port
  11677. * - Print startup messages and diagnostics
  11678. * - Get EEPROM or default settings
  11679. * - Initialize managers for:
  11680. * • temperature
  11681. * • planner
  11682. * • watchdog
  11683. * • stepper
  11684. * • photo pin
  11685. * • servos
  11686. * • LCD controller
  11687. * • Digipot I2C
  11688. * • Z probe sled
  11689. * • status LEDs
  11690. */
  11691. void setup() {
  11692. #if ENABLED(MAX7219_DEBUG)
  11693. Max7219_init();
  11694. #endif
  11695. #ifdef DISABLE_JTAG
  11696. // Disable JTAG on AT90USB chips to free up pins for IO
  11697. MCUCR = 0x80;
  11698. MCUCR = 0x80;
  11699. #endif
  11700. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  11701. setup_filrunoutpin();
  11702. #endif
  11703. setup_killpin();
  11704. setup_powerhold();
  11705. #if HAS_STEPPER_RESET
  11706. disableStepperDrivers();
  11707. #endif
  11708. MYSERIAL.begin(BAUDRATE);
  11709. SERIAL_PROTOCOLLNPGM("start");
  11710. SERIAL_ECHO_START();
  11711. // Check startup - does nothing if bootloader sets MCUSR to 0
  11712. byte mcu = MCUSR;
  11713. if (mcu & 1) SERIAL_ECHOLNPGM(MSG_POWERUP);
  11714. if (mcu & 2) SERIAL_ECHOLNPGM(MSG_EXTERNAL_RESET);
  11715. if (mcu & 4) SERIAL_ECHOLNPGM(MSG_BROWNOUT_RESET);
  11716. if (mcu & 8) SERIAL_ECHOLNPGM(MSG_WATCHDOG_RESET);
  11717. if (mcu & 32) SERIAL_ECHOLNPGM(MSG_SOFTWARE_RESET);
  11718. MCUSR = 0;
  11719. SERIAL_ECHOPGM(MSG_MARLIN);
  11720. SERIAL_CHAR(' ');
  11721. SERIAL_ECHOLNPGM(SHORT_BUILD_VERSION);
  11722. SERIAL_EOL();
  11723. #if defined(STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
  11724. SERIAL_ECHO_START();
  11725. SERIAL_ECHOPGM(MSG_CONFIGURATION_VER);
  11726. SERIAL_ECHOPGM(STRING_DISTRIBUTION_DATE);
  11727. SERIAL_ECHOLNPGM(MSG_AUTHOR STRING_CONFIG_H_AUTHOR);
  11728. SERIAL_ECHO_START();
  11729. SERIAL_ECHOLNPGM("Compiled: " __DATE__);
  11730. #endif
  11731. SERIAL_ECHO_START();
  11732. SERIAL_ECHOPAIR(MSG_FREE_MEMORY, freeMemory());
  11733. SERIAL_ECHOLNPAIR(MSG_PLANNER_BUFFER_BYTES, (int)sizeof(block_t)*BLOCK_BUFFER_SIZE);
  11734. // Send "ok" after commands by default
  11735. for (int8_t i = 0; i < BUFSIZE; i++) send_ok[i] = true;
  11736. // Load data from EEPROM if available (or use defaults)
  11737. // This also updates variables in the planner, elsewhere
  11738. (void)settings.load();
  11739. #if HAS_M206_COMMAND
  11740. // Initialize current position based on home_offset
  11741. COPY(current_position, home_offset);
  11742. #else
  11743. ZERO(current_position);
  11744. #endif
  11745. // Vital to init stepper/planner equivalent for current_position
  11746. SYNC_PLAN_POSITION_KINEMATIC();
  11747. thermalManager.init(); // Initialize temperature loop
  11748. #if ENABLED(USE_WATCHDOG)
  11749. watchdog_init();
  11750. #endif
  11751. stepper.init(); // Initialize stepper, this enables interrupts!
  11752. servo_init();
  11753. #if HAS_PHOTOGRAPH
  11754. OUT_WRITE(PHOTOGRAPH_PIN, LOW);
  11755. #endif
  11756. #if HAS_CASE_LIGHT
  11757. case_light_on = CASE_LIGHT_DEFAULT_ON;
  11758. case_light_brightness = CASE_LIGHT_DEFAULT_BRIGHTNESS;
  11759. update_case_light();
  11760. #endif
  11761. #if ENABLED(SPINDLE_LASER_ENABLE)
  11762. OUT_WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // init spindle to off
  11763. #if SPINDLE_DIR_CHANGE
  11764. OUT_WRITE(SPINDLE_DIR_PIN, SPINDLE_INVERT_DIR ? 255 : 0); // init rotation to clockwise (M3)
  11765. #endif
  11766. #if ENABLED(SPINDLE_LASER_PWM)
  11767. SET_OUTPUT(SPINDLE_LASER_PWM_PIN);
  11768. analogWrite(SPINDLE_LASER_PWM_PIN, SPINDLE_LASER_PWM_INVERT ? 255 : 0); // set to lowest speed
  11769. #endif
  11770. #endif
  11771. #if HAS_BED_PROBE
  11772. endstops.enable_z_probe(false);
  11773. #endif
  11774. #if ENABLED(USE_CONTROLLER_FAN)
  11775. SET_OUTPUT(CONTROLLER_FAN_PIN); //Set pin used for driver cooling fan
  11776. #endif
  11777. #if HAS_STEPPER_RESET
  11778. enableStepperDrivers();
  11779. #endif
  11780. #if ENABLED(DIGIPOT_I2C)
  11781. digipot_i2c_init();
  11782. #endif
  11783. #if ENABLED(DAC_STEPPER_CURRENT)
  11784. dac_init();
  11785. #endif
  11786. #if (ENABLED(Z_PROBE_SLED) || ENABLED(SOLENOID_PROBE)) && HAS_SOLENOID_1
  11787. OUT_WRITE(SOL1_PIN, LOW); // turn it off
  11788. #endif
  11789. #if HAS_HOME
  11790. SET_INPUT_PULLUP(HOME_PIN);
  11791. #endif
  11792. #if PIN_EXISTS(STAT_LED_RED)
  11793. OUT_WRITE(STAT_LED_RED_PIN, LOW); // turn it off
  11794. #endif
  11795. #if PIN_EXISTS(STAT_LED_BLUE)
  11796. OUT_WRITE(STAT_LED_BLUE_PIN, LOW); // turn it off
  11797. #endif
  11798. #if ENABLED(NEOPIXEL_LED)
  11799. SET_OUTPUT(NEOPIXEL_PIN);
  11800. setup_neopixel();
  11801. #endif
  11802. #if ENABLED(RGB_LED) || ENABLED(RGBW_LED)
  11803. SET_OUTPUT(RGB_LED_R_PIN);
  11804. SET_OUTPUT(RGB_LED_G_PIN);
  11805. SET_OUTPUT(RGB_LED_B_PIN);
  11806. #if ENABLED(RGBW_LED)
  11807. SET_OUTPUT(RGB_LED_W_PIN);
  11808. #endif
  11809. #endif
  11810. #if ENABLED(MK2_MULTIPLEXER)
  11811. SET_OUTPUT(E_MUX0_PIN);
  11812. SET_OUTPUT(E_MUX1_PIN);
  11813. SET_OUTPUT(E_MUX2_PIN);
  11814. #endif
  11815. #if HAS_FANMUX
  11816. fanmux_init();
  11817. #endif
  11818. lcd_init();
  11819. #if ENABLED(SHOW_BOOTSCREEN)
  11820. lcd_bootscreen();
  11821. #if ENABLED(ULTRA_LCD) && DISABLED(SDSUPPORT)
  11822. lcd_init();
  11823. #endif
  11824. #endif
  11825. #if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
  11826. // Initialize mixing to 100% color 1
  11827. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  11828. mixing_factor[i] = (i == 0) ? 1.0 : 0.0;
  11829. for (uint8_t t = 0; t < MIXING_VIRTUAL_TOOLS; t++)
  11830. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  11831. mixing_virtual_tool_mix[t][i] = mixing_factor[i];
  11832. #endif
  11833. #if ENABLED(BLTOUCH)
  11834. // Make sure any BLTouch error condition is cleared
  11835. bltouch_command(BLTOUCH_RESET);
  11836. set_bltouch_deployed(true);
  11837. set_bltouch_deployed(false);
  11838. #endif
  11839. #if ENABLED(I2C_POSITION_ENCODERS)
  11840. I2CPEM.init();
  11841. #endif
  11842. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  11843. i2c.onReceive(i2c_on_receive);
  11844. i2c.onRequest(i2c_on_request);
  11845. #endif
  11846. #if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
  11847. setup_endstop_interrupts();
  11848. #endif
  11849. #if ENABLED(SWITCHING_EXTRUDER) && !DONT_SWITCH
  11850. move_extruder_servo(0); // Initialize extruder servo
  11851. #endif
  11852. #if ENABLED(SWITCHING_NOZZLE)
  11853. move_nozzle_servo(0); // Initialize nozzle servo
  11854. #endif
  11855. #if ENABLED(PARKING_EXTRUDER)
  11856. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  11857. pe_activate_magnet(0);
  11858. pe_activate_magnet(1);
  11859. #else
  11860. pe_deactivate_magnet(0);
  11861. pe_deactivate_magnet(1);
  11862. #endif
  11863. #endif
  11864. #if ENABLED(MKS_12864OLED)
  11865. SET_OUTPUT(LCD_PINS_DC);
  11866. OUT_WRITE(LCD_PINS_RS, LOW);
  11867. delay(1000);
  11868. WRITE(LCD_PINS_RS, HIGH);
  11869. #endif
  11870. }
  11871. /**
  11872. * The main Marlin program loop
  11873. *
  11874. * - Save or log commands to SD
  11875. * - Process available commands (if not saving)
  11876. * - Call heater manager
  11877. * - Call inactivity manager
  11878. * - Call endstop manager
  11879. * - Call LCD update
  11880. */
  11881. void loop() {
  11882. if (commands_in_queue < BUFSIZE) get_available_commands();
  11883. #if ENABLED(SDSUPPORT)
  11884. card.checkautostart(false);
  11885. #endif
  11886. if (commands_in_queue) {
  11887. #if ENABLED(SDSUPPORT)
  11888. if (card.saving) {
  11889. char* command = command_queue[cmd_queue_index_r];
  11890. if (strstr_P(command, PSTR("M29"))) {
  11891. // M29 closes the file
  11892. card.closefile();
  11893. SERIAL_PROTOCOLLNPGM(MSG_FILE_SAVED);
  11894. #if ENABLED(SERIAL_STATS_DROPPED_RX)
  11895. SERIAL_ECHOLNPAIR("Dropped bytes: ", customizedSerial.dropped());
  11896. #endif
  11897. #if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
  11898. SERIAL_ECHOLNPAIR("Max RX Queue Size: ", customizedSerial.rxMaxEnqueued());
  11899. #endif
  11900. ok_to_send();
  11901. }
  11902. else {
  11903. // Write the string from the read buffer to SD
  11904. card.write_command(command);
  11905. if (card.logging)
  11906. process_next_command(); // The card is saving because it's logging
  11907. else
  11908. ok_to_send();
  11909. }
  11910. }
  11911. else
  11912. process_next_command();
  11913. #else
  11914. process_next_command();
  11915. #endif // SDSUPPORT
  11916. // The queue may be reset by a command handler or by code invoked by idle() within a handler
  11917. if (commands_in_queue) {
  11918. --commands_in_queue;
  11919. if (++cmd_queue_index_r >= BUFSIZE) cmd_queue_index_r = 0;
  11920. }
  11921. }
  11922. endstops.report_state();
  11923. idle();
  11924. }