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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026
  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. bool Running = true;
  342. uint8_t marlin_debug_flags = DEBUG_NONE;
  343. /**
  344. * Cartesian Current Position
  345. * Used to track the native machine position as moves are queued.
  346. * Used by 'line_to_current_position' to do a move after changing it.
  347. * Used by 'SYNC_PLAN_POSITION_KINEMATIC' to update 'planner.position'.
  348. */
  349. float current_position[XYZE] = { 0.0 };
  350. /**
  351. * Cartesian Destination
  352. * A temporary position, usually applied to 'current_position'.
  353. * Set with 'gcode_get_destination' or 'set_destination_from_current'.
  354. * 'line_to_destination' sets 'current_position' to 'destination'.
  355. */
  356. float destination[XYZE] = { 0.0 };
  357. /**
  358. * axis_homed
  359. * Flags that each linear axis was homed.
  360. * XYZ on cartesian, ABC on delta, ABZ on SCARA.
  361. *
  362. * axis_known_position
  363. * Flags that the position is known in each linear axis. Set when homed.
  364. * Cleared whenever a stepper powers off, potentially losing its position.
  365. */
  366. bool axis_homed[XYZ] = { false }, axis_known_position[XYZ] = { false };
  367. /**
  368. * GCode line number handling. Hosts may opt to include line numbers when
  369. * sending commands to Marlin, and lines will be checked for sequentiality.
  370. * M110 N<int> sets the current line number.
  371. */
  372. static long gcode_N, gcode_LastN, Stopped_gcode_LastN = 0;
  373. /**
  374. * GCode Command Queue
  375. * A simple ring buffer of BUFSIZE command strings.
  376. *
  377. * Commands are copied into this buffer by the command injectors
  378. * (immediate, serial, sd card) and they are processed sequentially by
  379. * the main loop. The process_next_command function parses the next
  380. * command and hands off execution to individual handler functions.
  381. */
  382. uint8_t commands_in_queue = 0; // Count of commands in the queue
  383. static uint8_t cmd_queue_index_r = 0, // Ring buffer read position
  384. cmd_queue_index_w = 0; // Ring buffer write position
  385. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  386. char command_queue[BUFSIZE][MAX_CMD_SIZE]; // Necessary so M100 Free Memory Dumper can show us the commands and any corruption
  387. #else // This can be collapsed back to the way it was soon.
  388. static char command_queue[BUFSIZE][MAX_CMD_SIZE];
  389. #endif
  390. /**
  391. * Next Injected Command pointer. NULL if no commands are being injected.
  392. * Used by Marlin internally to ensure that commands initiated from within
  393. * are enqueued ahead of any pending serial or sd card commands.
  394. */
  395. static const char *injected_commands_P = NULL;
  396. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  397. TempUnit input_temp_units = TEMPUNIT_C;
  398. #endif
  399. /**
  400. * Feed rates are often configured with mm/m
  401. * but the planner and stepper like mm/s units.
  402. */
  403. static const float homing_feedrate_mm_s[] PROGMEM = {
  404. #if ENABLED(DELTA)
  405. MMM_TO_MMS(HOMING_FEEDRATE_Z), MMM_TO_MMS(HOMING_FEEDRATE_Z),
  406. #else
  407. MMM_TO_MMS(HOMING_FEEDRATE_XY), MMM_TO_MMS(HOMING_FEEDRATE_XY),
  408. #endif
  409. MMM_TO_MMS(HOMING_FEEDRATE_Z), 0
  410. };
  411. FORCE_INLINE float homing_feedrate(const AxisEnum a) { return pgm_read_float(&homing_feedrate_mm_s[a]); }
  412. float feedrate_mm_s = MMM_TO_MMS(1500.0);
  413. static float saved_feedrate_mm_s;
  414. int16_t feedrate_percentage = 100, saved_feedrate_percentage,
  415. flow_percentage[EXTRUDERS] = ARRAY_BY_EXTRUDERS1(100);
  416. // Initialized by settings.load()
  417. bool axis_relative_modes[] = AXIS_RELATIVE_MODES,
  418. volumetric_enabled;
  419. float filament_size[EXTRUDERS], volumetric_multiplier[EXTRUDERS];
  420. #if HAS_WORKSPACE_OFFSET
  421. #if HAS_POSITION_SHIFT
  422. // The distance that XYZ has been offset by G92. Reset by G28.
  423. float position_shift[XYZ] = { 0 };
  424. #endif
  425. #if HAS_HOME_OFFSET
  426. // This offset is added to the configured home position.
  427. // Set by M206, M428, or menu item. Saved to EEPROM.
  428. float home_offset[XYZ] = { 0 };
  429. #endif
  430. #if HAS_HOME_OFFSET && HAS_POSITION_SHIFT
  431. // The above two are combined to save on computes
  432. float workspace_offset[XYZ] = { 0 };
  433. #endif
  434. #endif
  435. // Software Endstops are based on the configured limits.
  436. float soft_endstop_min[XYZ] = { X_MIN_BED, Y_MIN_BED, Z_MIN_POS },
  437. soft_endstop_max[XYZ] = { X_MAX_BED, Y_MAX_BED, Z_MAX_POS };
  438. #if HAS_SOFTWARE_ENDSTOPS
  439. bool soft_endstops_enabled = true;
  440. #if IS_KINEMATIC
  441. float soft_endstop_radius, soft_endstop_radius_2;
  442. #endif
  443. #endif
  444. #if FAN_COUNT > 0
  445. int16_t fanSpeeds[FAN_COUNT] = { 0 };
  446. #if ENABLED(EXTRA_FAN_SPEED)
  447. int16_t old_fanSpeeds[FAN_COUNT],
  448. new_fanSpeeds[FAN_COUNT];
  449. #endif
  450. #if ENABLED(PROBING_FANS_OFF)
  451. bool fans_paused = false;
  452. int16_t paused_fanSpeeds[FAN_COUNT] = { 0 };
  453. #endif
  454. #endif
  455. // The active extruder (tool). Set with T<extruder> command.
  456. uint8_t active_extruder = 0;
  457. // Relative Mode. Enable with G91, disable with G90.
  458. static bool relative_mode = false;
  459. // For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
  460. volatile bool wait_for_heatup = true;
  461. // For M0/M1, this flag may be cleared (by M108) to exit the wait-for-user loop
  462. #if HAS_RESUME_CONTINUE
  463. volatile bool wait_for_user = false;
  464. #endif
  465. const char axis_codes[XYZE] = { 'X', 'Y', 'Z', 'E' };
  466. // Number of characters read in the current line of serial input
  467. static int serial_count = 0;
  468. // Inactivity shutdown
  469. millis_t previous_cmd_ms = 0;
  470. static millis_t max_inactive_time = 0;
  471. static millis_t stepper_inactive_time = (DEFAULT_STEPPER_DEACTIVE_TIME) * 1000UL;
  472. // Print Job Timer
  473. #if ENABLED(PRINTCOUNTER)
  474. PrintCounter print_job_timer = PrintCounter();
  475. #else
  476. Stopwatch print_job_timer = Stopwatch();
  477. #endif
  478. // Buzzer - I2C on the LCD or a BEEPER_PIN
  479. #if ENABLED(LCD_USE_I2C_BUZZER)
  480. #define BUZZ(d,f) lcd_buzz(d, f)
  481. #elif PIN_EXISTS(BEEPER)
  482. Buzzer buzzer;
  483. #define BUZZ(d,f) buzzer.tone(d, f)
  484. #else
  485. #define BUZZ(d,f) NOOP
  486. #endif
  487. static uint8_t target_extruder;
  488. #if HAS_BED_PROBE
  489. float zprobe_zoffset; // Initialized by settings.load()
  490. #endif
  491. #if HAS_ABL
  492. float xy_probe_feedrate_mm_s = MMM_TO_MMS(XY_PROBE_SPEED);
  493. #define XY_PROBE_FEEDRATE_MM_S xy_probe_feedrate_mm_s
  494. #elif defined(XY_PROBE_SPEED)
  495. #define XY_PROBE_FEEDRATE_MM_S MMM_TO_MMS(XY_PROBE_SPEED)
  496. #else
  497. #define XY_PROBE_FEEDRATE_MM_S PLANNER_XY_FEEDRATE()
  498. #endif
  499. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  500. #if ENABLED(DELTA)
  501. #define ADJUST_DELTA(V) \
  502. if (planner.leveling_active) { \
  503. const float zadj = bilinear_z_offset(V); \
  504. delta[A_AXIS] += zadj; \
  505. delta[B_AXIS] += zadj; \
  506. delta[C_AXIS] += zadj; \
  507. }
  508. #else
  509. #define ADJUST_DELTA(V) if (planner.leveling_active) { delta[Z_AXIS] += bilinear_z_offset(V); }
  510. #endif
  511. #elif IS_KINEMATIC
  512. #define ADJUST_DELTA(V) NOOP
  513. #endif
  514. #if ENABLED(X_DUAL_ENDSTOPS)
  515. float x_endstop_adj; // Initialized by settings.load()
  516. #endif
  517. #if ENABLED(Y_DUAL_ENDSTOPS)
  518. float y_endstop_adj; // Initialized by settings.load()
  519. #endif
  520. #if ENABLED(Z_DUAL_ENDSTOPS)
  521. float z_endstop_adj; // Initialized by settings.load()
  522. #endif
  523. // Extruder offsets
  524. #if HOTENDS > 1
  525. float hotend_offset[XYZ][HOTENDS]; // Initialized by settings.load()
  526. #endif
  527. #if HAS_Z_SERVO_ENDSTOP
  528. const int z_servo_angle[2] = Z_SERVO_ANGLES;
  529. #endif
  530. #if ENABLED(BARICUDA)
  531. uint8_t baricuda_valve_pressure = 0,
  532. baricuda_e_to_p_pressure = 0;
  533. #endif
  534. #if ENABLED(FWRETRACT) // Initialized by settings.load()...
  535. bool autoretract_enabled, // M209 S - Autoretract switch
  536. retracted[EXTRUDERS] = { false }; // Which extruders are currently retracted
  537. float retract_length, // M207 S - G10 Retract length
  538. retract_feedrate_mm_s, // M207 F - G10 Retract feedrate
  539. retract_zlift, // M207 Z - G10 Retract hop size
  540. retract_recover_length, // M208 S - G11 Recover length
  541. retract_recover_feedrate_mm_s, // M208 F - G11 Recover feedrate
  542. swap_retract_length, // M207 W - G10 Swap Retract length
  543. swap_retract_recover_length, // M208 W - G11 Swap Recover length
  544. swap_retract_recover_feedrate_mm_s; // M208 R - G11 Swap Recover feedrate
  545. #if EXTRUDERS > 1
  546. bool retracted_swap[EXTRUDERS] = { false }; // Which extruders are swap-retracted
  547. #else
  548. constexpr bool retracted_swap[1] = { false };
  549. #endif
  550. #endif // FWRETRACT
  551. #if HAS_POWER_SWITCH
  552. bool powersupply_on =
  553. #if ENABLED(PS_DEFAULT_OFF)
  554. false
  555. #else
  556. true
  557. #endif
  558. ;
  559. #endif
  560. #if ENABLED(DELTA)
  561. float delta[ABC];
  562. // Initialized by settings.load()
  563. float delta_endstop_adj[ABC] = { 0 },
  564. delta_radius,
  565. delta_tower_angle_trim[ABC],
  566. delta_tower[ABC][2],
  567. delta_diagonal_rod,
  568. delta_calibration_radius,
  569. delta_diagonal_rod_2_tower[ABC],
  570. delta_segments_per_second,
  571. delta_clip_start_height = Z_MAX_POS;
  572. float delta_safe_distance_from_top();
  573. #endif
  574. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  575. int bilinear_grid_spacing[2], bilinear_start[2];
  576. float bilinear_grid_factor[2],
  577. z_values[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
  578. #endif
  579. #if IS_SCARA
  580. // Float constants for SCARA calculations
  581. const float L1 = SCARA_LINKAGE_1, L2 = SCARA_LINKAGE_2,
  582. L1_2 = sq(float(L1)), L1_2_2 = 2.0 * L1_2,
  583. L2_2 = sq(float(L2));
  584. float delta_segments_per_second = SCARA_SEGMENTS_PER_SECOND,
  585. delta[ABC];
  586. #endif
  587. float cartes[XYZ] = { 0 };
  588. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  589. bool filament_sensor = false; // M405 turns on filament sensor control. M406 turns it off.
  590. float filament_width_nominal = DEFAULT_NOMINAL_FILAMENT_DIA, // Nominal filament width. Change with M404.
  591. filament_width_meas = DEFAULT_MEASURED_FILAMENT_DIA; // Measured filament diameter
  592. uint8_t meas_delay_cm = MEASUREMENT_DELAY_CM, // Distance delay setting
  593. measurement_delay[MAX_MEASUREMENT_DELAY + 1]; // Ring buffer to delayed measurement. Store extruder factor after subtracting 100
  594. int8_t filwidth_delay_index[2] = { 0, -1 }; // Indexes into ring buffer
  595. #endif
  596. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  597. static bool filament_ran_out = false;
  598. #endif
  599. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  600. AdvancedPauseMenuResponse advanced_pause_menu_response;
  601. #endif
  602. #if ENABLED(MIXING_EXTRUDER)
  603. float mixing_factor[MIXING_STEPPERS]; // Reciprocal of mix proportion. 0.0 = off, otherwise >= 1.0.
  604. #if MIXING_VIRTUAL_TOOLS > 1
  605. float mixing_virtual_tool_mix[MIXING_VIRTUAL_TOOLS][MIXING_STEPPERS];
  606. #endif
  607. #endif
  608. static bool send_ok[BUFSIZE];
  609. #if HAS_SERVOS
  610. Servo servo[NUM_SERVOS];
  611. #define MOVE_SERVO(I, P) servo[I].move(P)
  612. #if HAS_Z_SERVO_ENDSTOP
  613. #define DEPLOY_Z_SERVO() MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[0])
  614. #define STOW_Z_SERVO() MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[1])
  615. #endif
  616. #endif
  617. #ifdef CHDK
  618. millis_t chdkHigh = 0;
  619. bool chdkActive = false;
  620. #endif
  621. #ifdef AUTOMATIC_CURRENT_CONTROL
  622. bool auto_current_control = 0;
  623. #endif
  624. #if ENABLED(PID_EXTRUSION_SCALING)
  625. int lpq_len = 20;
  626. #endif
  627. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  628. MarlinBusyState busy_state = NOT_BUSY;
  629. static millis_t next_busy_signal_ms = 0;
  630. uint8_t host_keepalive_interval = DEFAULT_KEEPALIVE_INTERVAL;
  631. #else
  632. #define host_keepalive() NOOP
  633. #endif
  634. #if ENABLED(I2C_POSITION_ENCODERS)
  635. I2CPositionEncodersMgr I2CPEM;
  636. uint8_t blockBufferIndexRef = 0;
  637. millis_t lastUpdateMillis;
  638. #endif
  639. #if ENABLED(CNC_WORKSPACE_PLANES)
  640. static WorkspacePlane workspace_plane = PLANE_XY;
  641. #endif
  642. FORCE_INLINE float pgm_read_any(const float *p) { return pgm_read_float_near(p); }
  643. FORCE_INLINE signed char pgm_read_any(const signed char *p) { return pgm_read_byte_near(p); }
  644. #define XYZ_CONSTS_FROM_CONFIG(type, array, CONFIG) \
  645. static const PROGMEM type array##_P[XYZ] = { X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
  646. static inline type array(AxisEnum axis) { return pgm_read_any(&array##_P[axis]); } \
  647. typedef void __void_##CONFIG##__
  648. XYZ_CONSTS_FROM_CONFIG(float, base_min_pos, MIN_POS);
  649. XYZ_CONSTS_FROM_CONFIG(float, base_max_pos, MAX_POS);
  650. XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS);
  651. XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH);
  652. XYZ_CONSTS_FROM_CONFIG(float, home_bump_mm, HOME_BUMP_MM);
  653. XYZ_CONSTS_FROM_CONFIG(signed char, home_dir, HOME_DIR);
  654. /**
  655. * ***************************************************************************
  656. * ******************************** FUNCTIONS ********************************
  657. * ***************************************************************************
  658. */
  659. void stop();
  660. void get_available_commands();
  661. void process_next_command();
  662. void prepare_move_to_destination();
  663. void get_cartesian_from_steppers();
  664. void set_current_from_steppers_for_axis(const AxisEnum axis);
  665. #if ENABLED(ARC_SUPPORT)
  666. void plan_arc(float target[XYZE], float* offset, uint8_t clockwise);
  667. #endif
  668. #if ENABLED(BEZIER_CURVE_SUPPORT)
  669. void plan_cubic_move(const float offset[4]);
  670. #endif
  671. void tool_change(const uint8_t tmp_extruder, const float fr_mm_s=0.0, bool no_move=false);
  672. void report_current_position();
  673. void report_current_position_detail();
  674. #if ENABLED(DEBUG_LEVELING_FEATURE)
  675. void print_xyz(const char* prefix, const char* suffix, const float x, const float y, const float z) {
  676. serialprintPGM(prefix);
  677. SERIAL_CHAR('(');
  678. SERIAL_ECHO(x);
  679. SERIAL_ECHOPAIR(", ", y);
  680. SERIAL_ECHOPAIR(", ", z);
  681. SERIAL_CHAR(')');
  682. if (suffix) serialprintPGM(suffix); else SERIAL_EOL();
  683. }
  684. void print_xyz(const char* prefix, const char* suffix, const float xyz[]) {
  685. print_xyz(prefix, suffix, xyz[X_AXIS], xyz[Y_AXIS], xyz[Z_AXIS]);
  686. }
  687. #if HAS_ABL
  688. void print_xyz(const char* prefix, const char* suffix, const vector_3 &xyz) {
  689. print_xyz(prefix, suffix, xyz.x, xyz.y, xyz.z);
  690. }
  691. #endif
  692. #define DEBUG_POS(SUFFIX,VAR) do { \
  693. print_xyz(PSTR(" " STRINGIFY(VAR) "="), PSTR(" : " SUFFIX "\n"), VAR); }while(0)
  694. #endif
  695. /**
  696. * sync_plan_position
  697. *
  698. * Set the planner/stepper positions directly from current_position with
  699. * no kinematic translation. Used for homing axes and cartesian/core syncing.
  700. */
  701. void sync_plan_position() {
  702. #if ENABLED(DEBUG_LEVELING_FEATURE)
  703. if (DEBUGGING(LEVELING)) DEBUG_POS("sync_plan_position", current_position);
  704. #endif
  705. planner.set_position_mm(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
  706. }
  707. inline void sync_plan_position_e() { planner.set_e_position_mm(current_position[E_AXIS]); }
  708. #if IS_KINEMATIC
  709. inline void sync_plan_position_kinematic() {
  710. #if ENABLED(DEBUG_LEVELING_FEATURE)
  711. if (DEBUGGING(LEVELING)) DEBUG_POS("sync_plan_position_kinematic", current_position);
  712. #endif
  713. planner.set_position_mm_kinematic(current_position);
  714. }
  715. #define SYNC_PLAN_POSITION_KINEMATIC() sync_plan_position_kinematic()
  716. #else
  717. #define SYNC_PLAN_POSITION_KINEMATIC() sync_plan_position()
  718. #endif
  719. #if ENABLED(SDSUPPORT)
  720. #include "SdFatUtil.h"
  721. int freeMemory() { return SdFatUtil::FreeRam(); }
  722. #else
  723. extern "C" {
  724. extern char __bss_end;
  725. extern char __heap_start;
  726. extern void* __brkval;
  727. int freeMemory() {
  728. int free_memory;
  729. if ((int)__brkval == 0)
  730. free_memory = ((int)&free_memory) - ((int)&__bss_end);
  731. else
  732. free_memory = ((int)&free_memory) - ((int)__brkval);
  733. return free_memory;
  734. }
  735. }
  736. #endif // !SDSUPPORT
  737. #if ENABLED(DIGIPOT_I2C)
  738. extern void digipot_i2c_set_current(uint8_t channel, float current);
  739. extern void digipot_i2c_init();
  740. #endif
  741. /**
  742. * Inject the next "immediate" command, when possible, onto the front of the queue.
  743. * Return true if any immediate commands remain to inject.
  744. */
  745. static bool drain_injected_commands_P() {
  746. if (injected_commands_P != NULL) {
  747. size_t i = 0;
  748. char c, cmd[30];
  749. strncpy_P(cmd, injected_commands_P, sizeof(cmd) - 1);
  750. cmd[sizeof(cmd) - 1] = '\0';
  751. while ((c = cmd[i]) && c != '\n') i++; // find the end of this gcode command
  752. cmd[i] = '\0';
  753. if (enqueue_and_echo_command(cmd)) // success?
  754. injected_commands_P = c ? injected_commands_P + i + 1 : NULL; // next command or done
  755. }
  756. return (injected_commands_P != NULL); // return whether any more remain
  757. }
  758. /**
  759. * Record one or many commands to run from program memory.
  760. * Aborts the current queue, if any.
  761. * Note: drain_injected_commands_P() must be called repeatedly to drain the commands afterwards
  762. */
  763. void enqueue_and_echo_commands_P(const char * const pgcode) {
  764. injected_commands_P = pgcode;
  765. drain_injected_commands_P(); // first command executed asap (when possible)
  766. }
  767. /**
  768. * Clear the Marlin command queue
  769. */
  770. void clear_command_queue() {
  771. cmd_queue_index_r = cmd_queue_index_w;
  772. commands_in_queue = 0;
  773. }
  774. /**
  775. * Once a new command is in the ring buffer, call this to commit it
  776. */
  777. inline void _commit_command(bool say_ok) {
  778. send_ok[cmd_queue_index_w] = say_ok;
  779. if (++cmd_queue_index_w >= BUFSIZE) cmd_queue_index_w = 0;
  780. commands_in_queue++;
  781. }
  782. /**
  783. * Copy a command from RAM into the main command buffer.
  784. * Return true if the command was successfully added.
  785. * Return false for a full buffer, or if the 'command' is a comment.
  786. */
  787. inline bool _enqueuecommand(const char* cmd, bool say_ok=false) {
  788. if (*cmd == ';' || commands_in_queue >= BUFSIZE) return false;
  789. strcpy(command_queue[cmd_queue_index_w], cmd);
  790. _commit_command(say_ok);
  791. return true;
  792. }
  793. /**
  794. * Enqueue with Serial Echo
  795. */
  796. bool enqueue_and_echo_command(const char* cmd, bool say_ok/*=false*/) {
  797. if (_enqueuecommand(cmd, say_ok)) {
  798. SERIAL_ECHO_START();
  799. SERIAL_ECHOPAIR(MSG_ENQUEUEING, cmd);
  800. SERIAL_CHAR('"');
  801. SERIAL_EOL();
  802. return true;
  803. }
  804. return false;
  805. }
  806. void setup_killpin() {
  807. #if HAS_KILL
  808. SET_INPUT_PULLUP(KILL_PIN);
  809. #endif
  810. }
  811. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  812. void setup_filrunoutpin() {
  813. #if ENABLED(ENDSTOPPULLUP_FIL_RUNOUT)
  814. SET_INPUT_PULLUP(FIL_RUNOUT_PIN);
  815. #else
  816. SET_INPUT(FIL_RUNOUT_PIN);
  817. #endif
  818. }
  819. #endif
  820. void setup_powerhold() {
  821. #if HAS_SUICIDE
  822. OUT_WRITE(SUICIDE_PIN, HIGH);
  823. #endif
  824. #if HAS_POWER_SWITCH
  825. #if ENABLED(PS_DEFAULT_OFF)
  826. OUT_WRITE(PS_ON_PIN, PS_ON_ASLEEP);
  827. #else
  828. OUT_WRITE(PS_ON_PIN, PS_ON_AWAKE);
  829. #endif
  830. #endif
  831. }
  832. void suicide() {
  833. #if HAS_SUICIDE
  834. OUT_WRITE(SUICIDE_PIN, LOW);
  835. #endif
  836. }
  837. void servo_init() {
  838. #if NUM_SERVOS >= 1 && HAS_SERVO_0
  839. servo[0].attach(SERVO0_PIN);
  840. servo[0].detach(); // Just set up the pin. We don't have a position yet. Don't move to a random position.
  841. #endif
  842. #if NUM_SERVOS >= 2 && HAS_SERVO_1
  843. servo[1].attach(SERVO1_PIN);
  844. servo[1].detach();
  845. #endif
  846. #if NUM_SERVOS >= 3 && HAS_SERVO_2
  847. servo[2].attach(SERVO2_PIN);
  848. servo[2].detach();
  849. #endif
  850. #if NUM_SERVOS >= 4 && HAS_SERVO_3
  851. servo[3].attach(SERVO3_PIN);
  852. servo[3].detach();
  853. #endif
  854. #if HAS_Z_SERVO_ENDSTOP
  855. /**
  856. * Set position of Z Servo Endstop
  857. *
  858. * The servo might be deployed and positioned too low to stow
  859. * when starting up the machine or rebooting the board.
  860. * There's no way to know where the nozzle is positioned until
  861. * homing has been done - no homing with z-probe without init!
  862. *
  863. */
  864. STOW_Z_SERVO();
  865. #endif
  866. }
  867. /**
  868. * Stepper Reset (RigidBoard, et.al.)
  869. */
  870. #if HAS_STEPPER_RESET
  871. void disableStepperDrivers() {
  872. OUT_WRITE(STEPPER_RESET_PIN, LOW); // drive it down to hold in reset motor driver chips
  873. }
  874. void enableStepperDrivers() { SET_INPUT(STEPPER_RESET_PIN); } // set to input, which allows it to be pulled high by pullups
  875. #endif
  876. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  877. void i2c_on_receive(int bytes) { // just echo all bytes received to serial
  878. i2c.receive(bytes);
  879. }
  880. void i2c_on_request() { // just send dummy data for now
  881. i2c.reply("Hello World!\n");
  882. }
  883. #endif
  884. #if HAS_COLOR_LEDS
  885. #if ENABLED(NEOPIXEL_LED)
  886. Adafruit_NeoPixel pixels(NEOPIXEL_PIXELS, NEOPIXEL_PIN, NEOPIXEL_TYPE + NEO_KHZ800);
  887. void set_neopixel_color(const uint32_t color) {
  888. for (uint16_t i = 0; i < pixels.numPixels(); ++i)
  889. pixels.setPixelColor(i, color);
  890. pixels.show();
  891. }
  892. void setup_neopixel() {
  893. pixels.setBrightness(NEOPIXEL_BRIGHTNESS); // 0 - 255 range
  894. pixels.begin();
  895. pixels.show(); // initialize to all off
  896. #if ENABLED(NEOPIXEL_STARTUP_TEST)
  897. safe_delay(1000);
  898. set_neopixel_color(pixels.Color(255, 0, 0, 0)); // red
  899. safe_delay(1000);
  900. set_neopixel_color(pixels.Color(0, 255, 0, 0)); // green
  901. safe_delay(1000);
  902. set_neopixel_color(pixels.Color(0, 0, 255, 0)); // blue
  903. safe_delay(1000);
  904. #endif
  905. set_neopixel_color(pixels.Color(NEO_WHITE)); // white
  906. }
  907. #endif // NEOPIXEL_LED
  908. void set_led_color(
  909. const uint8_t r, const uint8_t g, const uint8_t b
  910. #if ENABLED(RGBW_LED) || ENABLED(NEOPIXEL_LED)
  911. , const uint8_t w = 0
  912. #if ENABLED(NEOPIXEL_LED)
  913. , const uint8_t p = NEOPIXEL_BRIGHTNESS
  914. , bool isSequence = false
  915. #endif
  916. #endif
  917. ) {
  918. #if ENABLED(NEOPIXEL_LED)
  919. const uint32_t color = pixels.Color(r, g, b, w);
  920. static uint16_t nextLed = 0;
  921. pixels.setBrightness(p);
  922. if (!isSequence)
  923. set_neopixel_color(color);
  924. else {
  925. pixels.setPixelColor(nextLed, color);
  926. pixels.show();
  927. if (++nextLed >= pixels.numPixels()) nextLed = 0;
  928. return;
  929. }
  930. #endif
  931. #if ENABLED(BLINKM)
  932. // This variant uses i2c to send the RGB components to the device.
  933. SendColors(r, g, b);
  934. #endif
  935. #if ENABLED(RGB_LED) || ENABLED(RGBW_LED)
  936. // This variant uses 3 separate pins for the RGB components.
  937. // If the pins can do PWM then their intensity will be set.
  938. WRITE(RGB_LED_R_PIN, r ? HIGH : LOW);
  939. WRITE(RGB_LED_G_PIN, g ? HIGH : LOW);
  940. WRITE(RGB_LED_B_PIN, b ? HIGH : LOW);
  941. analogWrite(RGB_LED_R_PIN, r);
  942. analogWrite(RGB_LED_G_PIN, g);
  943. analogWrite(RGB_LED_B_PIN, b);
  944. #if ENABLED(RGBW_LED)
  945. WRITE(RGB_LED_W_PIN, w ? HIGH : LOW);
  946. analogWrite(RGB_LED_W_PIN, w);
  947. #endif
  948. #endif
  949. #if ENABLED(PCA9632)
  950. // Update I2C LED driver
  951. PCA9632_SetColor(r, g, b);
  952. #endif
  953. }
  954. #endif // HAS_COLOR_LEDS
  955. void gcode_line_error(const char* err, bool doFlush = true) {
  956. SERIAL_ERROR_START();
  957. serialprintPGM(err);
  958. SERIAL_ERRORLN(gcode_LastN);
  959. //Serial.println(gcode_N);
  960. if (doFlush) FlushSerialRequestResend();
  961. serial_count = 0;
  962. }
  963. /**
  964. * Get all commands waiting on the serial port and queue them.
  965. * Exit when the buffer is full or when no more characters are
  966. * left on the serial port.
  967. */
  968. inline void get_serial_commands() {
  969. static char serial_line_buffer[MAX_CMD_SIZE];
  970. static bool serial_comment_mode = false;
  971. // If the command buffer is empty for too long,
  972. // send "wait" to indicate Marlin is still waiting.
  973. #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
  974. static millis_t last_command_time = 0;
  975. const millis_t ms = millis();
  976. if (commands_in_queue == 0 && !MYSERIAL.available() && ELAPSED(ms, last_command_time + NO_TIMEOUTS)) {
  977. SERIAL_ECHOLNPGM(MSG_WAIT);
  978. last_command_time = ms;
  979. }
  980. #endif
  981. /**
  982. * Loop while serial characters are incoming and the queue is not full
  983. */
  984. int c;
  985. while (commands_in_queue < BUFSIZE && (c = MYSERIAL.read()) >= 0) {
  986. char serial_char = c;
  987. /**
  988. * If the character ends the line
  989. */
  990. if (serial_char == '\n' || serial_char == '\r') {
  991. serial_comment_mode = false; // end of line == end of comment
  992. if (!serial_count) continue; // Skip empty lines
  993. serial_line_buffer[serial_count] = 0; // Terminate string
  994. serial_count = 0; // Reset buffer
  995. char* command = serial_line_buffer;
  996. while (*command == ' ') command++; // Skip leading spaces
  997. char *npos = (*command == 'N') ? command : NULL; // Require the N parameter to start the line
  998. if (npos) {
  999. bool M110 = strstr_P(command, PSTR("M110")) != NULL;
  1000. if (M110) {
  1001. char* n2pos = strchr(command + 4, 'N');
  1002. if (n2pos) npos = n2pos;
  1003. }
  1004. gcode_N = strtol(npos + 1, NULL, 10);
  1005. if (gcode_N != gcode_LastN + 1 && !M110) {
  1006. gcode_line_error(PSTR(MSG_ERR_LINE_NO));
  1007. return;
  1008. }
  1009. char *apos = strrchr(command, '*');
  1010. if (apos) {
  1011. uint8_t checksum = 0, count = uint8_t(apos - command);
  1012. while (count) checksum ^= command[--count];
  1013. if (strtol(apos + 1, NULL, 10) != checksum) {
  1014. gcode_line_error(PSTR(MSG_ERR_CHECKSUM_MISMATCH));
  1015. return;
  1016. }
  1017. }
  1018. else {
  1019. gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM));
  1020. return;
  1021. }
  1022. gcode_LastN = gcode_N;
  1023. }
  1024. // Movement commands alert when stopped
  1025. if (IsStopped()) {
  1026. char* gpos = strchr(command, 'G');
  1027. if (gpos) {
  1028. const int codenum = strtol(gpos + 1, NULL, 10);
  1029. switch (codenum) {
  1030. case 0:
  1031. case 1:
  1032. case 2:
  1033. case 3:
  1034. SERIAL_ERRORLNPGM(MSG_ERR_STOPPED);
  1035. LCD_MESSAGEPGM(MSG_STOPPED);
  1036. break;
  1037. }
  1038. }
  1039. }
  1040. #if DISABLED(EMERGENCY_PARSER)
  1041. // If command was e-stop process now
  1042. if (strcmp(command, "M108") == 0) {
  1043. wait_for_heatup = false;
  1044. #if ENABLED(ULTIPANEL)
  1045. wait_for_user = false;
  1046. #endif
  1047. }
  1048. if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
  1049. if (strcmp(command, "M410") == 0) { quickstop_stepper(); }
  1050. #endif
  1051. #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
  1052. last_command_time = ms;
  1053. #endif
  1054. // Add the command to the queue
  1055. _enqueuecommand(serial_line_buffer, true);
  1056. }
  1057. else if (serial_count >= MAX_CMD_SIZE - 1) {
  1058. // Keep fetching, but ignore normal characters beyond the max length
  1059. // The command will be injected when EOL is reached
  1060. }
  1061. else if (serial_char == '\\') { // Handle escapes
  1062. if ((c = MYSERIAL.read()) >= 0) {
  1063. // if we have one more character, copy it over
  1064. serial_char = c;
  1065. if (!serial_comment_mode) serial_line_buffer[serial_count++] = serial_char;
  1066. }
  1067. // otherwise do nothing
  1068. }
  1069. else { // it's not a newline, carriage return or escape char
  1070. if (serial_char == ';') serial_comment_mode = true;
  1071. if (!serial_comment_mode) serial_line_buffer[serial_count++] = serial_char;
  1072. }
  1073. } // queue has space, serial has data
  1074. }
  1075. #if ENABLED(SDSUPPORT)
  1076. /**
  1077. * Get commands from the SD Card until the command buffer is full
  1078. * or until the end of the file is reached. The special character '#'
  1079. * can also interrupt buffering.
  1080. */
  1081. inline void get_sdcard_commands() {
  1082. static bool stop_buffering = false,
  1083. sd_comment_mode = false;
  1084. if (!card.sdprinting) return;
  1085. /**
  1086. * '#' stops reading from SD to the buffer prematurely, so procedural
  1087. * macro calls are possible. If it occurs, stop_buffering is triggered
  1088. * and the buffer is run dry; this character _can_ occur in serial com
  1089. * due to checksums, however, no checksums are used in SD printing.
  1090. */
  1091. if (commands_in_queue == 0) stop_buffering = false;
  1092. uint16_t sd_count = 0;
  1093. bool card_eof = card.eof();
  1094. while (commands_in_queue < BUFSIZE && !card_eof && !stop_buffering) {
  1095. const int16_t n = card.get();
  1096. char sd_char = (char)n;
  1097. card_eof = card.eof();
  1098. if (card_eof || n == -1
  1099. || sd_char == '\n' || sd_char == '\r'
  1100. || ((sd_char == '#' || sd_char == ':') && !sd_comment_mode)
  1101. ) {
  1102. if (card_eof) {
  1103. SERIAL_PROTOCOLLNPGM(MSG_FILE_PRINTED);
  1104. card.printingHasFinished();
  1105. #if ENABLED(PRINTER_EVENT_LEDS)
  1106. LCD_MESSAGEPGM(MSG_INFO_COMPLETED_PRINTS);
  1107. set_led_color(0, 255, 0); // Green
  1108. #if HAS_RESUME_CONTINUE
  1109. enqueue_and_echo_commands_P(PSTR("M0")); // end of the queue!
  1110. #else
  1111. safe_delay(1000);
  1112. #endif
  1113. set_led_color(0, 0, 0); // OFF
  1114. #endif
  1115. card.checkautostart(true);
  1116. }
  1117. else if (n == -1) {
  1118. SERIAL_ERROR_START();
  1119. SERIAL_ECHOLNPGM(MSG_SD_ERR_READ);
  1120. }
  1121. if (sd_char == '#') stop_buffering = true;
  1122. sd_comment_mode = false; // for new command
  1123. if (!sd_count) continue; // skip empty lines (and comment lines)
  1124. command_queue[cmd_queue_index_w][sd_count] = '\0'; // terminate string
  1125. sd_count = 0; // clear sd line buffer
  1126. _commit_command(false);
  1127. }
  1128. else if (sd_count >= MAX_CMD_SIZE - 1) {
  1129. /**
  1130. * Keep fetching, but ignore normal characters beyond the max length
  1131. * The command will be injected when EOL is reached
  1132. */
  1133. }
  1134. else {
  1135. if (sd_char == ';') sd_comment_mode = true;
  1136. if (!sd_comment_mode) command_queue[cmd_queue_index_w][sd_count++] = sd_char;
  1137. }
  1138. }
  1139. }
  1140. #endif // SDSUPPORT
  1141. /**
  1142. * Add to the circular command queue the next command from:
  1143. * - The command-injection queue (injected_commands_P)
  1144. * - The active serial input (usually USB)
  1145. * - The SD card file being actively printed
  1146. */
  1147. void get_available_commands() {
  1148. // if any immediate commands remain, don't get other commands yet
  1149. if (drain_injected_commands_P()) return;
  1150. get_serial_commands();
  1151. #if ENABLED(SDSUPPORT)
  1152. get_sdcard_commands();
  1153. #endif
  1154. }
  1155. /**
  1156. * Set target_extruder from the T parameter or the active_extruder
  1157. *
  1158. * Returns TRUE if the target is invalid
  1159. */
  1160. bool get_target_extruder_from_command(const uint16_t code) {
  1161. if (parser.seenval('T')) {
  1162. const int8_t e = parser.value_byte();
  1163. if (e >= EXTRUDERS) {
  1164. SERIAL_ECHO_START();
  1165. SERIAL_CHAR('M');
  1166. SERIAL_ECHO(code);
  1167. SERIAL_ECHOLNPAIR(" " MSG_INVALID_EXTRUDER " ", e);
  1168. return true;
  1169. }
  1170. target_extruder = e;
  1171. }
  1172. else
  1173. target_extruder = active_extruder;
  1174. return false;
  1175. }
  1176. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  1177. bool extruder_duplication_enabled = false; // Used in Dual X mode 2
  1178. #endif
  1179. #if ENABLED(DUAL_X_CARRIAGE)
  1180. static DualXMode dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
  1181. static float x_home_pos(const int extruder) {
  1182. if (extruder == 0)
  1183. return base_home_pos(X_AXIS);
  1184. else
  1185. /**
  1186. * In dual carriage mode the extruder offset provides an override of the
  1187. * second X-carriage position when homed - otherwise X2_HOME_POS is used.
  1188. * This allows soft recalibration of the second extruder home position
  1189. * without firmware reflash (through the M218 command).
  1190. */
  1191. return hotend_offset[X_AXIS][1] > 0 ? hotend_offset[X_AXIS][1] : X2_HOME_POS;
  1192. }
  1193. static int x_home_dir(const int extruder) { return extruder ? X2_HOME_DIR : X_HOME_DIR; }
  1194. static float inactive_extruder_x_pos = X2_MAX_POS; // used in mode 0 & 1
  1195. static bool active_extruder_parked = false; // used in mode 1 & 2
  1196. static float raised_parked_position[XYZE]; // used in mode 1
  1197. static millis_t delayed_move_time = 0; // used in mode 1
  1198. static float duplicate_extruder_x_offset = DEFAULT_DUPLICATION_X_OFFSET; // used in mode 2
  1199. static int16_t duplicate_extruder_temp_offset = 0; // used in mode 2
  1200. #endif // DUAL_X_CARRIAGE
  1201. #if HAS_WORKSPACE_OFFSET || ENABLED(DUAL_X_CARRIAGE)
  1202. /**
  1203. * Software endstops can be used to monitor the open end of
  1204. * an axis that has a hardware endstop on the other end. Or
  1205. * they can prevent axes from moving past endstops and grinding.
  1206. *
  1207. * To keep doing their job as the coordinate system changes,
  1208. * the software endstop positions must be refreshed to remain
  1209. * at the same positions relative to the machine.
  1210. */
  1211. void update_software_endstops(const AxisEnum axis) {
  1212. const float offs = 0.0
  1213. #if HAS_HOME_OFFSET
  1214. + home_offset[axis]
  1215. #endif
  1216. #if HAS_POSITION_SHIFT
  1217. + position_shift[axis]
  1218. #endif
  1219. ;
  1220. #if HAS_HOME_OFFSET && HAS_POSITION_SHIFT
  1221. workspace_offset[axis] = offs;
  1222. #endif
  1223. #if ENABLED(DUAL_X_CARRIAGE)
  1224. if (axis == X_AXIS) {
  1225. // In Dual X mode hotend_offset[X] is T1's home position
  1226. float dual_max_x = max(hotend_offset[X_AXIS][1], X2_MAX_POS);
  1227. if (active_extruder != 0) {
  1228. // T1 can move from X2_MIN_POS to X2_MAX_POS or X2 home position (whichever is larger)
  1229. soft_endstop_min[X_AXIS] = X2_MIN_POS + offs;
  1230. soft_endstop_max[X_AXIS] = dual_max_x + offs;
  1231. }
  1232. else if (dual_x_carriage_mode == DXC_DUPLICATION_MODE) {
  1233. // In Duplication Mode, T0 can move as far left as X_MIN_POS
  1234. // but not so far to the right that T1 would move past the end
  1235. soft_endstop_min[X_AXIS] = base_min_pos(X_AXIS) + offs;
  1236. soft_endstop_max[X_AXIS] = min(base_max_pos(X_AXIS), dual_max_x - duplicate_extruder_x_offset) + offs;
  1237. }
  1238. else {
  1239. // In other modes, T0 can move from X_MIN_POS to X_MAX_POS
  1240. soft_endstop_min[axis] = base_min_pos(axis) + offs;
  1241. soft_endstop_max[axis] = base_max_pos(axis) + offs;
  1242. }
  1243. }
  1244. #endif
  1245. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1246. if (DEBUGGING(LEVELING)) {
  1247. SERIAL_ECHOPAIR("For ", axis_codes[axis]);
  1248. #if HAS_HOME_OFFSET
  1249. SERIAL_ECHOPAIR(" axis:\n home_offset = ", home_offset[axis]);
  1250. #endif
  1251. #if HAS_POSITION_SHIFT
  1252. SERIAL_ECHOPAIR("\n position_shift = ", position_shift[axis]);
  1253. #endif
  1254. SERIAL_ECHOPAIR("\n soft_endstop_min = ", soft_endstop_min[axis]);
  1255. SERIAL_ECHOLNPAIR("\n soft_endstop_max = ", soft_endstop_max[axis]);
  1256. }
  1257. #endif
  1258. #if ENABLED(DELTA)
  1259. switch(axis) {
  1260. case X_AXIS:
  1261. case Y_AXIS:
  1262. // Get a minimum radius for clamping
  1263. 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]);
  1264. soft_endstop_radius_2 = sq(soft_endstop_radius);
  1265. break;
  1266. case Z_AXIS:
  1267. delta_clip_start_height = soft_endstop_max[axis] - delta_safe_distance_from_top();
  1268. default: break;
  1269. }
  1270. #endif
  1271. }
  1272. #endif // HAS_WORKSPACE_OFFSET || DUAL_X_CARRIAGE
  1273. #if HAS_M206_COMMAND
  1274. /**
  1275. * Change the home offset for an axis, update the current
  1276. * position and the software endstops to retain the same
  1277. * relative distance to the new home.
  1278. *
  1279. * Since this changes the current_position, code should
  1280. * call sync_plan_position soon after this.
  1281. */
  1282. static void set_home_offset(const AxisEnum axis, const float v) {
  1283. home_offset[axis] = v;
  1284. update_software_endstops(axis);
  1285. }
  1286. #endif // HAS_M206_COMMAND
  1287. /**
  1288. * Set an axis' current position to its home position (after homing).
  1289. *
  1290. * For Core and Cartesian robots this applies one-to-one when an
  1291. * individual axis has been homed.
  1292. *
  1293. * DELTA should wait until all homing is done before setting the XYZ
  1294. * current_position to home, because homing is a single operation.
  1295. * In the case where the axis positions are already known and previously
  1296. * homed, DELTA could home to X or Y individually by moving either one
  1297. * to the center. However, homing Z always homes XY and Z.
  1298. *
  1299. * SCARA should wait until all XY homing is done before setting the XY
  1300. * current_position to home, because neither X nor Y is at home until
  1301. * both are at home. Z can however be homed individually.
  1302. *
  1303. * Callers must sync the planner position after calling this!
  1304. */
  1305. static void set_axis_is_at_home(const AxisEnum axis) {
  1306. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1307. if (DEBUGGING(LEVELING)) {
  1308. SERIAL_ECHOPAIR(">>> set_axis_is_at_home(", axis_codes[axis]);
  1309. SERIAL_CHAR(')');
  1310. SERIAL_EOL();
  1311. }
  1312. #endif
  1313. axis_known_position[axis] = axis_homed[axis] = true;
  1314. #if HAS_POSITION_SHIFT
  1315. position_shift[axis] = 0;
  1316. update_software_endstops(axis);
  1317. #endif
  1318. #if ENABLED(DUAL_X_CARRIAGE)
  1319. if (axis == X_AXIS && (active_extruder == 1 || dual_x_carriage_mode == DXC_DUPLICATION_MODE)) {
  1320. current_position[X_AXIS] = x_home_pos(active_extruder);
  1321. return;
  1322. }
  1323. #endif
  1324. #if ENABLED(MORGAN_SCARA)
  1325. /**
  1326. * Morgan SCARA homes XY at the same time
  1327. */
  1328. if (axis == X_AXIS || axis == Y_AXIS) {
  1329. float homeposition[XYZ] = {
  1330. base_home_pos(X_AXIS),
  1331. base_home_pos(Y_AXIS),
  1332. base_home_pos(Z_AXIS)
  1333. };
  1334. // SERIAL_ECHOPAIR("homeposition X:", homeposition[X_AXIS]);
  1335. // SERIAL_ECHOLNPAIR(" Y:", homeposition[Y_AXIS]);
  1336. /**
  1337. * Get Home position SCARA arm angles using inverse kinematics,
  1338. * and calculate homing offset using forward kinematics
  1339. */
  1340. inverse_kinematics(homeposition);
  1341. forward_kinematics_SCARA(delta[A_AXIS], delta[B_AXIS]);
  1342. // SERIAL_ECHOPAIR("Cartesian X:", cartes[X_AXIS]);
  1343. // SERIAL_ECHOLNPAIR(" Y:", cartes[Y_AXIS]);
  1344. current_position[axis] = cartes[axis];
  1345. /**
  1346. * SCARA home positions are based on configuration since the actual
  1347. * limits are determined by the inverse kinematic transform.
  1348. */
  1349. soft_endstop_min[axis] = base_min_pos(axis); // + (cartes[axis] - base_home_pos(axis));
  1350. soft_endstop_max[axis] = base_max_pos(axis); // + (cartes[axis] - base_home_pos(axis));
  1351. }
  1352. else
  1353. #endif
  1354. {
  1355. current_position[axis] = base_home_pos(axis);
  1356. }
  1357. /**
  1358. * Z Probe Z Homing? Account for the probe's Z offset.
  1359. */
  1360. #if HAS_BED_PROBE && Z_HOME_DIR < 0
  1361. if (axis == Z_AXIS) {
  1362. #if HOMING_Z_WITH_PROBE
  1363. current_position[Z_AXIS] -= zprobe_zoffset;
  1364. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1365. if (DEBUGGING(LEVELING)) {
  1366. SERIAL_ECHOLNPGM("*** Z HOMED WITH PROBE (Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) ***");
  1367. SERIAL_ECHOLNPAIR("> zprobe_zoffset = ", zprobe_zoffset);
  1368. }
  1369. #endif
  1370. #elif ENABLED(DEBUG_LEVELING_FEATURE)
  1371. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("*** Z HOMED TO ENDSTOP (Z_MIN_PROBE_ENDSTOP) ***");
  1372. #endif
  1373. }
  1374. #endif
  1375. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1376. if (DEBUGGING(LEVELING)) {
  1377. #if HAS_HOME_OFFSET
  1378. SERIAL_ECHOPAIR("> home_offset[", axis_codes[axis]);
  1379. SERIAL_ECHOLNPAIR("] = ", home_offset[axis]);
  1380. #endif
  1381. DEBUG_POS("", current_position);
  1382. SERIAL_ECHOPAIR("<<< set_axis_is_at_home(", axis_codes[axis]);
  1383. SERIAL_CHAR(')');
  1384. SERIAL_EOL();
  1385. }
  1386. #endif
  1387. #if ENABLED(I2C_POSITION_ENCODERS)
  1388. I2CPEM.homed(axis);
  1389. #endif
  1390. }
  1391. /**
  1392. * Some planner shorthand inline functions
  1393. */
  1394. inline float get_homing_bump_feedrate(const AxisEnum axis) {
  1395. static const uint8_t homing_bump_divisor[] PROGMEM = HOMING_BUMP_DIVISOR;
  1396. uint8_t hbd = pgm_read_byte(&homing_bump_divisor[axis]);
  1397. if (hbd < 1) {
  1398. hbd = 10;
  1399. SERIAL_ECHO_START();
  1400. SERIAL_ECHOLNPGM("Warning: Homing Bump Divisor < 1");
  1401. }
  1402. return homing_feedrate(axis) / hbd;
  1403. }
  1404. /**
  1405. * Move the planner to the current position from wherever it last moved
  1406. * (or from wherever it has been told it is located).
  1407. */
  1408. inline void line_to_current_position() {
  1409. planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], feedrate_mm_s, active_extruder);
  1410. }
  1411. /**
  1412. * Move the planner to the position stored in the destination array, which is
  1413. * used by G0/G1/G2/G3/G5 and many other functions to set a destination.
  1414. */
  1415. inline void line_to_destination(const float fr_mm_s) {
  1416. planner.buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], fr_mm_s, active_extruder);
  1417. }
  1418. inline void line_to_destination() { line_to_destination(feedrate_mm_s); }
  1419. inline void set_current_from_destination() { COPY(current_position, destination); }
  1420. inline void set_destination_from_current() { COPY(destination, current_position); }
  1421. #if IS_KINEMATIC
  1422. /**
  1423. * Calculate delta, start a line, and set current_position to destination
  1424. */
  1425. void prepare_uninterpolated_move_to_destination(const float fr_mm_s=0.0) {
  1426. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1427. if (DEBUGGING(LEVELING)) DEBUG_POS("prepare_uninterpolated_move_to_destination", destination);
  1428. #endif
  1429. refresh_cmd_timeout();
  1430. #if UBL_DELTA
  1431. // ubl segmented line will do z-only moves in single segment
  1432. ubl.prepare_segmented_line_to(destination, MMS_SCALED(fr_mm_s ? fr_mm_s : feedrate_mm_s));
  1433. #else
  1434. if ( current_position[X_AXIS] == destination[X_AXIS]
  1435. && current_position[Y_AXIS] == destination[Y_AXIS]
  1436. && current_position[Z_AXIS] == destination[Z_AXIS]
  1437. && current_position[E_AXIS] == destination[E_AXIS]
  1438. ) return;
  1439. planner.buffer_line_kinematic(destination, MMS_SCALED(fr_mm_s ? fr_mm_s : feedrate_mm_s), active_extruder);
  1440. #endif
  1441. set_current_from_destination();
  1442. }
  1443. #endif // IS_KINEMATIC
  1444. /**
  1445. * Plan a move to (X, Y, Z) and set the current_position
  1446. * The final current_position may not be the one that was requested
  1447. */
  1448. void do_blocking_move_to(const float &rx, const float &ry, const float &rz, const float &fr_mm_s/*=0.0*/) {
  1449. const float old_feedrate_mm_s = feedrate_mm_s;
  1450. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1451. if (DEBUGGING(LEVELING)) print_xyz(PSTR(">>> do_blocking_move_to"), NULL, LOGICAL_X_POSITION(rx), LOGICAL_Y_POSITION(ry), LOGICAL_Z_POSITION(rz));
  1452. #endif
  1453. #if ENABLED(DELTA)
  1454. if (!position_is_reachable(rx, ry)) return;
  1455. feedrate_mm_s = fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  1456. set_destination_from_current(); // sync destination at the start
  1457. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1458. if (DEBUGGING(LEVELING)) DEBUG_POS("set_destination_from_current", destination);
  1459. #endif
  1460. // when in the danger zone
  1461. if (current_position[Z_AXIS] > delta_clip_start_height) {
  1462. if (rz > delta_clip_start_height) { // staying in the danger zone
  1463. destination[X_AXIS] = rx; // move directly (uninterpolated)
  1464. destination[Y_AXIS] = ry;
  1465. destination[Z_AXIS] = rz;
  1466. prepare_uninterpolated_move_to_destination(); // set_current_from_destination
  1467. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1468. if (DEBUGGING(LEVELING)) DEBUG_POS("danger zone move", current_position);
  1469. #endif
  1470. return;
  1471. }
  1472. else {
  1473. destination[Z_AXIS] = delta_clip_start_height;
  1474. prepare_uninterpolated_move_to_destination(); // set_current_from_destination
  1475. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1476. if (DEBUGGING(LEVELING)) DEBUG_POS("zone border move", current_position);
  1477. #endif
  1478. }
  1479. }
  1480. if (rz > current_position[Z_AXIS]) { // raising?
  1481. destination[Z_AXIS] = rz;
  1482. prepare_uninterpolated_move_to_destination(); // set_current_from_destination
  1483. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1484. if (DEBUGGING(LEVELING)) DEBUG_POS("z raise move", current_position);
  1485. #endif
  1486. }
  1487. destination[X_AXIS] = rx;
  1488. destination[Y_AXIS] = ry;
  1489. prepare_move_to_destination(); // set_current_from_destination
  1490. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1491. if (DEBUGGING(LEVELING)) DEBUG_POS("xy move", current_position);
  1492. #endif
  1493. if (rz < current_position[Z_AXIS]) { // lowering?
  1494. destination[Z_AXIS] = rz;
  1495. prepare_uninterpolated_move_to_destination(); // set_current_from_destination
  1496. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1497. if (DEBUGGING(LEVELING)) DEBUG_POS("z lower move", current_position);
  1498. #endif
  1499. }
  1500. #elif IS_SCARA
  1501. if (!position_is_reachable(rx, ry)) return;
  1502. set_destination_from_current();
  1503. // If Z needs to raise, do it before moving XY
  1504. if (destination[Z_AXIS] < rz) {
  1505. destination[Z_AXIS] = rz;
  1506. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS));
  1507. }
  1508. destination[X_AXIS] = rx;
  1509. destination[Y_AXIS] = ry;
  1510. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S);
  1511. // If Z needs to lower, do it after moving XY
  1512. if (destination[Z_AXIS] > rz) {
  1513. destination[Z_AXIS] = rz;
  1514. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS));
  1515. }
  1516. #else
  1517. // If Z needs to raise, do it before moving XY
  1518. if (current_position[Z_AXIS] < rz) {
  1519. feedrate_mm_s = fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS);
  1520. current_position[Z_AXIS] = rz;
  1521. line_to_current_position();
  1522. }
  1523. feedrate_mm_s = fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  1524. current_position[X_AXIS] = rx;
  1525. current_position[Y_AXIS] = ry;
  1526. line_to_current_position();
  1527. // If Z needs to lower, do it after moving XY
  1528. if (current_position[Z_AXIS] > rz) {
  1529. feedrate_mm_s = fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS);
  1530. current_position[Z_AXIS] = rz;
  1531. line_to_current_position();
  1532. }
  1533. #endif
  1534. stepper.synchronize();
  1535. feedrate_mm_s = old_feedrate_mm_s;
  1536. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1537. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< do_blocking_move_to");
  1538. #endif
  1539. }
  1540. void do_blocking_move_to_x(const float &rx, const float &fr_mm_s/*=0.0*/) {
  1541. do_blocking_move_to(rx, current_position[Y_AXIS], current_position[Z_AXIS], fr_mm_s);
  1542. }
  1543. void do_blocking_move_to_z(const float &rz, const float &fr_mm_s/*=0.0*/) {
  1544. do_blocking_move_to(current_position[X_AXIS], current_position[Y_AXIS], rz, fr_mm_s);
  1545. }
  1546. void do_blocking_move_to_xy(const float &rx, const float &ry, const float &fr_mm_s/*=0.0*/) {
  1547. do_blocking_move_to(rx, ry, current_position[Z_AXIS], fr_mm_s);
  1548. }
  1549. //
  1550. // Prepare to do endstop or probe moves
  1551. // with custom feedrates.
  1552. //
  1553. // - Save current feedrates
  1554. // - Reset the rate multiplier
  1555. // - Reset the command timeout
  1556. // - Enable the endstops (for endstop moves)
  1557. //
  1558. static void setup_for_endstop_or_probe_move() {
  1559. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1560. if (DEBUGGING(LEVELING)) DEBUG_POS("setup_for_endstop_or_probe_move", current_position);
  1561. #endif
  1562. saved_feedrate_mm_s = feedrate_mm_s;
  1563. saved_feedrate_percentage = feedrate_percentage;
  1564. feedrate_percentage = 100;
  1565. refresh_cmd_timeout();
  1566. }
  1567. static void clean_up_after_endstop_or_probe_move() {
  1568. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1569. if (DEBUGGING(LEVELING)) DEBUG_POS("clean_up_after_endstop_or_probe_move", current_position);
  1570. #endif
  1571. feedrate_mm_s = saved_feedrate_mm_s;
  1572. feedrate_percentage = saved_feedrate_percentage;
  1573. refresh_cmd_timeout();
  1574. }
  1575. #if HAS_BED_PROBE
  1576. /**
  1577. * Raise Z to a minimum height to make room for a probe to move
  1578. */
  1579. inline void do_probe_raise(const float z_raise) {
  1580. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1581. if (DEBUGGING(LEVELING)) {
  1582. SERIAL_ECHOPAIR("do_probe_raise(", z_raise);
  1583. SERIAL_CHAR(')');
  1584. SERIAL_EOL();
  1585. }
  1586. #endif
  1587. float z_dest = z_raise;
  1588. if (zprobe_zoffset < 0) z_dest -= zprobe_zoffset;
  1589. if (z_dest > current_position[Z_AXIS])
  1590. do_blocking_move_to_z(z_dest);
  1591. }
  1592. #endif // HAS_BED_PROBE
  1593. #if HAS_AXIS_UNHOMED_ERR
  1594. bool axis_unhomed_error(const bool x/*=true*/, const bool y/*=true*/, const bool z/*=true*/) {
  1595. #if ENABLED(HOME_AFTER_DEACTIVATE)
  1596. const bool xx = x && !axis_known_position[X_AXIS],
  1597. yy = y && !axis_known_position[Y_AXIS],
  1598. zz = z && !axis_known_position[Z_AXIS];
  1599. #else
  1600. const bool xx = x && !axis_homed[X_AXIS],
  1601. yy = y && !axis_homed[Y_AXIS],
  1602. zz = z && !axis_homed[Z_AXIS];
  1603. #endif
  1604. if (xx || yy || zz) {
  1605. SERIAL_ECHO_START();
  1606. SERIAL_ECHOPGM(MSG_HOME " ");
  1607. if (xx) SERIAL_ECHOPGM(MSG_X);
  1608. if (yy) SERIAL_ECHOPGM(MSG_Y);
  1609. if (zz) SERIAL_ECHOPGM(MSG_Z);
  1610. SERIAL_ECHOLNPGM(" " MSG_FIRST);
  1611. #if ENABLED(ULTRA_LCD)
  1612. lcd_status_printf_P(0, PSTR(MSG_HOME " %s%s%s " MSG_FIRST), xx ? MSG_X : "", yy ? MSG_Y : "", zz ? MSG_Z : "");
  1613. #endif
  1614. return true;
  1615. }
  1616. return false;
  1617. }
  1618. #endif // HAS_AXIS_UNHOMED_ERR
  1619. #if ENABLED(Z_PROBE_SLED)
  1620. #ifndef SLED_DOCKING_OFFSET
  1621. #define SLED_DOCKING_OFFSET 0
  1622. #endif
  1623. /**
  1624. * Method to dock/undock a sled designed by Charles Bell.
  1625. *
  1626. * stow[in] If false, move to MAX_X and engage the solenoid
  1627. * If true, move to MAX_X and release the solenoid
  1628. */
  1629. static void dock_sled(bool stow) {
  1630. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1631. if (DEBUGGING(LEVELING)) {
  1632. SERIAL_ECHOPAIR("dock_sled(", stow);
  1633. SERIAL_CHAR(')');
  1634. SERIAL_EOL();
  1635. }
  1636. #endif
  1637. // Dock sled a bit closer to ensure proper capturing
  1638. do_blocking_move_to_x(X_MAX_POS + SLED_DOCKING_OFFSET - ((stow) ? 1 : 0));
  1639. #if HAS_SOLENOID_1 && DISABLED(EXT_SOLENOID)
  1640. WRITE(SOL1_PIN, !stow); // switch solenoid
  1641. #endif
  1642. }
  1643. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  1644. FORCE_INLINE void do_blocking_move_to(const float raw[XYZ], const float &fr_mm_s) {
  1645. do_blocking_move_to(raw[X_AXIS], raw[Y_AXIS], raw[Z_AXIS], fr_mm_s);
  1646. }
  1647. void run_deploy_moves_script() {
  1648. #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)
  1649. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_X
  1650. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_X current_position[X_AXIS]
  1651. #endif
  1652. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_Y
  1653. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_Y current_position[Y_AXIS]
  1654. #endif
  1655. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_Z
  1656. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_Z current_position[Z_AXIS]
  1657. #endif
  1658. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE
  1659. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE 0.0
  1660. #endif
  1661. 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 };
  1662. do_blocking_move_to(deploy_1, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE));
  1663. #endif
  1664. #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)
  1665. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_X
  1666. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_X current_position[X_AXIS]
  1667. #endif
  1668. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_Y
  1669. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Y current_position[Y_AXIS]
  1670. #endif
  1671. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_Z
  1672. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Z current_position[Z_AXIS]
  1673. #endif
  1674. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE
  1675. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE 0.0
  1676. #endif
  1677. 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 };
  1678. do_blocking_move_to(deploy_2, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE));
  1679. #endif
  1680. #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)
  1681. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_X
  1682. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_X current_position[X_AXIS]
  1683. #endif
  1684. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_Y
  1685. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Y current_position[Y_AXIS]
  1686. #endif
  1687. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_Z
  1688. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Z current_position[Z_AXIS]
  1689. #endif
  1690. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE
  1691. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE 0.0
  1692. #endif
  1693. 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 };
  1694. do_blocking_move_to(deploy_3, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE));
  1695. #endif
  1696. #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)
  1697. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_X
  1698. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_X current_position[X_AXIS]
  1699. #endif
  1700. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_Y
  1701. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_Y current_position[Y_AXIS]
  1702. #endif
  1703. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_Z
  1704. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_Z current_position[Z_AXIS]
  1705. #endif
  1706. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE
  1707. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE 0.0
  1708. #endif
  1709. 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 };
  1710. do_blocking_move_to(deploy_4, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE));
  1711. #endif
  1712. #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)
  1713. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_X
  1714. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_X current_position[X_AXIS]
  1715. #endif
  1716. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_Y
  1717. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_Y current_position[Y_AXIS]
  1718. #endif
  1719. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_Z
  1720. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_Z current_position[Z_AXIS]
  1721. #endif
  1722. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE
  1723. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE 0.0
  1724. #endif
  1725. 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 };
  1726. do_blocking_move_to(deploy_5, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE));
  1727. #endif
  1728. }
  1729. void run_stow_moves_script() {
  1730. #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)
  1731. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_X
  1732. #define Z_PROBE_ALLEN_KEY_STOW_1_X current_position[X_AXIS]
  1733. #endif
  1734. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_Y
  1735. #define Z_PROBE_ALLEN_KEY_STOW_1_Y current_position[Y_AXIS]
  1736. #endif
  1737. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_Z
  1738. #define Z_PROBE_ALLEN_KEY_STOW_1_Z current_position[Z_AXIS]
  1739. #endif
  1740. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE
  1741. #define Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE 0.0
  1742. #endif
  1743. 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 };
  1744. do_blocking_move_to(stow_1, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE));
  1745. #endif
  1746. #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)
  1747. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_X
  1748. #define Z_PROBE_ALLEN_KEY_STOW_2_X current_position[X_AXIS]
  1749. #endif
  1750. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_Y
  1751. #define Z_PROBE_ALLEN_KEY_STOW_2_Y current_position[Y_AXIS]
  1752. #endif
  1753. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_Z
  1754. #define Z_PROBE_ALLEN_KEY_STOW_2_Z current_position[Z_AXIS]
  1755. #endif
  1756. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE
  1757. #define Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE 0.0
  1758. #endif
  1759. 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 };
  1760. do_blocking_move_to(stow_2, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE));
  1761. #endif
  1762. #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)
  1763. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_X
  1764. #define Z_PROBE_ALLEN_KEY_STOW_3_X current_position[X_AXIS]
  1765. #endif
  1766. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_Y
  1767. #define Z_PROBE_ALLEN_KEY_STOW_3_Y current_position[Y_AXIS]
  1768. #endif
  1769. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_Z
  1770. #define Z_PROBE_ALLEN_KEY_STOW_3_Z current_position[Z_AXIS]
  1771. #endif
  1772. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE
  1773. #define Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE 0.0
  1774. #endif
  1775. 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 };
  1776. do_blocking_move_to(stow_3, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE));
  1777. #endif
  1778. #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)
  1779. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_X
  1780. #define Z_PROBE_ALLEN_KEY_STOW_4_X current_position[X_AXIS]
  1781. #endif
  1782. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_Y
  1783. #define Z_PROBE_ALLEN_KEY_STOW_4_Y current_position[Y_AXIS]
  1784. #endif
  1785. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_Z
  1786. #define Z_PROBE_ALLEN_KEY_STOW_4_Z current_position[Z_AXIS]
  1787. #endif
  1788. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE
  1789. #define Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE 0.0
  1790. #endif
  1791. 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 };
  1792. do_blocking_move_to(stow_4, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE));
  1793. #endif
  1794. #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)
  1795. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_X
  1796. #define Z_PROBE_ALLEN_KEY_STOW_5_X current_position[X_AXIS]
  1797. #endif
  1798. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_Y
  1799. #define Z_PROBE_ALLEN_KEY_STOW_5_Y current_position[Y_AXIS]
  1800. #endif
  1801. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_Z
  1802. #define Z_PROBE_ALLEN_KEY_STOW_5_Z current_position[Z_AXIS]
  1803. #endif
  1804. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE
  1805. #define Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE 0.0
  1806. #endif
  1807. 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 };
  1808. do_blocking_move_to(stow_5, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE));
  1809. #endif
  1810. }
  1811. #endif // Z_PROBE_ALLEN_KEY
  1812. #if ENABLED(PROBING_FANS_OFF)
  1813. void fans_pause(const bool p) {
  1814. if (p != fans_paused) {
  1815. fans_paused = p;
  1816. if (p)
  1817. for (uint8_t x = 0; x < FAN_COUNT; x++) {
  1818. paused_fanSpeeds[x] = fanSpeeds[x];
  1819. fanSpeeds[x] = 0;
  1820. }
  1821. else
  1822. for (uint8_t x = 0; x < FAN_COUNT; x++)
  1823. fanSpeeds[x] = paused_fanSpeeds[x];
  1824. }
  1825. }
  1826. #endif // PROBING_FANS_OFF
  1827. #if HAS_BED_PROBE
  1828. // TRIGGERED_WHEN_STOWED_TEST can easily be extended to servo probes, ... if needed.
  1829. #if ENABLED(PROBE_IS_TRIGGERED_WHEN_STOWED_TEST)
  1830. #if ENABLED(Z_MIN_PROBE_ENDSTOP)
  1831. #define _TRIGGERED_WHEN_STOWED_TEST (READ(Z_MIN_PROBE_PIN) != Z_MIN_PROBE_ENDSTOP_INVERTING)
  1832. #else
  1833. #define _TRIGGERED_WHEN_STOWED_TEST (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING)
  1834. #endif
  1835. #endif
  1836. #if QUIET_PROBING
  1837. void probing_pause(const bool p) {
  1838. #if ENABLED(PROBING_HEATERS_OFF)
  1839. thermalManager.pause(p);
  1840. #endif
  1841. #if ENABLED(PROBING_FANS_OFF)
  1842. fans_pause(p);
  1843. #endif
  1844. if (p) safe_delay(
  1845. #if DELAY_BEFORE_PROBING > 25
  1846. DELAY_BEFORE_PROBING
  1847. #else
  1848. 25
  1849. #endif
  1850. );
  1851. }
  1852. #endif // QUIET_PROBING
  1853. #if ENABLED(BLTOUCH)
  1854. void bltouch_command(int angle) {
  1855. MOVE_SERVO(Z_ENDSTOP_SERVO_NR, angle); // Give the BL-Touch the command and wait
  1856. safe_delay(BLTOUCH_DELAY);
  1857. }
  1858. bool set_bltouch_deployed(const bool deploy) {
  1859. if (deploy && TEST_BLTOUCH()) { // If BL-Touch says it's triggered
  1860. bltouch_command(BLTOUCH_RESET); // try to reset it.
  1861. bltouch_command(BLTOUCH_DEPLOY); // Also needs to deploy and stow to
  1862. bltouch_command(BLTOUCH_STOW); // clear the triggered condition.
  1863. safe_delay(1500); // Wait for internal self-test to complete.
  1864. // (Measured completion time was 0.65 seconds
  1865. // after reset, deploy, and stow sequence)
  1866. if (TEST_BLTOUCH()) { // If it still claims to be triggered...
  1867. SERIAL_ERROR_START();
  1868. SERIAL_ERRORLNPGM(MSG_STOP_BLTOUCH);
  1869. stop(); // punt!
  1870. return true;
  1871. }
  1872. }
  1873. bltouch_command(deploy ? BLTOUCH_DEPLOY : BLTOUCH_STOW);
  1874. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1875. if (DEBUGGING(LEVELING)) {
  1876. SERIAL_ECHOPAIR("set_bltouch_deployed(", deploy);
  1877. SERIAL_CHAR(')');
  1878. SERIAL_EOL();
  1879. }
  1880. #endif
  1881. return false;
  1882. }
  1883. #endif // BLTOUCH
  1884. // returns false for ok and true for failure
  1885. bool set_probe_deployed(bool deploy) {
  1886. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1887. if (DEBUGGING(LEVELING)) {
  1888. DEBUG_POS("set_probe_deployed", current_position);
  1889. SERIAL_ECHOLNPAIR("deploy: ", deploy);
  1890. }
  1891. #endif
  1892. if (endstops.z_probe_enabled == deploy) return false;
  1893. // Make room for probe
  1894. do_probe_raise(_Z_CLEARANCE_DEPLOY_PROBE);
  1895. #if ENABLED(Z_PROBE_SLED) || ENABLED(Z_PROBE_ALLEN_KEY)
  1896. #if ENABLED(Z_PROBE_SLED)
  1897. #define _AUE_ARGS true, false, false
  1898. #else
  1899. #define _AUE_ARGS
  1900. #endif
  1901. if (axis_unhomed_error(_AUE_ARGS)) {
  1902. SERIAL_ERROR_START();
  1903. SERIAL_ERRORLNPGM(MSG_STOP_UNHOMED);
  1904. stop();
  1905. return true;
  1906. }
  1907. #endif
  1908. const float oldXpos = current_position[X_AXIS],
  1909. oldYpos = current_position[Y_AXIS];
  1910. #ifdef _TRIGGERED_WHEN_STOWED_TEST
  1911. // If endstop is already false, the Z probe is deployed
  1912. if (_TRIGGERED_WHEN_STOWED_TEST == deploy) { // closed after the probe specific actions.
  1913. // Would a goto be less ugly?
  1914. //while (!_TRIGGERED_WHEN_STOWED_TEST) idle(); // would offer the opportunity
  1915. // for a triggered when stowed manual probe.
  1916. if (!deploy) endstops.enable_z_probe(false); // Switch off triggered when stowed probes early
  1917. // otherwise an Allen-Key probe can't be stowed.
  1918. #endif
  1919. #if ENABLED(SOLENOID_PROBE)
  1920. #if HAS_SOLENOID_1
  1921. WRITE(SOL1_PIN, deploy);
  1922. #endif
  1923. #elif ENABLED(Z_PROBE_SLED)
  1924. dock_sled(!deploy);
  1925. #elif HAS_Z_SERVO_ENDSTOP && DISABLED(BLTOUCH)
  1926. MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[deploy ? 0 : 1]);
  1927. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  1928. deploy ? run_deploy_moves_script() : run_stow_moves_script();
  1929. #endif
  1930. #ifdef _TRIGGERED_WHEN_STOWED_TEST
  1931. } // _TRIGGERED_WHEN_STOWED_TEST == deploy
  1932. if (_TRIGGERED_WHEN_STOWED_TEST == deploy) { // State hasn't changed?
  1933. if (IsRunning()) {
  1934. SERIAL_ERROR_START();
  1935. SERIAL_ERRORLNPGM("Z-Probe failed");
  1936. LCD_ALERTMESSAGEPGM("Err: ZPROBE");
  1937. }
  1938. stop();
  1939. return true;
  1940. } // _TRIGGERED_WHEN_STOWED_TEST == deploy
  1941. #endif
  1942. do_blocking_move_to(oldXpos, oldYpos, current_position[Z_AXIS]); // return to position before deploy
  1943. endstops.enable_z_probe(deploy);
  1944. return false;
  1945. }
  1946. /**
  1947. * @brief Used by run_z_probe to do a single Z probe move.
  1948. *
  1949. * @param z Z destination
  1950. * @param fr_mm_s Feedrate in mm/s
  1951. * @return true to indicate an error
  1952. */
  1953. static bool do_probe_move(const float z, const float fr_mm_m) {
  1954. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1955. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> do_probe_move", current_position);
  1956. #endif
  1957. // Deploy BLTouch at the start of any probe
  1958. #if ENABLED(BLTOUCH)
  1959. if (set_bltouch_deployed(true)) return true;
  1960. #endif
  1961. #if QUIET_PROBING
  1962. probing_pause(true);
  1963. #endif
  1964. // Move down until probe triggered
  1965. do_blocking_move_to_z(z, MMM_TO_MMS(fr_mm_m));
  1966. // Check to see if the probe was triggered
  1967. const bool probe_triggered = TEST(Endstops::endstop_hit_bits,
  1968. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  1969. Z_MIN
  1970. #else
  1971. Z_MIN_PROBE
  1972. #endif
  1973. );
  1974. #if QUIET_PROBING
  1975. probing_pause(false);
  1976. #endif
  1977. // Retract BLTouch immediately after a probe if it was triggered
  1978. #if ENABLED(BLTOUCH)
  1979. if (probe_triggered && set_bltouch_deployed(false)) return true;
  1980. #endif
  1981. // Clear endstop flags
  1982. endstops.hit_on_purpose();
  1983. // Get Z where the steppers were interrupted
  1984. set_current_from_steppers_for_axis(Z_AXIS);
  1985. // Tell the planner where we actually are
  1986. SYNC_PLAN_POSITION_KINEMATIC();
  1987. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1988. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< do_probe_move", current_position);
  1989. #endif
  1990. return !probe_triggered;
  1991. }
  1992. /**
  1993. * @details Used by probe_pt to do a single Z probe.
  1994. * Leaves current_position[Z_AXIS] at the height where the probe triggered.
  1995. *
  1996. * @param short_move Flag for a shorter probe move towards the bed
  1997. * @return The raw Z position where the probe was triggered
  1998. */
  1999. static float run_z_probe(const bool short_move=true) {
  2000. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2001. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> run_z_probe", current_position);
  2002. #endif
  2003. // Prevent stepper_inactive_time from running out and EXTRUDER_RUNOUT_PREVENT from extruding
  2004. refresh_cmd_timeout();
  2005. #if ENABLED(PROBE_DOUBLE_TOUCH)
  2006. // Do a first probe at the fast speed
  2007. if (do_probe_move(-10, Z_PROBE_SPEED_FAST)) return NAN;
  2008. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2009. float first_probe_z = current_position[Z_AXIS];
  2010. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("1st Probe Z:", first_probe_z);
  2011. #endif
  2012. // move up to make clearance for the probe
  2013. do_blocking_move_to_z(current_position[Z_AXIS] + Z_CLEARANCE_BETWEEN_PROBES, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  2014. #else
  2015. // If the nozzle is above the travel height then
  2016. // move down quickly before doing the slow probe
  2017. float z = Z_CLEARANCE_DEPLOY_PROBE;
  2018. if (zprobe_zoffset < 0) z -= zprobe_zoffset;
  2019. if (z < current_position[Z_AXIS]) {
  2020. // If we don't make it to the z position (i.e. the probe triggered), move up to make clearance for the probe
  2021. if (!do_probe_move(z, Z_PROBE_SPEED_FAST))
  2022. do_blocking_move_to_z(current_position[Z_AXIS] + Z_CLEARANCE_BETWEEN_PROBES, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  2023. }
  2024. #endif
  2025. // move down slowly to find bed
  2026. if (do_probe_move(-10 + (short_move ? 0 : -(Z_MAX_LENGTH)), Z_PROBE_SPEED_SLOW)) return NAN;
  2027. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2028. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< run_z_probe", current_position);
  2029. #endif
  2030. // Debug: compare probe heights
  2031. #if ENABLED(PROBE_DOUBLE_TOUCH) && ENABLED(DEBUG_LEVELING_FEATURE)
  2032. if (DEBUGGING(LEVELING)) {
  2033. SERIAL_ECHOPAIR("2nd Probe Z:", current_position[Z_AXIS]);
  2034. SERIAL_ECHOLNPAIR(" Discrepancy:", first_probe_z - current_position[Z_AXIS]);
  2035. }
  2036. #endif
  2037. return current_position[Z_AXIS] + zprobe_zoffset
  2038. #if ENABLED(DELTA)
  2039. + home_offset[Z_AXIS] // Account for delta height adjustment
  2040. #endif
  2041. ;
  2042. }
  2043. /**
  2044. * - Move to the given XY
  2045. * - Deploy the probe, if not already deployed
  2046. * - Probe the bed, get the Z position
  2047. * - Depending on the 'stow' flag
  2048. * - Stow the probe, or
  2049. * - Raise to the BETWEEN height
  2050. * - Return the probed Z position
  2051. */
  2052. float probe_pt(const float &rx, const float &ry, const bool stow, const uint8_t verbose_level, const bool printable=true) {
  2053. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2054. if (DEBUGGING(LEVELING)) {
  2055. SERIAL_ECHOPAIR(">>> probe_pt(", LOGICAL_X_POSITION(rx));
  2056. SERIAL_ECHOPAIR(", ", LOGICAL_Y_POSITION(ry));
  2057. SERIAL_ECHOPAIR(", ", stow ? "" : "no ");
  2058. SERIAL_ECHOLNPGM("stow)");
  2059. DEBUG_POS("", current_position);
  2060. }
  2061. #endif
  2062. const float nx = rx - (X_PROBE_OFFSET_FROM_EXTRUDER), ny = ry - (Y_PROBE_OFFSET_FROM_EXTRUDER);
  2063. if (printable
  2064. ? !position_is_reachable(nx, ny)
  2065. : !position_is_reachable_by_probe(rx, ry)
  2066. ) return NAN;
  2067. const float old_feedrate_mm_s = feedrate_mm_s;
  2068. #if ENABLED(DELTA)
  2069. if (current_position[Z_AXIS] > delta_clip_start_height)
  2070. do_blocking_move_to_z(delta_clip_start_height);
  2071. #endif
  2072. #if HAS_SOFTWARE_ENDSTOPS
  2073. // Store the status of the soft endstops and disable if we're probing a non-printable location
  2074. static bool enable_soft_endstops = soft_endstops_enabled;
  2075. if (!printable) soft_endstops_enabled = false;
  2076. #endif
  2077. feedrate_mm_s = XY_PROBE_FEEDRATE_MM_S;
  2078. // Move the probe to the given XY
  2079. do_blocking_move_to_xy(nx, ny);
  2080. float measured_z = NAN;
  2081. if (!DEPLOY_PROBE()) {
  2082. measured_z = run_z_probe(printable);
  2083. if (!stow)
  2084. do_blocking_move_to_z(current_position[Z_AXIS] + Z_CLEARANCE_BETWEEN_PROBES, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  2085. else
  2086. if (STOW_PROBE()) measured_z = NAN;
  2087. }
  2088. #if HAS_SOFTWARE_ENDSTOPS
  2089. // Restore the soft endstop status
  2090. soft_endstops_enabled = enable_soft_endstops;
  2091. #endif
  2092. if (verbose_level > 2) {
  2093. SERIAL_PROTOCOLPGM("Bed X: ");
  2094. SERIAL_PROTOCOL_F(LOGICAL_X_POSITION(rx), 3);
  2095. SERIAL_PROTOCOLPGM(" Y: ");
  2096. SERIAL_PROTOCOL_F(LOGICAL_Y_POSITION(ry), 3);
  2097. SERIAL_PROTOCOLPGM(" Z: ");
  2098. SERIAL_PROTOCOL_F(measured_z, 3);
  2099. SERIAL_EOL();
  2100. }
  2101. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2102. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< probe_pt");
  2103. #endif
  2104. feedrate_mm_s = old_feedrate_mm_s;
  2105. if (isnan(measured_z)) {
  2106. LCD_MESSAGEPGM(MSG_ERR_PROBING_FAILED);
  2107. SERIAL_ERROR_START();
  2108. SERIAL_ERRORLNPGM(MSG_ERR_PROBING_FAILED);
  2109. }
  2110. return measured_z;
  2111. }
  2112. #endif // HAS_BED_PROBE
  2113. #if HAS_LEVELING
  2114. bool leveling_is_valid() {
  2115. return
  2116. #if ENABLED(MESH_BED_LEVELING)
  2117. mbl.has_mesh
  2118. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2119. !!bilinear_grid_spacing[X_AXIS]
  2120. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2121. true
  2122. #else // 3POINT, LINEAR
  2123. true
  2124. #endif
  2125. ;
  2126. }
  2127. /**
  2128. * Turn bed leveling on or off, fixing the current
  2129. * position as-needed.
  2130. *
  2131. * Disable: Current position = physical position
  2132. * Enable: Current position = "unleveled" physical position
  2133. */
  2134. void set_bed_leveling_enabled(const bool enable/*=true*/) {
  2135. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2136. const bool can_change = (!enable || leveling_is_valid());
  2137. #else
  2138. constexpr bool can_change = true;
  2139. #endif
  2140. if (can_change && enable != planner.leveling_active) {
  2141. #if ENABLED(MESH_BED_LEVELING)
  2142. if (!enable)
  2143. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS]);
  2144. const bool enabling = enable && leveling_is_valid();
  2145. planner.leveling_active = enabling;
  2146. if (enabling) planner.unapply_leveling(current_position);
  2147. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2148. #if PLANNER_LEVELING
  2149. if (planner.leveling_active) { // leveling from on to off
  2150. // change unleveled current_position to physical current_position without moving steppers.
  2151. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS]);
  2152. planner.leveling_active = false; // disable only AFTER calling apply_leveling
  2153. }
  2154. else { // leveling from off to on
  2155. planner.leveling_active = true; // enable BEFORE calling unapply_leveling, otherwise ignored
  2156. // change physical current_position to unleveled current_position without moving steppers.
  2157. planner.unapply_leveling(current_position);
  2158. }
  2159. #else
  2160. planner.leveling_active = enable; // just flip the bit, current_position will be wrong until next move.
  2161. #endif
  2162. #else // ABL
  2163. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2164. // Force bilinear_z_offset to re-calculate next time
  2165. const float reset[XYZ] = { -9999.999, -9999.999, 0 };
  2166. (void)bilinear_z_offset(reset);
  2167. #endif
  2168. // Enable or disable leveling compensation in the planner
  2169. planner.leveling_active = enable;
  2170. if (!enable)
  2171. // When disabling just get the current position from the steppers.
  2172. // This will yield the smallest error when first converted back to steps.
  2173. set_current_from_steppers_for_axis(
  2174. #if ABL_PLANAR
  2175. ALL_AXES
  2176. #else
  2177. Z_AXIS
  2178. #endif
  2179. );
  2180. else
  2181. // When enabling, remove compensation from the current position,
  2182. // so compensation will give the right stepper counts.
  2183. planner.unapply_leveling(current_position);
  2184. #endif // ABL
  2185. }
  2186. }
  2187. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  2188. void set_z_fade_height(const float zfh) {
  2189. const bool level_active = planner.leveling_active;
  2190. #if ENABLED(AUTO_BED_LEVELING_UBL)
  2191. if (level_active) set_bed_leveling_enabled(false); // turn off before changing fade height for proper apply/unapply leveling to maintain current_position
  2192. #endif
  2193. planner.set_z_fade_height(zfh);
  2194. if (level_active) {
  2195. #if ENABLED(AUTO_BED_LEVELING_UBL)
  2196. set_bed_leveling_enabled(true); // turn back on after changing fade height
  2197. #else
  2198. set_current_from_steppers_for_axis(
  2199. #if ABL_PLANAR
  2200. ALL_AXES
  2201. #else
  2202. Z_AXIS
  2203. #endif
  2204. );
  2205. #endif
  2206. }
  2207. }
  2208. #endif // LEVELING_FADE_HEIGHT
  2209. /**
  2210. * Reset calibration results to zero.
  2211. */
  2212. void reset_bed_level() {
  2213. set_bed_leveling_enabled(false);
  2214. #if ENABLED(MESH_BED_LEVELING)
  2215. if (leveling_is_valid()) {
  2216. mbl.reset();
  2217. mbl.has_mesh = false;
  2218. }
  2219. #else
  2220. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2221. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("reset_bed_level");
  2222. #endif
  2223. #if ABL_PLANAR
  2224. planner.bed_level_matrix.set_to_identity();
  2225. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2226. bilinear_start[X_AXIS] = bilinear_start[Y_AXIS] =
  2227. bilinear_grid_spacing[X_AXIS] = bilinear_grid_spacing[Y_AXIS] = 0;
  2228. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
  2229. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
  2230. z_values[x][y] = NAN;
  2231. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2232. ubl.reset();
  2233. #endif
  2234. #endif
  2235. }
  2236. #endif // HAS_LEVELING
  2237. #if ENABLED(AUTO_BED_LEVELING_BILINEAR) || ENABLED(MESH_BED_LEVELING)
  2238. /**
  2239. * Enable to produce output in JSON format suitable
  2240. * for SCAD or JavaScript mesh visualizers.
  2241. *
  2242. * Visualize meshes in OpenSCAD using the included script.
  2243. *
  2244. * buildroot/shared/scripts/MarlinMesh.scad
  2245. */
  2246. //#define SCAD_MESH_OUTPUT
  2247. /**
  2248. * Print calibration results for plotting or manual frame adjustment.
  2249. */
  2250. 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)) {
  2251. #ifndef SCAD_MESH_OUTPUT
  2252. for (uint8_t x = 0; x < sx; x++) {
  2253. for (uint8_t i = 0; i < precision + 2 + (x < 10 ? 1 : 0); i++)
  2254. SERIAL_PROTOCOLCHAR(' ');
  2255. SERIAL_PROTOCOL((int)x);
  2256. }
  2257. SERIAL_EOL();
  2258. #endif
  2259. #ifdef SCAD_MESH_OUTPUT
  2260. SERIAL_PROTOCOLLNPGM("measured_z = ["); // open 2D array
  2261. #endif
  2262. for (uint8_t y = 0; y < sy; y++) {
  2263. #ifdef SCAD_MESH_OUTPUT
  2264. SERIAL_PROTOCOLPGM(" ["); // open sub-array
  2265. #else
  2266. if (y < 10) SERIAL_PROTOCOLCHAR(' ');
  2267. SERIAL_PROTOCOL((int)y);
  2268. #endif
  2269. for (uint8_t x = 0; x < sx; x++) {
  2270. SERIAL_PROTOCOLCHAR(' ');
  2271. const float offset = fn(x, y);
  2272. if (!isnan(offset)) {
  2273. if (offset >= 0) SERIAL_PROTOCOLCHAR('+');
  2274. SERIAL_PROTOCOL_F(offset, precision);
  2275. }
  2276. else {
  2277. #ifdef SCAD_MESH_OUTPUT
  2278. for (uint8_t i = 3; i < precision + 3; i++)
  2279. SERIAL_PROTOCOLCHAR(' ');
  2280. SERIAL_PROTOCOLPGM("NAN");
  2281. #else
  2282. for (uint8_t i = 0; i < precision + 3; i++)
  2283. SERIAL_PROTOCOLCHAR(i ? '=' : ' ');
  2284. #endif
  2285. }
  2286. #ifdef SCAD_MESH_OUTPUT
  2287. if (x < sx - 1) SERIAL_PROTOCOLCHAR(',');
  2288. #endif
  2289. }
  2290. #ifdef SCAD_MESH_OUTPUT
  2291. SERIAL_PROTOCOLCHAR(' ');
  2292. SERIAL_PROTOCOLCHAR(']'); // close sub-array
  2293. if (y < sy - 1) SERIAL_PROTOCOLCHAR(',');
  2294. #endif
  2295. SERIAL_EOL();
  2296. }
  2297. #ifdef SCAD_MESH_OUTPUT
  2298. SERIAL_PROTOCOLPGM("];"); // close 2D array
  2299. #endif
  2300. SERIAL_EOL();
  2301. }
  2302. #endif
  2303. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2304. /**
  2305. * Extrapolate a single point from its neighbors
  2306. */
  2307. static void extrapolate_one_point(const uint8_t x, const uint8_t y, const int8_t xdir, const int8_t ydir) {
  2308. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2309. if (DEBUGGING(LEVELING)) {
  2310. SERIAL_ECHOPGM("Extrapolate [");
  2311. if (x < 10) SERIAL_CHAR(' ');
  2312. SERIAL_ECHO((int)x);
  2313. SERIAL_CHAR(xdir ? (xdir > 0 ? '+' : '-') : ' ');
  2314. SERIAL_CHAR(' ');
  2315. if (y < 10) SERIAL_CHAR(' ');
  2316. SERIAL_ECHO((int)y);
  2317. SERIAL_CHAR(ydir ? (ydir > 0 ? '+' : '-') : ' ');
  2318. SERIAL_CHAR(']');
  2319. }
  2320. #endif
  2321. if (!isnan(z_values[x][y])) {
  2322. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2323. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM(" (done)");
  2324. #endif
  2325. return; // Don't overwrite good values.
  2326. }
  2327. SERIAL_EOL();
  2328. // Get X neighbors, Y neighbors, and XY neighbors
  2329. const uint8_t x1 = x + xdir, y1 = y + ydir, x2 = x1 + xdir, y2 = y1 + ydir;
  2330. float a1 = z_values[x1][y ], a2 = z_values[x2][y ],
  2331. b1 = z_values[x ][y1], b2 = z_values[x ][y2],
  2332. c1 = z_values[x1][y1], c2 = z_values[x2][y2];
  2333. // Treat far unprobed points as zero, near as equal to far
  2334. if (isnan(a2)) a2 = 0.0; if (isnan(a1)) a1 = a2;
  2335. if (isnan(b2)) b2 = 0.0; if (isnan(b1)) b1 = b2;
  2336. if (isnan(c2)) c2 = 0.0; if (isnan(c1)) c1 = c2;
  2337. const float a = 2 * a1 - a2, b = 2 * b1 - b2, c = 2 * c1 - c2;
  2338. // Take the average instead of the median
  2339. z_values[x][y] = (a + b + c) / 3.0;
  2340. // Median is robust (ignores outliers).
  2341. // z_values[x][y] = (a < b) ? ((b < c) ? b : (c < a) ? a : c)
  2342. // : ((c < b) ? b : (a < c) ? a : c);
  2343. }
  2344. //Enable this if your SCARA uses 180° of total area
  2345. //#define EXTRAPOLATE_FROM_EDGE
  2346. #if ENABLED(EXTRAPOLATE_FROM_EDGE)
  2347. #if GRID_MAX_POINTS_X < GRID_MAX_POINTS_Y
  2348. #define HALF_IN_X
  2349. #elif GRID_MAX_POINTS_Y < GRID_MAX_POINTS_X
  2350. #define HALF_IN_Y
  2351. #endif
  2352. #endif
  2353. /**
  2354. * Fill in the unprobed points (corners of circular print surface)
  2355. * using linear extrapolation, away from the center.
  2356. */
  2357. static void extrapolate_unprobed_bed_level() {
  2358. #ifdef HALF_IN_X
  2359. constexpr uint8_t ctrx2 = 0, xlen = GRID_MAX_POINTS_X - 1;
  2360. #else
  2361. constexpr uint8_t ctrx1 = (GRID_MAX_POINTS_X - 1) / 2, // left-of-center
  2362. ctrx2 = (GRID_MAX_POINTS_X) / 2, // right-of-center
  2363. xlen = ctrx1;
  2364. #endif
  2365. #ifdef HALF_IN_Y
  2366. constexpr uint8_t ctry2 = 0, ylen = GRID_MAX_POINTS_Y - 1;
  2367. #else
  2368. constexpr uint8_t ctry1 = (GRID_MAX_POINTS_Y - 1) / 2, // top-of-center
  2369. ctry2 = (GRID_MAX_POINTS_Y) / 2, // bottom-of-center
  2370. ylen = ctry1;
  2371. #endif
  2372. for (uint8_t xo = 0; xo <= xlen; xo++)
  2373. for (uint8_t yo = 0; yo <= ylen; yo++) {
  2374. uint8_t x2 = ctrx2 + xo, y2 = ctry2 + yo;
  2375. #ifndef HALF_IN_X
  2376. const uint8_t x1 = ctrx1 - xo;
  2377. #endif
  2378. #ifndef HALF_IN_Y
  2379. const uint8_t y1 = ctry1 - yo;
  2380. #ifndef HALF_IN_X
  2381. extrapolate_one_point(x1, y1, +1, +1); // left-below + +
  2382. #endif
  2383. extrapolate_one_point(x2, y1, -1, +1); // right-below - +
  2384. #endif
  2385. #ifndef HALF_IN_X
  2386. extrapolate_one_point(x1, y2, +1, -1); // left-above + -
  2387. #endif
  2388. extrapolate_one_point(x2, y2, -1, -1); // right-above - -
  2389. }
  2390. }
  2391. static void print_bilinear_leveling_grid() {
  2392. SERIAL_ECHOLNPGM("Bilinear Leveling Grid:");
  2393. print_2d_array(GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y, 3,
  2394. [](const uint8_t ix, const uint8_t iy) { return z_values[ix][iy]; }
  2395. );
  2396. }
  2397. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  2398. #define ABL_GRID_POINTS_VIRT_X (GRID_MAX_POINTS_X - 1) * (BILINEAR_SUBDIVISIONS) + 1
  2399. #define ABL_GRID_POINTS_VIRT_Y (GRID_MAX_POINTS_Y - 1) * (BILINEAR_SUBDIVISIONS) + 1
  2400. #define ABL_TEMP_POINTS_X (GRID_MAX_POINTS_X + 2)
  2401. #define ABL_TEMP_POINTS_Y (GRID_MAX_POINTS_Y + 2)
  2402. float z_values_virt[ABL_GRID_POINTS_VIRT_X][ABL_GRID_POINTS_VIRT_Y];
  2403. int bilinear_grid_spacing_virt[2] = { 0 };
  2404. float bilinear_grid_factor_virt[2] = { 0 };
  2405. static void print_bilinear_leveling_grid_virt() {
  2406. SERIAL_ECHOLNPGM("Subdivided with CATMULL ROM Leveling Grid:");
  2407. print_2d_array(ABL_GRID_POINTS_VIRT_X, ABL_GRID_POINTS_VIRT_Y, 5,
  2408. [](const uint8_t ix, const uint8_t iy) { return z_values_virt[ix][iy]; }
  2409. );
  2410. }
  2411. #define LINEAR_EXTRAPOLATION(E, I) ((E) * 2 - (I))
  2412. float bed_level_virt_coord(const uint8_t x, const uint8_t y) {
  2413. uint8_t ep = 0, ip = 1;
  2414. if (!x || x == ABL_TEMP_POINTS_X - 1) {
  2415. if (x) {
  2416. ep = GRID_MAX_POINTS_X - 1;
  2417. ip = GRID_MAX_POINTS_X - 2;
  2418. }
  2419. if (WITHIN(y, 1, ABL_TEMP_POINTS_Y - 2))
  2420. return LINEAR_EXTRAPOLATION(
  2421. z_values[ep][y - 1],
  2422. z_values[ip][y - 1]
  2423. );
  2424. else
  2425. return LINEAR_EXTRAPOLATION(
  2426. bed_level_virt_coord(ep + 1, y),
  2427. bed_level_virt_coord(ip + 1, y)
  2428. );
  2429. }
  2430. if (!y || y == ABL_TEMP_POINTS_Y - 1) {
  2431. if (y) {
  2432. ep = GRID_MAX_POINTS_Y - 1;
  2433. ip = GRID_MAX_POINTS_Y - 2;
  2434. }
  2435. if (WITHIN(x, 1, ABL_TEMP_POINTS_X - 2))
  2436. return LINEAR_EXTRAPOLATION(
  2437. z_values[x - 1][ep],
  2438. z_values[x - 1][ip]
  2439. );
  2440. else
  2441. return LINEAR_EXTRAPOLATION(
  2442. bed_level_virt_coord(x, ep + 1),
  2443. bed_level_virt_coord(x, ip + 1)
  2444. );
  2445. }
  2446. return z_values[x - 1][y - 1];
  2447. }
  2448. static float bed_level_virt_cmr(const float p[4], const uint8_t i, const float t) {
  2449. return (
  2450. p[i-1] * -t * sq(1 - t)
  2451. + p[i] * (2 - 5 * sq(t) + 3 * t * sq(t))
  2452. + p[i+1] * t * (1 + 4 * t - 3 * sq(t))
  2453. - p[i+2] * sq(t) * (1 - t)
  2454. ) * 0.5;
  2455. }
  2456. static float bed_level_virt_2cmr(const uint8_t x, const uint8_t y, const float &tx, const float &ty) {
  2457. float row[4], column[4];
  2458. for (uint8_t i = 0; i < 4; i++) {
  2459. for (uint8_t j = 0; j < 4; j++) {
  2460. column[j] = bed_level_virt_coord(i + x - 1, j + y - 1);
  2461. }
  2462. row[i] = bed_level_virt_cmr(column, 1, ty);
  2463. }
  2464. return bed_level_virt_cmr(row, 1, tx);
  2465. }
  2466. void bed_level_virt_interpolate() {
  2467. bilinear_grid_spacing_virt[X_AXIS] = bilinear_grid_spacing[X_AXIS] / (BILINEAR_SUBDIVISIONS);
  2468. bilinear_grid_spacing_virt[Y_AXIS] = bilinear_grid_spacing[Y_AXIS] / (BILINEAR_SUBDIVISIONS);
  2469. bilinear_grid_factor_virt[X_AXIS] = RECIPROCAL(bilinear_grid_spacing_virt[X_AXIS]);
  2470. bilinear_grid_factor_virt[Y_AXIS] = RECIPROCAL(bilinear_grid_spacing_virt[Y_AXIS]);
  2471. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
  2472. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
  2473. for (uint8_t ty = 0; ty < BILINEAR_SUBDIVISIONS; ty++)
  2474. for (uint8_t tx = 0; tx < BILINEAR_SUBDIVISIONS; tx++) {
  2475. if ((ty && y == GRID_MAX_POINTS_Y - 1) || (tx && x == GRID_MAX_POINTS_X - 1))
  2476. continue;
  2477. z_values_virt[x * (BILINEAR_SUBDIVISIONS) + tx][y * (BILINEAR_SUBDIVISIONS) + ty] =
  2478. bed_level_virt_2cmr(
  2479. x + 1,
  2480. y + 1,
  2481. (float)tx / (BILINEAR_SUBDIVISIONS),
  2482. (float)ty / (BILINEAR_SUBDIVISIONS)
  2483. );
  2484. }
  2485. }
  2486. #endif // ABL_BILINEAR_SUBDIVISION
  2487. // Refresh after other values have been updated
  2488. void refresh_bed_level() {
  2489. bilinear_grid_factor[X_AXIS] = RECIPROCAL(bilinear_grid_spacing[X_AXIS]);
  2490. bilinear_grid_factor[Y_AXIS] = RECIPROCAL(bilinear_grid_spacing[Y_AXIS]);
  2491. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  2492. bed_level_virt_interpolate();
  2493. #endif
  2494. }
  2495. #endif // AUTO_BED_LEVELING_BILINEAR
  2496. /**
  2497. * Home an individual linear axis
  2498. */
  2499. static void do_homing_move(const AxisEnum axis, const float distance, const float fr_mm_s=0.0) {
  2500. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2501. if (DEBUGGING(LEVELING)) {
  2502. SERIAL_ECHOPAIR(">>> do_homing_move(", axis_codes[axis]);
  2503. SERIAL_ECHOPAIR(", ", distance);
  2504. SERIAL_ECHOPAIR(", ", fr_mm_s);
  2505. SERIAL_CHAR(')');
  2506. SERIAL_EOL();
  2507. }
  2508. #endif
  2509. #if HOMING_Z_WITH_PROBE && ENABLED(BLTOUCH)
  2510. const bool deploy_bltouch = (axis == Z_AXIS && distance < 0);
  2511. if (deploy_bltouch) set_bltouch_deployed(true);
  2512. #endif
  2513. #if QUIET_PROBING
  2514. if (axis == Z_AXIS) probing_pause(true);
  2515. #endif
  2516. // Tell the planner we're at Z=0
  2517. current_position[axis] = 0;
  2518. #if IS_SCARA
  2519. SYNC_PLAN_POSITION_KINEMATIC();
  2520. current_position[axis] = distance;
  2521. inverse_kinematics(current_position);
  2522. 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);
  2523. #else
  2524. sync_plan_position();
  2525. current_position[axis] = distance;
  2526. 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);
  2527. #endif
  2528. stepper.synchronize();
  2529. #if QUIET_PROBING
  2530. if (axis == Z_AXIS) probing_pause(false);
  2531. #endif
  2532. #if HOMING_Z_WITH_PROBE && ENABLED(BLTOUCH)
  2533. if (deploy_bltouch) set_bltouch_deployed(false);
  2534. #endif
  2535. endstops.hit_on_purpose();
  2536. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2537. if (DEBUGGING(LEVELING)) {
  2538. SERIAL_ECHOPAIR("<<< do_homing_move(", axis_codes[axis]);
  2539. SERIAL_CHAR(')');
  2540. SERIAL_EOL();
  2541. }
  2542. #endif
  2543. }
  2544. /**
  2545. * TMC2130 specific sensorless homing using stallGuard2.
  2546. * stallGuard2 only works when in spreadCycle mode.
  2547. * spreadCycle and stealthChop are mutually exclusive.
  2548. */
  2549. #if ENABLED(SENSORLESS_HOMING)
  2550. void tmc2130_sensorless_homing(TMC2130Stepper &st, bool enable=true) {
  2551. #if ENABLED(STEALTHCHOP)
  2552. if (enable) {
  2553. st.coolstep_min_speed(1024UL * 1024UL - 1UL);
  2554. st.stealthChop(0);
  2555. }
  2556. else {
  2557. st.coolstep_min_speed(0);
  2558. st.stealthChop(1);
  2559. }
  2560. #endif
  2561. st.diag1_stall(enable ? 1 : 0);
  2562. }
  2563. #endif
  2564. /**
  2565. * Home an individual "raw axis" to its endstop.
  2566. * This applies to XYZ on Cartesian and Core robots, and
  2567. * to the individual ABC steppers on DELTA and SCARA.
  2568. *
  2569. * At the end of the procedure the axis is marked as
  2570. * homed and the current position of that axis is updated.
  2571. * Kinematic robots should wait till all axes are homed
  2572. * before updating the current position.
  2573. */
  2574. #define HOMEAXIS(LETTER) homeaxis(LETTER##_AXIS)
  2575. static void homeaxis(const AxisEnum axis) {
  2576. #if IS_SCARA
  2577. // Only Z homing (with probe) is permitted
  2578. if (axis != Z_AXIS) { BUZZ(100, 880); return; }
  2579. #else
  2580. #define CAN_HOME(A) \
  2581. (axis == A##_AXIS && ((A##_MIN_PIN > -1 && A##_HOME_DIR < 0) || (A##_MAX_PIN > -1 && A##_HOME_DIR > 0)))
  2582. if (!CAN_HOME(X) && !CAN_HOME(Y) && !CAN_HOME(Z)) return;
  2583. #endif
  2584. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2585. if (DEBUGGING(LEVELING)) {
  2586. SERIAL_ECHOPAIR(">>> homeaxis(", axis_codes[axis]);
  2587. SERIAL_CHAR(')');
  2588. SERIAL_EOL();
  2589. }
  2590. #endif
  2591. const int axis_home_dir =
  2592. #if ENABLED(DUAL_X_CARRIAGE)
  2593. (axis == X_AXIS) ? x_home_dir(active_extruder) :
  2594. #endif
  2595. home_dir(axis);
  2596. // Homing Z towards the bed? Deploy the Z probe or endstop.
  2597. #if HOMING_Z_WITH_PROBE
  2598. if (axis == Z_AXIS && DEPLOY_PROBE()) return;
  2599. #endif
  2600. // Set flags for X, Y, Z motor locking
  2601. #if ENABLED(X_DUAL_ENDSTOPS)
  2602. if (axis == X_AXIS) stepper.set_homing_flag_x(true);
  2603. #endif
  2604. #if ENABLED(Y_DUAL_ENDSTOPS)
  2605. if (axis == Y_AXIS) stepper.set_homing_flag_y(true);
  2606. #endif
  2607. #if ENABLED(Z_DUAL_ENDSTOPS)
  2608. if (axis == Z_AXIS) stepper.set_homing_flag_z(true);
  2609. #endif
  2610. // Disable stealthChop if used. Enable diag1 pin on driver.
  2611. #if ENABLED(SENSORLESS_HOMING)
  2612. #if ENABLED(X_IS_TMC2130)
  2613. if (axis == X_AXIS) tmc2130_sensorless_homing(stepperX);
  2614. #endif
  2615. #if ENABLED(Y_IS_TMC2130)
  2616. if (axis == Y_AXIS) tmc2130_sensorless_homing(stepperY);
  2617. #endif
  2618. #endif
  2619. // Fast move towards endstop until triggered
  2620. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2621. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Home 1 Fast:");
  2622. #endif
  2623. do_homing_move(axis, 1.5 * max_length(axis) * axis_home_dir);
  2624. // When homing Z with probe respect probe clearance
  2625. const float bump = axis_home_dir * (
  2626. #if HOMING_Z_WITH_PROBE
  2627. (axis == Z_AXIS) ? max(Z_CLEARANCE_BETWEEN_PROBES, home_bump_mm(Z_AXIS)) :
  2628. #endif
  2629. home_bump_mm(axis)
  2630. );
  2631. // If a second homing move is configured...
  2632. if (bump) {
  2633. // Move away from the endstop by the axis HOME_BUMP_MM
  2634. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2635. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Move Away:");
  2636. #endif
  2637. do_homing_move(axis, -bump);
  2638. // Slow move towards endstop until triggered
  2639. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2640. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Home 2 Slow:");
  2641. #endif
  2642. do_homing_move(axis, 2 * bump, get_homing_bump_feedrate(axis));
  2643. }
  2644. /**
  2645. * Home axes that have dual endstops... differently
  2646. */
  2647. #if ENABLED(X_DUAL_ENDSTOPS) || ENABLED(Y_DUAL_ENDSTOPS) || ENABLED(Z_DUAL_ENDSTOPS)
  2648. const bool pos_dir = axis_home_dir > 0;
  2649. #if ENABLED(X_DUAL_ENDSTOPS)
  2650. if (axis == X_AXIS) {
  2651. const bool lock_x1 = pos_dir ? (x_endstop_adj > 0) : (x_endstop_adj < 0);
  2652. const float adj = FABS(x_endstop_adj);
  2653. if (lock_x1) stepper.set_x_lock(true); else stepper.set_x2_lock(true);
  2654. do_homing_move(axis, pos_dir ? -adj : adj);
  2655. if (lock_x1) stepper.set_x_lock(false); else stepper.set_x2_lock(false);
  2656. stepper.set_homing_flag_x(false);
  2657. }
  2658. #endif
  2659. #if ENABLED(Y_DUAL_ENDSTOPS)
  2660. if (axis == Y_AXIS) {
  2661. const bool lock_y1 = pos_dir ? (y_endstop_adj > 0) : (y_endstop_adj < 0);
  2662. const float adj = FABS(y_endstop_adj);
  2663. if (lock_y1) stepper.set_y_lock(true); else stepper.set_y2_lock(true);
  2664. do_homing_move(axis, pos_dir ? -adj : adj);
  2665. if (lock_y1) stepper.set_y_lock(false); else stepper.set_y2_lock(false);
  2666. stepper.set_homing_flag_y(false);
  2667. }
  2668. #endif
  2669. #if ENABLED(Z_DUAL_ENDSTOPS)
  2670. if (axis == Z_AXIS) {
  2671. const bool lock_z1 = pos_dir ? (z_endstop_adj > 0) : (z_endstop_adj < 0);
  2672. const float adj = FABS(z_endstop_adj);
  2673. if (lock_z1) stepper.set_z_lock(true); else stepper.set_z2_lock(true);
  2674. do_homing_move(axis, pos_dir ? -adj : adj);
  2675. if (lock_z1) stepper.set_z_lock(false); else stepper.set_z2_lock(false);
  2676. stepper.set_homing_flag_z(false);
  2677. }
  2678. #endif
  2679. #endif
  2680. #if IS_SCARA
  2681. set_axis_is_at_home(axis);
  2682. SYNC_PLAN_POSITION_KINEMATIC();
  2683. #elif ENABLED(DELTA)
  2684. // Delta has already moved all three towers up in G28
  2685. // so here it re-homes each tower in turn.
  2686. // Delta homing treats the axes as normal linear axes.
  2687. // retrace by the amount specified in delta_endstop_adj + additional 0.1mm in order to have minimum steps
  2688. if (delta_endstop_adj[axis] * Z_HOME_DIR <= 0) {
  2689. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2690. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("delta_endstop_adj:");
  2691. #endif
  2692. do_homing_move(axis, delta_endstop_adj[axis] - 0.1 * Z_HOME_DIR);
  2693. }
  2694. #else
  2695. // For cartesian/core machines,
  2696. // set the axis to its home position
  2697. set_axis_is_at_home(axis);
  2698. sync_plan_position();
  2699. destination[axis] = current_position[axis];
  2700. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2701. if (DEBUGGING(LEVELING)) DEBUG_POS("> AFTER set_axis_is_at_home", current_position);
  2702. #endif
  2703. #endif
  2704. // Re-enable stealthChop if used. Disable diag1 pin on driver.
  2705. #if ENABLED(SENSORLESS_HOMING)
  2706. #if ENABLED(X_IS_TMC2130)
  2707. if (axis == X_AXIS) tmc2130_sensorless_homing(stepperX, false);
  2708. #endif
  2709. #if ENABLED(Y_IS_TMC2130)
  2710. if (axis == Y_AXIS) tmc2130_sensorless_homing(stepperY, false);
  2711. #endif
  2712. #endif
  2713. // Put away the Z probe
  2714. #if HOMING_Z_WITH_PROBE
  2715. if (axis == Z_AXIS && STOW_PROBE()) return;
  2716. #endif
  2717. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2718. if (DEBUGGING(LEVELING)) {
  2719. SERIAL_ECHOPAIR("<<< homeaxis(", axis_codes[axis]);
  2720. SERIAL_CHAR(')');
  2721. SERIAL_EOL();
  2722. }
  2723. #endif
  2724. } // homeaxis()
  2725. #if ENABLED(FWRETRACT)
  2726. /**
  2727. * Retract or recover according to firmware settings
  2728. *
  2729. * This function handles retract/recover moves for G10 and G11,
  2730. * plus auto-retract moves sent from G0/G1 when E-only moves are done.
  2731. *
  2732. * To simplify the logic, doubled retract/recover moves are ignored.
  2733. *
  2734. * Note: Z lift is done transparently to the planner. Aborting
  2735. * a print between G10 and G11 may corrupt the Z position.
  2736. *
  2737. * Note: Auto-retract will apply the set Z hop in addition to any Z hop
  2738. * included in the G-code. Use M207 Z0 to to prevent double hop.
  2739. */
  2740. void retract(const bool retracting
  2741. #if EXTRUDERS > 1
  2742. , bool swapping = false
  2743. #endif
  2744. ) {
  2745. static float hop_amount = 0.0; // Total amount lifted, for use in recover
  2746. // Prevent two retracts or recovers in a row
  2747. if (retracted[active_extruder] == retracting) return;
  2748. // Prevent two swap-retract or recovers in a row
  2749. #if EXTRUDERS > 1
  2750. // Allow G10 S1 only after G10
  2751. if (swapping && retracted_swap[active_extruder] == retracting) return;
  2752. // G11 priority to recover the long retract if activated
  2753. if (!retracting) swapping = retracted_swap[active_extruder];
  2754. #else
  2755. const bool swapping = false;
  2756. #endif
  2757. /* // debugging
  2758. SERIAL_ECHOLNPAIR("retracting ", retracting);
  2759. SERIAL_ECHOLNPAIR("swapping ", swapping);
  2760. SERIAL_ECHOLNPAIR("active extruder ", active_extruder);
  2761. for (uint8_t i = 0; i < EXTRUDERS; ++i) {
  2762. SERIAL_ECHOPAIR("retracted[", i);
  2763. SERIAL_ECHOLNPAIR("] ", retracted[i]);
  2764. SERIAL_ECHOPAIR("retracted_swap[", i);
  2765. SERIAL_ECHOLNPAIR("] ", retracted_swap[i]);
  2766. }
  2767. SERIAL_ECHOLNPAIR("current_position[z] ", current_position[Z_AXIS]);
  2768. SERIAL_ECHOLNPAIR("hop_amount ", hop_amount);
  2769. //*/
  2770. const bool has_zhop = retract_zlift > 0.01; // Is there a hop set?
  2771. const float old_feedrate_mm_s = feedrate_mm_s;
  2772. // The current position will be the destination for E and Z moves
  2773. set_destination_from_current();
  2774. stepper.synchronize(); // Wait for buffered moves to complete
  2775. const float renormalize = 100.0 / flow_percentage[active_extruder] / volumetric_multiplier[active_extruder];
  2776. if (retracting) {
  2777. // Retract by moving from a faux E position back to the current E position
  2778. feedrate_mm_s = retract_feedrate_mm_s;
  2779. current_position[E_AXIS] += (swapping ? swap_retract_length : retract_length) * renormalize;
  2780. sync_plan_position_e();
  2781. prepare_move_to_destination();
  2782. // Is a Z hop set, and has the hop not yet been done?
  2783. if (has_zhop && !hop_amount) {
  2784. hop_amount += retract_zlift; // Carriage is raised for retraction hop
  2785. feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS]; // Z feedrate to max
  2786. current_position[Z_AXIS] -= retract_zlift; // Pretend current pos is lower. Next move raises Z.
  2787. SYNC_PLAN_POSITION_KINEMATIC(); // Set the planner to the new position
  2788. prepare_move_to_destination(); // Raise up to the old current pos
  2789. feedrate_mm_s = retract_feedrate_mm_s; // Restore feedrate
  2790. }
  2791. }
  2792. else {
  2793. // If a hop was done and Z hasn't changed, undo the Z hop
  2794. if (hop_amount) {
  2795. current_position[Z_AXIS] -= retract_zlift; // Pretend current pos is lower. Next move raises Z.
  2796. SYNC_PLAN_POSITION_KINEMATIC(); // Set the planner to the new position
  2797. feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS]; // Z feedrate to max
  2798. prepare_move_to_destination(); // Raise up to the old current pos
  2799. hop_amount = 0.0; // Clear hop
  2800. }
  2801. // A retract multiplier has been added here to get faster swap recovery
  2802. feedrate_mm_s = swapping ? swap_retract_recover_feedrate_mm_s : retract_recover_feedrate_mm_s;
  2803. const float move_e = swapping ? swap_retract_length + swap_retract_recover_length : retract_length + retract_recover_length;
  2804. current_position[E_AXIS] -= move_e * renormalize;
  2805. sync_plan_position_e();
  2806. prepare_move_to_destination(); // Recover E
  2807. }
  2808. feedrate_mm_s = old_feedrate_mm_s; // Restore original feedrate
  2809. retracted[active_extruder] = retracting; // Active extruder now retracted / recovered
  2810. // If swap retract/recover update the retracted_swap flag too
  2811. #if EXTRUDERS > 1
  2812. if (swapping) retracted_swap[active_extruder] = retracting;
  2813. #endif
  2814. /* // debugging
  2815. SERIAL_ECHOLNPAIR("retracting ", retracting);
  2816. SERIAL_ECHOLNPAIR("swapping ", swapping);
  2817. SERIAL_ECHOLNPAIR("active_extruder ", active_extruder);
  2818. for (uint8_t i = 0; i < EXTRUDERS; ++i) {
  2819. SERIAL_ECHOPAIR("retracted[", i);
  2820. SERIAL_ECHOLNPAIR("] ", retracted[i]);
  2821. SERIAL_ECHOPAIR("retracted_swap[", i);
  2822. SERIAL_ECHOLNPAIR("] ", retracted_swap[i]);
  2823. }
  2824. SERIAL_ECHOLNPAIR("current_position[z] ", current_position[Z_AXIS]);
  2825. SERIAL_ECHOLNPAIR("hop_amount ", hop_amount);
  2826. //*/
  2827. }
  2828. #endif // FWRETRACT
  2829. #if ENABLED(MIXING_EXTRUDER)
  2830. void normalize_mix() {
  2831. float mix_total = 0.0;
  2832. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) mix_total += RECIPROCAL(mixing_factor[i]);
  2833. // Scale all values if they don't add up to ~1.0
  2834. if (!NEAR(mix_total, 1.0)) {
  2835. SERIAL_PROTOCOLLNPGM("Warning: Mix factors must add up to 1.0. Scaling.");
  2836. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) mixing_factor[i] *= mix_total;
  2837. }
  2838. }
  2839. #if ENABLED(DIRECT_MIXING_IN_G1)
  2840. // Get mixing parameters from the GCode
  2841. // The total "must" be 1.0 (but it will be normalized)
  2842. // If no mix factors are given, the old mix is preserved
  2843. void gcode_get_mix() {
  2844. const char* mixing_codes = "ABCDHI";
  2845. byte mix_bits = 0;
  2846. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) {
  2847. if (parser.seenval(mixing_codes[i])) {
  2848. SBI(mix_bits, i);
  2849. float v = parser.value_float();
  2850. NOLESS(v, 0.0);
  2851. mixing_factor[i] = RECIPROCAL(v);
  2852. }
  2853. }
  2854. // If any mixing factors were included, clear the rest
  2855. // If none were included, preserve the last mix
  2856. if (mix_bits) {
  2857. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  2858. if (!TEST(mix_bits, i)) mixing_factor[i] = 0.0;
  2859. normalize_mix();
  2860. }
  2861. }
  2862. #endif
  2863. #endif
  2864. /**
  2865. * ***************************************************************************
  2866. * ***************************** G-CODE HANDLING *****************************
  2867. * ***************************************************************************
  2868. */
  2869. /**
  2870. * Set XYZE destination and feedrate from the current GCode command
  2871. *
  2872. * - Set destination from included axis codes
  2873. * - Set to current for missing axis codes
  2874. * - Set the feedrate, if included
  2875. */
  2876. void gcode_get_destination() {
  2877. LOOP_XYZE(i) {
  2878. if (parser.seen(axis_codes[i]))
  2879. destination[i] = LOGICAL_TO_NATIVE(parser.value_axis_units((AxisEnum)i) + (axis_relative_modes[i] || relative_mode ? current_position[i] : 0), i);
  2880. else
  2881. destination[i] = current_position[i];
  2882. }
  2883. if (parser.linearval('F') > 0.0)
  2884. feedrate_mm_s = MMM_TO_MMS(parser.value_feedrate());
  2885. #if ENABLED(PRINTCOUNTER)
  2886. if (!DEBUGGING(DRYRUN))
  2887. print_job_timer.incFilamentUsed(destination[E_AXIS] - current_position[E_AXIS]);
  2888. #endif
  2889. // Get ABCDHI mixing factors
  2890. #if ENABLED(MIXING_EXTRUDER) && ENABLED(DIRECT_MIXING_IN_G1)
  2891. gcode_get_mix();
  2892. #endif
  2893. }
  2894. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  2895. /**
  2896. * Output a "busy" message at regular intervals
  2897. * while the machine is not accepting commands.
  2898. */
  2899. void host_keepalive() {
  2900. const millis_t ms = millis();
  2901. if (host_keepalive_interval && busy_state != NOT_BUSY) {
  2902. if (PENDING(ms, next_busy_signal_ms)) return;
  2903. switch (busy_state) {
  2904. case IN_HANDLER:
  2905. case IN_PROCESS:
  2906. SERIAL_ECHO_START();
  2907. SERIAL_ECHOLNPGM(MSG_BUSY_PROCESSING);
  2908. break;
  2909. case PAUSED_FOR_USER:
  2910. SERIAL_ECHO_START();
  2911. SERIAL_ECHOLNPGM(MSG_BUSY_PAUSED_FOR_USER);
  2912. break;
  2913. case PAUSED_FOR_INPUT:
  2914. SERIAL_ECHO_START();
  2915. SERIAL_ECHOLNPGM(MSG_BUSY_PAUSED_FOR_INPUT);
  2916. break;
  2917. default:
  2918. break;
  2919. }
  2920. }
  2921. next_busy_signal_ms = ms + host_keepalive_interval * 1000UL;
  2922. }
  2923. #endif // HOST_KEEPALIVE_FEATURE
  2924. /**************************************************
  2925. ***************** GCode Handlers *****************
  2926. **************************************************/
  2927. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  2928. #define G0_G1_CONDITION !axis_unhomed_error(parser.seen('X'), parser.seen('Y'), parser.seen('Z'))
  2929. #else
  2930. #define G0_G1_CONDITION true
  2931. #endif
  2932. /**
  2933. * G0, G1: Coordinated movement of X Y Z E axes
  2934. */
  2935. inline void gcode_G0_G1(
  2936. #if IS_SCARA
  2937. bool fast_move=false
  2938. #endif
  2939. ) {
  2940. if (IsRunning() && G0_G1_CONDITION) {
  2941. gcode_get_destination(); // For X Y Z E F
  2942. #if ENABLED(FWRETRACT)
  2943. if (MIN_AUTORETRACT <= MAX_AUTORETRACT) {
  2944. // When M209 Autoretract is enabled, convert E-only moves to firmware retract/recover moves
  2945. if (autoretract_enabled && parser.seen('E') && !(parser.seen('X') || parser.seen('Y') || parser.seen('Z'))) {
  2946. const float echange = destination[E_AXIS] - current_position[E_AXIS];
  2947. // Is this a retract or recover move?
  2948. if (WITHIN(FABS(echange), MIN_AUTORETRACT, MAX_AUTORETRACT) && retracted[active_extruder] == (echange > 0.0)) {
  2949. current_position[E_AXIS] = destination[E_AXIS]; // Hide a G1-based retract/recover from calculations
  2950. sync_plan_position_e(); // AND from the planner
  2951. return retract(echange < 0.0); // Firmware-based retract/recover (double-retract ignored)
  2952. }
  2953. }
  2954. }
  2955. #endif // FWRETRACT
  2956. #if IS_SCARA
  2957. fast_move ? prepare_uninterpolated_move_to_destination() : prepare_move_to_destination();
  2958. #else
  2959. prepare_move_to_destination();
  2960. #endif
  2961. }
  2962. }
  2963. /**
  2964. * G2: Clockwise Arc
  2965. * G3: Counterclockwise Arc
  2966. *
  2967. * This command has two forms: IJ-form and R-form.
  2968. *
  2969. * - I specifies an X offset. J specifies a Y offset.
  2970. * At least one of the IJ parameters is required.
  2971. * X and Y can be omitted to do a complete circle.
  2972. * The given XY is not error-checked. The arc ends
  2973. * based on the angle of the destination.
  2974. * Mixing I or J with R will throw an error.
  2975. *
  2976. * - R specifies the radius. X or Y is required.
  2977. * Omitting both X and Y will throw an error.
  2978. * X or Y must differ from the current XY.
  2979. * Mixing R with I or J will throw an error.
  2980. *
  2981. * - P specifies the number of full circles to do
  2982. * before the specified arc move.
  2983. *
  2984. * Examples:
  2985. *
  2986. * G2 I10 ; CW circle centered at X+10
  2987. * G3 X20 Y12 R14 ; CCW circle with r=14 ending at X20 Y12
  2988. */
  2989. #if ENABLED(ARC_SUPPORT)
  2990. inline void gcode_G2_G3(const bool clockwise) {
  2991. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  2992. if (axis_unhomed_error()) return;
  2993. #endif
  2994. if (IsRunning()) {
  2995. #if ENABLED(SF_ARC_FIX)
  2996. const bool relative_mode_backup = relative_mode;
  2997. relative_mode = true;
  2998. #endif
  2999. gcode_get_destination();
  3000. #if ENABLED(SF_ARC_FIX)
  3001. relative_mode = relative_mode_backup;
  3002. #endif
  3003. float arc_offset[2] = { 0.0, 0.0 };
  3004. if (parser.seenval('R')) {
  3005. const float r = parser.value_linear_units(),
  3006. p1 = current_position[X_AXIS], q1 = current_position[Y_AXIS],
  3007. p2 = destination[X_AXIS], q2 = destination[Y_AXIS];
  3008. if (r && (p2 != p1 || q2 != q1)) {
  3009. const float e = clockwise ^ (r < 0) ? -1 : 1, // clockwise -1/1, counterclockwise 1/-1
  3010. dx = p2 - p1, dy = q2 - q1, // X and Y differences
  3011. d = HYPOT(dx, dy), // Linear distance between the points
  3012. h = SQRT(sq(r) - sq(d * 0.5)), // Distance to the arc pivot-point
  3013. mx = (p1 + p2) * 0.5, my = (q1 + q2) * 0.5, // Point between the two points
  3014. sx = -dy / d, sy = dx / d, // Slope of the perpendicular bisector
  3015. cx = mx + e * h * sx, cy = my + e * h * sy; // Pivot-point of the arc
  3016. arc_offset[0] = cx - p1;
  3017. arc_offset[1] = cy - q1;
  3018. }
  3019. }
  3020. else {
  3021. if (parser.seenval('I')) arc_offset[0] = parser.value_linear_units();
  3022. if (parser.seenval('J')) arc_offset[1] = parser.value_linear_units();
  3023. }
  3024. if (arc_offset[0] || arc_offset[1]) {
  3025. #if ENABLED(ARC_P_CIRCLES)
  3026. // P indicates number of circles to do
  3027. int8_t circles_to_do = parser.byteval('P');
  3028. if (!WITHIN(circles_to_do, 0, 100)) {
  3029. SERIAL_ERROR_START();
  3030. SERIAL_ERRORLNPGM(MSG_ERR_ARC_ARGS);
  3031. }
  3032. while (circles_to_do--)
  3033. plan_arc(current_position, arc_offset, clockwise);
  3034. #endif
  3035. // Send the arc to the planner
  3036. plan_arc(destination, arc_offset, clockwise);
  3037. refresh_cmd_timeout();
  3038. }
  3039. else {
  3040. // Bad arguments
  3041. SERIAL_ERROR_START();
  3042. SERIAL_ERRORLNPGM(MSG_ERR_ARC_ARGS);
  3043. }
  3044. }
  3045. }
  3046. #endif // ARC_SUPPORT
  3047. void dwell(millis_t time) {
  3048. refresh_cmd_timeout();
  3049. time += previous_cmd_ms;
  3050. while (PENDING(millis(), time)) idle();
  3051. }
  3052. /**
  3053. * G4: Dwell S<seconds> or P<milliseconds>
  3054. */
  3055. inline void gcode_G4() {
  3056. millis_t dwell_ms = 0;
  3057. if (parser.seenval('P')) dwell_ms = parser.value_millis(); // milliseconds to wait
  3058. if (parser.seenval('S')) dwell_ms = parser.value_millis_from_seconds(); // seconds to wait
  3059. stepper.synchronize();
  3060. if (!lcd_hasstatus()) LCD_MESSAGEPGM(MSG_DWELL);
  3061. dwell(dwell_ms);
  3062. }
  3063. #if ENABLED(BEZIER_CURVE_SUPPORT)
  3064. /**
  3065. * Parameters interpreted according to:
  3066. * http://linuxcnc.org/docs/2.6/html/gcode/gcode.html#sec:G5-Cubic-Spline
  3067. * However I, J omission is not supported at this point; all
  3068. * parameters can be omitted and default to zero.
  3069. */
  3070. /**
  3071. * G5: Cubic B-spline
  3072. */
  3073. inline void gcode_G5() {
  3074. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  3075. if (axis_unhomed_error()) return;
  3076. #endif
  3077. if (IsRunning()) {
  3078. #if ENABLED(CNC_WORKSPACE_PLANES)
  3079. if (workspace_plane != PLANE_XY) {
  3080. SERIAL_ERROR_START();
  3081. SERIAL_ERRORLNPGM(MSG_ERR_BAD_PLANE_MODE);
  3082. return;
  3083. }
  3084. #endif
  3085. gcode_get_destination();
  3086. const float offset[] = {
  3087. parser.linearval('I'),
  3088. parser.linearval('J'),
  3089. parser.linearval('P'),
  3090. parser.linearval('Q')
  3091. };
  3092. plan_cubic_move(offset);
  3093. }
  3094. }
  3095. #endif // BEZIER_CURVE_SUPPORT
  3096. #if ENABLED(FWRETRACT)
  3097. /**
  3098. * G10 - Retract filament according to settings of M207
  3099. */
  3100. inline void gcode_G10() {
  3101. #if EXTRUDERS > 1
  3102. const bool rs = parser.boolval('S');
  3103. retracted_swap[active_extruder] = rs; // Use 'S' for swap, default to false
  3104. #endif
  3105. retract(true
  3106. #if EXTRUDERS > 1
  3107. , rs
  3108. #endif
  3109. );
  3110. }
  3111. /**
  3112. * G11 - Recover filament according to settings of M208
  3113. */
  3114. inline void gcode_G11() { retract(false); }
  3115. #endif // FWRETRACT
  3116. #if ENABLED(NOZZLE_CLEAN_FEATURE)
  3117. /**
  3118. * G12: Clean the nozzle
  3119. */
  3120. inline void gcode_G12() {
  3121. // Don't allow nozzle cleaning without homing first
  3122. if (axis_unhomed_error()) return;
  3123. const uint8_t pattern = parser.ushortval('P', 0),
  3124. strokes = parser.ushortval('S', NOZZLE_CLEAN_STROKES),
  3125. objects = parser.ushortval('T', NOZZLE_CLEAN_TRIANGLES);
  3126. const float radius = parser.floatval('R', NOZZLE_CLEAN_CIRCLE_RADIUS);
  3127. Nozzle::clean(pattern, strokes, radius, objects);
  3128. }
  3129. #endif
  3130. #if ENABLED(CNC_WORKSPACE_PLANES)
  3131. inline void report_workspace_plane() {
  3132. SERIAL_ECHO_START();
  3133. SERIAL_ECHOPGM("Workspace Plane ");
  3134. serialprintPGM(
  3135. workspace_plane == PLANE_YZ ? PSTR("YZ\n") :
  3136. workspace_plane == PLANE_ZX ? PSTR("ZX\n") :
  3137. PSTR("XY\n")
  3138. );
  3139. }
  3140. inline void set_workspace_plane(const WorkspacePlane plane) {
  3141. workspace_plane = plane;
  3142. if (DEBUGGING(INFO)) report_workspace_plane();
  3143. }
  3144. /**
  3145. * G17: Select Plane XY
  3146. * G18: Select Plane ZX
  3147. * G19: Select Plane YZ
  3148. */
  3149. inline void gcode_G17() { set_workspace_plane(PLANE_XY); }
  3150. inline void gcode_G18() { set_workspace_plane(PLANE_ZX); }
  3151. inline void gcode_G19() { set_workspace_plane(PLANE_YZ); }
  3152. #endif // CNC_WORKSPACE_PLANES
  3153. #if ENABLED(INCH_MODE_SUPPORT)
  3154. /**
  3155. * G20: Set input mode to inches
  3156. */
  3157. inline void gcode_G20() { parser.set_input_linear_units(LINEARUNIT_INCH); }
  3158. /**
  3159. * G21: Set input mode to millimeters
  3160. */
  3161. inline void gcode_G21() { parser.set_input_linear_units(LINEARUNIT_MM); }
  3162. #endif
  3163. #if ENABLED(NOZZLE_PARK_FEATURE)
  3164. /**
  3165. * G27: Park the nozzle
  3166. */
  3167. inline void gcode_G27() {
  3168. // Don't allow nozzle parking without homing first
  3169. if (axis_unhomed_error()) return;
  3170. Nozzle::park(parser.ushortval('P'));
  3171. }
  3172. #endif // NOZZLE_PARK_FEATURE
  3173. #if ENABLED(QUICK_HOME)
  3174. static void quick_home_xy() {
  3175. // Pretend the current position is 0,0
  3176. current_position[X_AXIS] = current_position[Y_AXIS] = 0.0;
  3177. sync_plan_position();
  3178. const int x_axis_home_dir =
  3179. #if ENABLED(DUAL_X_CARRIAGE)
  3180. x_home_dir(active_extruder)
  3181. #else
  3182. home_dir(X_AXIS)
  3183. #endif
  3184. ;
  3185. const float mlx = max_length(X_AXIS),
  3186. mly = max_length(Y_AXIS),
  3187. mlratio = mlx > mly ? mly / mlx : mlx / mly,
  3188. fr_mm_s = min(homing_feedrate(X_AXIS), homing_feedrate(Y_AXIS)) * SQRT(sq(mlratio) + 1.0);
  3189. do_blocking_move_to_xy(1.5 * mlx * x_axis_home_dir, 1.5 * mly * home_dir(Y_AXIS), fr_mm_s);
  3190. endstops.hit_on_purpose(); // clear endstop hit flags
  3191. current_position[X_AXIS] = current_position[Y_AXIS] = 0.0;
  3192. }
  3193. #endif // QUICK_HOME
  3194. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3195. void log_machine_info() {
  3196. SERIAL_ECHOPGM("Machine Type: ");
  3197. #if ENABLED(DELTA)
  3198. SERIAL_ECHOLNPGM("Delta");
  3199. #elif IS_SCARA
  3200. SERIAL_ECHOLNPGM("SCARA");
  3201. #elif IS_CORE
  3202. SERIAL_ECHOLNPGM("Core");
  3203. #else
  3204. SERIAL_ECHOLNPGM("Cartesian");
  3205. #endif
  3206. SERIAL_ECHOPGM("Probe: ");
  3207. #if ENABLED(PROBE_MANUALLY)
  3208. SERIAL_ECHOLNPGM("PROBE_MANUALLY");
  3209. #elif ENABLED(FIX_MOUNTED_PROBE)
  3210. SERIAL_ECHOLNPGM("FIX_MOUNTED_PROBE");
  3211. #elif ENABLED(BLTOUCH)
  3212. SERIAL_ECHOLNPGM("BLTOUCH");
  3213. #elif HAS_Z_SERVO_ENDSTOP
  3214. SERIAL_ECHOLNPGM("SERVO PROBE");
  3215. #elif ENABLED(Z_PROBE_SLED)
  3216. SERIAL_ECHOLNPGM("Z_PROBE_SLED");
  3217. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  3218. SERIAL_ECHOLNPGM("Z_PROBE_ALLEN_KEY");
  3219. #else
  3220. SERIAL_ECHOLNPGM("NONE");
  3221. #endif
  3222. #if HAS_BED_PROBE
  3223. SERIAL_ECHOPAIR("Probe Offset X:", X_PROBE_OFFSET_FROM_EXTRUDER);
  3224. SERIAL_ECHOPAIR(" Y:", Y_PROBE_OFFSET_FROM_EXTRUDER);
  3225. SERIAL_ECHOPAIR(" Z:", zprobe_zoffset);
  3226. #if X_PROBE_OFFSET_FROM_EXTRUDER > 0
  3227. SERIAL_ECHOPGM(" (Right");
  3228. #elif X_PROBE_OFFSET_FROM_EXTRUDER < 0
  3229. SERIAL_ECHOPGM(" (Left");
  3230. #elif Y_PROBE_OFFSET_FROM_EXTRUDER != 0
  3231. SERIAL_ECHOPGM(" (Middle");
  3232. #else
  3233. SERIAL_ECHOPGM(" (Aligned With");
  3234. #endif
  3235. #if Y_PROBE_OFFSET_FROM_EXTRUDER > 0
  3236. SERIAL_ECHOPGM("-Back");
  3237. #elif Y_PROBE_OFFSET_FROM_EXTRUDER < 0
  3238. SERIAL_ECHOPGM("-Front");
  3239. #elif X_PROBE_OFFSET_FROM_EXTRUDER != 0
  3240. SERIAL_ECHOPGM("-Center");
  3241. #endif
  3242. if (zprobe_zoffset < 0)
  3243. SERIAL_ECHOPGM(" & Below");
  3244. else if (zprobe_zoffset > 0)
  3245. SERIAL_ECHOPGM(" & Above");
  3246. else
  3247. SERIAL_ECHOPGM(" & Same Z as");
  3248. SERIAL_ECHOLNPGM(" Nozzle)");
  3249. #endif
  3250. #if HAS_ABL
  3251. SERIAL_ECHOPGM("Auto Bed Leveling: ");
  3252. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3253. SERIAL_ECHOPGM("LINEAR");
  3254. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3255. SERIAL_ECHOPGM("BILINEAR");
  3256. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  3257. SERIAL_ECHOPGM("3POINT");
  3258. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  3259. SERIAL_ECHOPGM("UBL");
  3260. #endif
  3261. if (planner.leveling_active) {
  3262. SERIAL_ECHOLNPGM(" (enabled)");
  3263. #if ABL_PLANAR
  3264. const float diff[XYZ] = {
  3265. stepper.get_axis_position_mm(X_AXIS) - current_position[X_AXIS],
  3266. stepper.get_axis_position_mm(Y_AXIS) - current_position[Y_AXIS],
  3267. stepper.get_axis_position_mm(Z_AXIS) - current_position[Z_AXIS]
  3268. };
  3269. SERIAL_ECHOPGM("ABL Adjustment X");
  3270. if (diff[X_AXIS] > 0) SERIAL_CHAR('+');
  3271. SERIAL_ECHO(diff[X_AXIS]);
  3272. SERIAL_ECHOPGM(" Y");
  3273. if (diff[Y_AXIS] > 0) SERIAL_CHAR('+');
  3274. SERIAL_ECHO(diff[Y_AXIS]);
  3275. SERIAL_ECHOPGM(" Z");
  3276. if (diff[Z_AXIS] > 0) SERIAL_CHAR('+');
  3277. SERIAL_ECHO(diff[Z_AXIS]);
  3278. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  3279. SERIAL_ECHOPAIR("UBL Adjustment Z", stepper.get_axis_position_mm(Z_AXIS) - current_position[Z_AXIS]);
  3280. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3281. SERIAL_ECHOPAIR("ABL Adjustment Z", bilinear_z_offset(current_position));
  3282. #endif
  3283. }
  3284. else
  3285. SERIAL_ECHOLNPGM(" (disabled)");
  3286. SERIAL_EOL();
  3287. #elif ENABLED(MESH_BED_LEVELING)
  3288. SERIAL_ECHOPGM("Mesh Bed Leveling");
  3289. if (planner.leveling_active) {
  3290. float rz = current_position[Z_AXIS];
  3291. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], rz);
  3292. SERIAL_ECHOLNPGM(" (enabled)");
  3293. SERIAL_ECHOPAIR("MBL Adjustment Z", rz);
  3294. }
  3295. else
  3296. SERIAL_ECHOPGM(" (disabled)");
  3297. SERIAL_EOL();
  3298. #endif // MESH_BED_LEVELING
  3299. }
  3300. #endif // DEBUG_LEVELING_FEATURE
  3301. #if ENABLED(DELTA)
  3302. /**
  3303. * A delta can only safely home all axes at the same time
  3304. * This is like quick_home_xy() but for 3 towers.
  3305. */
  3306. inline bool home_delta() {
  3307. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3308. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> home_delta", current_position);
  3309. #endif
  3310. // Init the current position of all carriages to 0,0,0
  3311. ZERO(current_position);
  3312. sync_plan_position();
  3313. // Move all carriages together linearly until an endstop is hit.
  3314. current_position[X_AXIS] = current_position[Y_AXIS] = current_position[Z_AXIS] = (DELTA_HEIGHT + home_offset[Z_AXIS] + 10);
  3315. feedrate_mm_s = homing_feedrate(X_AXIS);
  3316. line_to_current_position();
  3317. stepper.synchronize();
  3318. // If an endstop was not hit, then damage can occur if homing is continued.
  3319. // This can occur if the delta height (DELTA_HEIGHT + home_offset[Z_AXIS]) is
  3320. // not set correctly.
  3321. if (!(Endstops::endstop_hit_bits & (_BV(X_MAX) | _BV(Y_MAX) | _BV(Z_MAX)))) {
  3322. LCD_MESSAGEPGM(MSG_ERR_HOMING_FAILED);
  3323. SERIAL_ERROR_START();
  3324. SERIAL_ERRORLNPGM(MSG_ERR_HOMING_FAILED);
  3325. return false;
  3326. }
  3327. endstops.hit_on_purpose(); // clear endstop hit flags
  3328. // At least one carriage has reached the top.
  3329. // Now re-home each carriage separately.
  3330. HOMEAXIS(A);
  3331. HOMEAXIS(B);
  3332. HOMEAXIS(C);
  3333. // Set all carriages to their home positions
  3334. // Do this here all at once for Delta, because
  3335. // XYZ isn't ABC. Applying this per-tower would
  3336. // give the impression that they are the same.
  3337. LOOP_XYZ(i) set_axis_is_at_home((AxisEnum)i);
  3338. SYNC_PLAN_POSITION_KINEMATIC();
  3339. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3340. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< home_delta", current_position);
  3341. #endif
  3342. return true;
  3343. }
  3344. #endif // DELTA
  3345. #if ENABLED(Z_SAFE_HOMING)
  3346. inline void home_z_safely() {
  3347. // Disallow Z homing if X or Y are unknown
  3348. if (!axis_known_position[X_AXIS] || !axis_known_position[Y_AXIS]) {
  3349. LCD_MESSAGEPGM(MSG_ERR_Z_HOMING);
  3350. SERIAL_ECHO_START();
  3351. SERIAL_ECHOLNPGM(MSG_ERR_Z_HOMING);
  3352. return;
  3353. }
  3354. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3355. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Z_SAFE_HOMING >>>");
  3356. #endif
  3357. SYNC_PLAN_POSITION_KINEMATIC();
  3358. /**
  3359. * Move the Z probe (or just the nozzle) to the safe homing point
  3360. */
  3361. destination[X_AXIS] = Z_SAFE_HOMING_X_POINT;
  3362. destination[Y_AXIS] = Z_SAFE_HOMING_Y_POINT;
  3363. destination[Z_AXIS] = current_position[Z_AXIS]; // Z is already at the right height
  3364. #if HOMING_Z_WITH_PROBE
  3365. destination[X_AXIS] -= X_PROBE_OFFSET_FROM_EXTRUDER;
  3366. destination[Y_AXIS] -= Y_PROBE_OFFSET_FROM_EXTRUDER;
  3367. #endif
  3368. if (position_is_reachable(destination[X_AXIS], destination[Y_AXIS])) {
  3369. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3370. if (DEBUGGING(LEVELING)) DEBUG_POS("Z_SAFE_HOMING", destination);
  3371. #endif
  3372. // This causes the carriage on Dual X to unpark
  3373. #if ENABLED(DUAL_X_CARRIAGE)
  3374. active_extruder_parked = false;
  3375. #endif
  3376. do_blocking_move_to_xy(destination[X_AXIS], destination[Y_AXIS]);
  3377. HOMEAXIS(Z);
  3378. }
  3379. else {
  3380. LCD_MESSAGEPGM(MSG_ZPROBE_OUT);
  3381. SERIAL_ECHO_START();
  3382. SERIAL_ECHOLNPGM(MSG_ZPROBE_OUT);
  3383. }
  3384. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3385. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< Z_SAFE_HOMING");
  3386. #endif
  3387. }
  3388. #endif // Z_SAFE_HOMING
  3389. #if ENABLED(PROBE_MANUALLY)
  3390. bool g29_in_progress = false;
  3391. #else
  3392. constexpr bool g29_in_progress = false;
  3393. #endif
  3394. /**
  3395. * G28: Home all axes according to settings
  3396. *
  3397. * Parameters
  3398. *
  3399. * None Home to all axes with no parameters.
  3400. * With QUICK_HOME enabled XY will home together, then Z.
  3401. *
  3402. * Cartesian parameters
  3403. *
  3404. * X Home to the X endstop
  3405. * Y Home to the Y endstop
  3406. * Z Home to the Z endstop
  3407. *
  3408. */
  3409. inline void gcode_G28(const bool always_home_all) {
  3410. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3411. if (DEBUGGING(LEVELING)) {
  3412. SERIAL_ECHOLNPGM(">>> gcode_G28");
  3413. log_machine_info();
  3414. }
  3415. #endif
  3416. // Wait for planner moves to finish!
  3417. stepper.synchronize();
  3418. // Cancel the active G29 session
  3419. #if ENABLED(PROBE_MANUALLY)
  3420. g29_in_progress = false;
  3421. #endif
  3422. // Disable the leveling matrix before homing
  3423. #if HAS_LEVELING
  3424. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3425. const bool ubl_state_at_entry = planner.leveling_active;
  3426. #endif
  3427. set_bed_leveling_enabled(false);
  3428. #endif
  3429. #if ENABLED(CNC_WORKSPACE_PLANES)
  3430. workspace_plane = PLANE_XY;
  3431. #endif
  3432. // Always home with tool 0 active
  3433. #if HOTENDS > 1
  3434. const uint8_t old_tool_index = active_extruder;
  3435. tool_change(0, 0, true);
  3436. #endif
  3437. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  3438. extruder_duplication_enabled = false;
  3439. #endif
  3440. setup_for_endstop_or_probe_move();
  3441. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3442. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> endstops.enable(true)");
  3443. #endif
  3444. endstops.enable(true); // Enable endstops for next homing move
  3445. #if ENABLED(DELTA)
  3446. home_delta();
  3447. UNUSED(always_home_all);
  3448. #else // NOT DELTA
  3449. const bool homeX = always_home_all || parser.seen('X'),
  3450. homeY = always_home_all || parser.seen('Y'),
  3451. homeZ = always_home_all || parser.seen('Z'),
  3452. home_all = (!homeX && !homeY && !homeZ) || (homeX && homeY && homeZ);
  3453. set_destination_from_current();
  3454. #if Z_HOME_DIR > 0 // If homing away from BED do Z first
  3455. if (home_all || homeZ) {
  3456. HOMEAXIS(Z);
  3457. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3458. if (DEBUGGING(LEVELING)) DEBUG_POS("> HOMEAXIS(Z)", current_position);
  3459. #endif
  3460. }
  3461. #else
  3462. if (home_all || homeX || homeY) {
  3463. // Raise Z before homing any other axes and z is not already high enough (never lower z)
  3464. destination[Z_AXIS] = Z_HOMING_HEIGHT;
  3465. if (destination[Z_AXIS] > current_position[Z_AXIS]) {
  3466. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3467. if (DEBUGGING(LEVELING))
  3468. SERIAL_ECHOLNPAIR("Raise Z (before homing) to ", destination[Z_AXIS]);
  3469. #endif
  3470. do_blocking_move_to_z(destination[Z_AXIS]);
  3471. }
  3472. }
  3473. #endif
  3474. #if ENABLED(QUICK_HOME)
  3475. if (home_all || (homeX && homeY)) quick_home_xy();
  3476. #endif
  3477. #if ENABLED(HOME_Y_BEFORE_X)
  3478. // Home Y
  3479. if (home_all || homeY) {
  3480. HOMEAXIS(Y);
  3481. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3482. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeY", current_position);
  3483. #endif
  3484. }
  3485. #endif
  3486. // Home X
  3487. if (home_all || homeX) {
  3488. #if ENABLED(DUAL_X_CARRIAGE)
  3489. // Always home the 2nd (right) extruder first
  3490. active_extruder = 1;
  3491. HOMEAXIS(X);
  3492. // Remember this extruder's position for later tool change
  3493. inactive_extruder_x_pos = current_position[X_AXIS];
  3494. // Home the 1st (left) extruder
  3495. active_extruder = 0;
  3496. HOMEAXIS(X);
  3497. // Consider the active extruder to be parked
  3498. COPY(raised_parked_position, current_position);
  3499. delayed_move_time = 0;
  3500. active_extruder_parked = true;
  3501. #else
  3502. HOMEAXIS(X);
  3503. #endif
  3504. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3505. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeX", current_position);
  3506. #endif
  3507. }
  3508. #if DISABLED(HOME_Y_BEFORE_X)
  3509. // Home Y
  3510. if (home_all || homeY) {
  3511. HOMEAXIS(Y);
  3512. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3513. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeY", current_position);
  3514. #endif
  3515. }
  3516. #endif
  3517. // Home Z last if homing towards the bed
  3518. #if Z_HOME_DIR < 0
  3519. if (home_all || homeZ) {
  3520. #if ENABLED(Z_SAFE_HOMING)
  3521. home_z_safely();
  3522. #else
  3523. HOMEAXIS(Z);
  3524. #endif
  3525. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3526. if (DEBUGGING(LEVELING)) DEBUG_POS("> (home_all || homeZ) > final", current_position);
  3527. #endif
  3528. } // home_all || homeZ
  3529. #endif // Z_HOME_DIR < 0
  3530. SYNC_PLAN_POSITION_KINEMATIC();
  3531. #endif // !DELTA (gcode_G28)
  3532. endstops.not_homing();
  3533. #if ENABLED(DELTA) && ENABLED(DELTA_HOME_TO_SAFE_ZONE)
  3534. // move to a height where we can use the full xy-area
  3535. do_blocking_move_to_z(delta_clip_start_height);
  3536. #endif
  3537. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3538. set_bed_leveling_enabled(ubl_state_at_entry);
  3539. #endif
  3540. clean_up_after_endstop_or_probe_move();
  3541. // Restore the active tool after homing
  3542. #if HOTENDS > 1
  3543. tool_change(old_tool_index, 0,
  3544. #if ENABLED(PARKING_EXTRUDER)
  3545. false // fetch the previous toolhead
  3546. #else
  3547. true
  3548. #endif
  3549. );
  3550. #endif
  3551. lcd_refresh();
  3552. report_current_position();
  3553. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3554. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G28");
  3555. #endif
  3556. } // G28
  3557. void home_all_axes() { gcode_G28(true); }
  3558. #if HAS_PROBING_PROCEDURE
  3559. void out_of_range_error(const char* p_edge) {
  3560. SERIAL_PROTOCOLPGM("?Probe ");
  3561. serialprintPGM(p_edge);
  3562. SERIAL_PROTOCOLLNPGM(" position out of range.");
  3563. }
  3564. #endif
  3565. #if ENABLED(MESH_BED_LEVELING) || ENABLED(PROBE_MANUALLY)
  3566. #if ENABLED(PROBE_MANUALLY) && ENABLED(LCD_BED_LEVELING)
  3567. extern bool lcd_wait_for_move;
  3568. #endif
  3569. inline void _manual_goto_xy(const float &rx, const float &ry) {
  3570. const float old_feedrate_mm_s = feedrate_mm_s;
  3571. #if MANUAL_PROBE_HEIGHT > 0
  3572. const float prev_z = current_position[Z_AXIS];
  3573. feedrate_mm_s = homing_feedrate(Z_AXIS);
  3574. current_position[Z_AXIS] = MANUAL_PROBE_HEIGHT;
  3575. line_to_current_position();
  3576. #endif
  3577. feedrate_mm_s = MMM_TO_MMS(XY_PROBE_SPEED);
  3578. current_position[X_AXIS] = rx;
  3579. current_position[Y_AXIS] = ry;
  3580. line_to_current_position();
  3581. #if MANUAL_PROBE_HEIGHT > 0
  3582. feedrate_mm_s = homing_feedrate(Z_AXIS);
  3583. current_position[Z_AXIS] = prev_z; // move back to the previous Z.
  3584. line_to_current_position();
  3585. #endif
  3586. feedrate_mm_s = old_feedrate_mm_s;
  3587. stepper.synchronize();
  3588. #if ENABLED(PROBE_MANUALLY) && ENABLED(LCD_BED_LEVELING)
  3589. lcd_wait_for_move = false;
  3590. #endif
  3591. }
  3592. #endif
  3593. #if ENABLED(MESH_BED_LEVELING)
  3594. // Save 130 bytes with non-duplication of PSTR
  3595. void echo_not_entered() { SERIAL_PROTOCOLLNPGM(" not entered."); }
  3596. void mbl_mesh_report() {
  3597. SERIAL_PROTOCOLLNPGM("Num X,Y: " STRINGIFY(GRID_MAX_POINTS_X) "," STRINGIFY(GRID_MAX_POINTS_Y));
  3598. SERIAL_PROTOCOLPGM("Z offset: "); SERIAL_PROTOCOL_F(mbl.z_offset, 5);
  3599. SERIAL_PROTOCOLLNPGM("\nMeasured points:");
  3600. print_2d_array(GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y, 5,
  3601. [](const uint8_t ix, const uint8_t iy) { return mbl.z_values[ix][iy]; }
  3602. );
  3603. }
  3604. void mesh_probing_done() {
  3605. mbl.has_mesh = true;
  3606. home_all_axes();
  3607. set_bed_leveling_enabled(true);
  3608. #if ENABLED(MESH_G28_REST_ORIGIN)
  3609. current_position[Z_AXIS] = Z_MIN_POS;
  3610. set_destination_from_current();
  3611. line_to_destination(homing_feedrate(Z_AXIS));
  3612. stepper.synchronize();
  3613. #endif
  3614. }
  3615. /**
  3616. * G29: Mesh-based Z probe, probes a grid and produces a
  3617. * mesh to compensate for variable bed height
  3618. *
  3619. * Parameters With MESH_BED_LEVELING:
  3620. *
  3621. * S0 Produce a mesh report
  3622. * S1 Start probing mesh points
  3623. * S2 Probe the next mesh point
  3624. * S3 Xn Yn Zn.nn Manually modify a single point
  3625. * S4 Zn.nn Set z offset. Positive away from bed, negative closer to bed.
  3626. * S5 Reset and disable mesh
  3627. *
  3628. * The S0 report the points as below
  3629. *
  3630. * +----> X-axis 1-n
  3631. * |
  3632. * |
  3633. * v Y-axis 1-n
  3634. *
  3635. */
  3636. inline void gcode_G29() {
  3637. static int mbl_probe_index = -1;
  3638. #if HAS_SOFTWARE_ENDSTOPS
  3639. static bool enable_soft_endstops;
  3640. #endif
  3641. const MeshLevelingState state = (MeshLevelingState)parser.byteval('S', (int8_t)MeshReport);
  3642. if (!WITHIN(state, 0, 5)) {
  3643. SERIAL_PROTOCOLLNPGM("S out of range (0-5).");
  3644. return;
  3645. }
  3646. int8_t px, py;
  3647. switch (state) {
  3648. case MeshReport:
  3649. if (leveling_is_valid()) {
  3650. SERIAL_PROTOCOLLNPAIR("State: ", planner.leveling_active ? MSG_ON : MSG_OFF);
  3651. mbl_mesh_report();
  3652. }
  3653. else
  3654. SERIAL_PROTOCOLLNPGM("Mesh bed leveling has no data.");
  3655. break;
  3656. case MeshStart:
  3657. mbl.reset();
  3658. mbl_probe_index = 0;
  3659. enqueue_and_echo_commands_P(PSTR("G28\nG29 S2"));
  3660. break;
  3661. case MeshNext:
  3662. if (mbl_probe_index < 0) {
  3663. SERIAL_PROTOCOLLNPGM("Start mesh probing with \"G29 S1\" first.");
  3664. return;
  3665. }
  3666. // For each G29 S2...
  3667. if (mbl_probe_index == 0) {
  3668. #if HAS_SOFTWARE_ENDSTOPS
  3669. // For the initial G29 S2 save software endstop state
  3670. enable_soft_endstops = soft_endstops_enabled;
  3671. #endif
  3672. }
  3673. else {
  3674. // For G29 S2 after adjusting Z.
  3675. mbl.set_zigzag_z(mbl_probe_index - 1, current_position[Z_AXIS]);
  3676. #if HAS_SOFTWARE_ENDSTOPS
  3677. soft_endstops_enabled = enable_soft_endstops;
  3678. #endif
  3679. }
  3680. // If there's another point to sample, move there with optional lift.
  3681. if (mbl_probe_index < GRID_MAX_POINTS) {
  3682. mbl.zigzag(mbl_probe_index, px, py);
  3683. _manual_goto_xy(mbl.index_to_xpos[px], mbl.index_to_ypos[py]);
  3684. #if HAS_SOFTWARE_ENDSTOPS
  3685. // Disable software endstops to allow manual adjustment
  3686. // If G29 is not completed, they will not be re-enabled
  3687. soft_endstops_enabled = false;
  3688. #endif
  3689. mbl_probe_index++;
  3690. }
  3691. else {
  3692. // One last "return to the bed" (as originally coded) at completion
  3693. current_position[Z_AXIS] = Z_MIN_POS + MANUAL_PROBE_HEIGHT;
  3694. line_to_current_position();
  3695. stepper.synchronize();
  3696. // After recording the last point, activate home and activate
  3697. mbl_probe_index = -1;
  3698. SERIAL_PROTOCOLLNPGM("Mesh probing done.");
  3699. BUZZ(100, 659);
  3700. BUZZ(100, 698);
  3701. mesh_probing_done();
  3702. }
  3703. break;
  3704. case MeshSet:
  3705. if (parser.seenval('X')) {
  3706. px = parser.value_int() - 1;
  3707. if (!WITHIN(px, 0, GRID_MAX_POINTS_X - 1)) {
  3708. SERIAL_PROTOCOLLNPGM("X out of range (1-" STRINGIFY(GRID_MAX_POINTS_X) ").");
  3709. return;
  3710. }
  3711. }
  3712. else {
  3713. SERIAL_CHAR('X'); echo_not_entered();
  3714. return;
  3715. }
  3716. if (parser.seenval('Y')) {
  3717. py = parser.value_int() - 1;
  3718. if (!WITHIN(py, 0, GRID_MAX_POINTS_Y - 1)) {
  3719. SERIAL_PROTOCOLLNPGM("Y out of range (1-" STRINGIFY(GRID_MAX_POINTS_Y) ").");
  3720. return;
  3721. }
  3722. }
  3723. else {
  3724. SERIAL_CHAR('Y'); echo_not_entered();
  3725. return;
  3726. }
  3727. if (parser.seenval('Z')) {
  3728. mbl.z_values[px][py] = parser.value_linear_units();
  3729. }
  3730. else {
  3731. SERIAL_CHAR('Z'); echo_not_entered();
  3732. return;
  3733. }
  3734. break;
  3735. case MeshSetZOffset:
  3736. if (parser.seenval('Z')) {
  3737. mbl.z_offset = parser.value_linear_units();
  3738. }
  3739. else {
  3740. SERIAL_CHAR('Z'); echo_not_entered();
  3741. return;
  3742. }
  3743. break;
  3744. case MeshReset:
  3745. reset_bed_level();
  3746. break;
  3747. } // switch(state)
  3748. report_current_position();
  3749. }
  3750. #elif OLDSCHOOL_ABL
  3751. #if ABL_GRID
  3752. #if ENABLED(PROBE_Y_FIRST)
  3753. #define PR_OUTER_VAR xCount
  3754. #define PR_OUTER_END abl_grid_points_x
  3755. #define PR_INNER_VAR yCount
  3756. #define PR_INNER_END abl_grid_points_y
  3757. #else
  3758. #define PR_OUTER_VAR yCount
  3759. #define PR_OUTER_END abl_grid_points_y
  3760. #define PR_INNER_VAR xCount
  3761. #define PR_INNER_END abl_grid_points_x
  3762. #endif
  3763. #endif
  3764. /**
  3765. * G29: Detailed Z probe, probes the bed at 3 or more points.
  3766. * Will fail if the printer has not been homed with G28.
  3767. *
  3768. * Enhanced G29 Auto Bed Leveling Probe Routine
  3769. *
  3770. * D Dry-Run mode. Just evaluate the bed Topology - Don't apply
  3771. * or alter the bed level data. Useful to check the topology
  3772. * after a first run of G29.
  3773. *
  3774. * J Jettison current bed leveling data
  3775. *
  3776. * V Set the verbose level (0-4). Example: "G29 V3"
  3777. *
  3778. * Parameters With LINEAR leveling only:
  3779. *
  3780. * P Set the size of the grid that will be probed (P x P points).
  3781. * Example: "G29 P4"
  3782. *
  3783. * X Set the X size of the grid that will be probed (X x Y points).
  3784. * Example: "G29 X7 Y5"
  3785. *
  3786. * Y Set the Y size of the grid that will be probed (X x Y points).
  3787. *
  3788. * T Generate a Bed Topology Report. Example: "G29 P5 T" for a detailed report.
  3789. * This is useful for manual bed leveling and finding flaws in the bed (to
  3790. * assist with part placement).
  3791. * Not supported by non-linear delta printer bed leveling.
  3792. *
  3793. * Parameters With LINEAR and BILINEAR leveling only:
  3794. *
  3795. * S Set the XY travel speed between probe points (in units/min)
  3796. *
  3797. * F Set the Front limit of the probing grid
  3798. * B Set the Back limit of the probing grid
  3799. * L Set the Left limit of the probing grid
  3800. * R Set the Right limit of the probing grid
  3801. *
  3802. * Parameters with DEBUG_LEVELING_FEATURE only:
  3803. *
  3804. * C Make a totally fake grid with no actual probing.
  3805. * For use in testing when no probing is possible.
  3806. *
  3807. * Parameters with BILINEAR leveling only:
  3808. *
  3809. * Z Supply an additional Z probe offset
  3810. *
  3811. * Extra parameters with PROBE_MANUALLY:
  3812. *
  3813. * To do manual probing simply repeat G29 until the procedure is complete.
  3814. * The first G29 accepts parameters. 'G29 Q' for status, 'G29 A' to abort.
  3815. *
  3816. * Q Query leveling and G29 state
  3817. *
  3818. * A Abort current leveling procedure
  3819. *
  3820. * Extra parameters with BILINEAR only:
  3821. *
  3822. * W Write a mesh point. (If G29 is idle.)
  3823. * I X index for mesh point
  3824. * J Y index for mesh point
  3825. * X X for mesh point, overrides I
  3826. * Y Y for mesh point, overrides J
  3827. * Z Z for mesh point. Otherwise, raw current Z.
  3828. *
  3829. * Without PROBE_MANUALLY:
  3830. *
  3831. * E By default G29 will engage the Z probe, test the bed, then disengage.
  3832. * Include "E" to engage/disengage the Z probe for each sample.
  3833. * There's no extra effect if you have a fixed Z probe.
  3834. *
  3835. */
  3836. inline void gcode_G29() {
  3837. // G29 Q is also available if debugging
  3838. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3839. const bool query = parser.seen('Q');
  3840. const uint8_t old_debug_flags = marlin_debug_flags;
  3841. if (query) marlin_debug_flags |= DEBUG_LEVELING;
  3842. if (DEBUGGING(LEVELING)) {
  3843. DEBUG_POS(">>> gcode_G29", current_position);
  3844. log_machine_info();
  3845. }
  3846. marlin_debug_flags = old_debug_flags;
  3847. #if DISABLED(PROBE_MANUALLY)
  3848. if (query) return;
  3849. #endif
  3850. #endif
  3851. #if ENABLED(PROBE_MANUALLY)
  3852. const bool seenA = parser.seen('A'), seenQ = parser.seen('Q'), no_action = seenA || seenQ;
  3853. #endif
  3854. #if ENABLED(DEBUG_LEVELING_FEATURE) && DISABLED(PROBE_MANUALLY)
  3855. const bool faux = parser.boolval('C');
  3856. #elif ENABLED(PROBE_MANUALLY)
  3857. const bool faux = no_action;
  3858. #else
  3859. bool constexpr faux = false;
  3860. #endif
  3861. // Don't allow auto-leveling without homing first
  3862. if (axis_unhomed_error()) return;
  3863. // Define local vars 'static' for manual probing, 'auto' otherwise
  3864. #if ENABLED(PROBE_MANUALLY)
  3865. #define ABL_VAR static
  3866. #else
  3867. #define ABL_VAR
  3868. #endif
  3869. ABL_VAR int verbose_level;
  3870. ABL_VAR float xProbe, yProbe, measured_z;
  3871. ABL_VAR bool dryrun, abl_should_enable;
  3872. #if ENABLED(PROBE_MANUALLY) || ENABLED(AUTO_BED_LEVELING_LINEAR)
  3873. ABL_VAR int abl_probe_index;
  3874. #endif
  3875. #if HAS_SOFTWARE_ENDSTOPS && ENABLED(PROBE_MANUALLY)
  3876. ABL_VAR bool enable_soft_endstops = true;
  3877. #endif
  3878. #if ABL_GRID
  3879. #if ENABLED(PROBE_MANUALLY)
  3880. ABL_VAR uint8_t PR_OUTER_VAR;
  3881. ABL_VAR int8_t PR_INNER_VAR;
  3882. #endif
  3883. ABL_VAR int left_probe_bed_position, right_probe_bed_position, front_probe_bed_position, back_probe_bed_position;
  3884. ABL_VAR float xGridSpacing = 0, yGridSpacing = 0;
  3885. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3886. ABL_VAR uint8_t abl_grid_points_x = GRID_MAX_POINTS_X,
  3887. abl_grid_points_y = GRID_MAX_POINTS_Y;
  3888. ABL_VAR bool do_topography_map;
  3889. #else // Bilinear
  3890. uint8_t constexpr abl_grid_points_x = GRID_MAX_POINTS_X,
  3891. abl_grid_points_y = GRID_MAX_POINTS_Y;
  3892. #endif
  3893. #if ENABLED(AUTO_BED_LEVELING_LINEAR) || ENABLED(PROBE_MANUALLY)
  3894. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3895. ABL_VAR int abl2;
  3896. #else // Bilinear
  3897. int constexpr abl2 = GRID_MAX_POINTS;
  3898. #endif
  3899. #endif
  3900. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3901. ABL_VAR float zoffset;
  3902. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  3903. ABL_VAR int indexIntoAB[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
  3904. ABL_VAR float eqnAMatrix[GRID_MAX_POINTS * 3], // "A" matrix of the linear system of equations
  3905. eqnBVector[GRID_MAX_POINTS], // "B" vector of Z points
  3906. mean;
  3907. #endif
  3908. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  3909. int constexpr abl2 = 3;
  3910. // Probe at 3 arbitrary points
  3911. ABL_VAR vector_3 points[3] = {
  3912. vector_3(ABL_PROBE_PT_1_X, ABL_PROBE_PT_1_Y, 0),
  3913. vector_3(ABL_PROBE_PT_2_X, ABL_PROBE_PT_2_Y, 0),
  3914. vector_3(ABL_PROBE_PT_3_X, ABL_PROBE_PT_3_Y, 0)
  3915. };
  3916. #endif // AUTO_BED_LEVELING_3POINT
  3917. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3918. struct linear_fit_data lsf_results;
  3919. incremental_LSF_reset(&lsf_results);
  3920. #endif
  3921. /**
  3922. * On the initial G29 fetch command parameters.
  3923. */
  3924. if (!g29_in_progress) {
  3925. #if ENABLED(PROBE_MANUALLY) || ENABLED(AUTO_BED_LEVELING_LINEAR)
  3926. abl_probe_index = -1;
  3927. #endif
  3928. abl_should_enable = planner.leveling_active;
  3929. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3930. if (parser.seen('W')) {
  3931. if (!leveling_is_valid()) {
  3932. SERIAL_ERROR_START();
  3933. SERIAL_ERRORLNPGM("No bilinear grid");
  3934. return;
  3935. }
  3936. const float rz = parser.seenval('Z') ? RAW_Z_POSITION(parser.value_linear_units()) : current_position[Z_AXIS];
  3937. if (!WITHIN(rz, -10, 10)) {
  3938. SERIAL_ERROR_START();
  3939. SERIAL_ERRORLNPGM("Bad Z value");
  3940. return;
  3941. }
  3942. const float rx = RAW_X_POSITION(parser.linearval('X', NAN)),
  3943. ry = RAW_Y_POSITION(parser.linearval('Y', NAN));
  3944. int8_t i = parser.byteval('I', -1),
  3945. j = parser.byteval('J', -1);
  3946. if (!isnan(rx) && !isnan(ry)) {
  3947. // Get nearest i / j from x / y
  3948. i = (rx - bilinear_start[X_AXIS] + 0.5 * xGridSpacing) / xGridSpacing;
  3949. j = (ry - bilinear_start[Y_AXIS] + 0.5 * yGridSpacing) / yGridSpacing;
  3950. i = constrain(i, 0, GRID_MAX_POINTS_X - 1);
  3951. j = constrain(j, 0, GRID_MAX_POINTS_Y - 1);
  3952. }
  3953. if (WITHIN(i, 0, GRID_MAX_POINTS_X - 1) && WITHIN(j, 0, GRID_MAX_POINTS_Y)) {
  3954. set_bed_leveling_enabled(false);
  3955. z_values[i][j] = rz;
  3956. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  3957. bed_level_virt_interpolate();
  3958. #endif
  3959. set_bed_leveling_enabled(abl_should_enable);
  3960. }
  3961. return;
  3962. } // parser.seen('W')
  3963. #endif
  3964. #if HAS_LEVELING
  3965. // Jettison bed leveling data
  3966. if (parser.seen('J')) {
  3967. reset_bed_level();
  3968. return;
  3969. }
  3970. #endif
  3971. verbose_level = parser.intval('V');
  3972. if (!WITHIN(verbose_level, 0, 4)) {
  3973. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-4).");
  3974. return;
  3975. }
  3976. dryrun = parser.boolval('D')
  3977. #if ENABLED(PROBE_MANUALLY)
  3978. || no_action
  3979. #endif
  3980. ;
  3981. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3982. do_topography_map = verbose_level > 2 || parser.boolval('T');
  3983. // X and Y specify points in each direction, overriding the default
  3984. // These values may be saved with the completed mesh
  3985. abl_grid_points_x = parser.intval('X', GRID_MAX_POINTS_X);
  3986. abl_grid_points_y = parser.intval('Y', GRID_MAX_POINTS_Y);
  3987. if (parser.seenval('P')) abl_grid_points_x = abl_grid_points_y = parser.value_int();
  3988. if (abl_grid_points_x < 2 || abl_grid_points_y < 2) {
  3989. SERIAL_PROTOCOLLNPGM("?Number of probe points is implausible (2 minimum).");
  3990. return;
  3991. }
  3992. abl2 = abl_grid_points_x * abl_grid_points_y;
  3993. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3994. zoffset = parser.linearval('Z');
  3995. #endif
  3996. #if ABL_GRID
  3997. xy_probe_feedrate_mm_s = MMM_TO_MMS(parser.linearval('S', XY_PROBE_SPEED));
  3998. left_probe_bed_position = parser.seenval('L') ? (int)RAW_X_POSITION(parser.value_linear_units()) : LEFT_PROBE_BED_POSITION;
  3999. right_probe_bed_position = parser.seenval('R') ? (int)RAW_X_POSITION(parser.value_linear_units()) : RIGHT_PROBE_BED_POSITION;
  4000. front_probe_bed_position = parser.seenval('F') ? (int)RAW_Y_POSITION(parser.value_linear_units()) : FRONT_PROBE_BED_POSITION;
  4001. back_probe_bed_position = parser.seenval('B') ? (int)RAW_Y_POSITION(parser.value_linear_units()) : BACK_PROBE_BED_POSITION;
  4002. const bool left_out_l = left_probe_bed_position < MIN_PROBE_X,
  4003. left_out = left_out_l || left_probe_bed_position > right_probe_bed_position - (MIN_PROBE_EDGE),
  4004. right_out_r = right_probe_bed_position > MAX_PROBE_X,
  4005. right_out = right_out_r || right_probe_bed_position < left_probe_bed_position + MIN_PROBE_EDGE,
  4006. front_out_f = front_probe_bed_position < MIN_PROBE_Y,
  4007. front_out = front_out_f || front_probe_bed_position > back_probe_bed_position - (MIN_PROBE_EDGE),
  4008. back_out_b = back_probe_bed_position > MAX_PROBE_Y,
  4009. back_out = back_out_b || back_probe_bed_position < front_probe_bed_position + MIN_PROBE_EDGE;
  4010. if (left_out || right_out || front_out || back_out) {
  4011. if (left_out) {
  4012. out_of_range_error(PSTR("(L)eft"));
  4013. left_probe_bed_position = left_out_l ? MIN_PROBE_X : right_probe_bed_position - (MIN_PROBE_EDGE);
  4014. }
  4015. if (right_out) {
  4016. out_of_range_error(PSTR("(R)ight"));
  4017. right_probe_bed_position = right_out_r ? MAX_PROBE_X : left_probe_bed_position + MIN_PROBE_EDGE;
  4018. }
  4019. if (front_out) {
  4020. out_of_range_error(PSTR("(F)ront"));
  4021. front_probe_bed_position = front_out_f ? MIN_PROBE_Y : back_probe_bed_position - (MIN_PROBE_EDGE);
  4022. }
  4023. if (back_out) {
  4024. out_of_range_error(PSTR("(B)ack"));
  4025. back_probe_bed_position = back_out_b ? MAX_PROBE_Y : front_probe_bed_position + MIN_PROBE_EDGE;
  4026. }
  4027. return;
  4028. }
  4029. // probe at the points of a lattice grid
  4030. xGridSpacing = (right_probe_bed_position - left_probe_bed_position) / (abl_grid_points_x - 1);
  4031. yGridSpacing = (back_probe_bed_position - front_probe_bed_position) / (abl_grid_points_y - 1);
  4032. #endif // ABL_GRID
  4033. if (verbose_level > 0) {
  4034. SERIAL_PROTOCOLLNPGM("G29 Auto Bed Leveling");
  4035. if (dryrun) SERIAL_PROTOCOLLNPGM("Running in DRY-RUN mode");
  4036. }
  4037. stepper.synchronize();
  4038. // Disable auto bed leveling during G29
  4039. planner.leveling_active = false;
  4040. if (!dryrun) {
  4041. // Re-orient the current position without leveling
  4042. // based on where the steppers are positioned.
  4043. set_current_from_steppers_for_axis(ALL_AXES);
  4044. // Sync the planner to where the steppers stopped
  4045. SYNC_PLAN_POSITION_KINEMATIC();
  4046. }
  4047. #if HAS_BED_PROBE
  4048. // Deploy the probe. Probe will raise if needed.
  4049. if (DEPLOY_PROBE()) {
  4050. planner.leveling_active = abl_should_enable;
  4051. return;
  4052. }
  4053. #endif
  4054. if (!faux) setup_for_endstop_or_probe_move();
  4055. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4056. #if ENABLED(PROBE_MANUALLY)
  4057. if (!no_action)
  4058. #endif
  4059. if ( xGridSpacing != bilinear_grid_spacing[X_AXIS]
  4060. || yGridSpacing != bilinear_grid_spacing[Y_AXIS]
  4061. || left_probe_bed_position != bilinear_start[X_AXIS]
  4062. || front_probe_bed_position != bilinear_start[Y_AXIS]
  4063. ) {
  4064. if (dryrun) {
  4065. // Before reset bed level, re-enable to correct the position
  4066. planner.leveling_active = abl_should_enable;
  4067. }
  4068. // Reset grid to 0.0 or "not probed". (Also disables ABL)
  4069. reset_bed_level();
  4070. // Initialize a grid with the given dimensions
  4071. bilinear_grid_spacing[X_AXIS] = xGridSpacing;
  4072. bilinear_grid_spacing[Y_AXIS] = yGridSpacing;
  4073. bilinear_start[X_AXIS] = left_probe_bed_position;
  4074. bilinear_start[Y_AXIS] = front_probe_bed_position;
  4075. // Can't re-enable (on error) until the new grid is written
  4076. abl_should_enable = false;
  4077. }
  4078. #endif // AUTO_BED_LEVELING_BILINEAR
  4079. #if ENABLED(AUTO_BED_LEVELING_3POINT)
  4080. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4081. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> 3-point Leveling");
  4082. #endif
  4083. // Probe at 3 arbitrary points
  4084. points[0].z = points[1].z = points[2].z = 0;
  4085. #endif // AUTO_BED_LEVELING_3POINT
  4086. } // !g29_in_progress
  4087. #if ENABLED(PROBE_MANUALLY)
  4088. // For manual probing, get the next index to probe now.
  4089. // On the first probe this will be incremented to 0.
  4090. if (!no_action) {
  4091. ++abl_probe_index;
  4092. g29_in_progress = true;
  4093. }
  4094. // Abort current G29 procedure, go back to idle state
  4095. if (seenA && g29_in_progress) {
  4096. SERIAL_PROTOCOLLNPGM("Manual G29 aborted");
  4097. #if HAS_SOFTWARE_ENDSTOPS
  4098. soft_endstops_enabled = enable_soft_endstops;
  4099. #endif
  4100. planner.leveling_active = abl_should_enable;
  4101. g29_in_progress = false;
  4102. #if ENABLED(LCD_BED_LEVELING)
  4103. lcd_wait_for_move = false;
  4104. #endif
  4105. }
  4106. // Query G29 status
  4107. if (verbose_level || seenQ) {
  4108. SERIAL_PROTOCOLPGM("Manual G29 ");
  4109. if (g29_in_progress) {
  4110. SERIAL_PROTOCOLPAIR("point ", min(abl_probe_index + 1, abl2));
  4111. SERIAL_PROTOCOLLNPAIR(" of ", abl2);
  4112. }
  4113. else
  4114. SERIAL_PROTOCOLLNPGM("idle");
  4115. }
  4116. if (no_action) return;
  4117. if (abl_probe_index == 0) {
  4118. // For the initial G29 save software endstop state
  4119. #if HAS_SOFTWARE_ENDSTOPS
  4120. enable_soft_endstops = soft_endstops_enabled;
  4121. #endif
  4122. }
  4123. else {
  4124. // For G29 after adjusting Z.
  4125. // Save the previous Z before going to the next point
  4126. measured_z = current_position[Z_AXIS];
  4127. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4128. mean += measured_z;
  4129. eqnBVector[abl_probe_index] = measured_z;
  4130. eqnAMatrix[abl_probe_index + 0 * abl2] = xProbe;
  4131. eqnAMatrix[abl_probe_index + 1 * abl2] = yProbe;
  4132. eqnAMatrix[abl_probe_index + 2 * abl2] = 1;
  4133. incremental_LSF(&lsf_results, xProbe, yProbe, measured_z);
  4134. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4135. z_values[xCount][yCount] = measured_z + zoffset;
  4136. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4137. if (DEBUGGING(LEVELING)) {
  4138. SERIAL_PROTOCOLPAIR("Save X", xCount);
  4139. SERIAL_PROTOCOLPAIR(" Y", yCount);
  4140. SERIAL_PROTOCOLLNPAIR(" Z", measured_z + zoffset);
  4141. }
  4142. #endif
  4143. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  4144. points[abl_probe_index].z = measured_z;
  4145. #endif
  4146. }
  4147. //
  4148. // If there's another point to sample, move there with optional lift.
  4149. //
  4150. #if ABL_GRID
  4151. // Skip any unreachable points
  4152. while (abl_probe_index < abl2) {
  4153. // Set xCount, yCount based on abl_probe_index, with zig-zag
  4154. PR_OUTER_VAR = abl_probe_index / PR_INNER_END;
  4155. PR_INNER_VAR = abl_probe_index - (PR_OUTER_VAR * PR_INNER_END);
  4156. // Probe in reverse order for every other row/column
  4157. bool zig = (PR_OUTER_VAR & 1); // != ((PR_OUTER_END) & 1);
  4158. if (zig) PR_INNER_VAR = (PR_INNER_END - 1) - PR_INNER_VAR;
  4159. const float xBase = xCount * xGridSpacing + left_probe_bed_position,
  4160. yBase = yCount * yGridSpacing + front_probe_bed_position;
  4161. xProbe = FLOOR(xBase + (xBase < 0 ? 0 : 0.5));
  4162. yProbe = FLOOR(yBase + (yBase < 0 ? 0 : 0.5));
  4163. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4164. indexIntoAB[xCount][yCount] = abl_probe_index;
  4165. #endif
  4166. // Keep looping till a reachable point is found
  4167. if (position_is_reachable(xProbe, yProbe)) break;
  4168. ++abl_probe_index;
  4169. }
  4170. // Is there a next point to move to?
  4171. if (abl_probe_index < abl2) {
  4172. _manual_goto_xy(xProbe, yProbe); // Can be used here too!
  4173. #if HAS_SOFTWARE_ENDSTOPS
  4174. // Disable software endstops to allow manual adjustment
  4175. // If G29 is not completed, they will not be re-enabled
  4176. soft_endstops_enabled = false;
  4177. #endif
  4178. return;
  4179. }
  4180. else {
  4181. // Leveling done! Fall through to G29 finishing code below
  4182. SERIAL_PROTOCOLLNPGM("Grid probing done.");
  4183. // Re-enable software endstops, if needed
  4184. #if HAS_SOFTWARE_ENDSTOPS
  4185. soft_endstops_enabled = enable_soft_endstops;
  4186. #endif
  4187. }
  4188. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  4189. // Probe at 3 arbitrary points
  4190. if (abl_probe_index < 3) {
  4191. xProbe = points[abl_probe_index].x;
  4192. yProbe = points[abl_probe_index].y;
  4193. #if HAS_SOFTWARE_ENDSTOPS
  4194. // Disable software endstops to allow manual adjustment
  4195. // If G29 is not completed, they will not be re-enabled
  4196. soft_endstops_enabled = false;
  4197. #endif
  4198. return;
  4199. }
  4200. else {
  4201. SERIAL_PROTOCOLLNPGM("3-point probing done.");
  4202. // Re-enable software endstops, if needed
  4203. #if HAS_SOFTWARE_ENDSTOPS
  4204. soft_endstops_enabled = enable_soft_endstops;
  4205. #endif
  4206. if (!dryrun) {
  4207. vector_3 planeNormal = vector_3::cross(points[0] - points[1], points[2] - points[1]).get_normal();
  4208. if (planeNormal.z < 0) {
  4209. planeNormal.x *= -1;
  4210. planeNormal.y *= -1;
  4211. planeNormal.z *= -1;
  4212. }
  4213. planner.bed_level_matrix = matrix_3x3::create_look_at(planeNormal);
  4214. // Can't re-enable (on error) until the new grid is written
  4215. abl_should_enable = false;
  4216. }
  4217. }
  4218. #endif // AUTO_BED_LEVELING_3POINT
  4219. #else // !PROBE_MANUALLY
  4220. {
  4221. const bool stow_probe_after_each = parser.boolval('E');
  4222. #if ABL_GRID
  4223. bool zig = PR_OUTER_END & 1; // Always end at RIGHT and BACK_PROBE_BED_POSITION
  4224. // Outer loop is Y with PROBE_Y_FIRST disabled
  4225. for (uint8_t PR_OUTER_VAR = 0; PR_OUTER_VAR < PR_OUTER_END && !isnan(measured_z); PR_OUTER_VAR++) {
  4226. int8_t inStart, inStop, inInc;
  4227. if (zig) { // away from origin
  4228. inStart = 0;
  4229. inStop = PR_INNER_END;
  4230. inInc = 1;
  4231. }
  4232. else { // towards origin
  4233. inStart = PR_INNER_END - 1;
  4234. inStop = -1;
  4235. inInc = -1;
  4236. }
  4237. zig ^= true; // zag
  4238. // Inner loop is Y with PROBE_Y_FIRST enabled
  4239. for (int8_t PR_INNER_VAR = inStart; PR_INNER_VAR != inStop; PR_INNER_VAR += inInc) {
  4240. float xBase = left_probe_bed_position + xGridSpacing * xCount,
  4241. yBase = front_probe_bed_position + yGridSpacing * yCount;
  4242. xProbe = FLOOR(xBase + (xBase < 0 ? 0 : 0.5));
  4243. yProbe = FLOOR(yBase + (yBase < 0 ? 0 : 0.5));
  4244. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4245. indexIntoAB[xCount][yCount] = ++abl_probe_index; // 0...
  4246. #endif
  4247. #if IS_KINEMATIC
  4248. // Avoid probing outside the round or hexagonal area
  4249. if (!position_is_reachable_by_probe(xProbe, yProbe)) continue;
  4250. #endif
  4251. measured_z = faux ? 0.001 * random(-100, 101) : probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
  4252. if (isnan(measured_z)) {
  4253. planner.leveling_active = abl_should_enable;
  4254. break;
  4255. }
  4256. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4257. mean += measured_z;
  4258. eqnBVector[abl_probe_index] = measured_z;
  4259. eqnAMatrix[abl_probe_index + 0 * abl2] = xProbe;
  4260. eqnAMatrix[abl_probe_index + 1 * abl2] = yProbe;
  4261. eqnAMatrix[abl_probe_index + 2 * abl2] = 1;
  4262. incremental_LSF(&lsf_results, xProbe, yProbe, measured_z);
  4263. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4264. z_values[xCount][yCount] = measured_z + zoffset;
  4265. #endif
  4266. abl_should_enable = false;
  4267. idle();
  4268. } // inner
  4269. } // outer
  4270. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  4271. // Probe at 3 arbitrary points
  4272. for (uint8_t i = 0; i < 3; ++i) {
  4273. // Retain the last probe position
  4274. xProbe = points[i].x;
  4275. yProbe = points[i].y;
  4276. measured_z = faux ? 0.001 * random(-100, 101) : probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
  4277. if (isnan(measured_z)) {
  4278. planner.leveling_active = abl_should_enable;
  4279. break;
  4280. }
  4281. points[i].z = measured_z;
  4282. }
  4283. if (!dryrun && !isnan(measured_z)) {
  4284. vector_3 planeNormal = vector_3::cross(points[0] - points[1], points[2] - points[1]).get_normal();
  4285. if (planeNormal.z < 0) {
  4286. planeNormal.x *= -1;
  4287. planeNormal.y *= -1;
  4288. planeNormal.z *= -1;
  4289. }
  4290. planner.bed_level_matrix = matrix_3x3::create_look_at(planeNormal);
  4291. // Can't re-enable (on error) until the new grid is written
  4292. abl_should_enable = false;
  4293. }
  4294. #endif // AUTO_BED_LEVELING_3POINT
  4295. // Raise to _Z_CLEARANCE_DEPLOY_PROBE. Stow the probe.
  4296. if (STOW_PROBE()) {
  4297. planner.leveling_active = abl_should_enable;
  4298. measured_z = NAN;
  4299. }
  4300. }
  4301. #endif // !PROBE_MANUALLY
  4302. //
  4303. // G29 Finishing Code
  4304. //
  4305. // Unless this is a dry run, auto bed leveling will
  4306. // definitely be enabled after this point.
  4307. //
  4308. // If code above wants to continue leveling, it should
  4309. // return or loop before this point.
  4310. //
  4311. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4312. if (DEBUGGING(LEVELING)) DEBUG_POS("> probing complete", current_position);
  4313. #endif
  4314. #if ENABLED(PROBE_MANUALLY)
  4315. g29_in_progress = false;
  4316. #if ENABLED(LCD_BED_LEVELING)
  4317. lcd_wait_for_move = false;
  4318. #endif
  4319. #endif
  4320. // Calculate leveling, print reports, correct the position
  4321. if (!isnan(measured_z)) {
  4322. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4323. if (!dryrun) extrapolate_unprobed_bed_level();
  4324. print_bilinear_leveling_grid();
  4325. refresh_bed_level();
  4326. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  4327. print_bilinear_leveling_grid_virt();
  4328. #endif
  4329. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  4330. // For LINEAR leveling calculate matrix, print reports, correct the position
  4331. /**
  4332. * solve the plane equation ax + by + d = z
  4333. * A is the matrix with rows [x y 1] for all the probed points
  4334. * B is the vector of the Z positions
  4335. * the normal vector to the plane is formed by the coefficients of the
  4336. * plane equation in the standard form, which is Vx*x+Vy*y+Vz*z+d = 0
  4337. * so Vx = -a Vy = -b Vz = 1 (we want the vector facing towards positive Z
  4338. */
  4339. float plane_equation_coefficients[3];
  4340. finish_incremental_LSF(&lsf_results);
  4341. plane_equation_coefficients[0] = -lsf_results.A; // We should be able to eliminate the '-' on these three lines and down below
  4342. plane_equation_coefficients[1] = -lsf_results.B; // but that is not yet tested.
  4343. plane_equation_coefficients[2] = -lsf_results.D;
  4344. mean /= abl2;
  4345. if (verbose_level) {
  4346. SERIAL_PROTOCOLPGM("Eqn coefficients: a: ");
  4347. SERIAL_PROTOCOL_F(plane_equation_coefficients[0], 8);
  4348. SERIAL_PROTOCOLPGM(" b: ");
  4349. SERIAL_PROTOCOL_F(plane_equation_coefficients[1], 8);
  4350. SERIAL_PROTOCOLPGM(" d: ");
  4351. SERIAL_PROTOCOL_F(plane_equation_coefficients[2], 8);
  4352. SERIAL_EOL();
  4353. if (verbose_level > 2) {
  4354. SERIAL_PROTOCOLPGM("Mean of sampled points: ");
  4355. SERIAL_PROTOCOL_F(mean, 8);
  4356. SERIAL_EOL();
  4357. }
  4358. }
  4359. // Create the matrix but don't correct the position yet
  4360. if (!dryrun)
  4361. planner.bed_level_matrix = matrix_3x3::create_look_at(
  4362. vector_3(-plane_equation_coefficients[0], -plane_equation_coefficients[1], 1) // We can eliminate the '-' here and up above
  4363. );
  4364. // Show the Topography map if enabled
  4365. if (do_topography_map) {
  4366. SERIAL_PROTOCOLLNPGM("\nBed Height Topography:\n"
  4367. " +--- BACK --+\n"
  4368. " | |\n"
  4369. " L | (+) | R\n"
  4370. " E | | I\n"
  4371. " F | (-) N (+) | G\n"
  4372. " T | | H\n"
  4373. " | (-) | T\n"
  4374. " | |\n"
  4375. " O-- FRONT --+\n"
  4376. " (0,0)");
  4377. float min_diff = 999;
  4378. for (int8_t yy = abl_grid_points_y - 1; yy >= 0; yy--) {
  4379. for (uint8_t xx = 0; xx < abl_grid_points_x; xx++) {
  4380. int ind = indexIntoAB[xx][yy];
  4381. float diff = eqnBVector[ind] - mean,
  4382. x_tmp = eqnAMatrix[ind + 0 * abl2],
  4383. y_tmp = eqnAMatrix[ind + 1 * abl2],
  4384. z_tmp = 0;
  4385. apply_rotation_xyz(planner.bed_level_matrix, x_tmp, y_tmp, z_tmp);
  4386. NOMORE(min_diff, eqnBVector[ind] - z_tmp);
  4387. if (diff >= 0.0)
  4388. SERIAL_PROTOCOLPGM(" +"); // Include + for column alignment
  4389. else
  4390. SERIAL_PROTOCOLCHAR(' ');
  4391. SERIAL_PROTOCOL_F(diff, 5);
  4392. } // xx
  4393. SERIAL_EOL();
  4394. } // yy
  4395. SERIAL_EOL();
  4396. if (verbose_level > 3) {
  4397. SERIAL_PROTOCOLLNPGM("\nCorrected Bed Height vs. Bed Topology:");
  4398. for (int8_t yy = abl_grid_points_y - 1; yy >= 0; yy--) {
  4399. for (uint8_t xx = 0; xx < abl_grid_points_x; xx++) {
  4400. int ind = indexIntoAB[xx][yy];
  4401. float x_tmp = eqnAMatrix[ind + 0 * abl2],
  4402. y_tmp = eqnAMatrix[ind + 1 * abl2],
  4403. z_tmp = 0;
  4404. apply_rotation_xyz(planner.bed_level_matrix, x_tmp, y_tmp, z_tmp);
  4405. float diff = eqnBVector[ind] - z_tmp - min_diff;
  4406. if (diff >= 0.0)
  4407. SERIAL_PROTOCOLPGM(" +");
  4408. // Include + for column alignment
  4409. else
  4410. SERIAL_PROTOCOLCHAR(' ');
  4411. SERIAL_PROTOCOL_F(diff, 5);
  4412. } // xx
  4413. SERIAL_EOL();
  4414. } // yy
  4415. SERIAL_EOL();
  4416. }
  4417. } //do_topography_map
  4418. #endif // AUTO_BED_LEVELING_LINEAR
  4419. #if ABL_PLANAR
  4420. // For LINEAR and 3POINT leveling correct the current position
  4421. if (verbose_level > 0)
  4422. planner.bed_level_matrix.debug(PSTR("\n\nBed Level Correction Matrix:"));
  4423. if (!dryrun) {
  4424. //
  4425. // Correct the current XYZ position based on the tilted plane.
  4426. //
  4427. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4428. if (DEBUGGING(LEVELING)) DEBUG_POS("G29 uncorrected XYZ", current_position);
  4429. #endif
  4430. float converted[XYZ];
  4431. COPY(converted, current_position);
  4432. planner.leveling_active = true;
  4433. planner.unapply_leveling(converted); // use conversion machinery
  4434. planner.leveling_active = false;
  4435. // Use the last measured distance to the bed, if possible
  4436. if ( NEAR(current_position[X_AXIS], xProbe - (X_PROBE_OFFSET_FROM_EXTRUDER))
  4437. && NEAR(current_position[Y_AXIS], yProbe - (Y_PROBE_OFFSET_FROM_EXTRUDER))
  4438. ) {
  4439. const float simple_z = current_position[Z_AXIS] - measured_z;
  4440. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4441. if (DEBUGGING(LEVELING)) {
  4442. SERIAL_ECHOPAIR("Z from Probe:", simple_z);
  4443. SERIAL_ECHOPAIR(" Matrix:", converted[Z_AXIS]);
  4444. SERIAL_ECHOLNPAIR(" Discrepancy:", simple_z - converted[Z_AXIS]);
  4445. }
  4446. #endif
  4447. converted[Z_AXIS] = simple_z;
  4448. }
  4449. // The rotated XY and corrected Z are now current_position
  4450. COPY(current_position, converted);
  4451. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4452. if (DEBUGGING(LEVELING)) DEBUG_POS("G29 corrected XYZ", current_position);
  4453. #endif
  4454. }
  4455. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4456. if (!dryrun) {
  4457. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4458. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("G29 uncorrected Z:", current_position[Z_AXIS]);
  4459. #endif
  4460. // Unapply the offset because it is going to be immediately applied
  4461. // and cause compensation movement in Z
  4462. current_position[Z_AXIS] -= bilinear_z_offset(current_position);
  4463. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4464. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR(" corrected Z:", current_position[Z_AXIS]);
  4465. #endif
  4466. }
  4467. #endif // ABL_PLANAR
  4468. #ifdef Z_PROBE_END_SCRIPT
  4469. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4470. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("Z Probe End Script: ", Z_PROBE_END_SCRIPT);
  4471. #endif
  4472. enqueue_and_echo_commands_P(PSTR(Z_PROBE_END_SCRIPT));
  4473. stepper.synchronize();
  4474. #endif
  4475. // Auto Bed Leveling is complete! Enable if possible.
  4476. planner.leveling_active = dryrun ? abl_should_enable : true;
  4477. } // !isnan(measured_z)
  4478. // Restore state after probing
  4479. if (!faux) clean_up_after_endstop_or_probe_move();
  4480. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4481. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G29");
  4482. #endif
  4483. report_current_position();
  4484. KEEPALIVE_STATE(IN_HANDLER);
  4485. if (planner.leveling_active)
  4486. SYNC_PLAN_POSITION_KINEMATIC();
  4487. }
  4488. #endif // OLDSCHOOL_ABL
  4489. #if HAS_BED_PROBE
  4490. /**
  4491. * G30: Do a single Z probe at the current XY
  4492. *
  4493. * Parameters:
  4494. *
  4495. * X Probe X position (default current X)
  4496. * Y Probe Y position (default current Y)
  4497. * E Engage the probe for each probe
  4498. */
  4499. inline void gcode_G30() {
  4500. const float xpos = parser.linearval('X', current_position[X_AXIS] + X_PROBE_OFFSET_FROM_EXTRUDER),
  4501. ypos = parser.linearval('Y', current_position[Y_AXIS] + Y_PROBE_OFFSET_FROM_EXTRUDER);
  4502. if (!position_is_reachable_by_probe(xpos, ypos)) return;
  4503. // Disable leveling so the planner won't mess with us
  4504. #if HAS_LEVELING
  4505. set_bed_leveling_enabled(false);
  4506. #endif
  4507. setup_for_endstop_or_probe_move();
  4508. const float measured_z = probe_pt(xpos, ypos, parser.boolval('E'), 1);
  4509. if (!isnan(measured_z)) {
  4510. SERIAL_PROTOCOLPAIR("Bed X: ", FIXFLOAT(xpos));
  4511. SERIAL_PROTOCOLPAIR(" Y: ", FIXFLOAT(ypos));
  4512. SERIAL_PROTOCOLLNPAIR(" Z: ", FIXFLOAT(measured_z));
  4513. }
  4514. clean_up_after_endstop_or_probe_move();
  4515. report_current_position();
  4516. }
  4517. #if ENABLED(Z_PROBE_SLED)
  4518. /**
  4519. * G31: Deploy the Z probe
  4520. */
  4521. inline void gcode_G31() { DEPLOY_PROBE(); }
  4522. /**
  4523. * G32: Stow the Z probe
  4524. */
  4525. inline void gcode_G32() { STOW_PROBE(); }
  4526. #endif // Z_PROBE_SLED
  4527. #endif // HAS_BED_PROBE
  4528. #if PROBE_SELECTED
  4529. #if ENABLED(DELTA_AUTO_CALIBRATION)
  4530. constexpr uint8_t _7P_STEP = 1, // 7-point step - to change number of calibration points
  4531. _4P_STEP = _7P_STEP * 2, // 4-point step
  4532. NPP = _7P_STEP * 6; // number of calibration points on the radius
  4533. enum CalEnum { // the 7 main calibration points - add definitions if needed
  4534. CEN = 0,
  4535. __A = 1,
  4536. _AB = __A + _7P_STEP,
  4537. __B = _AB + _7P_STEP,
  4538. _BC = __B + _7P_STEP,
  4539. __C = _BC + _7P_STEP,
  4540. _CA = __C + _7P_STEP,
  4541. };
  4542. #define LOOP_CAL_PT(VAR, S, N) for (uint8_t VAR=S; VAR<=NPP; VAR+=N)
  4543. #define F_LOOP_CAL_PT(VAR, S, N) for (float VAR=S; VAR<NPP+0.9999; VAR+=N)
  4544. #define I_LOOP_CAL_PT(VAR, S, N) for (float VAR=S; VAR>CEN+0.9999; VAR-=N)
  4545. #define LOOP_CAL_ALL(VAR) LOOP_CAL_PT(VAR, CEN, 1)
  4546. #define LOOP_CAL_RAD(VAR) LOOP_CAL_PT(VAR, __A, _7P_STEP)
  4547. #define LOOP_CAL_ACT(VAR, _4P, _OP) LOOP_CAL_PT(VAR, _OP ? _AB : __A, _4P ? _4P_STEP : _7P_STEP)
  4548. static void print_signed_float(const char * const prefix, const float &f) {
  4549. SERIAL_PROTOCOLPGM(" ");
  4550. serialprintPGM(prefix);
  4551. SERIAL_PROTOCOLCHAR(':');
  4552. if (f >= 0) SERIAL_CHAR('+');
  4553. SERIAL_PROTOCOL_F(f, 2);
  4554. }
  4555. static void print_G33_settings(const bool end_stops, const bool tower_angles) {
  4556. SERIAL_PROTOCOLPAIR(".Height:", DELTA_HEIGHT + home_offset[Z_AXIS]);
  4557. if (end_stops) {
  4558. print_signed_float(PSTR("Ex"), delta_endstop_adj[A_AXIS]);
  4559. print_signed_float(PSTR("Ey"), delta_endstop_adj[B_AXIS]);
  4560. print_signed_float(PSTR("Ez"), delta_endstop_adj[C_AXIS]);
  4561. }
  4562. if (end_stops && tower_angles) {
  4563. SERIAL_PROTOCOLPAIR(" Radius:", delta_radius);
  4564. SERIAL_EOL();
  4565. SERIAL_CHAR('.');
  4566. SERIAL_PROTOCOL_SP(13);
  4567. }
  4568. if (tower_angles) {
  4569. print_signed_float(PSTR("Tx"), delta_tower_angle_trim[A_AXIS]);
  4570. print_signed_float(PSTR("Ty"), delta_tower_angle_trim[B_AXIS]);
  4571. print_signed_float(PSTR("Tz"), delta_tower_angle_trim[C_AXIS]);
  4572. }
  4573. if ((!end_stops && tower_angles) || (end_stops && !tower_angles)) { // XOR
  4574. SERIAL_PROTOCOLPAIR(" Radius:", delta_radius);
  4575. }
  4576. SERIAL_EOL();
  4577. }
  4578. static void print_G33_results(const float z_at_pt[NPP + 1], const bool tower_points, const bool opposite_points) {
  4579. SERIAL_PROTOCOLPGM(". ");
  4580. print_signed_float(PSTR("c"), z_at_pt[CEN]);
  4581. if (tower_points) {
  4582. print_signed_float(PSTR(" x"), z_at_pt[__A]);
  4583. print_signed_float(PSTR(" y"), z_at_pt[__B]);
  4584. print_signed_float(PSTR(" z"), z_at_pt[__C]);
  4585. }
  4586. if (tower_points && opposite_points) {
  4587. SERIAL_EOL();
  4588. SERIAL_CHAR('.');
  4589. SERIAL_PROTOCOL_SP(13);
  4590. }
  4591. if (opposite_points) {
  4592. print_signed_float(PSTR("yz"), z_at_pt[_BC]);
  4593. print_signed_float(PSTR("zx"), z_at_pt[_CA]);
  4594. print_signed_float(PSTR("xy"), z_at_pt[_AB]);
  4595. }
  4596. SERIAL_EOL();
  4597. }
  4598. /**
  4599. * After G33:
  4600. * - Move to the print ceiling (DELTA_HOME_TO_SAFE_ZONE only)
  4601. * - Stow the probe
  4602. * - Restore endstops state
  4603. * - Select the old tool, if needed
  4604. */
  4605. static void G33_cleanup(
  4606. #if HOTENDS > 1
  4607. const uint8_t old_tool_index
  4608. #endif
  4609. ) {
  4610. #if ENABLED(DELTA_HOME_TO_SAFE_ZONE)
  4611. do_blocking_move_to_z(delta_clip_start_height);
  4612. #endif
  4613. STOW_PROBE();
  4614. clean_up_after_endstop_or_probe_move();
  4615. #if HOTENDS > 1
  4616. tool_change(old_tool_index, 0, true);
  4617. #endif
  4618. }
  4619. 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) {
  4620. const bool _0p_calibration = probe_points == 0,
  4621. _1p_calibration = probe_points == 1,
  4622. _4p_calibration = probe_points == 2,
  4623. _4p_opposite_points = _4p_calibration && !towers_set,
  4624. _7p_calibration = probe_points >= 3 || probe_points == 0,
  4625. _7p_no_intermediates = probe_points == 3,
  4626. _7p_1_intermediates = probe_points == 4,
  4627. _7p_2_intermediates = probe_points == 5,
  4628. _7p_4_intermediates = probe_points == 6,
  4629. _7p_6_intermediates = probe_points == 7,
  4630. _7p_8_intermediates = probe_points == 8,
  4631. _7p_11_intermediates = probe_points == 9,
  4632. _7p_14_intermediates = probe_points == 10,
  4633. _7p_intermed_points = probe_points >= 4,
  4634. _7p_6_centre = probe_points >= 5 && probe_points <= 7,
  4635. _7p_9_centre = probe_points >= 8;
  4636. #if DISABLED(PROBE_MANUALLY)
  4637. const float dx = (X_PROBE_OFFSET_FROM_EXTRUDER),
  4638. dy = (Y_PROBE_OFFSET_FROM_EXTRUDER);
  4639. #endif
  4640. LOOP_CAL_ALL(axis) z_at_pt[axis] = 0.0;
  4641. if (!_0p_calibration) {
  4642. if (!_7p_no_intermediates && !_7p_4_intermediates && !_7p_11_intermediates) { // probe the center
  4643. #if ENABLED(PROBE_MANUALLY)
  4644. z_at_pt[CEN] += lcd_probe_pt(0, 0);
  4645. #else
  4646. z_at_pt[CEN] += probe_pt(dx, dy, stow_after_each, 1, false);
  4647. #endif
  4648. }
  4649. if (_7p_calibration) { // probe extra center points
  4650. const float start = _7p_9_centre ? _CA + _7P_STEP / 3.0 : _7p_6_centre ? _CA : __C,
  4651. steps = _7p_9_centre ? _4P_STEP / 3.0 : _7p_6_centre ? _7P_STEP : _4P_STEP;
  4652. I_LOOP_CAL_PT(axis, start, steps) {
  4653. const float a = RADIANS(210 + (360 / NPP) * (axis - 1)),
  4654. r = delta_calibration_radius * 0.1;
  4655. #if ENABLED(PROBE_MANUALLY)
  4656. z_at_pt[CEN] += lcd_probe_pt(cos(a) * r, sin(a) * r);
  4657. #else
  4658. z_at_pt[CEN] += probe_pt(cos(a) * r + dx, sin(a) * r + dy, stow_after_each, 1);
  4659. #endif
  4660. }
  4661. z_at_pt[CEN] /= float(_7p_2_intermediates ? 7 : probe_points);
  4662. }
  4663. if (!_1p_calibration) { // probe the radius
  4664. const CalEnum start = _4p_opposite_points ? _AB : __A;
  4665. const float steps = _7p_14_intermediates ? _7P_STEP / 15.0 : // 15r * 6 + 10c = 100
  4666. _7p_11_intermediates ? _7P_STEP / 12.0 : // 12r * 6 + 9c = 81
  4667. _7p_8_intermediates ? _7P_STEP / 9.0 : // 9r * 6 + 10c = 64
  4668. _7p_6_intermediates ? _7P_STEP / 7.0 : // 7r * 6 + 7c = 49
  4669. _7p_4_intermediates ? _7P_STEP / 5.0 : // 5r * 6 + 6c = 36
  4670. _7p_2_intermediates ? _7P_STEP / 3.0 : // 3r * 6 + 7c = 25
  4671. _7p_1_intermediates ? _7P_STEP / 2.0 : // 2r * 6 + 4c = 16
  4672. _7p_no_intermediates ? _7P_STEP : // 1r * 6 + 3c = 9
  4673. _4P_STEP; // .5r * 6 + 1c = 4
  4674. bool zig_zag = true;
  4675. F_LOOP_CAL_PT(axis, start, _7p_9_centre ? steps * 3 : steps) {
  4676. const int8_t offset = _7p_9_centre ? 1 : 0;
  4677. for (int8_t circle = -offset; circle <= offset; circle++) {
  4678. const float a = RADIANS(210 + (360 / NPP) * (axis - 1)),
  4679. r = delta_calibration_radius * (1 + 0.1 * (zig_zag ? circle : - circle)),
  4680. interpol = fmod(axis, 1);
  4681. #if ENABLED(PROBE_MANUALLY)
  4682. float z_temp = lcd_probe_pt(cos(a) * r, sin(a) * r);
  4683. #else
  4684. float z_temp = probe_pt(cos(a) * r + dx, sin(a) * r + dy, stow_after_each, 1);
  4685. #endif
  4686. // split probe point to neighbouring calibration points
  4687. z_at_pt[round(axis - interpol + NPP - 1) % NPP + 1] += z_temp * sq(cos(RADIANS(interpol * 90)));
  4688. z_at_pt[round(axis - interpol) % NPP + 1] += z_temp * sq(sin(RADIANS(interpol * 90)));
  4689. }
  4690. zig_zag = !zig_zag;
  4691. }
  4692. if (_7p_intermed_points)
  4693. LOOP_CAL_RAD(axis) {
  4694. /*
  4695. // average intermediate points to towers and opposites - only required with _7P_STEP >= 2
  4696. for (int8_t i = 1; i < _7P_STEP; i++) {
  4697. const float interpol = i * (1.0 / _7P_STEP);
  4698. z_at_pt[axis] += (z_at_pt[(axis + NPP - i - 1) % NPP + 1]
  4699. + z_at_pt[axis + i]) * sq(cos(RADIANS(interpol * 90)));
  4700. }
  4701. */
  4702. z_at_pt[axis] /= _7P_STEP / steps;
  4703. }
  4704. }
  4705. float S1 = z_at_pt[CEN],
  4706. S2 = sq(z_at_pt[CEN]);
  4707. int16_t N = 1;
  4708. if (!_1p_calibration) { // std dev from zero plane
  4709. LOOP_CAL_ACT(axis, _4p_calibration, _4p_opposite_points) {
  4710. S1 += z_at_pt[axis];
  4711. S2 += sq(z_at_pt[axis]);
  4712. N++;
  4713. }
  4714. return round(SQRT(S2 / N) * 1000.0) / 1000.0 + 0.00001;
  4715. }
  4716. }
  4717. return 0.00001;
  4718. }
  4719. #if DISABLED(PROBE_MANUALLY)
  4720. static void G33_auto_tune() {
  4721. float z_at_pt[NPP + 1] = { 0.0 },
  4722. z_at_pt_base[NPP + 1] = { 0.0 },
  4723. z_temp, h_fac = 0.0, r_fac = 0.0, a_fac = 0.0, norm = 0.8;
  4724. #define ZP(N,I) ((N) * z_at_pt[I])
  4725. #define Z06(I) ZP(6, I)
  4726. #define Z03(I) ZP(3, I)
  4727. #define Z02(I) ZP(2, I)
  4728. #define Z01(I) ZP(1, I)
  4729. #define Z32(I) ZP(3/2, I)
  4730. SERIAL_PROTOCOLPGM("AUTO TUNE baseline");
  4731. SERIAL_EOL();
  4732. probe_G33_points(z_at_pt_base, 3, true, false);
  4733. print_G33_results(z_at_pt_base, true, true);
  4734. LOOP_XYZ(axis) {
  4735. delta_endstop_adj[axis] -= 1.0;
  4736. endstops.enable(true);
  4737. if (!home_delta()) return;
  4738. endstops.not_homing();
  4739. SERIAL_PROTOCOLPGM("Tuning E");
  4740. SERIAL_CHAR(tolower(axis_codes[axis]));
  4741. SERIAL_EOL();
  4742. probe_G33_points(z_at_pt, 3, true, false);
  4743. LOOP_CAL_ALL(axis) z_at_pt[axis] -= z_at_pt_base[axis];
  4744. print_G33_results(z_at_pt, true, true);
  4745. delta_endstop_adj[axis] += 1.0;
  4746. switch (axis) {
  4747. case A_AXIS :
  4748. h_fac += 4.0 / (Z03(CEN) +Z01(__A) +Z32(_CA) +Z32(_AB)); // Offset by X-tower end-stop
  4749. break;
  4750. case B_AXIS :
  4751. h_fac += 4.0 / (Z03(CEN) +Z01(__B) +Z32(_BC) +Z32(_AB)); // Offset by Y-tower end-stop
  4752. break;
  4753. case C_AXIS :
  4754. h_fac += 4.0 / (Z03(CEN) +Z01(__C) +Z32(_BC) +Z32(_CA) ); // Offset by Z-tower end-stop
  4755. break;
  4756. }
  4757. }
  4758. h_fac /= 3.0;
  4759. h_fac *= norm; // Normalize to 1.02 for Kossel mini
  4760. for (int8_t zig_zag = -1; zig_zag < 2; zig_zag += 2) {
  4761. delta_radius += 1.0 * zig_zag;
  4762. recalc_delta_settings(delta_radius, delta_diagonal_rod, delta_tower_angle_trim);
  4763. endstops.enable(true);
  4764. if (!home_delta()) return;
  4765. endstops.not_homing();
  4766. SERIAL_PROTOCOLPGM("Tuning R");
  4767. SERIAL_PROTOCOL(zig_zag == -1 ? "-" : "+");
  4768. SERIAL_EOL();
  4769. probe_G33_points(z_at_pt, 3, true, false);
  4770. LOOP_CAL_ALL(axis) z_at_pt[axis] -= z_at_pt_base[axis];
  4771. print_G33_results(z_at_pt, true, true);
  4772. delta_radius -= 1.0 * zig_zag;
  4773. recalc_delta_settings(delta_radius, delta_diagonal_rod, delta_tower_angle_trim);
  4774. r_fac -= zig_zag * 6.0 / (Z03(__A) +Z03(__B) +Z03(__C) +Z03(_BC) +Z03(_CA) +Z03(_AB)); // Offset by delta radius
  4775. }
  4776. r_fac /= 2.0;
  4777. r_fac *= 3 * norm; // Normalize to 2.25 for Kossel mini
  4778. LOOP_XYZ(axis) {
  4779. delta_tower_angle_trim[axis] += 1.0;
  4780. delta_endstop_adj[(axis + 1) % 3] -= 1.0 / 4.5;
  4781. delta_endstop_adj[(axis + 2) % 3] += 1.0 / 4.5;
  4782. z_temp = MAX3(delta_endstop_adj[A_AXIS], delta_endstop_adj[B_AXIS], delta_endstop_adj[C_AXIS]);
  4783. home_offset[Z_AXIS] -= z_temp;
  4784. LOOP_XYZ(axis) delta_endstop_adj[axis] -= z_temp;
  4785. recalc_delta_settings(delta_radius, delta_diagonal_rod, delta_tower_angle_trim);
  4786. endstops.enable(true);
  4787. if (!home_delta()) return;
  4788. endstops.not_homing();
  4789. SERIAL_PROTOCOLPGM("Tuning T");
  4790. SERIAL_CHAR(tolower(axis_codes[axis]));
  4791. SERIAL_EOL();
  4792. probe_G33_points(z_at_pt, 3, true, false);
  4793. LOOP_CAL_ALL(axis) z_at_pt[axis] -= z_at_pt_base[axis];
  4794. print_G33_results(z_at_pt, true, true);
  4795. delta_tower_angle_trim[axis] -= 1.0;
  4796. delta_endstop_adj[(axis+1) % 3] += 1.0/4.5;
  4797. delta_endstop_adj[(axis+2) % 3] -= 1.0/4.5;
  4798. z_temp = MAX3(delta_endstop_adj[A_AXIS], delta_endstop_adj[B_AXIS], delta_endstop_adj[C_AXIS]);
  4799. home_offset[Z_AXIS] -= z_temp;
  4800. LOOP_XYZ(axis) delta_endstop_adj[axis] -= z_temp;
  4801. recalc_delta_settings(delta_radius, delta_diagonal_rod, delta_tower_angle_trim);
  4802. switch (axis) {
  4803. case A_AXIS :
  4804. a_fac += 4.0 / ( Z06(__B) -Z06(__C) +Z06(_CA) -Z06(_AB)); // Offset by alpha tower angle
  4805. break;
  4806. case B_AXIS :
  4807. a_fac += 4.0 / (-Z06(__A) +Z06(__C) -Z06(_BC) +Z06(_AB)); // Offset by beta tower angle
  4808. break;
  4809. case C_AXIS :
  4810. a_fac += 4.0 / (Z06(__A) -Z06(__B) +Z06(_BC) -Z06(_CA) ); // Offset by gamma tower angle
  4811. break;
  4812. }
  4813. }
  4814. a_fac /= 3.0;
  4815. a_fac *= norm; // Normalize to 0.83 for Kossel mini
  4816. endstops.enable(true);
  4817. if (!home_delta()) return;
  4818. endstops.not_homing();
  4819. print_signed_float(PSTR( "H_FACTOR: "), h_fac);
  4820. print_signed_float(PSTR(" R_FACTOR: "), r_fac);
  4821. print_signed_float(PSTR(" A_FACTOR: "), a_fac);
  4822. SERIAL_EOL();
  4823. SERIAL_PROTOCOLPGM("Copy these values to Configuration.h");
  4824. SERIAL_EOL();
  4825. }
  4826. #endif // !PROBE_MANUALLY
  4827. /**
  4828. * G33 - Delta '1-4-7-point' Auto-Calibration
  4829. * Calibrate height, endstops, delta radius, and tower angles.
  4830. *
  4831. * Parameters:
  4832. *
  4833. * Pn Number of probe points:
  4834. * P0 No probe. Normalize only.
  4835. * P1 Probe center and set height only.
  4836. * P2 Probe center and towers. Set height, endstops and delta radius.
  4837. * P3 Probe all positions: center, towers and opposite towers. Set all.
  4838. * P4-P10 Probe all positions + at different itermediate locations and average them.
  4839. *
  4840. * T Don't calibrate tower angle corrections
  4841. *
  4842. * Cn.nn Calibration precision; when omitted calibrates to maximum precision
  4843. *
  4844. * Fn Force to run at least n iterations and takes the best result
  4845. *
  4846. * A Auto tune calibartion factors (set in Configuration.h)
  4847. *
  4848. * Vn Verbose level:
  4849. * V0 Dry-run mode. Report settings and probe results. No calibration.
  4850. * V1 Report settings
  4851. * V2 Report settings and probe results
  4852. *
  4853. * E Engage the probe for each point
  4854. */
  4855. inline void gcode_G33() {
  4856. const int8_t probe_points = parser.intval('P', DELTA_CALIBRATION_DEFAULT_POINTS);
  4857. if (!WITHIN(probe_points, 0, 10)) {
  4858. SERIAL_PROTOCOLLNPGM("?(P)oints is implausible (0-10).");
  4859. return;
  4860. }
  4861. const int8_t verbose_level = parser.byteval('V', 1);
  4862. if (!WITHIN(verbose_level, 0, 2)) {
  4863. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-2).");
  4864. return;
  4865. }
  4866. const float calibration_precision = parser.floatval('C');
  4867. if (calibration_precision < 0) {
  4868. SERIAL_PROTOCOLLNPGM("?(C)alibration precision is implausible (>=0).");
  4869. return;
  4870. }
  4871. const int8_t force_iterations = parser.intval('F', 0);
  4872. if (!WITHIN(force_iterations, 0, 30)) {
  4873. SERIAL_PROTOCOLLNPGM("?(F)orce iteration is implausible (0-30).");
  4874. return;
  4875. }
  4876. const bool towers_set = !parser.boolval('T'),
  4877. auto_tune = parser.boolval('A'),
  4878. stow_after_each = parser.boolval('E'),
  4879. _0p_calibration = probe_points == 0,
  4880. _1p_calibration = probe_points == 1,
  4881. _4p_calibration = probe_points == 2,
  4882. _7p_9_centre = probe_points >= 8,
  4883. _tower_results = (_4p_calibration && towers_set)
  4884. || probe_points >= 3 || probe_points == 0,
  4885. _opposite_results = (_4p_calibration && !towers_set)
  4886. || probe_points >= 3 || probe_points == 0,
  4887. _endstop_results = probe_points != 1,
  4888. _angle_results = (probe_points >= 3 || probe_points == 0) && towers_set;
  4889. const static char save_message[] PROGMEM = "Save with M500 and/or copy to Configuration.h";
  4890. int8_t iterations = 0;
  4891. float test_precision,
  4892. zero_std_dev = (verbose_level ? 999.0 : 0.0), // 0.0 in dry-run mode : forced end
  4893. zero_std_dev_min = zero_std_dev,
  4894. e_old[ABC] = {
  4895. delta_endstop_adj[A_AXIS],
  4896. delta_endstop_adj[B_AXIS],
  4897. delta_endstop_adj[C_AXIS]
  4898. },
  4899. dr_old = delta_radius,
  4900. zh_old = home_offset[Z_AXIS],
  4901. ta_old[ABC] = {
  4902. delta_tower_angle_trim[A_AXIS],
  4903. delta_tower_angle_trim[B_AXIS],
  4904. delta_tower_angle_trim[C_AXIS]
  4905. };
  4906. SERIAL_PROTOCOLLNPGM("G33 Auto Calibrate");
  4907. if (!_1p_calibration && !_0p_calibration) { // test if the outer radius is reachable
  4908. LOOP_CAL_RAD(axis) {
  4909. const float a = RADIANS(210 + (360 / NPP) * (axis - 1)),
  4910. r = delta_calibration_radius * (1 + (_7p_9_centre ? 0.1 : 0.0));
  4911. if (!position_is_reachable(cos(a) * r, sin(a) * r)) {
  4912. SERIAL_PROTOCOLLNPGM("?(M665 B)ed radius is implausible.");
  4913. return;
  4914. }
  4915. }
  4916. }
  4917. stepper.synchronize();
  4918. #if HAS_LEVELING
  4919. reset_bed_level(); // After calibration bed-level data is no longer valid
  4920. #endif
  4921. #if HOTENDS > 1
  4922. const uint8_t old_tool_index = active_extruder;
  4923. tool_change(0, 0, true);
  4924. #define G33_CLEANUP() G33_cleanup(old_tool_index)
  4925. #else
  4926. #define G33_CLEANUP() G33_cleanup()
  4927. #endif
  4928. setup_for_endstop_or_probe_move();
  4929. endstops.enable(true);
  4930. if (!_0p_calibration) {
  4931. if (!home_delta())
  4932. return;
  4933. endstops.not_homing();
  4934. }
  4935. if (auto_tune) {
  4936. #if ENABLED(PROBE_MANUALLY)
  4937. SERIAL_PROTOCOLLNPGM("A probe is needed for auto-tune");
  4938. #else
  4939. G33_auto_tune();
  4940. #endif
  4941. G33_CLEANUP();
  4942. return;
  4943. }
  4944. // Report settings
  4945. const char *checkingac = PSTR("Checking... AC"); // TODO: Make translatable string
  4946. serialprintPGM(checkingac);
  4947. if (verbose_level == 0) SERIAL_PROTOCOLPGM(" (DRY-RUN)");
  4948. SERIAL_EOL();
  4949. lcd_setstatusPGM(checkingac);
  4950. print_G33_settings(_endstop_results, _angle_results);
  4951. do {
  4952. float z_at_pt[NPP + 1] = { 0.0 };
  4953. test_precision = zero_std_dev;
  4954. iterations++;
  4955. // Probe the points
  4956. zero_std_dev = probe_G33_points(z_at_pt, probe_points, towers_set, stow_after_each);
  4957. // Solve matrices
  4958. if ((zero_std_dev < test_precision || iterations <= force_iterations) && zero_std_dev > calibration_precision) {
  4959. if (zero_std_dev < zero_std_dev_min) {
  4960. COPY(e_old, delta_endstop_adj);
  4961. dr_old = delta_radius;
  4962. zh_old = home_offset[Z_AXIS];
  4963. COPY(ta_old, delta_tower_angle_trim);
  4964. }
  4965. float e_delta[ABC] = { 0.0 }, r_delta = 0.0, t_delta[ABC] = { 0.0 };
  4966. const float r_diff = delta_radius - delta_calibration_radius,
  4967. h_factor = 1 / 6.0 *
  4968. #ifdef H_FACTOR
  4969. (H_FACTOR), // Set in Configuration.h
  4970. #else
  4971. (1.00 + r_diff * 0.001), // 1.02 for r_diff = 20mm
  4972. #endif
  4973. r_factor = 1 / 6.0 *
  4974. #ifdef R_FACTOR
  4975. -(R_FACTOR), // Set in Configuration.h
  4976. #else
  4977. -(1.75 + 0.005 * r_diff + 0.001 * sq(r_diff)), // 2.25 for r_diff = 20mm
  4978. #endif
  4979. a_factor = 1 / 6.0 *
  4980. #ifdef A_FACTOR
  4981. (A_FACTOR); // Set in Configuration.h
  4982. #else
  4983. (66.66 / delta_calibration_radius); // 0.83 for cal_rd = 80mm
  4984. #endif
  4985. #define ZP(N,I) ((N) * z_at_pt[I])
  4986. #define Z6(I) ZP(6, I)
  4987. #define Z4(I) ZP(4, I)
  4988. #define Z2(I) ZP(2, I)
  4989. #define Z1(I) ZP(1, I)
  4990. #if ENABLED(PROBE_MANUALLY)
  4991. test_precision = 0.00; // forced end
  4992. #endif
  4993. switch (probe_points) {
  4994. case 0:
  4995. test_precision = 0.00; // forced end
  4996. break;
  4997. case 1:
  4998. test_precision = 0.00; // forced end
  4999. LOOP_XYZ(axis) e_delta[axis] = Z1(CEN);
  5000. break;
  5001. case 2:
  5002. if (towers_set) {
  5003. e_delta[A_AXIS] = (Z6(CEN) +Z4(__A) -Z2(__B) -Z2(__C)) * h_factor;
  5004. e_delta[B_AXIS] = (Z6(CEN) -Z2(__A) +Z4(__B) -Z2(__C)) * h_factor;
  5005. e_delta[C_AXIS] = (Z6(CEN) -Z2(__A) -Z2(__B) +Z4(__C)) * h_factor;
  5006. r_delta = (Z6(CEN) -Z2(__A) -Z2(__B) -Z2(__C)) * r_factor;
  5007. }
  5008. else {
  5009. e_delta[A_AXIS] = (Z6(CEN) -Z4(_BC) +Z2(_CA) +Z2(_AB)) * h_factor;
  5010. e_delta[B_AXIS] = (Z6(CEN) +Z2(_BC) -Z4(_CA) +Z2(_AB)) * h_factor;
  5011. e_delta[C_AXIS] = (Z6(CEN) +Z2(_BC) +Z2(_CA) -Z4(_AB)) * h_factor;
  5012. r_delta = (Z6(CEN) -Z2(_BC) -Z2(_CA) -Z2(_AB)) * r_factor;
  5013. }
  5014. break;
  5015. default:
  5016. e_delta[A_AXIS] = (Z6(CEN) +Z2(__A) -Z1(__B) -Z1(__C) -Z2(_BC) +Z1(_CA) +Z1(_AB)) * h_factor;
  5017. e_delta[B_AXIS] = (Z6(CEN) -Z1(__A) +Z2(__B) -Z1(__C) +Z1(_BC) -Z2(_CA) +Z1(_AB)) * h_factor;
  5018. e_delta[C_AXIS] = (Z6(CEN) -Z1(__A) -Z1(__B) +Z2(__C) +Z1(_BC) +Z1(_CA) -Z2(_AB)) * h_factor;
  5019. r_delta = (Z6(CEN) -Z1(__A) -Z1(__B) -Z1(__C) -Z1(_BC) -Z1(_CA) -Z1(_AB)) * r_factor;
  5020. if (towers_set) {
  5021. t_delta[A_AXIS] = ( -Z4(__B) +Z4(__C) -Z4(_CA) +Z4(_AB)) * a_factor;
  5022. t_delta[B_AXIS] = ( Z4(__A) -Z4(__C) +Z4(_BC) -Z4(_AB)) * a_factor;
  5023. t_delta[C_AXIS] = (-Z4(__A) +Z4(__B) -Z4(_BC) +Z4(_CA) ) * a_factor;
  5024. e_delta[A_AXIS] += (t_delta[B_AXIS] - t_delta[C_AXIS]) / 4.5;
  5025. e_delta[B_AXIS] += (t_delta[C_AXIS] - t_delta[A_AXIS]) / 4.5;
  5026. e_delta[C_AXIS] += (t_delta[A_AXIS] - t_delta[B_AXIS]) / 4.5;
  5027. }
  5028. break;
  5029. }
  5030. LOOP_XYZ(axis) delta_endstop_adj[axis] += e_delta[axis];
  5031. delta_radius += r_delta;
  5032. LOOP_XYZ(axis) delta_tower_angle_trim[axis] += t_delta[axis];
  5033. }
  5034. else if (zero_std_dev >= test_precision) { // step one back
  5035. COPY(delta_endstop_adj, e_old);
  5036. delta_radius = dr_old;
  5037. home_offset[Z_AXIS] = zh_old;
  5038. COPY(delta_tower_angle_trim, ta_old);
  5039. }
  5040. if (verbose_level != 0) { // !dry run
  5041. // normalise angles to least squares
  5042. if (_angle_results) {
  5043. float a_sum = 0.0;
  5044. LOOP_XYZ(axis) a_sum += delta_tower_angle_trim[axis];
  5045. LOOP_XYZ(axis) delta_tower_angle_trim[axis] -= a_sum / 3.0;
  5046. }
  5047. // adjust delta_height and endstops by the max amount
  5048. const float z_temp = MAX3(delta_endstop_adj[A_AXIS], delta_endstop_adj[B_AXIS], delta_endstop_adj[C_AXIS]);
  5049. home_offset[Z_AXIS] -= z_temp;
  5050. LOOP_XYZ(axis) delta_endstop_adj[axis] -= z_temp;
  5051. }
  5052. recalc_delta_settings(delta_radius, delta_diagonal_rod, delta_tower_angle_trim);
  5053. NOMORE(zero_std_dev_min, zero_std_dev);
  5054. // print report
  5055. if (verbose_level != 1)
  5056. print_G33_results(z_at_pt, _tower_results, _opposite_results);
  5057. if (verbose_level != 0) { // !dry run
  5058. if ((zero_std_dev >= test_precision && iterations > force_iterations) || zero_std_dev <= calibration_precision) { // end iterations
  5059. SERIAL_PROTOCOLPGM("Calibration OK");
  5060. SERIAL_PROTOCOL_SP(32);
  5061. #if DISABLED(PROBE_MANUALLY)
  5062. if (zero_std_dev >= test_precision && !_1p_calibration)
  5063. SERIAL_PROTOCOLPGM("rolling back.");
  5064. else
  5065. #endif
  5066. {
  5067. SERIAL_PROTOCOLPGM("std dev:");
  5068. SERIAL_PROTOCOL_F(zero_std_dev_min, 3);
  5069. }
  5070. SERIAL_EOL();
  5071. char mess[21];
  5072. sprintf_P(mess, PSTR("Calibration sd:"));
  5073. if (zero_std_dev_min < 1)
  5074. sprintf_P(&mess[15], PSTR("0.%03i"), (int)round(zero_std_dev_min * 1000.0));
  5075. else
  5076. sprintf_P(&mess[15], PSTR("%03i.x"), (int)round(zero_std_dev_min));
  5077. lcd_setstatus(mess);
  5078. print_G33_settings(_endstop_results, _angle_results);
  5079. serialprintPGM(save_message);
  5080. SERIAL_EOL();
  5081. }
  5082. else { // !end iterations
  5083. char mess[15];
  5084. if (iterations < 31)
  5085. sprintf_P(mess, PSTR("Iteration : %02i"), (int)iterations);
  5086. else
  5087. sprintf_P(mess, PSTR("No convergence"));
  5088. SERIAL_PROTOCOL(mess);
  5089. SERIAL_PROTOCOL_SP(32);
  5090. SERIAL_PROTOCOLPGM("std dev:");
  5091. SERIAL_PROTOCOL_F(zero_std_dev, 3);
  5092. SERIAL_EOL();
  5093. lcd_setstatus(mess);
  5094. print_G33_settings(_endstop_results, _angle_results);
  5095. }
  5096. }
  5097. else { // dry run
  5098. const char *enddryrun = PSTR("End DRY-RUN");
  5099. serialprintPGM(enddryrun);
  5100. SERIAL_PROTOCOL_SP(35);
  5101. SERIAL_PROTOCOLPGM("std dev:");
  5102. SERIAL_PROTOCOL_F(zero_std_dev, 3);
  5103. SERIAL_EOL();
  5104. char mess[21];
  5105. sprintf_P(mess, enddryrun);
  5106. sprintf_P(&mess[11], PSTR(" sd:"));
  5107. if (zero_std_dev < 1)
  5108. sprintf_P(&mess[15], PSTR("0.%03i"), (int)round(zero_std_dev * 1000.0));
  5109. else
  5110. sprintf_P(&mess[15], PSTR("%03i.x"), (int)round(zero_std_dev));
  5111. lcd_setstatus(mess);
  5112. }
  5113. endstops.enable(true);
  5114. if (!home_delta())
  5115. return;
  5116. endstops.not_homing();
  5117. }
  5118. while (((zero_std_dev < test_precision && iterations < 31) || iterations <= force_iterations) && zero_std_dev > calibration_precision);
  5119. G33_CLEANUP();
  5120. }
  5121. #endif // DELTA_AUTO_CALIBRATION
  5122. #endif // PROBE_SELECTED
  5123. #if ENABLED(G38_PROBE_TARGET)
  5124. static bool G38_run_probe() {
  5125. bool G38_pass_fail = false;
  5126. #if ENABLED(PROBE_DOUBLE_TOUCH)
  5127. // Get direction of move and retract
  5128. float retract_mm[XYZ];
  5129. LOOP_XYZ(i) {
  5130. float dist = destination[i] - current_position[i];
  5131. retract_mm[i] = FABS(dist) < G38_MINIMUM_MOVE ? 0 : home_bump_mm((AxisEnum)i) * (dist > 0 ? -1 : 1);
  5132. }
  5133. #endif
  5134. stepper.synchronize(); // wait until the machine is idle
  5135. // Move until destination reached or target hit
  5136. endstops.enable(true);
  5137. G38_move = true;
  5138. G38_endstop_hit = false;
  5139. prepare_move_to_destination();
  5140. stepper.synchronize();
  5141. G38_move = false;
  5142. endstops.hit_on_purpose();
  5143. set_current_from_steppers_for_axis(ALL_AXES);
  5144. SYNC_PLAN_POSITION_KINEMATIC();
  5145. if (G38_endstop_hit) {
  5146. G38_pass_fail = true;
  5147. #if ENABLED(PROBE_DOUBLE_TOUCH)
  5148. // Move away by the retract distance
  5149. set_destination_from_current();
  5150. LOOP_XYZ(i) destination[i] += retract_mm[i];
  5151. endstops.enable(false);
  5152. prepare_move_to_destination();
  5153. stepper.synchronize();
  5154. feedrate_mm_s /= 4;
  5155. // Bump the target more slowly
  5156. LOOP_XYZ(i) destination[i] -= retract_mm[i] * 2;
  5157. endstops.enable(true);
  5158. G38_move = true;
  5159. prepare_move_to_destination();
  5160. stepper.synchronize();
  5161. G38_move = false;
  5162. set_current_from_steppers_for_axis(ALL_AXES);
  5163. SYNC_PLAN_POSITION_KINEMATIC();
  5164. #endif
  5165. }
  5166. endstops.hit_on_purpose();
  5167. endstops.not_homing();
  5168. return G38_pass_fail;
  5169. }
  5170. /**
  5171. * G38.2 - probe toward workpiece, stop on contact, signal error if failure
  5172. * G38.3 - probe toward workpiece, stop on contact
  5173. *
  5174. * Like G28 except uses Z min probe for all axes
  5175. */
  5176. inline void gcode_G38(bool is_38_2) {
  5177. // Get X Y Z E F
  5178. gcode_get_destination();
  5179. setup_for_endstop_or_probe_move();
  5180. // If any axis has enough movement, do the move
  5181. LOOP_XYZ(i)
  5182. if (FABS(destination[i] - current_position[i]) >= G38_MINIMUM_MOVE) {
  5183. if (!parser.seenval('F')) feedrate_mm_s = homing_feedrate((AxisEnum)i);
  5184. // If G38.2 fails throw an error
  5185. if (!G38_run_probe() && is_38_2) {
  5186. SERIAL_ERROR_START();
  5187. SERIAL_ERRORLNPGM("Failed to reach target");
  5188. }
  5189. break;
  5190. }
  5191. clean_up_after_endstop_or_probe_move();
  5192. }
  5193. #endif // G38_PROBE_TARGET
  5194. #if HAS_MESH
  5195. /**
  5196. * G42: Move X & Y axes to mesh coordinates (I & J)
  5197. */
  5198. inline void gcode_G42() {
  5199. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  5200. if (axis_unhomed_error()) return;
  5201. #endif
  5202. if (IsRunning()) {
  5203. const bool hasI = parser.seenval('I');
  5204. const int8_t ix = RAW_X_POSITION(hasI ? parser.value_linear_units() : 0);
  5205. const bool hasJ = parser.seenval('J');
  5206. const int8_t iy = RAW_Y_POSITION(hasJ ? parser.value_linear_units() : 0);
  5207. if ((hasI && !WITHIN(ix, 0, GRID_MAX_POINTS_X - 1)) || (hasJ && !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1))) {
  5208. SERIAL_ECHOLNPGM(MSG_ERR_MESH_XY);
  5209. return;
  5210. }
  5211. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  5212. #define _GET_MESH_X(I) bilinear_start[X_AXIS] + I * bilinear_grid_spacing[X_AXIS]
  5213. #define _GET_MESH_Y(J) bilinear_start[Y_AXIS] + J * bilinear_grid_spacing[Y_AXIS]
  5214. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  5215. #define _GET_MESH_X(I) ubl.mesh_index_to_xpos(I)
  5216. #define _GET_MESH_Y(J) ubl.mesh_index_to_ypos(J)
  5217. #elif ENABLED(MESH_BED_LEVELING)
  5218. #define _GET_MESH_X(I) mbl.index_to_xpos[I]
  5219. #define _GET_MESH_Y(J) mbl.index_to_ypos[J]
  5220. #endif
  5221. set_destination_from_current();
  5222. if (hasI) destination[X_AXIS] = _GET_MESH_X(ix);
  5223. if (hasJ) destination[Y_AXIS] = _GET_MESH_Y(iy);
  5224. if (parser.boolval('P')) {
  5225. if (hasI) destination[X_AXIS] -= X_PROBE_OFFSET_FROM_EXTRUDER;
  5226. if (hasJ) destination[Y_AXIS] -= Y_PROBE_OFFSET_FROM_EXTRUDER;
  5227. }
  5228. const float fval = parser.linearval('F');
  5229. if (fval > 0.0) feedrate_mm_s = MMM_TO_MMS(fval);
  5230. // SCARA kinematic has "safe" XY raw moves
  5231. #if IS_SCARA
  5232. prepare_uninterpolated_move_to_destination();
  5233. #else
  5234. prepare_move_to_destination();
  5235. #endif
  5236. }
  5237. }
  5238. #endif // HAS_MESH
  5239. /**
  5240. * G92: Set current position to given X Y Z E
  5241. */
  5242. inline void gcode_G92() {
  5243. bool didXYZ = false,
  5244. didE = parser.seenval('E');
  5245. if (!didE) stepper.synchronize();
  5246. LOOP_XYZE(i) {
  5247. if (parser.seenval(axis_codes[i])) {
  5248. #if IS_SCARA
  5249. if (i != E_AXIS) didXYZ = true;
  5250. #else
  5251. #if HAS_POSITION_SHIFT
  5252. const float p = current_position[i];
  5253. #endif
  5254. const float v = parser.value_axis_units((AxisEnum)i);
  5255. if (i != E_AXIS) {
  5256. didXYZ = true;
  5257. #if HAS_POSITION_SHIFT
  5258. position_shift[i] += v - p; // Offset the coordinate space
  5259. update_software_endstops((AxisEnum)i);
  5260. #if ENABLED(I2C_POSITION_ENCODERS)
  5261. I2CPEM.encoders[I2CPEM.idx_from_axis((AxisEnum)i)].set_axis_offset(position_shift[i]);
  5262. #endif
  5263. #endif
  5264. }
  5265. #endif
  5266. }
  5267. }
  5268. if (didXYZ)
  5269. SYNC_PLAN_POSITION_KINEMATIC();
  5270. else if (didE)
  5271. sync_plan_position_e();
  5272. report_current_position();
  5273. }
  5274. #if HAS_RESUME_CONTINUE
  5275. /**
  5276. * M0: Unconditional stop - Wait for user button press on LCD
  5277. * M1: Conditional stop - Wait for user button press on LCD
  5278. */
  5279. inline void gcode_M0_M1() {
  5280. const char * const args = parser.string_arg;
  5281. millis_t ms = 0;
  5282. bool hasP = false, hasS = false;
  5283. if (parser.seenval('P')) {
  5284. ms = parser.value_millis(); // milliseconds to wait
  5285. hasP = ms > 0;
  5286. }
  5287. if (parser.seenval('S')) {
  5288. ms = parser.value_millis_from_seconds(); // seconds to wait
  5289. hasS = ms > 0;
  5290. }
  5291. #if ENABLED(ULTIPANEL)
  5292. if (!hasP && !hasS && args && *args)
  5293. lcd_setstatus(args, true);
  5294. else {
  5295. LCD_MESSAGEPGM(MSG_USERWAIT);
  5296. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  5297. dontExpireStatus();
  5298. #endif
  5299. }
  5300. #else
  5301. if (!hasP && !hasS && args && *args) {
  5302. SERIAL_ECHO_START();
  5303. SERIAL_ECHOLN(args);
  5304. }
  5305. #endif
  5306. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5307. wait_for_user = true;
  5308. stepper.synchronize();
  5309. refresh_cmd_timeout();
  5310. if (ms > 0) {
  5311. ms += previous_cmd_ms; // wait until this time for a click
  5312. while (PENDING(millis(), ms) && wait_for_user) idle();
  5313. }
  5314. else {
  5315. #if ENABLED(ULTIPANEL)
  5316. if (lcd_detected()) {
  5317. while (wait_for_user) idle();
  5318. print_job_timer.isPaused() ? LCD_MESSAGEPGM(WELCOME_MSG) : LCD_MESSAGEPGM(MSG_RESUMING);
  5319. }
  5320. #else
  5321. while (wait_for_user) idle();
  5322. #endif
  5323. }
  5324. wait_for_user = false;
  5325. KEEPALIVE_STATE(IN_HANDLER);
  5326. }
  5327. #endif // HAS_RESUME_CONTINUE
  5328. #if ENABLED(SPINDLE_LASER_ENABLE)
  5329. /**
  5330. * M3: Spindle Clockwise
  5331. * M4: Spindle Counter-clockwise
  5332. *
  5333. * S0 turns off spindle.
  5334. *
  5335. * If no speed PWM output is defined then M3/M4 just turns it on.
  5336. *
  5337. * At least 12.8KHz (50Hz * 256) is needed for spindle PWM.
  5338. * Hardware PWM is required. ISRs are too slow.
  5339. *
  5340. * NOTE: WGM for timers 3, 4, and 5 must be either Mode 1 or Mode 5.
  5341. * No other settings give a PWM signal that goes from 0 to 5 volts.
  5342. *
  5343. * The system automatically sets WGM to Mode 1, so no special
  5344. * initialization is needed.
  5345. *
  5346. * WGM bits for timer 2 are automatically set by the system to
  5347. * Mode 1. This produces an acceptable 0 to 5 volt signal.
  5348. * No special initialization is needed.
  5349. *
  5350. * NOTE: A minimum PWM frequency of 50 Hz is needed. All prescaler
  5351. * factors for timers 2, 3, 4, and 5 are acceptable.
  5352. *
  5353. * SPINDLE_LASER_ENABLE_PIN needs an external pullup or it may power on
  5354. * the spindle/laser during power-up or when connecting to the host
  5355. * (usually goes through a reset which sets all I/O pins to tri-state)
  5356. *
  5357. * PWM duty cycle goes from 0 (off) to 255 (always on).
  5358. */
  5359. // Wait for spindle to come up to speed
  5360. inline void delay_for_power_up() { dwell(SPINDLE_LASER_POWERUP_DELAY); }
  5361. // Wait for spindle to stop turning
  5362. inline void delay_for_power_down() { dwell(SPINDLE_LASER_POWERDOWN_DELAY); }
  5363. /**
  5364. * ocr_val_mode() is used for debugging and to get the points needed to compute the RPM vs ocr_val line
  5365. *
  5366. * it accepts inputs of 0-255
  5367. */
  5368. inline void ocr_val_mode() {
  5369. uint8_t spindle_laser_power = parser.value_byte();
  5370. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low)
  5371. if (SPINDLE_LASER_PWM_INVERT) spindle_laser_power = 255 - spindle_laser_power;
  5372. analogWrite(SPINDLE_LASER_PWM_PIN, spindle_laser_power);
  5373. }
  5374. inline void gcode_M3_M4(bool is_M3) {
  5375. stepper.synchronize(); // wait until previous movement commands (G0/G0/G2/G3) have completed before playing with the spindle
  5376. #if SPINDLE_DIR_CHANGE
  5377. const bool rotation_dir = (is_M3 && !SPINDLE_INVERT_DIR || !is_M3 && SPINDLE_INVERT_DIR) ? HIGH : LOW;
  5378. if (SPINDLE_STOP_ON_DIR_CHANGE \
  5379. && READ(SPINDLE_LASER_ENABLE_PIN) == SPINDLE_LASER_ENABLE_INVERT \
  5380. && READ(SPINDLE_DIR_PIN) != rotation_dir
  5381. ) {
  5382. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // turn spindle off
  5383. delay_for_power_down();
  5384. }
  5385. WRITE(SPINDLE_DIR_PIN, rotation_dir);
  5386. #endif
  5387. /**
  5388. * Our final value for ocr_val is an unsigned 8 bit value between 0 and 255 which usually means uint8_t.
  5389. * Went to uint16_t because some of the uint8_t calculations would sometimes give 1000 0000 rather than 1111 1111.
  5390. * Then needed to AND the uint16_t result with 0x00FF to make sure we only wrote the byte of interest.
  5391. */
  5392. #if ENABLED(SPINDLE_LASER_PWM)
  5393. if (parser.seen('O')) ocr_val_mode();
  5394. else {
  5395. const float spindle_laser_power = parser.floatval('S');
  5396. if (spindle_laser_power == 0) {
  5397. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // turn spindle off (active low)
  5398. delay_for_power_down();
  5399. }
  5400. else {
  5401. int16_t ocr_val = (spindle_laser_power - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // convert RPM to PWM duty cycle
  5402. NOMORE(ocr_val, 255); // limit to max the Atmel PWM will support
  5403. if (spindle_laser_power <= SPEED_POWER_MIN)
  5404. ocr_val = (SPEED_POWER_MIN - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // minimum setting
  5405. if (spindle_laser_power >= SPEED_POWER_MAX)
  5406. ocr_val = (SPEED_POWER_MAX - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // limit to max RPM
  5407. if (SPINDLE_LASER_PWM_INVERT) ocr_val = 255 - ocr_val;
  5408. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low)
  5409. analogWrite(SPINDLE_LASER_PWM_PIN, ocr_val & 0xFF); // only write low byte
  5410. delay_for_power_up();
  5411. }
  5412. }
  5413. #else
  5414. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low) if spindle speed option not enabled
  5415. delay_for_power_up();
  5416. #endif
  5417. }
  5418. /**
  5419. * M5 turn off spindle
  5420. */
  5421. inline void gcode_M5() {
  5422. stepper.synchronize();
  5423. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT);
  5424. delay_for_power_down();
  5425. }
  5426. #endif // SPINDLE_LASER_ENABLE
  5427. /**
  5428. * M17: Enable power on all stepper motors
  5429. */
  5430. inline void gcode_M17() {
  5431. LCD_MESSAGEPGM(MSG_NO_MOVE);
  5432. enable_all_steppers();
  5433. }
  5434. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  5435. static float resume_position[XYZE];
  5436. static bool move_away_flag = false;
  5437. #if ENABLED(SDSUPPORT)
  5438. static bool sd_print_paused = false;
  5439. #endif
  5440. static void filament_change_beep(const int8_t max_beep_count, const bool init=false) {
  5441. static millis_t next_buzz = 0;
  5442. static int8_t runout_beep = 0;
  5443. if (init) next_buzz = runout_beep = 0;
  5444. const millis_t ms = millis();
  5445. if (ELAPSED(ms, next_buzz)) {
  5446. if (max_beep_count < 0 || runout_beep < max_beep_count + 5) { // Only beep as long as we're supposed to
  5447. next_buzz = ms + ((max_beep_count < 0 || runout_beep < max_beep_count) ? 2500 : 400);
  5448. BUZZ(300, 2000);
  5449. runout_beep++;
  5450. }
  5451. }
  5452. }
  5453. static void ensure_safe_temperature() {
  5454. bool heaters_heating = true;
  5455. wait_for_heatup = true; // M108 will clear this
  5456. while (wait_for_heatup && heaters_heating) {
  5457. idle();
  5458. heaters_heating = false;
  5459. HOTEND_LOOP() {
  5460. if (thermalManager.degTargetHotend(e) && abs(thermalManager.degHotend(e) - thermalManager.degTargetHotend(e)) > TEMP_HYSTERESIS) {
  5461. heaters_heating = true;
  5462. #if ENABLED(ULTIPANEL)
  5463. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_WAIT_FOR_NOZZLES_TO_HEAT);
  5464. #endif
  5465. break;
  5466. }
  5467. }
  5468. }
  5469. }
  5470. #if IS_KINEMATIC
  5471. #define RUNPLAN(RATE_MM_S) planner.buffer_line_kinematic(destination, RATE_MM_S, active_extruder)
  5472. #else
  5473. #define RUNPLAN(RATE_MM_S) line_to_destination(RATE_MM_S)
  5474. #endif
  5475. void do_pause_e_move(const float &length, const float fr) {
  5476. current_position[E_AXIS] += length;
  5477. set_destination_from_current();
  5478. #if IS_KINEMATIC
  5479. planner.buffer_line_kinematic(destination, fr, active_extruder);
  5480. #else
  5481. line_to_destination(fr);
  5482. #endif
  5483. stepper.synchronize();
  5484. }
  5485. static bool pause_print(const float &retract, const float &z_lift, const float &x_pos, const float &y_pos,
  5486. const float &unload_length = 0 , const int8_t max_beep_count = 0, const bool show_lcd = false
  5487. ) {
  5488. if (move_away_flag) return false; // already paused
  5489. if (!DEBUGGING(DRYRUN) && (unload_length != 0 || retract != 0)) {
  5490. #if ENABLED(PREVENT_COLD_EXTRUSION)
  5491. if (!thermalManager.allow_cold_extrude &&
  5492. thermalManager.degTargetHotend(active_extruder) < thermalManager.extrude_min_temp) {
  5493. SERIAL_ERROR_START();
  5494. SERIAL_ERRORLNPGM(MSG_TOO_COLD_FOR_M600);
  5495. return false;
  5496. }
  5497. #endif
  5498. ensure_safe_temperature(); // wait for extruder to heat up before unloading
  5499. }
  5500. // Indicate that the printer is paused
  5501. move_away_flag = true;
  5502. // Pause the print job and timer
  5503. #if ENABLED(SDSUPPORT)
  5504. if (card.sdprinting) {
  5505. card.pauseSDPrint();
  5506. sd_print_paused = true;
  5507. }
  5508. #endif
  5509. print_job_timer.pause();
  5510. // Show initial message and wait for synchronize steppers
  5511. if (show_lcd) {
  5512. #if ENABLED(ULTIPANEL)
  5513. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INIT);
  5514. #endif
  5515. }
  5516. // Save current position
  5517. stepper.synchronize();
  5518. COPY(resume_position, current_position);
  5519. // Initial retract before move to filament change position
  5520. if (retract) do_pause_e_move(retract, PAUSE_PARK_RETRACT_FEEDRATE);
  5521. // Lift Z axis
  5522. if (z_lift > 0)
  5523. do_blocking_move_to_z(current_position[Z_AXIS] + z_lift, PAUSE_PARK_Z_FEEDRATE);
  5524. // Move XY axes to filament exchange position
  5525. do_blocking_move_to_xy(x_pos, y_pos, PAUSE_PARK_XY_FEEDRATE);
  5526. if (unload_length != 0) {
  5527. if (show_lcd) {
  5528. #if ENABLED(ULTIPANEL)
  5529. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_UNLOAD);
  5530. idle();
  5531. #endif
  5532. }
  5533. // Unload filament
  5534. do_pause_e_move(unload_length, FILAMENT_CHANGE_UNLOAD_FEEDRATE);
  5535. }
  5536. if (show_lcd) {
  5537. #if ENABLED(ULTIPANEL)
  5538. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5539. #endif
  5540. }
  5541. #if HAS_BUZZER
  5542. filament_change_beep(max_beep_count, true);
  5543. #endif
  5544. idle();
  5545. // Disable extruders steppers for manual filament changing (only on boards that have separate ENABLE_PINS)
  5546. #if E0_ENABLE_PIN != X_ENABLE_PIN && E1_ENABLE_PIN != Y_ENABLE_PIN
  5547. disable_e_steppers();
  5548. safe_delay(100);
  5549. #endif
  5550. // Start the heater idle timers
  5551. const millis_t nozzle_timeout = (millis_t)(PAUSE_PARK_NOZZLE_TIMEOUT) * 1000UL;
  5552. HOTEND_LOOP()
  5553. thermalManager.start_heater_idle_timer(e, nozzle_timeout);
  5554. return true;
  5555. }
  5556. static void wait_for_filament_reload(const int8_t max_beep_count = 0) {
  5557. bool nozzle_timed_out = false;
  5558. // Wait for filament insert by user and press button
  5559. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5560. wait_for_user = true; // LCD click or M108 will clear this
  5561. while (wait_for_user) {
  5562. #if HAS_BUZZER
  5563. filament_change_beep(max_beep_count);
  5564. #endif
  5565. // If the nozzle has timed out, wait for the user to press the button to re-heat the nozzle, then
  5566. // re-heat the nozzle, re-show the insert screen, restart the idle timers, and start over
  5567. if (!nozzle_timed_out)
  5568. HOTEND_LOOP()
  5569. nozzle_timed_out |= thermalManager.is_heater_idle(e);
  5570. if (nozzle_timed_out) {
  5571. #if ENABLED(ULTIPANEL)
  5572. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_CLICK_TO_HEAT_NOZZLE);
  5573. #endif
  5574. // Wait for LCD click or M108
  5575. while (wait_for_user) idle(true);
  5576. // Re-enable the heaters if they timed out
  5577. HOTEND_LOOP() thermalManager.reset_heater_idle_timer(e);
  5578. // Wait for the heaters to reach the target temperatures
  5579. ensure_safe_temperature();
  5580. #if ENABLED(ULTIPANEL)
  5581. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5582. #endif
  5583. // Start the heater idle timers
  5584. const millis_t nozzle_timeout = (millis_t)(PAUSE_PARK_NOZZLE_TIMEOUT) * 1000UL;
  5585. HOTEND_LOOP()
  5586. thermalManager.start_heater_idle_timer(e, nozzle_timeout);
  5587. wait_for_user = true; /* Wait for user to load filament */
  5588. nozzle_timed_out = false;
  5589. #if HAS_BUZZER
  5590. filament_change_beep(max_beep_count, true);
  5591. #endif
  5592. }
  5593. idle(true);
  5594. }
  5595. KEEPALIVE_STATE(IN_HANDLER);
  5596. }
  5597. static void resume_print(const float &load_length = 0, const float &initial_extrude_length = 0, const int8_t max_beep_count = 0) {
  5598. bool nozzle_timed_out = false;
  5599. if (!move_away_flag) return;
  5600. // Re-enable the heaters if they timed out
  5601. HOTEND_LOOP() {
  5602. nozzle_timed_out |= thermalManager.is_heater_idle(e);
  5603. thermalManager.reset_heater_idle_timer(e);
  5604. }
  5605. if (nozzle_timed_out) ensure_safe_temperature();
  5606. #if HAS_BUZZER
  5607. filament_change_beep(max_beep_count, true);
  5608. #endif
  5609. set_destination_from_current();
  5610. if (load_length != 0) {
  5611. #if ENABLED(ULTIPANEL)
  5612. // Show "insert filament"
  5613. if (nozzle_timed_out)
  5614. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5615. #endif
  5616. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5617. wait_for_user = true; // LCD click or M108 will clear this
  5618. while (wait_for_user && nozzle_timed_out) {
  5619. #if HAS_BUZZER
  5620. filament_change_beep(max_beep_count);
  5621. #endif
  5622. idle(true);
  5623. }
  5624. KEEPALIVE_STATE(IN_HANDLER);
  5625. #if ENABLED(ULTIPANEL)
  5626. // Show "load" message
  5627. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_LOAD);
  5628. #endif
  5629. // Load filament
  5630. do_pause_e_move(load_length, FILAMENT_CHANGE_LOAD_FEEDRATE);
  5631. }
  5632. #if ENABLED(ULTIPANEL) && ADVANCED_PAUSE_EXTRUDE_LENGTH > 0
  5633. float extrude_length = initial_extrude_length;
  5634. do {
  5635. if (extrude_length > 0) {
  5636. // "Wait for filament extrude"
  5637. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_EXTRUDE);
  5638. // Extrude filament to get into hotend
  5639. do_pause_e_move(extrude_length, ADVANCED_PAUSE_EXTRUDE_FEEDRATE);
  5640. }
  5641. // Show "Extrude More" / "Resume" menu and wait for reply
  5642. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5643. wait_for_user = false;
  5644. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_OPTION);
  5645. while (advanced_pause_menu_response == ADVANCED_PAUSE_RESPONSE_WAIT_FOR) idle(true);
  5646. KEEPALIVE_STATE(IN_HANDLER);
  5647. extrude_length = ADVANCED_PAUSE_EXTRUDE_LENGTH;
  5648. // Keep looping if "Extrude More" was selected
  5649. } while (advanced_pause_menu_response == ADVANCED_PAUSE_RESPONSE_EXTRUDE_MORE);
  5650. #endif
  5651. #if ENABLED(ULTIPANEL)
  5652. // "Wait for print to resume"
  5653. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_RESUME);
  5654. #endif
  5655. // Set extruder to saved position
  5656. destination[E_AXIS] = current_position[E_AXIS] = resume_position[E_AXIS];
  5657. planner.set_e_position_mm(current_position[E_AXIS]);
  5658. // Move XY to starting position, then Z
  5659. do_blocking_move_to_xy(resume_position[X_AXIS], resume_position[Y_AXIS], PAUSE_PARK_XY_FEEDRATE);
  5660. do_blocking_move_to_z(resume_position[Z_AXIS], PAUSE_PARK_Z_FEEDRATE);
  5661. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  5662. filament_ran_out = false;
  5663. #endif
  5664. #if ENABLED(ULTIPANEL)
  5665. // Show status screen
  5666. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_STATUS);
  5667. #endif
  5668. #if ENABLED(SDSUPPORT)
  5669. if (sd_print_paused) {
  5670. card.startFileprint();
  5671. sd_print_paused = false;
  5672. }
  5673. #endif
  5674. move_away_flag = false;
  5675. }
  5676. #endif // ADVANCED_PAUSE_FEATURE
  5677. #if ENABLED(SDSUPPORT)
  5678. /**
  5679. * M20: List SD card to serial output
  5680. */
  5681. inline void gcode_M20() {
  5682. SERIAL_PROTOCOLLNPGM(MSG_BEGIN_FILE_LIST);
  5683. card.ls();
  5684. SERIAL_PROTOCOLLNPGM(MSG_END_FILE_LIST);
  5685. }
  5686. /**
  5687. * M21: Init SD Card
  5688. */
  5689. inline void gcode_M21() { card.initsd(); }
  5690. /**
  5691. * M22: Release SD Card
  5692. */
  5693. inline void gcode_M22() { card.release(); }
  5694. /**
  5695. * M23: Open a file
  5696. */
  5697. inline void gcode_M23() {
  5698. // Simplify3D includes the size, so zero out all spaces (#7227)
  5699. for (char *fn = parser.string_arg; *fn; ++fn) if (*fn == ' ') *fn = '\0';
  5700. card.openFile(parser.string_arg, true);
  5701. }
  5702. /**
  5703. * M24: Start or Resume SD Print
  5704. */
  5705. inline void gcode_M24() {
  5706. #if ENABLED(PARK_HEAD_ON_PAUSE)
  5707. resume_print();
  5708. #endif
  5709. card.startFileprint();
  5710. print_job_timer.start();
  5711. }
  5712. /**
  5713. * M25: Pause SD Print
  5714. */
  5715. inline void gcode_M25() {
  5716. card.pauseSDPrint();
  5717. print_job_timer.pause();
  5718. #if ENABLED(PARK_HEAD_ON_PAUSE)
  5719. enqueue_and_echo_commands_P(PSTR("M125")); // Must be enqueued with pauseSDPrint set to be last in the buffer
  5720. #endif
  5721. }
  5722. /**
  5723. * M26: Set SD Card file index
  5724. */
  5725. inline void gcode_M26() {
  5726. if (card.cardOK && parser.seenval('S'))
  5727. card.setIndex(parser.value_long());
  5728. }
  5729. /**
  5730. * M27: Get SD Card status
  5731. */
  5732. inline void gcode_M27() { card.getStatus(); }
  5733. /**
  5734. * M28: Start SD Write
  5735. */
  5736. inline void gcode_M28() { card.openFile(parser.string_arg, false); }
  5737. /**
  5738. * M29: Stop SD Write
  5739. * Processed in write to file routine above
  5740. */
  5741. inline void gcode_M29() {
  5742. // card.saving = false;
  5743. }
  5744. /**
  5745. * M30 <filename>: Delete SD Card file
  5746. */
  5747. inline void gcode_M30() {
  5748. if (card.cardOK) {
  5749. card.closefile();
  5750. card.removeFile(parser.string_arg);
  5751. }
  5752. }
  5753. #endif // SDSUPPORT
  5754. /**
  5755. * M31: Get the time since the start of SD Print (or last M109)
  5756. */
  5757. inline void gcode_M31() {
  5758. char buffer[21];
  5759. duration_t elapsed = print_job_timer.duration();
  5760. elapsed.toString(buffer);
  5761. lcd_setstatus(buffer);
  5762. SERIAL_ECHO_START();
  5763. SERIAL_ECHOLNPAIR("Print time: ", buffer);
  5764. }
  5765. #if ENABLED(SDSUPPORT)
  5766. /**
  5767. * M32: Select file and start SD Print
  5768. */
  5769. inline void gcode_M32() {
  5770. if (card.sdprinting)
  5771. stepper.synchronize();
  5772. char* namestartpos = parser.string_arg;
  5773. const bool call_procedure = parser.boolval('P');
  5774. if (card.cardOK) {
  5775. card.openFile(namestartpos, true, call_procedure);
  5776. if (parser.seenval('S'))
  5777. card.setIndex(parser.value_long());
  5778. card.startFileprint();
  5779. // Procedure calls count as normal print time.
  5780. if (!call_procedure) print_job_timer.start();
  5781. }
  5782. }
  5783. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  5784. /**
  5785. * M33: Get the long full path of a file or folder
  5786. *
  5787. * Parameters:
  5788. * <dospath> Case-insensitive DOS-style path to a file or folder
  5789. *
  5790. * Example:
  5791. * M33 miscel~1/armchair/armcha~1.gco
  5792. *
  5793. * Output:
  5794. * /Miscellaneous/Armchair/Armchair.gcode
  5795. */
  5796. inline void gcode_M33() {
  5797. card.printLongPath(parser.string_arg);
  5798. }
  5799. #endif
  5800. #if ENABLED(SDCARD_SORT_ALPHA) && ENABLED(SDSORT_GCODE)
  5801. /**
  5802. * M34: Set SD Card Sorting Options
  5803. */
  5804. inline void gcode_M34() {
  5805. if (parser.seen('S')) card.setSortOn(parser.value_bool());
  5806. if (parser.seenval('F')) {
  5807. const int v = parser.value_long();
  5808. card.setSortFolders(v < 0 ? -1 : v > 0 ? 1 : 0);
  5809. }
  5810. //if (parser.seen('R')) card.setSortReverse(parser.value_bool());
  5811. }
  5812. #endif // SDCARD_SORT_ALPHA && SDSORT_GCODE
  5813. /**
  5814. * M928: Start SD Write
  5815. */
  5816. inline void gcode_M928() {
  5817. card.openLogFile(parser.string_arg);
  5818. }
  5819. #endif // SDSUPPORT
  5820. /**
  5821. * Sensitive pin test for M42, M226
  5822. */
  5823. static bool pin_is_protected(const int8_t pin) {
  5824. static const int8_t sensitive_pins[] PROGMEM = SENSITIVE_PINS;
  5825. for (uint8_t i = 0; i < COUNT(sensitive_pins); i++)
  5826. if (pin == (int8_t)pgm_read_byte(&sensitive_pins[i])) return true;
  5827. return false;
  5828. }
  5829. /**
  5830. * M42: Change pin status via GCode
  5831. *
  5832. * P<pin> Pin number (LED if omitted)
  5833. * S<byte> Pin status from 0 - 255
  5834. */
  5835. inline void gcode_M42() {
  5836. if (!parser.seenval('S')) return;
  5837. const byte pin_status = parser.value_byte();
  5838. const int pin_number = parser.intval('P', LED_PIN);
  5839. if (pin_number < 0) return;
  5840. if (pin_is_protected(pin_number)) {
  5841. SERIAL_ERROR_START();
  5842. SERIAL_ERRORLNPGM(MSG_ERR_PROTECTED_PIN);
  5843. return;
  5844. }
  5845. pinMode(pin_number, OUTPUT);
  5846. digitalWrite(pin_number, pin_status);
  5847. analogWrite(pin_number, pin_status);
  5848. #if FAN_COUNT > 0
  5849. switch (pin_number) {
  5850. #if HAS_FAN0
  5851. case FAN_PIN: fanSpeeds[0] = pin_status; break;
  5852. #endif
  5853. #if HAS_FAN1
  5854. case FAN1_PIN: fanSpeeds[1] = pin_status; break;
  5855. #endif
  5856. #if HAS_FAN2
  5857. case FAN2_PIN: fanSpeeds[2] = pin_status; break;
  5858. #endif
  5859. }
  5860. #endif
  5861. }
  5862. #if ENABLED(PINS_DEBUGGING)
  5863. #include "pinsDebug.h"
  5864. inline void toggle_pins() {
  5865. const bool I_flag = parser.boolval('I');
  5866. const int repeat = parser.intval('R', 1),
  5867. start = parser.intval('S'),
  5868. end = parser.intval('E', NUM_DIGITAL_PINS - 1),
  5869. wait = parser.intval('W', 500);
  5870. for (uint8_t pin = start; pin <= end; pin++) {
  5871. //report_pin_state_extended(pin, I_flag, false);
  5872. if (!I_flag && pin_is_protected(pin)) {
  5873. report_pin_state_extended(pin, I_flag, true, "Untouched ");
  5874. SERIAL_EOL();
  5875. }
  5876. else {
  5877. report_pin_state_extended(pin, I_flag, true, "Pulsing ");
  5878. #if AVR_AT90USB1286_FAMILY // Teensy IDEs don't know about these pins so must use FASTIO
  5879. if (pin == TEENSY_E2) {
  5880. SET_OUTPUT(TEENSY_E2);
  5881. for (int16_t j = 0; j < repeat; j++) {
  5882. WRITE(TEENSY_E2, LOW); safe_delay(wait);
  5883. WRITE(TEENSY_E2, HIGH); safe_delay(wait);
  5884. WRITE(TEENSY_E2, LOW); safe_delay(wait);
  5885. }
  5886. }
  5887. else if (pin == TEENSY_E3) {
  5888. SET_OUTPUT(TEENSY_E3);
  5889. for (int16_t j = 0; j < repeat; j++) {
  5890. WRITE(TEENSY_E3, LOW); safe_delay(wait);
  5891. WRITE(TEENSY_E3, HIGH); safe_delay(wait);
  5892. WRITE(TEENSY_E3, LOW); safe_delay(wait);
  5893. }
  5894. }
  5895. else
  5896. #endif
  5897. {
  5898. pinMode(pin, OUTPUT);
  5899. for (int16_t j = 0; j < repeat; j++) {
  5900. digitalWrite(pin, 0); safe_delay(wait);
  5901. digitalWrite(pin, 1); safe_delay(wait);
  5902. digitalWrite(pin, 0); safe_delay(wait);
  5903. }
  5904. }
  5905. }
  5906. SERIAL_EOL();
  5907. }
  5908. SERIAL_ECHOLNPGM("Done.");
  5909. } // toggle_pins
  5910. inline void servo_probe_test() {
  5911. #if !(NUM_SERVOS > 0 && HAS_SERVO_0)
  5912. SERIAL_ERROR_START();
  5913. SERIAL_ERRORLNPGM("SERVO not setup");
  5914. #elif !HAS_Z_SERVO_ENDSTOP
  5915. SERIAL_ERROR_START();
  5916. SERIAL_ERRORLNPGM("Z_ENDSTOP_SERVO_NR not setup");
  5917. #else // HAS_Z_SERVO_ENDSTOP
  5918. const uint8_t probe_index = parser.byteval('P', Z_ENDSTOP_SERVO_NR);
  5919. SERIAL_PROTOCOLLNPGM("Servo probe test");
  5920. SERIAL_PROTOCOLLNPAIR(". using index: ", probe_index);
  5921. SERIAL_PROTOCOLLNPAIR(". deploy angle: ", z_servo_angle[0]);
  5922. SERIAL_PROTOCOLLNPAIR(". stow angle: ", z_servo_angle[1]);
  5923. bool probe_inverting;
  5924. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  5925. #define PROBE_TEST_PIN Z_MIN_PIN
  5926. SERIAL_PROTOCOLLNPAIR(". probe uses Z_MIN pin: ", PROBE_TEST_PIN);
  5927. SERIAL_PROTOCOLLNPGM(". uses Z_MIN_ENDSTOP_INVERTING (ignores Z_MIN_PROBE_ENDSTOP_INVERTING)");
  5928. SERIAL_PROTOCOLPGM(". Z_MIN_ENDSTOP_INVERTING: ");
  5929. #if Z_MIN_ENDSTOP_INVERTING
  5930. SERIAL_PROTOCOLLNPGM("true");
  5931. #else
  5932. SERIAL_PROTOCOLLNPGM("false");
  5933. #endif
  5934. probe_inverting = Z_MIN_ENDSTOP_INVERTING;
  5935. #elif ENABLED(Z_MIN_PROBE_ENDSTOP)
  5936. #define PROBE_TEST_PIN Z_MIN_PROBE_PIN
  5937. SERIAL_PROTOCOLLNPAIR(". probe uses Z_MIN_PROBE_PIN: ", PROBE_TEST_PIN);
  5938. SERIAL_PROTOCOLLNPGM(". uses Z_MIN_PROBE_ENDSTOP_INVERTING (ignores Z_MIN_ENDSTOP_INVERTING)");
  5939. SERIAL_PROTOCOLPGM(". Z_MIN_PROBE_ENDSTOP_INVERTING: ");
  5940. #if Z_MIN_PROBE_ENDSTOP_INVERTING
  5941. SERIAL_PROTOCOLLNPGM("true");
  5942. #else
  5943. SERIAL_PROTOCOLLNPGM("false");
  5944. #endif
  5945. probe_inverting = Z_MIN_PROBE_ENDSTOP_INVERTING;
  5946. #endif
  5947. SERIAL_PROTOCOLLNPGM(". deploy & stow 4 times");
  5948. SET_INPUT_PULLUP(PROBE_TEST_PIN);
  5949. bool deploy_state, stow_state;
  5950. for (uint8_t i = 0; i < 4; i++) {
  5951. MOVE_SERVO(probe_index, z_servo_angle[0]); //deploy
  5952. safe_delay(500);
  5953. deploy_state = READ(PROBE_TEST_PIN);
  5954. MOVE_SERVO(probe_index, z_servo_angle[1]); //stow
  5955. safe_delay(500);
  5956. stow_state = READ(PROBE_TEST_PIN);
  5957. }
  5958. if (probe_inverting != deploy_state) SERIAL_PROTOCOLLNPGM("WARNING - INVERTING setting probably backwards");
  5959. refresh_cmd_timeout();
  5960. if (deploy_state != stow_state) {
  5961. SERIAL_PROTOCOLLNPGM("BLTouch clone detected");
  5962. if (deploy_state) {
  5963. SERIAL_PROTOCOLLNPGM(". DEPLOYED state: HIGH (logic 1)");
  5964. SERIAL_PROTOCOLLNPGM(". STOWED (triggered) state: LOW (logic 0)");
  5965. }
  5966. else {
  5967. SERIAL_PROTOCOLLNPGM(". DEPLOYED state: LOW (logic 0)");
  5968. SERIAL_PROTOCOLLNPGM(". STOWED (triggered) state: HIGH (logic 1)");
  5969. }
  5970. #if ENABLED(BLTOUCH)
  5971. SERIAL_PROTOCOLLNPGM("ERROR: BLTOUCH enabled - set this device up as a Z Servo Probe with inverting as true.");
  5972. #endif
  5973. }
  5974. else { // measure active signal length
  5975. MOVE_SERVO(probe_index, z_servo_angle[0]); // deploy
  5976. safe_delay(500);
  5977. SERIAL_PROTOCOLLNPGM("please trigger probe");
  5978. uint16_t probe_counter = 0;
  5979. // Allow 30 seconds max for operator to trigger probe
  5980. for (uint16_t j = 0; j < 500 * 30 && probe_counter == 0 ; j++) {
  5981. safe_delay(2);
  5982. if (0 == j % (500 * 1)) // keep cmd_timeout happy
  5983. refresh_cmd_timeout();
  5984. if (deploy_state != READ(PROBE_TEST_PIN)) { // probe triggered
  5985. for (probe_counter = 1; probe_counter < 50 && deploy_state != READ(PROBE_TEST_PIN); ++probe_counter)
  5986. safe_delay(2);
  5987. if (probe_counter == 50)
  5988. SERIAL_PROTOCOLLNPGM("Z Servo Probe detected"); // >= 100mS active time
  5989. else if (probe_counter >= 2)
  5990. SERIAL_PROTOCOLLNPAIR("BLTouch compatible probe detected - pulse width (+/- 4mS): ", probe_counter * 2); // allow 4 - 100mS pulse
  5991. else
  5992. SERIAL_PROTOCOLLNPGM("noise detected - please re-run test"); // less than 2mS pulse
  5993. MOVE_SERVO(probe_index, z_servo_angle[1]); //stow
  5994. } // pulse detected
  5995. } // for loop waiting for trigger
  5996. if (probe_counter == 0) SERIAL_PROTOCOLLNPGM("trigger not detected");
  5997. } // measure active signal length
  5998. #endif
  5999. } // servo_probe_test
  6000. /**
  6001. * M43: Pin debug - report pin state, watch pins, toggle pins and servo probe test/report
  6002. *
  6003. * M43 - report name and state of pin(s)
  6004. * P<pin> Pin to read or watch. If omitted, reads all pins.
  6005. * I Flag to ignore Marlin's pin protection.
  6006. *
  6007. * M43 W - Watch pins -reporting changes- until reset, click, or M108.
  6008. * P<pin> Pin to read or watch. If omitted, read/watch all pins.
  6009. * I Flag to ignore Marlin's pin protection.
  6010. *
  6011. * M43 E<bool> - Enable / disable background endstop monitoring
  6012. * - Machine continues to operate
  6013. * - Reports changes to endstops
  6014. * - Toggles LED_PIN when an endstop changes
  6015. * - Can not reliably catch the 5mS pulse from BLTouch type probes
  6016. *
  6017. * M43 T - Toggle pin(s) and report which pin is being toggled
  6018. * S<pin> - Start Pin number. If not given, will default to 0
  6019. * L<pin> - End Pin number. If not given, will default to last pin defined for this board
  6020. * I<bool> - Flag to ignore Marlin's pin protection. Use with caution!!!!
  6021. * R - Repeat pulses on each pin this number of times before continueing to next pin
  6022. * W - Wait time (in miliseconds) between pulses. If not given will default to 500
  6023. *
  6024. * M43 S - Servo probe test
  6025. * P<index> - Probe index (optional - defaults to 0
  6026. */
  6027. inline void gcode_M43() {
  6028. if (parser.seen('T')) { // must be first or else its "S" and "E" parameters will execute endstop or servo test
  6029. toggle_pins();
  6030. return;
  6031. }
  6032. // Enable or disable endstop monitoring
  6033. if (parser.seen('E')) {
  6034. endstop_monitor_flag = parser.value_bool();
  6035. SERIAL_PROTOCOLPGM("endstop monitor ");
  6036. serialprintPGM(endstop_monitor_flag ? PSTR("en") : PSTR("dis"));
  6037. SERIAL_PROTOCOLLNPGM("abled");
  6038. return;
  6039. }
  6040. if (parser.seen('S')) {
  6041. servo_probe_test();
  6042. return;
  6043. }
  6044. // Get the range of pins to test or watch
  6045. const uint8_t first_pin = parser.byteval('P'),
  6046. last_pin = parser.seenval('P') ? first_pin : NUM_DIGITAL_PINS - 1;
  6047. if (first_pin > last_pin) return;
  6048. const bool ignore_protection = parser.boolval('I');
  6049. // Watch until click, M108, or reset
  6050. if (parser.boolval('W')) {
  6051. SERIAL_PROTOCOLLNPGM("Watching pins");
  6052. byte pin_state[last_pin - first_pin + 1];
  6053. for (int8_t pin = first_pin; pin <= last_pin; pin++) {
  6054. if (pin_is_protected(pin) && !ignore_protection) continue;
  6055. pinMode(pin, INPUT_PULLUP);
  6056. delay(1);
  6057. /*
  6058. if (IS_ANALOG(pin))
  6059. pin_state[pin - first_pin] = analogRead(pin - analogInputToDigitalPin(0)); // int16_t pin_state[...]
  6060. else
  6061. //*/
  6062. pin_state[pin - first_pin] = digitalRead(pin);
  6063. }
  6064. #if HAS_RESUME_CONTINUE
  6065. wait_for_user = true;
  6066. KEEPALIVE_STATE(PAUSED_FOR_USER);
  6067. #endif
  6068. for (;;) {
  6069. for (int8_t pin = first_pin; pin <= last_pin; pin++) {
  6070. if (pin_is_protected(pin) && !ignore_protection) continue;
  6071. const byte val =
  6072. /*
  6073. IS_ANALOG(pin)
  6074. ? analogRead(pin - analogInputToDigitalPin(0)) : // int16_t val
  6075. :
  6076. //*/
  6077. digitalRead(pin);
  6078. if (val != pin_state[pin - first_pin]) {
  6079. report_pin_state_extended(pin, ignore_protection, false);
  6080. pin_state[pin - first_pin] = val;
  6081. }
  6082. }
  6083. #if HAS_RESUME_CONTINUE
  6084. if (!wait_for_user) {
  6085. KEEPALIVE_STATE(IN_HANDLER);
  6086. break;
  6087. }
  6088. #endif
  6089. safe_delay(200);
  6090. }
  6091. return;
  6092. }
  6093. // Report current state of selected pin(s)
  6094. for (uint8_t pin = first_pin; pin <= last_pin; pin++)
  6095. report_pin_state_extended(pin, ignore_protection, true);
  6096. }
  6097. #endif // PINS_DEBUGGING
  6098. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  6099. /**
  6100. * M48: Z probe repeatability measurement function.
  6101. *
  6102. * Usage:
  6103. * M48 <P#> <X#> <Y#> <V#> <E> <L#>
  6104. * P = Number of sampled points (4-50, default 10)
  6105. * X = Sample X position
  6106. * Y = Sample Y position
  6107. * V = Verbose level (0-4, default=1)
  6108. * E = Engage Z probe for each reading
  6109. * L = Number of legs of movement before probe
  6110. * S = Schizoid (Or Star if you prefer)
  6111. *
  6112. * This function assumes the bed has been homed. Specifically, that a G28 command
  6113. * as been issued prior to invoking the M48 Z probe repeatability measurement function.
  6114. * Any information generated by a prior G29 Bed leveling command will be lost and need to be
  6115. * regenerated.
  6116. */
  6117. inline void gcode_M48() {
  6118. if (axis_unhomed_error()) return;
  6119. const int8_t verbose_level = parser.byteval('V', 1);
  6120. if (!WITHIN(verbose_level, 0, 4)) {
  6121. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-4).");
  6122. return;
  6123. }
  6124. if (verbose_level > 0)
  6125. SERIAL_PROTOCOLLNPGM("M48 Z-Probe Repeatability Test");
  6126. const int8_t n_samples = parser.byteval('P', 10);
  6127. if (!WITHIN(n_samples, 4, 50)) {
  6128. SERIAL_PROTOCOLLNPGM("?Sample size not plausible (4-50).");
  6129. return;
  6130. }
  6131. const bool stow_probe_after_each = parser.boolval('E');
  6132. float X_current = current_position[X_AXIS],
  6133. Y_current = current_position[Y_AXIS];
  6134. const float X_probe_location = parser.linearval('X', X_current + X_PROBE_OFFSET_FROM_EXTRUDER),
  6135. Y_probe_location = parser.linearval('Y', Y_current + Y_PROBE_OFFSET_FROM_EXTRUDER);
  6136. #if DISABLED(DELTA)
  6137. if (!WITHIN(X_probe_location, MIN_PROBE_X, MAX_PROBE_X)) {
  6138. out_of_range_error(PSTR("X"));
  6139. return;
  6140. }
  6141. if (!WITHIN(Y_probe_location, MIN_PROBE_Y, MAX_PROBE_Y)) {
  6142. out_of_range_error(PSTR("Y"));
  6143. return;
  6144. }
  6145. #else
  6146. if (!position_is_reachable_by_probe(X_probe_location, Y_probe_location)) {
  6147. SERIAL_PROTOCOLLNPGM("? (X,Y) location outside of probeable radius.");
  6148. return;
  6149. }
  6150. #endif
  6151. bool seen_L = parser.seen('L');
  6152. uint8_t n_legs = seen_L ? parser.value_byte() : 0;
  6153. if (n_legs > 15) {
  6154. SERIAL_PROTOCOLLNPGM("?Number of legs in movement not plausible (0-15).");
  6155. return;
  6156. }
  6157. if (n_legs == 1) n_legs = 2;
  6158. const bool schizoid_flag = parser.boolval('S');
  6159. if (schizoid_flag && !seen_L) n_legs = 7;
  6160. /**
  6161. * Now get everything to the specified probe point So we can safely do a
  6162. * probe to get us close to the bed. If the Z-Axis is far from the bed,
  6163. * we don't want to use that as a starting point for each probe.
  6164. */
  6165. if (verbose_level > 2)
  6166. SERIAL_PROTOCOLLNPGM("Positioning the probe...");
  6167. // Disable bed level correction in M48 because we want the raw data when we probe
  6168. #if HAS_LEVELING
  6169. const bool was_enabled = planner.leveling_active;
  6170. set_bed_leveling_enabled(false);
  6171. #endif
  6172. setup_for_endstop_or_probe_move();
  6173. double mean = 0.0, sigma = 0.0, min = 99999.9, max = -99999.9, sample_set[n_samples];
  6174. // Move to the first point, deploy, and probe
  6175. const float t = probe_pt(X_probe_location, Y_probe_location, stow_probe_after_each, verbose_level);
  6176. bool probing_good = !isnan(t);
  6177. if (probing_good) {
  6178. randomSeed(millis());
  6179. for (uint8_t n = 0; n < n_samples; n++) {
  6180. if (n_legs) {
  6181. const int dir = (random(0, 10) > 5.0) ? -1 : 1; // clockwise or counter clockwise
  6182. float angle = random(0.0, 360.0);
  6183. const float radius = random(
  6184. #if ENABLED(DELTA)
  6185. 0.1250000000 * (DELTA_PROBEABLE_RADIUS),
  6186. 0.3333333333 * (DELTA_PROBEABLE_RADIUS)
  6187. #else
  6188. 5.0, 0.125 * min(X_BED_SIZE, Y_BED_SIZE)
  6189. #endif
  6190. );
  6191. if (verbose_level > 3) {
  6192. SERIAL_ECHOPAIR("Starting radius: ", radius);
  6193. SERIAL_ECHOPAIR(" angle: ", angle);
  6194. SERIAL_ECHOPGM(" Direction: ");
  6195. if (dir > 0) SERIAL_ECHOPGM("Counter-");
  6196. SERIAL_ECHOLNPGM("Clockwise");
  6197. }
  6198. for (uint8_t l = 0; l < n_legs - 1; l++) {
  6199. double delta_angle;
  6200. if (schizoid_flag)
  6201. // The points of a 5 point star are 72 degrees apart. We need to
  6202. // skip a point and go to the next one on the star.
  6203. delta_angle = dir * 2.0 * 72.0;
  6204. else
  6205. // If we do this line, we are just trying to move further
  6206. // around the circle.
  6207. delta_angle = dir * (float) random(25, 45);
  6208. angle += delta_angle;
  6209. while (angle > 360.0) // We probably do not need to keep the angle between 0 and 2*PI, but the
  6210. angle -= 360.0; // Arduino documentation says the trig functions should not be given values
  6211. while (angle < 0.0) // outside of this range. It looks like they behave correctly with
  6212. angle += 360.0; // numbers outside of the range, but just to be safe we clamp them.
  6213. X_current = X_probe_location - (X_PROBE_OFFSET_FROM_EXTRUDER) + cos(RADIANS(angle)) * radius;
  6214. Y_current = Y_probe_location - (Y_PROBE_OFFSET_FROM_EXTRUDER) + sin(RADIANS(angle)) * radius;
  6215. #if DISABLED(DELTA)
  6216. X_current = constrain(X_current, X_MIN_POS, X_MAX_POS);
  6217. Y_current = constrain(Y_current, Y_MIN_POS, Y_MAX_POS);
  6218. #else
  6219. // If we have gone out too far, we can do a simple fix and scale the numbers
  6220. // back in closer to the origin.
  6221. while (!position_is_reachable_by_probe(X_current, Y_current)) {
  6222. X_current *= 0.8;
  6223. Y_current *= 0.8;
  6224. if (verbose_level > 3) {
  6225. SERIAL_ECHOPAIR("Pulling point towards center:", X_current);
  6226. SERIAL_ECHOLNPAIR(", ", Y_current);
  6227. }
  6228. }
  6229. #endif
  6230. if (verbose_level > 3) {
  6231. SERIAL_PROTOCOLPGM("Going to:");
  6232. SERIAL_ECHOPAIR(" X", X_current);
  6233. SERIAL_ECHOPAIR(" Y", Y_current);
  6234. SERIAL_ECHOLNPAIR(" Z", current_position[Z_AXIS]);
  6235. }
  6236. do_blocking_move_to_xy(X_current, Y_current);
  6237. } // n_legs loop
  6238. } // n_legs
  6239. // Probe a single point
  6240. sample_set[n] = probe_pt(X_probe_location, Y_probe_location, stow_probe_after_each, 0);
  6241. // Break the loop if the probe fails
  6242. probing_good = !isnan(sample_set[n]);
  6243. if (!probing_good) break;
  6244. /**
  6245. * Get the current mean for the data points we have so far
  6246. */
  6247. double sum = 0.0;
  6248. for (uint8_t j = 0; j <= n; j++) sum += sample_set[j];
  6249. mean = sum / (n + 1);
  6250. NOMORE(min, sample_set[n]);
  6251. NOLESS(max, sample_set[n]);
  6252. /**
  6253. * Now, use that mean to calculate the standard deviation for the
  6254. * data points we have so far
  6255. */
  6256. sum = 0.0;
  6257. for (uint8_t j = 0; j <= n; j++)
  6258. sum += sq(sample_set[j] - mean);
  6259. sigma = SQRT(sum / (n + 1));
  6260. if (verbose_level > 0) {
  6261. if (verbose_level > 1) {
  6262. SERIAL_PROTOCOL(n + 1);
  6263. SERIAL_PROTOCOLPGM(" of ");
  6264. SERIAL_PROTOCOL((int)n_samples);
  6265. SERIAL_PROTOCOLPGM(": z: ");
  6266. SERIAL_PROTOCOL_F(sample_set[n], 3);
  6267. if (verbose_level > 2) {
  6268. SERIAL_PROTOCOLPGM(" mean: ");
  6269. SERIAL_PROTOCOL_F(mean, 4);
  6270. SERIAL_PROTOCOLPGM(" sigma: ");
  6271. SERIAL_PROTOCOL_F(sigma, 6);
  6272. SERIAL_PROTOCOLPGM(" min: ");
  6273. SERIAL_PROTOCOL_F(min, 3);
  6274. SERIAL_PROTOCOLPGM(" max: ");
  6275. SERIAL_PROTOCOL_F(max, 3);
  6276. SERIAL_PROTOCOLPGM(" range: ");
  6277. SERIAL_PROTOCOL_F(max-min, 3);
  6278. }
  6279. SERIAL_EOL();
  6280. }
  6281. }
  6282. } // n_samples loop
  6283. }
  6284. STOW_PROBE();
  6285. if (probing_good) {
  6286. SERIAL_PROTOCOLLNPGM("Finished!");
  6287. if (verbose_level > 0) {
  6288. SERIAL_PROTOCOLPGM("Mean: ");
  6289. SERIAL_PROTOCOL_F(mean, 6);
  6290. SERIAL_PROTOCOLPGM(" Min: ");
  6291. SERIAL_PROTOCOL_F(min, 3);
  6292. SERIAL_PROTOCOLPGM(" Max: ");
  6293. SERIAL_PROTOCOL_F(max, 3);
  6294. SERIAL_PROTOCOLPGM(" Range: ");
  6295. SERIAL_PROTOCOL_F(max-min, 3);
  6296. SERIAL_EOL();
  6297. }
  6298. SERIAL_PROTOCOLPGM("Standard Deviation: ");
  6299. SERIAL_PROTOCOL_F(sigma, 6);
  6300. SERIAL_EOL();
  6301. SERIAL_EOL();
  6302. }
  6303. clean_up_after_endstop_or_probe_move();
  6304. // Re-enable bed level correction if it had been on
  6305. #if HAS_LEVELING
  6306. set_bed_leveling_enabled(was_enabled);
  6307. #endif
  6308. report_current_position();
  6309. }
  6310. #endif // Z_MIN_PROBE_REPEATABILITY_TEST
  6311. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
  6312. inline void gcode_M49() {
  6313. ubl.g26_debug_flag ^= true;
  6314. SERIAL_PROTOCOLPGM("UBL Debug Flag turned ");
  6315. serialprintPGM(ubl.g26_debug_flag ? PSTR("on.") : PSTR("off."));
  6316. }
  6317. #endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION
  6318. #if ENABLED(ULTRA_LCD) && ENABLED(LCD_SET_PROGRESS_MANUALLY)
  6319. /**
  6320. * M73: Set percentage complete (for display on LCD)
  6321. *
  6322. * Example:
  6323. * M73 P25 ; Set progress to 25%
  6324. *
  6325. * Notes:
  6326. * This has no effect during an SD print job
  6327. */
  6328. inline void gcode_M73() {
  6329. if (!IS_SD_PRINTING && parser.seen('P')) {
  6330. progress_bar_percent = parser.value_byte();
  6331. NOMORE(progress_bar_percent, 100);
  6332. }
  6333. }
  6334. #endif // ULTRA_LCD && LCD_SET_PROGRESS_MANUALLY
  6335. /**
  6336. * M75: Start print timer
  6337. */
  6338. inline void gcode_M75() { print_job_timer.start(); }
  6339. /**
  6340. * M76: Pause print timer
  6341. */
  6342. inline void gcode_M76() { print_job_timer.pause(); }
  6343. /**
  6344. * M77: Stop print timer
  6345. */
  6346. inline void gcode_M77() { print_job_timer.stop(); }
  6347. #if ENABLED(PRINTCOUNTER)
  6348. /**
  6349. * M78: Show print statistics
  6350. */
  6351. inline void gcode_M78() {
  6352. // "M78 S78" will reset the statistics
  6353. if (parser.intval('S') == 78)
  6354. print_job_timer.initStats();
  6355. else
  6356. print_job_timer.showStats();
  6357. }
  6358. #endif
  6359. /**
  6360. * M104: Set hot end temperature
  6361. */
  6362. inline void gcode_M104() {
  6363. if (get_target_extruder_from_command(104)) return;
  6364. if (DEBUGGING(DRYRUN)) return;
  6365. #if ENABLED(SINGLENOZZLE)
  6366. if (target_extruder != active_extruder) return;
  6367. #endif
  6368. if (parser.seenval('S')) {
  6369. const int16_t temp = parser.value_celsius();
  6370. thermalManager.setTargetHotend(temp, target_extruder);
  6371. #if ENABLED(DUAL_X_CARRIAGE)
  6372. if (dual_x_carriage_mode == DXC_DUPLICATION_MODE && target_extruder == 0)
  6373. thermalManager.setTargetHotend(temp ? temp + duplicate_extruder_temp_offset : 0, 1);
  6374. #endif
  6375. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  6376. /**
  6377. * Stop the timer at the end of print. Start is managed by 'heat and wait' M109.
  6378. * We use half EXTRUDE_MINTEMP here to allow nozzles to be put into hot
  6379. * standby mode, for instance in a dual extruder setup, without affecting
  6380. * the running print timer.
  6381. */
  6382. if (parser.value_celsius() <= (EXTRUDE_MINTEMP) / 2) {
  6383. print_job_timer.stop();
  6384. LCD_MESSAGEPGM(WELCOME_MSG);
  6385. }
  6386. #endif
  6387. if (parser.value_celsius() > thermalManager.degHotend(target_extruder))
  6388. lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
  6389. }
  6390. #if ENABLED(AUTOTEMP)
  6391. planner.autotemp_M104_M109();
  6392. #endif
  6393. }
  6394. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  6395. void print_heater_state(const float &c, const float &t,
  6396. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  6397. const float r,
  6398. #endif
  6399. const int8_t e=-2
  6400. ) {
  6401. #if !(HAS_TEMP_BED && HAS_TEMP_HOTEND) && HOTENDS <= 1
  6402. UNUSED(e);
  6403. #endif
  6404. SERIAL_PROTOCOLCHAR(' ');
  6405. SERIAL_PROTOCOLCHAR(
  6406. #if HAS_TEMP_BED && HAS_TEMP_HOTEND
  6407. e == -1 ? 'B' : 'T'
  6408. #elif HAS_TEMP_HOTEND
  6409. 'T'
  6410. #else
  6411. 'B'
  6412. #endif
  6413. );
  6414. #if HOTENDS > 1
  6415. if (e >= 0) SERIAL_PROTOCOLCHAR('0' + e);
  6416. #endif
  6417. SERIAL_PROTOCOLCHAR(':');
  6418. SERIAL_PROTOCOL(c);
  6419. SERIAL_PROTOCOLPAIR(" /" , t);
  6420. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  6421. SERIAL_PROTOCOLPAIR(" (", r / OVERSAMPLENR);
  6422. SERIAL_PROTOCOLCHAR(')');
  6423. #endif
  6424. }
  6425. void print_heaterstates() {
  6426. #if HAS_TEMP_HOTEND
  6427. print_heater_state(thermalManager.degHotend(target_extruder), thermalManager.degTargetHotend(target_extruder)
  6428. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  6429. , thermalManager.rawHotendTemp(target_extruder)
  6430. #endif
  6431. );
  6432. #endif
  6433. #if HAS_TEMP_BED
  6434. print_heater_state(thermalManager.degBed(), thermalManager.degTargetBed(),
  6435. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  6436. thermalManager.rawBedTemp(),
  6437. #endif
  6438. -1 // BED
  6439. );
  6440. #endif
  6441. #if HOTENDS > 1
  6442. HOTEND_LOOP() print_heater_state(thermalManager.degHotend(e), thermalManager.degTargetHotend(e),
  6443. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  6444. thermalManager.rawHotendTemp(e),
  6445. #endif
  6446. e
  6447. );
  6448. #endif
  6449. SERIAL_PROTOCOLPGM(" @:");
  6450. SERIAL_PROTOCOL(thermalManager.getHeaterPower(target_extruder));
  6451. #if HAS_TEMP_BED
  6452. SERIAL_PROTOCOLPGM(" B@:");
  6453. SERIAL_PROTOCOL(thermalManager.getHeaterPower(-1));
  6454. #endif
  6455. #if HOTENDS > 1
  6456. HOTEND_LOOP() {
  6457. SERIAL_PROTOCOLPAIR(" @", e);
  6458. SERIAL_PROTOCOLCHAR(':');
  6459. SERIAL_PROTOCOL(thermalManager.getHeaterPower(e));
  6460. }
  6461. #endif
  6462. }
  6463. #endif
  6464. /**
  6465. * M105: Read hot end and bed temperature
  6466. */
  6467. inline void gcode_M105() {
  6468. if (get_target_extruder_from_command(105)) return;
  6469. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  6470. SERIAL_PROTOCOLPGM(MSG_OK);
  6471. print_heaterstates();
  6472. #else // !HAS_TEMP_HOTEND && !HAS_TEMP_BED
  6473. SERIAL_ERROR_START();
  6474. SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
  6475. #endif
  6476. SERIAL_EOL();
  6477. }
  6478. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  6479. static uint8_t auto_report_temp_interval;
  6480. static millis_t next_temp_report_ms;
  6481. /**
  6482. * M155: Set temperature auto-report interval. M155 S<seconds>
  6483. */
  6484. inline void gcode_M155() {
  6485. if (parser.seenval('S')) {
  6486. auto_report_temp_interval = parser.value_byte();
  6487. NOMORE(auto_report_temp_interval, 60);
  6488. next_temp_report_ms = millis() + 1000UL * auto_report_temp_interval;
  6489. }
  6490. }
  6491. inline void auto_report_temperatures() {
  6492. if (auto_report_temp_interval && ELAPSED(millis(), next_temp_report_ms)) {
  6493. next_temp_report_ms = millis() + 1000UL * auto_report_temp_interval;
  6494. print_heaterstates();
  6495. SERIAL_EOL();
  6496. }
  6497. }
  6498. #endif // AUTO_REPORT_TEMPERATURES
  6499. #if FAN_COUNT > 0
  6500. /**
  6501. * M106: Set Fan Speed
  6502. *
  6503. * S<int> Speed between 0-255
  6504. * P<index> Fan index, if more than one fan
  6505. *
  6506. * With EXTRA_FAN_SPEED enabled:
  6507. *
  6508. * T<int> Restore/Use/Set Temporary Speed:
  6509. * 1 = Restore previous speed after T2
  6510. * 2 = Use temporary speed set with T3-255
  6511. * 3-255 = Set the speed for use with T2
  6512. */
  6513. inline void gcode_M106() {
  6514. const uint8_t p = parser.byteval('P');
  6515. if (p < FAN_COUNT) {
  6516. #if ENABLED(EXTRA_FAN_SPEED)
  6517. const int16_t t = parser.intval('T');
  6518. NOMORE(t, 255);
  6519. if (t > 0) {
  6520. switch (t) {
  6521. case 1:
  6522. fanSpeeds[p] = old_fanSpeeds[p];
  6523. break;
  6524. case 2:
  6525. old_fanSpeeds[p] = fanSpeeds[p];
  6526. fanSpeeds[p] = new_fanSpeeds[p];
  6527. break;
  6528. default:
  6529. new_fanSpeeds[p] = t;
  6530. break;
  6531. }
  6532. return;
  6533. }
  6534. #endif // EXTRA_FAN_SPEED
  6535. const uint16_t s = parser.ushortval('S', 255);
  6536. fanSpeeds[p] = min(s, 255);
  6537. }
  6538. }
  6539. /**
  6540. * M107: Fan Off
  6541. */
  6542. inline void gcode_M107() {
  6543. const uint16_t p = parser.ushortval('P');
  6544. if (p < FAN_COUNT) fanSpeeds[p] = 0;
  6545. }
  6546. #endif // FAN_COUNT > 0
  6547. #if DISABLED(EMERGENCY_PARSER)
  6548. /**
  6549. * M108: Stop the waiting for heaters in M109, M190, M303. Does not affect the target temperature.
  6550. */
  6551. inline void gcode_M108() { wait_for_heatup = false; }
  6552. /**
  6553. * M112: Emergency Stop
  6554. */
  6555. inline void gcode_M112() { kill(PSTR(MSG_KILLED)); }
  6556. /**
  6557. * M410: Quickstop - Abort all planned moves
  6558. *
  6559. * This will stop the carriages mid-move, so most likely they
  6560. * will be out of sync with the stepper position after this.
  6561. */
  6562. inline void gcode_M410() { quickstop_stepper(); }
  6563. #endif
  6564. /**
  6565. * M109: Sxxx Wait for extruder(s) to reach temperature. Waits only when heating.
  6566. * Rxxx Wait for extruder(s) to reach temperature. Waits when heating and cooling.
  6567. */
  6568. #ifndef MIN_COOLING_SLOPE_DEG
  6569. #define MIN_COOLING_SLOPE_DEG 1.50
  6570. #endif
  6571. #ifndef MIN_COOLING_SLOPE_TIME
  6572. #define MIN_COOLING_SLOPE_TIME 60
  6573. #endif
  6574. inline void gcode_M109() {
  6575. if (get_target_extruder_from_command(109)) return;
  6576. if (DEBUGGING(DRYRUN)) return;
  6577. #if ENABLED(SINGLENOZZLE)
  6578. if (target_extruder != active_extruder) return;
  6579. #endif
  6580. const bool no_wait_for_cooling = parser.seenval('S');
  6581. if (no_wait_for_cooling || parser.seenval('R')) {
  6582. const int16_t temp = parser.value_celsius();
  6583. thermalManager.setTargetHotend(temp, target_extruder);
  6584. #if ENABLED(DUAL_X_CARRIAGE)
  6585. if (dual_x_carriage_mode == DXC_DUPLICATION_MODE && target_extruder == 0)
  6586. thermalManager.setTargetHotend(temp ? temp + duplicate_extruder_temp_offset : 0, 1);
  6587. #endif
  6588. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  6589. /**
  6590. * Use half EXTRUDE_MINTEMP to allow nozzles to be put into hot
  6591. * standby mode, (e.g., in a dual extruder setup) without affecting
  6592. * the running print timer.
  6593. */
  6594. if (parser.value_celsius() <= (EXTRUDE_MINTEMP) / 2) {
  6595. print_job_timer.stop();
  6596. LCD_MESSAGEPGM(WELCOME_MSG);
  6597. }
  6598. else
  6599. print_job_timer.start();
  6600. #endif
  6601. if (thermalManager.isHeatingHotend(target_extruder)) lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
  6602. }
  6603. else return;
  6604. #if ENABLED(AUTOTEMP)
  6605. planner.autotemp_M104_M109();
  6606. #endif
  6607. #if TEMP_RESIDENCY_TIME > 0
  6608. millis_t residency_start_ms = 0;
  6609. // Loop until the temperature has stabilized
  6610. #define TEMP_CONDITIONS (!residency_start_ms || PENDING(now, residency_start_ms + (TEMP_RESIDENCY_TIME) * 1000UL))
  6611. #else
  6612. // Loop until the temperature is very close target
  6613. #define TEMP_CONDITIONS (wants_to_cool ? thermalManager.isCoolingHotend(target_extruder) : thermalManager.isHeatingHotend(target_extruder))
  6614. #endif
  6615. float target_temp = -1.0, old_temp = 9999.0;
  6616. bool wants_to_cool = false;
  6617. wait_for_heatup = true;
  6618. millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
  6619. #if DISABLED(BUSY_WHILE_HEATING)
  6620. KEEPALIVE_STATE(NOT_BUSY);
  6621. #endif
  6622. #if ENABLED(PRINTER_EVENT_LEDS)
  6623. const float start_temp = thermalManager.degHotend(target_extruder);
  6624. uint8_t old_blue = 0;
  6625. #endif
  6626. do {
  6627. // Target temperature might be changed during the loop
  6628. if (target_temp != thermalManager.degTargetHotend(target_extruder)) {
  6629. wants_to_cool = thermalManager.isCoolingHotend(target_extruder);
  6630. target_temp = thermalManager.degTargetHotend(target_extruder);
  6631. // Exit if S<lower>, continue if S<higher>, R<lower>, or R<higher>
  6632. if (no_wait_for_cooling && wants_to_cool) break;
  6633. }
  6634. now = millis();
  6635. if (ELAPSED(now, next_temp_ms)) { //Print temp & remaining time every 1s while waiting
  6636. next_temp_ms = now + 1000UL;
  6637. print_heaterstates();
  6638. #if TEMP_RESIDENCY_TIME > 0
  6639. SERIAL_PROTOCOLPGM(" W:");
  6640. if (residency_start_ms)
  6641. SERIAL_PROTOCOL(long((((TEMP_RESIDENCY_TIME) * 1000UL) - (now - residency_start_ms)) / 1000UL));
  6642. else
  6643. SERIAL_PROTOCOLCHAR('?');
  6644. #endif
  6645. SERIAL_EOL();
  6646. }
  6647. idle();
  6648. refresh_cmd_timeout(); // to prevent stepper_inactive_time from running out
  6649. const float temp = thermalManager.degHotend(target_extruder);
  6650. #if ENABLED(PRINTER_EVENT_LEDS)
  6651. // Gradually change LED strip from violet to red as nozzle heats up
  6652. if (!wants_to_cool) {
  6653. const uint8_t blue = map(constrain(temp, start_temp, target_temp), start_temp, target_temp, 255, 0);
  6654. if (blue != old_blue) {
  6655. old_blue = blue;
  6656. set_led_color(255, 0, blue
  6657. #if ENABLED(NEOPIXEL_LED)
  6658. , 0
  6659. , pixels.getBrightness()
  6660. #if ENABLED(NEOPIXEL_IS_SEQUENTIAL)
  6661. , true
  6662. #endif
  6663. #endif
  6664. );
  6665. }
  6666. }
  6667. #endif
  6668. #if TEMP_RESIDENCY_TIME > 0
  6669. const float temp_diff = FABS(target_temp - temp);
  6670. if (!residency_start_ms) {
  6671. // Start the TEMP_RESIDENCY_TIME timer when we reach target temp for the first time.
  6672. if (temp_diff < TEMP_WINDOW) residency_start_ms = now;
  6673. }
  6674. else if (temp_diff > TEMP_HYSTERESIS) {
  6675. // Restart the timer whenever the temperature falls outside the hysteresis.
  6676. residency_start_ms = now;
  6677. }
  6678. #endif
  6679. // Prevent a wait-forever situation if R is misused i.e. M109 R0
  6680. if (wants_to_cool) {
  6681. // break after MIN_COOLING_SLOPE_TIME seconds
  6682. // if the temperature did not drop at least MIN_COOLING_SLOPE_DEG
  6683. if (!next_cool_check_ms || ELAPSED(now, next_cool_check_ms)) {
  6684. if (old_temp - temp < MIN_COOLING_SLOPE_DEG) break;
  6685. next_cool_check_ms = now + 1000UL * MIN_COOLING_SLOPE_TIME;
  6686. old_temp = temp;
  6687. }
  6688. }
  6689. } while (wait_for_heatup && TEMP_CONDITIONS);
  6690. if (wait_for_heatup) {
  6691. LCD_MESSAGEPGM(MSG_HEATING_COMPLETE);
  6692. #if ENABLED(PRINTER_EVENT_LEDS)
  6693. #if ENABLED(RGB_LED) || ENABLED(BLINKM) || ENABLED(PCA9632) || ENABLED(RGBW_LED)
  6694. set_led_color(LED_WHITE);
  6695. #endif
  6696. #if ENABLED(NEOPIXEL_LED)
  6697. set_neopixel_color(pixels.Color(NEO_WHITE));
  6698. #endif
  6699. #endif
  6700. }
  6701. #if DISABLED(BUSY_WHILE_HEATING)
  6702. KEEPALIVE_STATE(IN_HANDLER);
  6703. #endif
  6704. }
  6705. #if HAS_TEMP_BED
  6706. #ifndef MIN_COOLING_SLOPE_DEG_BED
  6707. #define MIN_COOLING_SLOPE_DEG_BED 1.50
  6708. #endif
  6709. #ifndef MIN_COOLING_SLOPE_TIME_BED
  6710. #define MIN_COOLING_SLOPE_TIME_BED 60
  6711. #endif
  6712. /**
  6713. * M190: Sxxx Wait for bed current temp to reach target temp. Waits only when heating
  6714. * Rxxx Wait for bed current temp to reach target temp. Waits when heating and cooling
  6715. */
  6716. inline void gcode_M190() {
  6717. if (DEBUGGING(DRYRUN)) return;
  6718. LCD_MESSAGEPGM(MSG_BED_HEATING);
  6719. const bool no_wait_for_cooling = parser.seenval('S');
  6720. if (no_wait_for_cooling || parser.seenval('R')) {
  6721. thermalManager.setTargetBed(parser.value_celsius());
  6722. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  6723. if (parser.value_celsius() > BED_MINTEMP)
  6724. print_job_timer.start();
  6725. #endif
  6726. }
  6727. else return;
  6728. #if TEMP_BED_RESIDENCY_TIME > 0
  6729. millis_t residency_start_ms = 0;
  6730. // Loop until the temperature has stabilized
  6731. #define TEMP_BED_CONDITIONS (!residency_start_ms || PENDING(now, residency_start_ms + (TEMP_BED_RESIDENCY_TIME) * 1000UL))
  6732. #else
  6733. // Loop until the temperature is very close target
  6734. #define TEMP_BED_CONDITIONS (wants_to_cool ? thermalManager.isCoolingBed() : thermalManager.isHeatingBed())
  6735. #endif
  6736. float target_temp = -1.0, old_temp = 9999.0;
  6737. bool wants_to_cool = false;
  6738. wait_for_heatup = true;
  6739. millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
  6740. #if DISABLED(BUSY_WHILE_HEATING)
  6741. KEEPALIVE_STATE(NOT_BUSY);
  6742. #endif
  6743. target_extruder = active_extruder; // for print_heaterstates
  6744. #if ENABLED(PRINTER_EVENT_LEDS)
  6745. const float start_temp = thermalManager.degBed();
  6746. uint8_t old_red = 255;
  6747. #endif
  6748. do {
  6749. // Target temperature might be changed during the loop
  6750. if (target_temp != thermalManager.degTargetBed()) {
  6751. wants_to_cool = thermalManager.isCoolingBed();
  6752. target_temp = thermalManager.degTargetBed();
  6753. // Exit if S<lower>, continue if S<higher>, R<lower>, or R<higher>
  6754. if (no_wait_for_cooling && wants_to_cool) break;
  6755. }
  6756. now = millis();
  6757. if (ELAPSED(now, next_temp_ms)) { //Print Temp Reading every 1 second while heating up.
  6758. next_temp_ms = now + 1000UL;
  6759. print_heaterstates();
  6760. #if TEMP_BED_RESIDENCY_TIME > 0
  6761. SERIAL_PROTOCOLPGM(" W:");
  6762. if (residency_start_ms)
  6763. SERIAL_PROTOCOL(long((((TEMP_BED_RESIDENCY_TIME) * 1000UL) - (now - residency_start_ms)) / 1000UL));
  6764. else
  6765. SERIAL_PROTOCOLCHAR('?');
  6766. #endif
  6767. SERIAL_EOL();
  6768. }
  6769. idle();
  6770. refresh_cmd_timeout(); // to prevent stepper_inactive_time from running out
  6771. const float temp = thermalManager.degBed();
  6772. #if ENABLED(PRINTER_EVENT_LEDS)
  6773. // Gradually change LED strip from blue to violet as bed heats up
  6774. if (!wants_to_cool) {
  6775. const uint8_t red = map(constrain(temp, start_temp, target_temp), start_temp, target_temp, 0, 255);
  6776. if (red != old_red) {
  6777. old_red = red;
  6778. set_led_color(red, 0, 255
  6779. #if ENABLED(NEOPIXEL_LED)
  6780. , 0, pixels.getBrightness()
  6781. #if ENABLED(NEOPIXEL_IS_SEQUENTIAL)
  6782. , true
  6783. #endif
  6784. #endif
  6785. );
  6786. }
  6787. }
  6788. #endif
  6789. #if TEMP_BED_RESIDENCY_TIME > 0
  6790. const float temp_diff = FABS(target_temp - temp);
  6791. if (!residency_start_ms) {
  6792. // Start the TEMP_BED_RESIDENCY_TIME timer when we reach target temp for the first time.
  6793. if (temp_diff < TEMP_BED_WINDOW) residency_start_ms = now;
  6794. }
  6795. else if (temp_diff > TEMP_BED_HYSTERESIS) {
  6796. // Restart the timer whenever the temperature falls outside the hysteresis.
  6797. residency_start_ms = now;
  6798. }
  6799. #endif // TEMP_BED_RESIDENCY_TIME > 0
  6800. // Prevent a wait-forever situation if R is misused i.e. M190 R0
  6801. if (wants_to_cool) {
  6802. // Break after MIN_COOLING_SLOPE_TIME_BED seconds
  6803. // if the temperature did not drop at least MIN_COOLING_SLOPE_DEG_BED
  6804. if (!next_cool_check_ms || ELAPSED(now, next_cool_check_ms)) {
  6805. if (old_temp - temp < MIN_COOLING_SLOPE_DEG_BED) break;
  6806. next_cool_check_ms = now + 1000UL * MIN_COOLING_SLOPE_TIME_BED;
  6807. old_temp = temp;
  6808. }
  6809. }
  6810. } while (wait_for_heatup && TEMP_BED_CONDITIONS);
  6811. if (wait_for_heatup) LCD_MESSAGEPGM(MSG_BED_DONE);
  6812. #if DISABLED(BUSY_WHILE_HEATING)
  6813. KEEPALIVE_STATE(IN_HANDLER);
  6814. #endif
  6815. }
  6816. #endif // HAS_TEMP_BED
  6817. /**
  6818. * M110: Set Current Line Number
  6819. */
  6820. inline void gcode_M110() {
  6821. if (parser.seenval('N')) gcode_LastN = parser.value_long();
  6822. }
  6823. /**
  6824. * M111: Set the debug level
  6825. */
  6826. inline void gcode_M111() {
  6827. if (parser.seen('S')) marlin_debug_flags = parser.byteval('S');
  6828. const static char str_debug_1[] PROGMEM = MSG_DEBUG_ECHO,
  6829. str_debug_2[] PROGMEM = MSG_DEBUG_INFO,
  6830. str_debug_4[] PROGMEM = MSG_DEBUG_ERRORS,
  6831. str_debug_8[] PROGMEM = MSG_DEBUG_DRYRUN,
  6832. str_debug_16[] PROGMEM = MSG_DEBUG_COMMUNICATION
  6833. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6834. , str_debug_32[] PROGMEM = MSG_DEBUG_LEVELING
  6835. #endif
  6836. ;
  6837. const static char* const debug_strings[] PROGMEM = {
  6838. str_debug_1, str_debug_2, str_debug_4, str_debug_8, str_debug_16
  6839. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6840. , str_debug_32
  6841. #endif
  6842. };
  6843. SERIAL_ECHO_START();
  6844. SERIAL_ECHOPGM(MSG_DEBUG_PREFIX);
  6845. if (marlin_debug_flags) {
  6846. uint8_t comma = 0;
  6847. for (uint8_t i = 0; i < COUNT(debug_strings); i++) {
  6848. if (TEST(marlin_debug_flags, i)) {
  6849. if (comma++) SERIAL_CHAR(',');
  6850. serialprintPGM((char*)pgm_read_word(&debug_strings[i]));
  6851. }
  6852. }
  6853. }
  6854. else {
  6855. SERIAL_ECHOPGM(MSG_DEBUG_OFF);
  6856. }
  6857. SERIAL_EOL();
  6858. }
  6859. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  6860. /**
  6861. * M113: Get or set Host Keepalive interval (0 to disable)
  6862. *
  6863. * S<seconds> Optional. Set the keepalive interval.
  6864. */
  6865. inline void gcode_M113() {
  6866. if (parser.seenval('S')) {
  6867. host_keepalive_interval = parser.value_byte();
  6868. NOMORE(host_keepalive_interval, 60);
  6869. }
  6870. else {
  6871. SERIAL_ECHO_START();
  6872. SERIAL_ECHOLNPAIR("M113 S", (unsigned long)host_keepalive_interval);
  6873. }
  6874. }
  6875. #endif
  6876. #if ENABLED(BARICUDA)
  6877. #if HAS_HEATER_1
  6878. /**
  6879. * M126: Heater 1 valve open
  6880. */
  6881. inline void gcode_M126() { baricuda_valve_pressure = parser.byteval('S', 255); }
  6882. /**
  6883. * M127: Heater 1 valve close
  6884. */
  6885. inline void gcode_M127() { baricuda_valve_pressure = 0; }
  6886. #endif
  6887. #if HAS_HEATER_2
  6888. /**
  6889. * M128: Heater 2 valve open
  6890. */
  6891. inline void gcode_M128() { baricuda_e_to_p_pressure = parser.byteval('S', 255); }
  6892. /**
  6893. * M129: Heater 2 valve close
  6894. */
  6895. inline void gcode_M129() { baricuda_e_to_p_pressure = 0; }
  6896. #endif
  6897. #endif // BARICUDA
  6898. /**
  6899. * M140: Set bed temperature
  6900. */
  6901. inline void gcode_M140() {
  6902. if (DEBUGGING(DRYRUN)) return;
  6903. if (parser.seenval('S')) thermalManager.setTargetBed(parser.value_celsius());
  6904. }
  6905. #if ENABLED(ULTIPANEL)
  6906. /**
  6907. * M145: Set the heatup state for a material in the LCD menu
  6908. *
  6909. * S<material> (0=PLA, 1=ABS)
  6910. * H<hotend temp>
  6911. * B<bed temp>
  6912. * F<fan speed>
  6913. */
  6914. inline void gcode_M145() {
  6915. const uint8_t material = (uint8_t)parser.intval('S');
  6916. if (material >= COUNT(lcd_preheat_hotend_temp)) {
  6917. SERIAL_ERROR_START();
  6918. SERIAL_ERRORLNPGM(MSG_ERR_MATERIAL_INDEX);
  6919. }
  6920. else {
  6921. int v;
  6922. if (parser.seenval('H')) {
  6923. v = parser.value_int();
  6924. lcd_preheat_hotend_temp[material] = constrain(v, EXTRUDE_MINTEMP, HEATER_0_MAXTEMP - 15);
  6925. }
  6926. if (parser.seenval('F')) {
  6927. v = parser.value_int();
  6928. lcd_preheat_fan_speed[material] = constrain(v, 0, 255);
  6929. }
  6930. #if TEMP_SENSOR_BED != 0
  6931. if (parser.seenval('B')) {
  6932. v = parser.value_int();
  6933. lcd_preheat_bed_temp[material] = constrain(v, BED_MINTEMP, BED_MAXTEMP - 15);
  6934. }
  6935. #endif
  6936. }
  6937. }
  6938. #endif // ULTIPANEL
  6939. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  6940. /**
  6941. * M149: Set temperature units
  6942. */
  6943. inline void gcode_M149() {
  6944. if (parser.seenval('C')) parser.set_input_temp_units(TEMPUNIT_C);
  6945. else if (parser.seenval('K')) parser.set_input_temp_units(TEMPUNIT_K);
  6946. else if (parser.seenval('F')) parser.set_input_temp_units(TEMPUNIT_F);
  6947. }
  6948. #endif
  6949. #if HAS_POWER_SWITCH
  6950. /**
  6951. * M80 : Turn on the Power Supply
  6952. * M80 S : Report the current state and exit
  6953. */
  6954. inline void gcode_M80() {
  6955. // S: Report the current power supply state and exit
  6956. if (parser.seen('S')) {
  6957. serialprintPGM(powersupply_on ? PSTR("PS:1\n") : PSTR("PS:0\n"));
  6958. return;
  6959. }
  6960. OUT_WRITE(PS_ON_PIN, PS_ON_AWAKE); // GND
  6961. /**
  6962. * If you have a switch on suicide pin, this is useful
  6963. * if you want to start another print with suicide feature after
  6964. * a print without suicide...
  6965. */
  6966. #if HAS_SUICIDE
  6967. OUT_WRITE(SUICIDE_PIN, HIGH);
  6968. #endif
  6969. #if ENABLED(HAVE_TMC2130)
  6970. delay(100);
  6971. tmc2130_init(); // Settings only stick when the driver has power
  6972. #endif
  6973. powersupply_on = true;
  6974. #if ENABLED(ULTIPANEL)
  6975. LCD_MESSAGEPGM(WELCOME_MSG);
  6976. #endif
  6977. }
  6978. #endif // HAS_POWER_SWITCH
  6979. /**
  6980. * M81: Turn off Power, including Power Supply, if there is one.
  6981. *
  6982. * This code should ALWAYS be available for EMERGENCY SHUTDOWN!
  6983. */
  6984. inline void gcode_M81() {
  6985. thermalManager.disable_all_heaters();
  6986. stepper.finish_and_disable();
  6987. #if FAN_COUNT > 0
  6988. for (uint8_t i = 0; i < FAN_COUNT; i++) fanSpeeds[i] = 0;
  6989. #if ENABLED(PROBING_FANS_OFF)
  6990. fans_paused = false;
  6991. ZERO(paused_fanSpeeds);
  6992. #endif
  6993. #endif
  6994. safe_delay(1000); // Wait 1 second before switching off
  6995. #if HAS_SUICIDE
  6996. stepper.synchronize();
  6997. suicide();
  6998. #elif HAS_POWER_SWITCH
  6999. OUT_WRITE(PS_ON_PIN, PS_ON_ASLEEP);
  7000. powersupply_on = false;
  7001. #endif
  7002. #if ENABLED(ULTIPANEL)
  7003. LCD_MESSAGEPGM(MACHINE_NAME " " MSG_OFF ".");
  7004. #endif
  7005. }
  7006. /**
  7007. * M82: Set E codes absolute (default)
  7008. */
  7009. inline void gcode_M82() { axis_relative_modes[E_AXIS] = false; }
  7010. /**
  7011. * M83: Set E codes relative while in Absolute Coordinates (G90) mode
  7012. */
  7013. inline void gcode_M83() { axis_relative_modes[E_AXIS] = true; }
  7014. /**
  7015. * M18, M84: Disable stepper motors
  7016. */
  7017. inline void gcode_M18_M84() {
  7018. if (parser.seenval('S')) {
  7019. stepper_inactive_time = parser.value_millis_from_seconds();
  7020. }
  7021. else {
  7022. bool all_axis = !((parser.seen('X')) || (parser.seen('Y')) || (parser.seen('Z')) || (parser.seen('E')));
  7023. if (all_axis) {
  7024. stepper.finish_and_disable();
  7025. }
  7026. else {
  7027. stepper.synchronize();
  7028. if (parser.seen('X')) disable_X();
  7029. if (parser.seen('Y')) disable_Y();
  7030. if (parser.seen('Z')) disable_Z();
  7031. #if E0_ENABLE_PIN != X_ENABLE_PIN && E1_ENABLE_PIN != Y_ENABLE_PIN // Only enable on boards that have separate ENABLE_PINS
  7032. if (parser.seen('E')) disable_e_steppers();
  7033. #endif
  7034. }
  7035. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTRA_LCD) // Only needed with an LCD
  7036. ubl_lcd_map_control = defer_return_to_status = false;
  7037. #endif
  7038. }
  7039. }
  7040. /**
  7041. * M85: Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
  7042. */
  7043. inline void gcode_M85() {
  7044. if (parser.seen('S')) max_inactive_time = parser.value_millis_from_seconds();
  7045. }
  7046. /**
  7047. * Multi-stepper support for M92, M201, M203
  7048. */
  7049. #if ENABLED(DISTINCT_E_FACTORS)
  7050. #define GET_TARGET_EXTRUDER(CMD) if (get_target_extruder_from_command(CMD)) return
  7051. #define TARGET_EXTRUDER target_extruder
  7052. #else
  7053. #define GET_TARGET_EXTRUDER(CMD) NOOP
  7054. #define TARGET_EXTRUDER 0
  7055. #endif
  7056. /**
  7057. * M92: Set axis steps-per-unit for one or more axes, X, Y, Z, and E.
  7058. * (Follows the same syntax as G92)
  7059. *
  7060. * With multiple extruders use T to specify which one.
  7061. */
  7062. inline void gcode_M92() {
  7063. GET_TARGET_EXTRUDER(92);
  7064. LOOP_XYZE(i) {
  7065. if (parser.seen(axis_codes[i])) {
  7066. if (i == E_AXIS) {
  7067. const float value = parser.value_per_axis_unit((AxisEnum)(E_AXIS + TARGET_EXTRUDER));
  7068. if (value < 20.0) {
  7069. float factor = planner.axis_steps_per_mm[E_AXIS + TARGET_EXTRUDER] / value; // increase e constants if M92 E14 is given for netfab.
  7070. planner.max_jerk[E_AXIS] *= factor;
  7071. planner.max_feedrate_mm_s[E_AXIS + TARGET_EXTRUDER] *= factor;
  7072. planner.max_acceleration_steps_per_s2[E_AXIS + TARGET_EXTRUDER] *= factor;
  7073. }
  7074. planner.axis_steps_per_mm[E_AXIS + TARGET_EXTRUDER] = value;
  7075. }
  7076. else {
  7077. planner.axis_steps_per_mm[i] = parser.value_per_axis_unit((AxisEnum)i);
  7078. }
  7079. }
  7080. }
  7081. planner.refresh_positioning();
  7082. }
  7083. /**
  7084. * Output the current position to serial
  7085. */
  7086. void report_current_position() {
  7087. SERIAL_PROTOCOLPGM("X:");
  7088. SERIAL_PROTOCOL(LOGICAL_X_POSITION(current_position[X_AXIS]));
  7089. SERIAL_PROTOCOLPGM(" Y:");
  7090. SERIAL_PROTOCOL(LOGICAL_X_POSITION(current_position[Y_AXIS]));
  7091. SERIAL_PROTOCOLPGM(" Z:");
  7092. SERIAL_PROTOCOL(LOGICAL_Z_POSITION(current_position[Z_AXIS]));
  7093. SERIAL_PROTOCOLPGM(" E:");
  7094. SERIAL_PROTOCOL(current_position[E_AXIS]);
  7095. stepper.report_positions();
  7096. #if IS_SCARA
  7097. SERIAL_PROTOCOLPAIR("SCARA Theta:", stepper.get_axis_position_degrees(A_AXIS));
  7098. SERIAL_PROTOCOLLNPAIR(" Psi+Theta:", stepper.get_axis_position_degrees(B_AXIS));
  7099. SERIAL_EOL();
  7100. #endif
  7101. }
  7102. #ifdef M114_DETAIL
  7103. void report_xyze(const float pos[XYZE], const uint8_t n = 4, const uint8_t precision = 3) {
  7104. char str[12];
  7105. for (uint8_t i = 0; i < n; i++) {
  7106. SERIAL_CHAR(' ');
  7107. SERIAL_CHAR(axis_codes[i]);
  7108. SERIAL_CHAR(':');
  7109. SERIAL_PROTOCOL(dtostrf(pos[i], 8, precision, str));
  7110. }
  7111. SERIAL_EOL();
  7112. }
  7113. inline void report_xyz(const float pos[XYZ]) { report_xyze(pos, 3); }
  7114. void report_current_position_detail() {
  7115. stepper.synchronize();
  7116. SERIAL_PROTOCOLPGM("\nLogical:");
  7117. const float logical[XYZ] = {
  7118. LOGICAL_X_POSITION(current_position[X_AXIS]),
  7119. LOGICAL_Y_POSITION(current_position[Y_AXIS]),
  7120. LOGICAL_Z_POSITION(current_position[Z_AXIS])
  7121. };
  7122. report_xyze(logical);
  7123. SERIAL_PROTOCOLPGM("Raw: ");
  7124. report_xyz(current_position);
  7125. SERIAL_PROTOCOLPGM("Leveled:");
  7126. float leveled[XYZ] = { current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS] };
  7127. planner.apply_leveling(leveled);
  7128. report_xyz(leveled);
  7129. SERIAL_PROTOCOLPGM("UnLevel:");
  7130. float unleveled[XYZ] = { leveled[X_AXIS], leveled[Y_AXIS], leveled[Z_AXIS] };
  7131. planner.unapply_leveling(unleveled);
  7132. report_xyz(unleveled);
  7133. #if IS_KINEMATIC
  7134. #if IS_SCARA
  7135. SERIAL_PROTOCOLPGM("ScaraK: ");
  7136. #else
  7137. SERIAL_PROTOCOLPGM("DeltaK: ");
  7138. #endif
  7139. inverse_kinematics(leveled); // writes delta[]
  7140. report_xyz(delta);
  7141. #endif
  7142. SERIAL_PROTOCOLPGM("Stepper:");
  7143. const float step_count[XYZE] = { stepper.position(X_AXIS), stepper.position(Y_AXIS), stepper.position(Z_AXIS), stepper.position(E_AXIS) };
  7144. report_xyze(step_count, 4, 0);
  7145. #if IS_SCARA
  7146. const float deg[XYZ] = {
  7147. stepper.get_axis_position_degrees(A_AXIS),
  7148. stepper.get_axis_position_degrees(B_AXIS)
  7149. };
  7150. SERIAL_PROTOCOLPGM("Degrees:");
  7151. report_xyze(deg, 2);
  7152. #endif
  7153. SERIAL_PROTOCOLPGM("FromStp:");
  7154. get_cartesian_from_steppers(); // writes cartes[XYZ] (with forward kinematics)
  7155. const float from_steppers[XYZE] = { cartes[X_AXIS], cartes[Y_AXIS], cartes[Z_AXIS], stepper.get_axis_position_mm(E_AXIS) };
  7156. report_xyze(from_steppers);
  7157. const float diff[XYZE] = {
  7158. from_steppers[X_AXIS] - leveled[X_AXIS],
  7159. from_steppers[Y_AXIS] - leveled[Y_AXIS],
  7160. from_steppers[Z_AXIS] - leveled[Z_AXIS],
  7161. from_steppers[E_AXIS] - current_position[E_AXIS]
  7162. };
  7163. SERIAL_PROTOCOLPGM("Differ: ");
  7164. report_xyze(diff);
  7165. }
  7166. #endif // M114_DETAIL
  7167. /**
  7168. * M114: Report current position to host
  7169. */
  7170. inline void gcode_M114() {
  7171. #ifdef M114_DETAIL
  7172. if (parser.seen('D')) {
  7173. report_current_position_detail();
  7174. return;
  7175. }
  7176. #endif
  7177. stepper.synchronize();
  7178. report_current_position();
  7179. }
  7180. /**
  7181. * M115: Capabilities string
  7182. */
  7183. inline void gcode_M115() {
  7184. SERIAL_PROTOCOLLNPGM(MSG_M115_REPORT);
  7185. #if ENABLED(EXTENDED_CAPABILITIES_REPORT)
  7186. // EEPROM (M500, M501)
  7187. #if ENABLED(EEPROM_SETTINGS)
  7188. SERIAL_PROTOCOLLNPGM("Cap:EEPROM:1");
  7189. #else
  7190. SERIAL_PROTOCOLLNPGM("Cap:EEPROM:0");
  7191. #endif
  7192. // AUTOREPORT_TEMP (M155)
  7193. #if ENABLED(AUTO_REPORT_TEMPERATURES)
  7194. SERIAL_PROTOCOLLNPGM("Cap:AUTOREPORT_TEMP:1");
  7195. #else
  7196. SERIAL_PROTOCOLLNPGM("Cap:AUTOREPORT_TEMP:0");
  7197. #endif
  7198. // PROGRESS (M530 S L, M531 <file>, M532 X L)
  7199. SERIAL_PROTOCOLLNPGM("Cap:PROGRESS:0");
  7200. // Print Job timer M75, M76, M77
  7201. SERIAL_PROTOCOLLNPGM("Cap:PRINT_JOB:1");
  7202. // AUTOLEVEL (G29)
  7203. #if HAS_ABL
  7204. SERIAL_PROTOCOLLNPGM("Cap:AUTOLEVEL:1");
  7205. #else
  7206. SERIAL_PROTOCOLLNPGM("Cap:AUTOLEVEL:0");
  7207. #endif
  7208. // Z_PROBE (G30)
  7209. #if HAS_BED_PROBE
  7210. SERIAL_PROTOCOLLNPGM("Cap:Z_PROBE:1");
  7211. #else
  7212. SERIAL_PROTOCOLLNPGM("Cap:Z_PROBE:0");
  7213. #endif
  7214. // MESH_REPORT (M420 V)
  7215. #if HAS_LEVELING
  7216. SERIAL_PROTOCOLLNPGM("Cap:LEVELING_DATA:1");
  7217. #else
  7218. SERIAL_PROTOCOLLNPGM("Cap:LEVELING_DATA:0");
  7219. #endif
  7220. // BUILD_PERCENT (M73)
  7221. #if ENABLED(LCD_SET_PROGRESS_MANUALLY)
  7222. SERIAL_PROTOCOLLNPGM("Cap:BUILD_PERCENT:1");
  7223. #else
  7224. SERIAL_PROTOCOLLNPGM("Cap:BUILD_PERCENT:0");
  7225. #endif
  7226. // SOFTWARE_POWER (M80, M81)
  7227. #if HAS_POWER_SWITCH
  7228. SERIAL_PROTOCOLLNPGM("Cap:SOFTWARE_POWER:1");
  7229. #else
  7230. SERIAL_PROTOCOLLNPGM("Cap:SOFTWARE_POWER:0");
  7231. #endif
  7232. // CASE LIGHTS (M355)
  7233. #if HAS_CASE_LIGHT
  7234. SERIAL_PROTOCOLLNPGM("Cap:TOGGLE_LIGHTS:1");
  7235. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) {
  7236. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:1");
  7237. }
  7238. else
  7239. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:0");
  7240. #else
  7241. SERIAL_PROTOCOLLNPGM("Cap:TOGGLE_LIGHTS:0");
  7242. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:0");
  7243. #endif
  7244. // EMERGENCY_PARSER (M108, M112, M410)
  7245. #if ENABLED(EMERGENCY_PARSER)
  7246. SERIAL_PROTOCOLLNPGM("Cap:EMERGENCY_PARSER:1");
  7247. #else
  7248. SERIAL_PROTOCOLLNPGM("Cap:EMERGENCY_PARSER:0");
  7249. #endif
  7250. #endif // EXTENDED_CAPABILITIES_REPORT
  7251. }
  7252. /**
  7253. * M117: Set LCD Status Message
  7254. */
  7255. inline void gcode_M117() { lcd_setstatus(parser.string_arg); }
  7256. /**
  7257. * M118: Display a message in the host console.
  7258. *
  7259. * A Append '// ' for an action command, as in OctoPrint
  7260. * E Have the host 'echo:' the text
  7261. */
  7262. inline void gcode_M118() {
  7263. if (parser.boolval('E')) SERIAL_ECHO_START();
  7264. if (parser.boolval('A')) SERIAL_ECHOPGM("// ");
  7265. SERIAL_ECHOLN(parser.string_arg);
  7266. }
  7267. /**
  7268. * M119: Output endstop states to serial output
  7269. */
  7270. inline void gcode_M119() { endstops.M119(); }
  7271. /**
  7272. * M120: Enable endstops and set non-homing endstop state to "enabled"
  7273. */
  7274. inline void gcode_M120() { endstops.enable_globally(true); }
  7275. /**
  7276. * M121: Disable endstops and set non-homing endstop state to "disabled"
  7277. */
  7278. inline void gcode_M121() { endstops.enable_globally(false); }
  7279. #if ENABLED(PARK_HEAD_ON_PAUSE)
  7280. /**
  7281. * M125: Store current position and move to filament change position.
  7282. * Called on pause (by M25) to prevent material leaking onto the
  7283. * object. On resume (M24) the head will be moved back and the
  7284. * print will resume.
  7285. *
  7286. * If Marlin is compiled without SD Card support, M125 can be
  7287. * used directly to pause the print and move to park position,
  7288. * resuming with a button click or M108.
  7289. *
  7290. * L = override retract length
  7291. * X = override X
  7292. * Y = override Y
  7293. * Z = override Z raise
  7294. */
  7295. inline void gcode_M125() {
  7296. // Initial retract before move to filament change position
  7297. const float retract = parser.seen('L') ? parser.value_axis_units(E_AXIS) : 0
  7298. #ifdef PAUSE_PARK_RETRACT_LENGTH
  7299. - (PAUSE_PARK_RETRACT_LENGTH)
  7300. #endif
  7301. ;
  7302. // Lift Z axis
  7303. const float z_lift = parser.linearval('Z')
  7304. #ifdef PAUSE_PARK_Z_ADD
  7305. + PAUSE_PARK_Z_ADD
  7306. #endif
  7307. ;
  7308. // Move XY axes to filament change position or given position
  7309. const float x_pos = parser.linearval('X')
  7310. #ifdef PAUSE_PARK_X_POS
  7311. + PAUSE_PARK_X_POS
  7312. #endif
  7313. #if HOTENDS > 1 && DISABLED(DUAL_X_CARRIAGE)
  7314. + (active_extruder ? hotend_offset[X_AXIS][active_extruder] : 0)
  7315. #endif
  7316. ;
  7317. const float y_pos = parser.linearval('Y')
  7318. #ifdef PAUSE_PARK_Y_POS
  7319. + PAUSE_PARK_Y_POS
  7320. #endif
  7321. #if HOTENDS > 1 && DISABLED(DUAL_X_CARRIAGE)
  7322. + (active_extruder ? hotend_offset[Y_AXIS][active_extruder] : 0)
  7323. #endif
  7324. ;
  7325. #if DISABLED(SDSUPPORT)
  7326. const bool job_running = print_job_timer.isRunning();
  7327. #endif
  7328. if (pause_print(retract, z_lift, x_pos, y_pos)) {
  7329. #if DISABLED(SDSUPPORT)
  7330. // Wait for lcd click or M108
  7331. wait_for_filament_reload();
  7332. // Return to print position and continue
  7333. resume_print();
  7334. if (job_running) print_job_timer.start();
  7335. #endif
  7336. }
  7337. }
  7338. #endif // PARK_HEAD_ON_PAUSE
  7339. #if HAS_COLOR_LEDS
  7340. /**
  7341. * M150: Set Status LED Color - Use R-U-B-W for R-G-B-W
  7342. * and Brightness - Use P (for NEOPIXEL only)
  7343. *
  7344. * Always sets all 3 or 4 components. If a component is left out, set to 0.
  7345. * If brightness is left out, no value changed
  7346. *
  7347. * Examples:
  7348. *
  7349. * M150 R255 ; Turn LED red
  7350. * M150 R255 U127 ; Turn LED orange (PWM only)
  7351. * M150 ; Turn LED off
  7352. * M150 R U B ; Turn LED white
  7353. * M150 W ; Turn LED white using a white LED
  7354. * M150 P127 ; Set LED 50% brightness
  7355. * M150 P ; Set LED full brightness
  7356. */
  7357. inline void gcode_M150() {
  7358. set_led_color(
  7359. parser.seen('R') ? (parser.has_value() ? parser.value_byte() : 255) : 0,
  7360. parser.seen('U') ? (parser.has_value() ? parser.value_byte() : 255) : 0,
  7361. parser.seen('B') ? (parser.has_value() ? parser.value_byte() : 255) : 0
  7362. #if ENABLED(RGBW_LED) || ENABLED(NEOPIXEL_LED)
  7363. , parser.seen('W') ? (parser.has_value() ? parser.value_byte() : 255) : 0
  7364. #if ENABLED(NEOPIXEL_LED)
  7365. , parser.seen('P') ? (parser.has_value() ? parser.value_byte() : 255) : pixels.getBrightness()
  7366. #endif
  7367. #endif
  7368. );
  7369. }
  7370. #endif // HAS_COLOR_LEDS
  7371. /**
  7372. * M200: Set filament diameter and set E axis units to cubic units
  7373. *
  7374. * T<extruder> - Optional extruder number. Current extruder if omitted.
  7375. * D<linear> - Diameter of the filament. Use "D0" to switch back to linear units on the E axis.
  7376. */
  7377. inline void gcode_M200() {
  7378. if (get_target_extruder_from_command(200)) return;
  7379. if (parser.seen('D')) {
  7380. // setting any extruder filament size disables volumetric on the assumption that
  7381. // slicers either generate in extruder values as cubic mm or as as filament feeds
  7382. // for all extruders
  7383. volumetric_enabled = (parser.value_linear_units() != 0.0);
  7384. if (volumetric_enabled) {
  7385. filament_size[target_extruder] = parser.value_linear_units();
  7386. // make sure all extruders have some sane value for the filament size
  7387. for (uint8_t i = 0; i < COUNT(filament_size); i++)
  7388. if (! filament_size[i]) filament_size[i] = DEFAULT_NOMINAL_FILAMENT_DIA;
  7389. }
  7390. }
  7391. calculate_volumetric_multipliers();
  7392. }
  7393. /**
  7394. * M201: Set max acceleration in units/s^2 for print moves (M201 X1000 Y1000)
  7395. *
  7396. * With multiple extruders use T to specify which one.
  7397. */
  7398. inline void gcode_M201() {
  7399. GET_TARGET_EXTRUDER(201);
  7400. LOOP_XYZE(i) {
  7401. if (parser.seen(axis_codes[i])) {
  7402. const uint8_t a = i + (i == E_AXIS ? TARGET_EXTRUDER : 0);
  7403. planner.max_acceleration_mm_per_s2[a] = parser.value_axis_units((AxisEnum)a);
  7404. }
  7405. }
  7406. // 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)
  7407. planner.reset_acceleration_rates();
  7408. }
  7409. #if 0 // Not used for Sprinter/grbl gen6
  7410. inline void gcode_M202() {
  7411. LOOP_XYZE(i) {
  7412. 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];
  7413. }
  7414. }
  7415. #endif
  7416. /**
  7417. * M203: Set maximum feedrate that your machine can sustain (M203 X200 Y200 Z300 E10000) in units/sec
  7418. *
  7419. * With multiple extruders use T to specify which one.
  7420. */
  7421. inline void gcode_M203() {
  7422. GET_TARGET_EXTRUDER(203);
  7423. LOOP_XYZE(i)
  7424. if (parser.seen(axis_codes[i])) {
  7425. const uint8_t a = i + (i == E_AXIS ? TARGET_EXTRUDER : 0);
  7426. planner.max_feedrate_mm_s[a] = parser.value_axis_units((AxisEnum)a);
  7427. }
  7428. }
  7429. /**
  7430. * M204: Set Accelerations in units/sec^2 (M204 P1200 R3000 T3000)
  7431. *
  7432. * P = Printing moves
  7433. * R = Retract only (no X, Y, Z) moves
  7434. * T = Travel (non printing) moves
  7435. *
  7436. * Also sets minimum segment time in ms (B20000) to prevent buffer under-runs and M20 minimum feedrate
  7437. */
  7438. inline void gcode_M204() {
  7439. if (parser.seen('S')) { // Kept for legacy compatibility. Should NOT BE USED for new developments.
  7440. planner.travel_acceleration = planner.acceleration = parser.value_linear_units();
  7441. SERIAL_ECHOLNPAIR("Setting Print and Travel Acceleration: ", planner.acceleration);
  7442. }
  7443. if (parser.seen('P')) {
  7444. planner.acceleration = parser.value_linear_units();
  7445. SERIAL_ECHOLNPAIR("Setting Print Acceleration: ", planner.acceleration);
  7446. }
  7447. if (parser.seen('R')) {
  7448. planner.retract_acceleration = parser.value_linear_units();
  7449. SERIAL_ECHOLNPAIR("Setting Retract Acceleration: ", planner.retract_acceleration);
  7450. }
  7451. if (parser.seen('T')) {
  7452. planner.travel_acceleration = parser.value_linear_units();
  7453. SERIAL_ECHOLNPAIR("Setting Travel Acceleration: ", planner.travel_acceleration);
  7454. }
  7455. }
  7456. /**
  7457. * M205: Set Advanced Settings
  7458. *
  7459. * S = Min Feed Rate (units/s)
  7460. * T = Min Travel Feed Rate (units/s)
  7461. * B = Min Segment Time (µs)
  7462. * X = Max X Jerk (units/sec^2)
  7463. * Y = Max Y Jerk (units/sec^2)
  7464. * Z = Max Z Jerk (units/sec^2)
  7465. * E = Max E Jerk (units/sec^2)
  7466. */
  7467. inline void gcode_M205() {
  7468. if (parser.seen('S')) planner.min_feedrate_mm_s = parser.value_linear_units();
  7469. if (parser.seen('T')) planner.min_travel_feedrate_mm_s = parser.value_linear_units();
  7470. if (parser.seen('B')) planner.min_segment_time_us = parser.value_ulong();
  7471. if (parser.seen('X')) planner.max_jerk[X_AXIS] = parser.value_linear_units();
  7472. if (parser.seen('Y')) planner.max_jerk[Y_AXIS] = parser.value_linear_units();
  7473. if (parser.seen('Z')) planner.max_jerk[Z_AXIS] = parser.value_linear_units();
  7474. if (parser.seen('E')) planner.max_jerk[E_AXIS] = parser.value_linear_units();
  7475. }
  7476. #if HAS_M206_COMMAND
  7477. /**
  7478. * M206: Set Additional Homing Offset (X Y Z). SCARA aliases T=X, P=Y
  7479. *
  7480. * *** @thinkyhead: I recommend deprecating M206 for SCARA in favor of M665.
  7481. * *** M206 for SCARA will remain enabled in 1.1.x for compatibility.
  7482. * *** In the next 1.2 release, it will simply be disabled by default.
  7483. */
  7484. inline void gcode_M206() {
  7485. LOOP_XYZ(i)
  7486. if (parser.seen(axis_codes[i]))
  7487. set_home_offset((AxisEnum)i, parser.value_linear_units());
  7488. #if ENABLED(MORGAN_SCARA)
  7489. if (parser.seen('T')) set_home_offset(A_AXIS, parser.value_linear_units()); // Theta
  7490. if (parser.seen('P')) set_home_offset(B_AXIS, parser.value_linear_units()); // Psi
  7491. #endif
  7492. report_current_position();
  7493. }
  7494. #endif // HAS_M206_COMMAND
  7495. #if ENABLED(DELTA)
  7496. /**
  7497. * M665: Set delta configurations
  7498. *
  7499. * H = delta height
  7500. * L = diagonal rod
  7501. * R = delta radius
  7502. * S = segments per second
  7503. * B = delta calibration radius
  7504. * X = Alpha (Tower 1) angle trim
  7505. * Y = Beta (Tower 2) angle trim
  7506. * Z = Rotate A and B by this angle
  7507. */
  7508. inline void gcode_M665() {
  7509. if (parser.seen('H')) {
  7510. home_offset[Z_AXIS] = parser.value_linear_units() - DELTA_HEIGHT;
  7511. update_software_endstops(Z_AXIS);
  7512. }
  7513. if (parser.seen('L')) delta_diagonal_rod = parser.value_linear_units();
  7514. if (parser.seen('R')) delta_radius = parser.value_linear_units();
  7515. if (parser.seen('S')) delta_segments_per_second = parser.value_float();
  7516. if (parser.seen('B')) delta_calibration_radius = parser.value_float();
  7517. if (parser.seen('X')) delta_tower_angle_trim[A_AXIS] = parser.value_float();
  7518. if (parser.seen('Y')) delta_tower_angle_trim[B_AXIS] = parser.value_float();
  7519. if (parser.seen('Z')) delta_tower_angle_trim[C_AXIS] = parser.value_float();
  7520. recalc_delta_settings(delta_radius, delta_diagonal_rod, delta_tower_angle_trim);
  7521. }
  7522. /**
  7523. * M666: Set delta endstop adjustment
  7524. */
  7525. inline void gcode_M666() {
  7526. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7527. if (DEBUGGING(LEVELING)) {
  7528. SERIAL_ECHOLNPGM(">>> gcode_M666");
  7529. }
  7530. #endif
  7531. LOOP_XYZ(i) {
  7532. if (parser.seen(axis_codes[i])) {
  7533. if (parser.value_linear_units() * Z_HOME_DIR <= 0)
  7534. delta_endstop_adj[i] = parser.value_linear_units();
  7535. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7536. if (DEBUGGING(LEVELING)) {
  7537. SERIAL_ECHOPAIR("delta_endstop_adj[", axis_codes[i]);
  7538. SERIAL_ECHOLNPAIR("] = ", delta_endstop_adj[i]);
  7539. }
  7540. #endif
  7541. }
  7542. }
  7543. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7544. if (DEBUGGING(LEVELING)) {
  7545. SERIAL_ECHOLNPGM("<<< gcode_M666");
  7546. }
  7547. #endif
  7548. }
  7549. #elif IS_SCARA
  7550. /**
  7551. * M665: Set SCARA settings
  7552. *
  7553. * Parameters:
  7554. *
  7555. * S[segments-per-second] - Segments-per-second
  7556. * P[theta-psi-offset] - Theta-Psi offset, added to the shoulder (A/X) angle
  7557. * T[theta-offset] - Theta offset, added to the elbow (B/Y) angle
  7558. *
  7559. * A, P, and X are all aliases for the shoulder angle
  7560. * B, T, and Y are all aliases for the elbow angle
  7561. */
  7562. inline void gcode_M665() {
  7563. if (parser.seen('S')) delta_segments_per_second = parser.value_float();
  7564. const bool hasA = parser.seen('A'), hasP = parser.seen('P'), hasX = parser.seen('X');
  7565. const uint8_t sumAPX = hasA + hasP + hasX;
  7566. if (sumAPX == 1)
  7567. home_offset[A_AXIS] = parser.value_float();
  7568. else if (sumAPX > 1) {
  7569. SERIAL_ERROR_START();
  7570. SERIAL_ERRORLNPGM("Only one of A, P, or X is allowed.");
  7571. return;
  7572. }
  7573. const bool hasB = parser.seen('B'), hasT = parser.seen('T'), hasY = parser.seen('Y');
  7574. const uint8_t sumBTY = hasB + hasT + hasY;
  7575. if (sumBTY == 1)
  7576. home_offset[B_AXIS] = parser.value_float();
  7577. else if (sumBTY > 1) {
  7578. SERIAL_ERROR_START();
  7579. SERIAL_ERRORLNPGM("Only one of B, T, or Y is allowed.");
  7580. return;
  7581. }
  7582. }
  7583. #elif ENABLED(X_DUAL_ENDSTOPS) || ENABLED(Y_DUAL_ENDSTOPS) || ENABLED(Z_DUAL_ENDSTOPS)
  7584. /**
  7585. * M666: For Z Dual Endstop setup, set z axis offset to the z2 axis.
  7586. */
  7587. inline void gcode_M666() {
  7588. SERIAL_ECHOPGM("Dual Endstop Adjustment (mm): ");
  7589. #if ENABLED(X_DUAL_ENDSTOPS)
  7590. if (parser.seen('X')) x_endstop_adj = parser.value_linear_units();
  7591. SERIAL_ECHOPAIR(" X", x_endstop_adj);
  7592. #endif
  7593. #if ENABLED(Y_DUAL_ENDSTOPS)
  7594. if (parser.seen('Y')) y_endstop_adj = parser.value_linear_units();
  7595. SERIAL_ECHOPAIR(" Y", y_endstop_adj);
  7596. #endif
  7597. #if ENABLED(Z_DUAL_ENDSTOPS)
  7598. if (parser.seen('Z')) z_endstop_adj = parser.value_linear_units();
  7599. SERIAL_ECHOPAIR(" Z", z_endstop_adj);
  7600. #endif
  7601. SERIAL_EOL();
  7602. }
  7603. #endif // !DELTA && Z_DUAL_ENDSTOPS
  7604. #if ENABLED(FWRETRACT)
  7605. /**
  7606. * M207: Set firmware retraction values
  7607. *
  7608. * S[+units] retract_length
  7609. * W[+units] swap_retract_length (multi-extruder)
  7610. * F[units/min] retract_feedrate_mm_s
  7611. * Z[units] retract_zlift
  7612. */
  7613. inline void gcode_M207() {
  7614. if (parser.seen('S')) retract_length = parser.value_axis_units(E_AXIS);
  7615. if (parser.seen('F')) retract_feedrate_mm_s = MMM_TO_MMS(parser.value_axis_units(E_AXIS));
  7616. if (parser.seen('Z')) retract_zlift = parser.value_linear_units();
  7617. if (parser.seen('W')) swap_retract_length = parser.value_axis_units(E_AXIS);
  7618. }
  7619. /**
  7620. * M208: Set firmware un-retraction values
  7621. *
  7622. * S[+units] retract_recover_length (in addition to M207 S*)
  7623. * W[+units] swap_retract_recover_length (multi-extruder)
  7624. * F[units/min] retract_recover_feedrate_mm_s
  7625. * R[units/min] swap_retract_recover_feedrate_mm_s
  7626. */
  7627. inline void gcode_M208() {
  7628. if (parser.seen('S')) retract_recover_length = parser.value_axis_units(E_AXIS);
  7629. if (parser.seen('F')) retract_recover_feedrate_mm_s = MMM_TO_MMS(parser.value_axis_units(E_AXIS));
  7630. if (parser.seen('R')) swap_retract_recover_feedrate_mm_s = MMM_TO_MMS(parser.value_axis_units(E_AXIS));
  7631. if (parser.seen('W')) swap_retract_recover_length = parser.value_axis_units(E_AXIS);
  7632. }
  7633. /**
  7634. * M209: Enable automatic retract (M209 S1)
  7635. * For slicers that don't support G10/11, reversed extrude-only
  7636. * moves will be classified as retraction.
  7637. */
  7638. inline void gcode_M209() {
  7639. if (MIN_AUTORETRACT <= MAX_AUTORETRACT) {
  7640. if (parser.seen('S')) {
  7641. autoretract_enabled = parser.value_bool();
  7642. for (uint8_t i = 0; i < EXTRUDERS; i++) retracted[i] = false;
  7643. }
  7644. }
  7645. }
  7646. #endif // FWRETRACT
  7647. /**
  7648. * M211: Enable, Disable, and/or Report software endstops
  7649. *
  7650. * Usage: M211 S1 to enable, M211 S0 to disable, M211 alone for report
  7651. */
  7652. inline void gcode_M211() {
  7653. SERIAL_ECHO_START();
  7654. #if HAS_SOFTWARE_ENDSTOPS
  7655. if (parser.seen('S')) soft_endstops_enabled = parser.value_bool();
  7656. SERIAL_ECHOPGM(MSG_SOFT_ENDSTOPS);
  7657. serialprintPGM(soft_endstops_enabled ? PSTR(MSG_ON) : PSTR(MSG_OFF));
  7658. #else
  7659. SERIAL_ECHOPGM(MSG_SOFT_ENDSTOPS);
  7660. SERIAL_ECHOPGM(MSG_OFF);
  7661. #endif
  7662. SERIAL_ECHOPGM(MSG_SOFT_MIN);
  7663. SERIAL_ECHOPAIR( MSG_X, soft_endstop_min[X_AXIS]);
  7664. SERIAL_ECHOPAIR(" " MSG_Y, soft_endstop_min[Y_AXIS]);
  7665. SERIAL_ECHOPAIR(" " MSG_Z, soft_endstop_min[Z_AXIS]);
  7666. SERIAL_ECHOPGM(MSG_SOFT_MAX);
  7667. SERIAL_ECHOPAIR( MSG_X, soft_endstop_max[X_AXIS]);
  7668. SERIAL_ECHOPAIR(" " MSG_Y, soft_endstop_max[Y_AXIS]);
  7669. SERIAL_ECHOLNPAIR(" " MSG_Z, soft_endstop_max[Z_AXIS]);
  7670. }
  7671. #if HOTENDS > 1
  7672. /**
  7673. * M218 - set hotend offset (in linear units)
  7674. *
  7675. * T<tool>
  7676. * X<xoffset>
  7677. * Y<yoffset>
  7678. * Z<zoffset> - Available with DUAL_X_CARRIAGE and SWITCHING_NOZZLE
  7679. */
  7680. inline void gcode_M218() {
  7681. if (get_target_extruder_from_command(218) || target_extruder == 0) return;
  7682. if (parser.seenval('X')) hotend_offset[X_AXIS][target_extruder] = parser.value_linear_units();
  7683. if (parser.seenval('Y')) hotend_offset[Y_AXIS][target_extruder] = parser.value_linear_units();
  7684. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE) || ENABLED(PARKING_EXTRUDER)
  7685. if (parser.seenval('Z')) hotend_offset[Z_AXIS][target_extruder] = parser.value_linear_units();
  7686. #endif
  7687. SERIAL_ECHO_START();
  7688. SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
  7689. HOTEND_LOOP() {
  7690. SERIAL_CHAR(' ');
  7691. SERIAL_ECHO(hotend_offset[X_AXIS][e]);
  7692. SERIAL_CHAR(',');
  7693. SERIAL_ECHO(hotend_offset[Y_AXIS][e]);
  7694. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE) || ENABLED(PARKING_EXTRUDER)
  7695. SERIAL_CHAR(',');
  7696. SERIAL_ECHO(hotend_offset[Z_AXIS][e]);
  7697. #endif
  7698. }
  7699. SERIAL_EOL();
  7700. }
  7701. #endif // HOTENDS > 1
  7702. /**
  7703. * M220: Set speed percentage factor, aka "Feed Rate" (M220 S95)
  7704. */
  7705. inline void gcode_M220() {
  7706. if (parser.seenval('S')) feedrate_percentage = parser.value_int();
  7707. }
  7708. /**
  7709. * M221: Set extrusion percentage (M221 T0 S95)
  7710. */
  7711. inline void gcode_M221() {
  7712. if (get_target_extruder_from_command(221)) return;
  7713. if (parser.seenval('S'))
  7714. flow_percentage[target_extruder] = parser.value_int();
  7715. }
  7716. /**
  7717. * M226: Wait until the specified pin reaches the state required (M226 P<pin> S<state>)
  7718. */
  7719. inline void gcode_M226() {
  7720. if (parser.seen('P')) {
  7721. const int pin_number = parser.value_int(),
  7722. pin_state = parser.intval('S', -1); // required pin state - default is inverted
  7723. if (WITHIN(pin_state, -1, 1) && pin_number > -1 && !pin_is_protected(pin_number)) {
  7724. int target = LOW;
  7725. stepper.synchronize();
  7726. pinMode(pin_number, INPUT);
  7727. switch (pin_state) {
  7728. case 1:
  7729. target = HIGH;
  7730. break;
  7731. case 0:
  7732. target = LOW;
  7733. break;
  7734. case -1:
  7735. target = !digitalRead(pin_number);
  7736. break;
  7737. }
  7738. while (digitalRead(pin_number) != target) idle();
  7739. } // pin_state -1 0 1 && pin_number > -1
  7740. } // parser.seen('P')
  7741. }
  7742. #if ENABLED(EXPERIMENTAL_I2CBUS)
  7743. /**
  7744. * M260: Send data to a I2C slave device
  7745. *
  7746. * This is a PoC, the formating and arguments for the GCODE will
  7747. * change to be more compatible, the current proposal is:
  7748. *
  7749. * M260 A<slave device address base 10> ; Sets the I2C slave address the data will be sent to
  7750. *
  7751. * M260 B<byte-1 value in base 10>
  7752. * M260 B<byte-2 value in base 10>
  7753. * M260 B<byte-3 value in base 10>
  7754. *
  7755. * M260 S1 ; Send the buffered data and reset the buffer
  7756. * M260 R1 ; Reset the buffer without sending data
  7757. *
  7758. */
  7759. inline void gcode_M260() {
  7760. // Set the target address
  7761. if (parser.seen('A')) i2c.address(parser.value_byte());
  7762. // Add a new byte to the buffer
  7763. if (parser.seen('B')) i2c.addbyte(parser.value_byte());
  7764. // Flush the buffer to the bus
  7765. if (parser.seen('S')) i2c.send();
  7766. // Reset and rewind the buffer
  7767. else if (parser.seen('R')) i2c.reset();
  7768. }
  7769. /**
  7770. * M261: Request X bytes from I2C slave device
  7771. *
  7772. * Usage: M261 A<slave device address base 10> B<number of bytes>
  7773. */
  7774. inline void gcode_M261() {
  7775. if (parser.seen('A')) i2c.address(parser.value_byte());
  7776. uint8_t bytes = parser.byteval('B', 1);
  7777. if (i2c.addr && bytes && bytes <= TWIBUS_BUFFER_SIZE) {
  7778. i2c.relay(bytes);
  7779. }
  7780. else {
  7781. SERIAL_ERROR_START();
  7782. SERIAL_ERRORLN("Bad i2c request");
  7783. }
  7784. }
  7785. #endif // EXPERIMENTAL_I2CBUS
  7786. #if HAS_SERVOS
  7787. /**
  7788. * M280: Get or set servo position. P<index> [S<angle>]
  7789. */
  7790. inline void gcode_M280() {
  7791. if (!parser.seen('P')) return;
  7792. const int servo_index = parser.value_int();
  7793. if (WITHIN(servo_index, 0, NUM_SERVOS - 1)) {
  7794. if (parser.seen('S'))
  7795. MOVE_SERVO(servo_index, parser.value_int());
  7796. else {
  7797. SERIAL_ECHO_START();
  7798. SERIAL_ECHOPAIR(" Servo ", servo_index);
  7799. SERIAL_ECHOLNPAIR(": ", servo[servo_index].read());
  7800. }
  7801. }
  7802. else {
  7803. SERIAL_ERROR_START();
  7804. SERIAL_ECHOPAIR("Servo ", servo_index);
  7805. SERIAL_ECHOLNPGM(" out of range");
  7806. }
  7807. }
  7808. #endif // HAS_SERVOS
  7809. #if ENABLED(BABYSTEPPING)
  7810. /**
  7811. * M290: Babystepping
  7812. */
  7813. inline void gcode_M290() {
  7814. #if ENABLED(BABYSTEP_XY)
  7815. for (uint8_t a = X_AXIS; a <= Z_AXIS; a++)
  7816. if (parser.seenval(axis_codes[a]) || (a == Z_AXIS && parser.seenval('S'))) {
  7817. float offs = parser.value_axis_units(a);
  7818. constrain(offs, -2, 2);
  7819. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  7820. if (a == Z_AXIS) {
  7821. zprobe_zoffset += offs;
  7822. refresh_zprobe_zoffset(true); // 'true' to not babystep
  7823. }
  7824. #endif
  7825. thermalManager.babystep_axis(a, offs * planner.axis_steps_per_mm[a]);
  7826. }
  7827. #else
  7828. if (parser.seenval('Z') || parser.seenval('S')) {
  7829. float offs = parser.value_axis_units(Z_AXIS);
  7830. constrain(offs, -2, 2);
  7831. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  7832. zprobe_zoffset += offs;
  7833. refresh_zprobe_zoffset(); // This will babystep the axis
  7834. #else
  7835. thermalManager.babystep_axis(Z_AXIS, parser.value_axis_units(Z_AXIS) * planner.axis_steps_per_mm[Z_AXIS]);
  7836. #endif
  7837. }
  7838. #endif
  7839. }
  7840. #endif // BABYSTEPPING
  7841. #if HAS_BUZZER
  7842. /**
  7843. * M300: Play beep sound S<frequency Hz> P<duration ms>
  7844. */
  7845. inline void gcode_M300() {
  7846. uint16_t const frequency = parser.ushortval('S', 260);
  7847. uint16_t duration = parser.ushortval('P', 1000);
  7848. // Limits the tone duration to 0-5 seconds.
  7849. NOMORE(duration, 5000);
  7850. BUZZ(duration, frequency);
  7851. }
  7852. #endif // HAS_BUZZER
  7853. #if ENABLED(PIDTEMP)
  7854. /**
  7855. * M301: Set PID parameters P I D (and optionally C, L)
  7856. *
  7857. * P[float] Kp term
  7858. * I[float] Ki term (unscaled)
  7859. * D[float] Kd term (unscaled)
  7860. *
  7861. * With PID_EXTRUSION_SCALING:
  7862. *
  7863. * C[float] Kc term
  7864. * L[float] LPQ length
  7865. */
  7866. inline void gcode_M301() {
  7867. // multi-extruder PID patch: M301 updates or prints a single extruder's PID values
  7868. // default behaviour (omitting E parameter) is to update for extruder 0 only
  7869. const uint8_t e = parser.byteval('E'); // extruder being updated
  7870. if (e < HOTENDS) { // catch bad input value
  7871. if (parser.seen('P')) PID_PARAM(Kp, e) = parser.value_float();
  7872. if (parser.seen('I')) PID_PARAM(Ki, e) = scalePID_i(parser.value_float());
  7873. if (parser.seen('D')) PID_PARAM(Kd, e) = scalePID_d(parser.value_float());
  7874. #if ENABLED(PID_EXTRUSION_SCALING)
  7875. if (parser.seen('C')) PID_PARAM(Kc, e) = parser.value_float();
  7876. if (parser.seen('L')) lpq_len = parser.value_float();
  7877. NOMORE(lpq_len, LPQ_MAX_LEN);
  7878. #endif
  7879. thermalManager.updatePID();
  7880. SERIAL_ECHO_START();
  7881. #if ENABLED(PID_PARAMS_PER_HOTEND)
  7882. SERIAL_ECHOPAIR(" e:", e); // specify extruder in serial output
  7883. #endif // PID_PARAMS_PER_HOTEND
  7884. SERIAL_ECHOPAIR(" p:", PID_PARAM(Kp, e));
  7885. SERIAL_ECHOPAIR(" i:", unscalePID_i(PID_PARAM(Ki, e)));
  7886. SERIAL_ECHOPAIR(" d:", unscalePID_d(PID_PARAM(Kd, e)));
  7887. #if ENABLED(PID_EXTRUSION_SCALING)
  7888. //Kc does not have scaling applied above, or in resetting defaults
  7889. SERIAL_ECHOPAIR(" c:", PID_PARAM(Kc, e));
  7890. #endif
  7891. SERIAL_EOL();
  7892. }
  7893. else {
  7894. SERIAL_ERROR_START();
  7895. SERIAL_ERRORLN(MSG_INVALID_EXTRUDER);
  7896. }
  7897. }
  7898. #endif // PIDTEMP
  7899. #if ENABLED(PIDTEMPBED)
  7900. inline void gcode_M304() {
  7901. if (parser.seen('P')) thermalManager.bedKp = parser.value_float();
  7902. if (parser.seen('I')) thermalManager.bedKi = scalePID_i(parser.value_float());
  7903. if (parser.seen('D')) thermalManager.bedKd = scalePID_d(parser.value_float());
  7904. thermalManager.updatePID();
  7905. SERIAL_ECHO_START();
  7906. SERIAL_ECHOPAIR(" p:", thermalManager.bedKp);
  7907. SERIAL_ECHOPAIR(" i:", unscalePID_i(thermalManager.bedKi));
  7908. SERIAL_ECHOLNPAIR(" d:", unscalePID_d(thermalManager.bedKd));
  7909. }
  7910. #endif // PIDTEMPBED
  7911. #if defined(CHDK) || HAS_PHOTOGRAPH
  7912. /**
  7913. * M240: Trigger a camera by emulating a Canon RC-1
  7914. * See http://www.doc-diy.net/photo/rc-1_hacked/
  7915. */
  7916. inline void gcode_M240() {
  7917. #ifdef CHDK
  7918. OUT_WRITE(CHDK, HIGH);
  7919. chdkHigh = millis();
  7920. chdkActive = true;
  7921. #elif HAS_PHOTOGRAPH
  7922. const uint8_t NUM_PULSES = 16;
  7923. const float PULSE_LENGTH = 0.01524;
  7924. for (int i = 0; i < NUM_PULSES; i++) {
  7925. WRITE(PHOTOGRAPH_PIN, HIGH);
  7926. _delay_ms(PULSE_LENGTH);
  7927. WRITE(PHOTOGRAPH_PIN, LOW);
  7928. _delay_ms(PULSE_LENGTH);
  7929. }
  7930. delay(7.33);
  7931. for (int i = 0; i < NUM_PULSES; i++) {
  7932. WRITE(PHOTOGRAPH_PIN, HIGH);
  7933. _delay_ms(PULSE_LENGTH);
  7934. WRITE(PHOTOGRAPH_PIN, LOW);
  7935. _delay_ms(PULSE_LENGTH);
  7936. }
  7937. #endif // !CHDK && HAS_PHOTOGRAPH
  7938. }
  7939. #endif // CHDK || PHOTOGRAPH_PIN
  7940. #if HAS_LCD_CONTRAST
  7941. /**
  7942. * M250: Read and optionally set the LCD contrast
  7943. */
  7944. inline void gcode_M250() {
  7945. if (parser.seen('C')) set_lcd_contrast(parser.value_int());
  7946. SERIAL_PROTOCOLPGM("lcd contrast value: ");
  7947. SERIAL_PROTOCOL(lcd_contrast);
  7948. SERIAL_EOL();
  7949. }
  7950. #endif // HAS_LCD_CONTRAST
  7951. #if ENABLED(PREVENT_COLD_EXTRUSION)
  7952. /**
  7953. * M302: Allow cold extrudes, or set the minimum extrude temperature
  7954. *
  7955. * S<temperature> sets the minimum extrude temperature
  7956. * P<bool> enables (1) or disables (0) cold extrusion
  7957. *
  7958. * Examples:
  7959. *
  7960. * M302 ; report current cold extrusion state
  7961. * M302 P0 ; enable cold extrusion checking
  7962. * M302 P1 ; disables cold extrusion checking
  7963. * M302 S0 ; always allow extrusion (disables checking)
  7964. * M302 S170 ; only allow extrusion above 170
  7965. * M302 S170 P1 ; set min extrude temp to 170 but leave disabled
  7966. */
  7967. inline void gcode_M302() {
  7968. const bool seen_S = parser.seen('S');
  7969. if (seen_S) {
  7970. thermalManager.extrude_min_temp = parser.value_celsius();
  7971. thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0);
  7972. }
  7973. if (parser.seen('P'))
  7974. thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0) || parser.value_bool();
  7975. else if (!seen_S) {
  7976. // Report current state
  7977. SERIAL_ECHO_START();
  7978. SERIAL_ECHOPAIR("Cold extrudes are ", (thermalManager.allow_cold_extrude ? "en" : "dis"));
  7979. SERIAL_ECHOPAIR("abled (min temp ", thermalManager.extrude_min_temp);
  7980. SERIAL_ECHOLNPGM("C)");
  7981. }
  7982. }
  7983. #endif // PREVENT_COLD_EXTRUSION
  7984. /**
  7985. * M303: PID relay autotune
  7986. *
  7987. * S<temperature> sets the target temperature. (default 150C)
  7988. * E<extruder> (-1 for the bed) (default 0)
  7989. * C<cycles>
  7990. * U<bool> with a non-zero value will apply the result to current settings
  7991. */
  7992. inline void gcode_M303() {
  7993. #if HAS_PID_HEATING
  7994. const int e = parser.intval('E'), c = parser.intval('C', 5);
  7995. const bool u = parser.boolval('U');
  7996. int16_t temp = parser.celsiusval('S', e < 0 ? 70 : 150);
  7997. if (WITHIN(e, 0, HOTENDS - 1))
  7998. target_extruder = e;
  7999. #if DISABLED(BUSY_WHILE_HEATING)
  8000. KEEPALIVE_STATE(NOT_BUSY);
  8001. #endif
  8002. thermalManager.PID_autotune(temp, e, c, u);
  8003. #if DISABLED(BUSY_WHILE_HEATING)
  8004. KEEPALIVE_STATE(IN_HANDLER);
  8005. #endif
  8006. #else
  8007. SERIAL_ERROR_START();
  8008. SERIAL_ERRORLNPGM(MSG_ERR_M303_DISABLED);
  8009. #endif
  8010. }
  8011. #if ENABLED(MORGAN_SCARA)
  8012. bool SCARA_move_to_cal(const uint8_t delta_a, const uint8_t delta_b) {
  8013. if (IsRunning()) {
  8014. forward_kinematics_SCARA(delta_a, delta_b);
  8015. destination[X_AXIS] = cartes[X_AXIS];
  8016. destination[Y_AXIS] = cartes[Y_AXIS];
  8017. destination[Z_AXIS] = current_position[Z_AXIS];
  8018. prepare_move_to_destination();
  8019. return true;
  8020. }
  8021. return false;
  8022. }
  8023. /**
  8024. * M360: SCARA calibration: Move to cal-position ThetaA (0 deg calibration)
  8025. */
  8026. inline bool gcode_M360() {
  8027. SERIAL_ECHOLNPGM(" Cal: Theta 0");
  8028. return SCARA_move_to_cal(0, 120);
  8029. }
  8030. /**
  8031. * M361: SCARA calibration: Move to cal-position ThetaB (90 deg calibration - steps per degree)
  8032. */
  8033. inline bool gcode_M361() {
  8034. SERIAL_ECHOLNPGM(" Cal: Theta 90");
  8035. return SCARA_move_to_cal(90, 130);
  8036. }
  8037. /**
  8038. * M362: SCARA calibration: Move to cal-position PsiA (0 deg calibration)
  8039. */
  8040. inline bool gcode_M362() {
  8041. SERIAL_ECHOLNPGM(" Cal: Psi 0");
  8042. return SCARA_move_to_cal(60, 180);
  8043. }
  8044. /**
  8045. * M363: SCARA calibration: Move to cal-position PsiB (90 deg calibration - steps per degree)
  8046. */
  8047. inline bool gcode_M363() {
  8048. SERIAL_ECHOLNPGM(" Cal: Psi 90");
  8049. return SCARA_move_to_cal(50, 90);
  8050. }
  8051. /**
  8052. * M364: SCARA calibration: Move to cal-position PsiC (90 deg to Theta calibration position)
  8053. */
  8054. inline bool gcode_M364() {
  8055. SERIAL_ECHOLNPGM(" Cal: Theta-Psi 90");
  8056. return SCARA_move_to_cal(45, 135);
  8057. }
  8058. #endif // SCARA
  8059. #if ENABLED(EXT_SOLENOID)
  8060. void enable_solenoid(const uint8_t num) {
  8061. switch (num) {
  8062. case 0:
  8063. OUT_WRITE(SOL0_PIN, HIGH);
  8064. break;
  8065. #if HAS_SOLENOID_1 && EXTRUDERS > 1
  8066. case 1:
  8067. OUT_WRITE(SOL1_PIN, HIGH);
  8068. break;
  8069. #endif
  8070. #if HAS_SOLENOID_2 && EXTRUDERS > 2
  8071. case 2:
  8072. OUT_WRITE(SOL2_PIN, HIGH);
  8073. break;
  8074. #endif
  8075. #if HAS_SOLENOID_3 && EXTRUDERS > 3
  8076. case 3:
  8077. OUT_WRITE(SOL3_PIN, HIGH);
  8078. break;
  8079. #endif
  8080. #if HAS_SOLENOID_4 && EXTRUDERS > 4
  8081. case 4:
  8082. OUT_WRITE(SOL4_PIN, HIGH);
  8083. break;
  8084. #endif
  8085. default:
  8086. SERIAL_ECHO_START();
  8087. SERIAL_ECHOLNPGM(MSG_INVALID_SOLENOID);
  8088. break;
  8089. }
  8090. }
  8091. void enable_solenoid_on_active_extruder() { enable_solenoid(active_extruder); }
  8092. void disable_all_solenoids() {
  8093. OUT_WRITE(SOL0_PIN, LOW);
  8094. #if HAS_SOLENOID_1 && EXTRUDERS > 1
  8095. OUT_WRITE(SOL1_PIN, LOW);
  8096. #endif
  8097. #if HAS_SOLENOID_2 && EXTRUDERS > 2
  8098. OUT_WRITE(SOL2_PIN, LOW);
  8099. #endif
  8100. #if HAS_SOLENOID_3 && EXTRUDERS > 3
  8101. OUT_WRITE(SOL3_PIN, LOW);
  8102. #endif
  8103. #if HAS_SOLENOID_4 && EXTRUDERS > 4
  8104. OUT_WRITE(SOL4_PIN, LOW);
  8105. #endif
  8106. }
  8107. /**
  8108. * M380: Enable solenoid on the active extruder
  8109. */
  8110. inline void gcode_M380() { enable_solenoid_on_active_extruder(); }
  8111. /**
  8112. * M381: Disable all solenoids
  8113. */
  8114. inline void gcode_M381() { disable_all_solenoids(); }
  8115. #endif // EXT_SOLENOID
  8116. /**
  8117. * M400: Finish all moves
  8118. */
  8119. inline void gcode_M400() { stepper.synchronize(); }
  8120. #if HAS_BED_PROBE
  8121. /**
  8122. * M401: Engage Z Servo endstop if available
  8123. */
  8124. inline void gcode_M401() { DEPLOY_PROBE(); }
  8125. /**
  8126. * M402: Retract Z Servo endstop if enabled
  8127. */
  8128. inline void gcode_M402() { STOW_PROBE(); }
  8129. #endif // HAS_BED_PROBE
  8130. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  8131. /**
  8132. * M404: Display or set (in current units) the nominal filament width (3mm, 1.75mm ) W<3.0>
  8133. */
  8134. inline void gcode_M404() {
  8135. if (parser.seen('W')) {
  8136. filament_width_nominal = parser.value_linear_units();
  8137. }
  8138. else {
  8139. SERIAL_PROTOCOLPGM("Filament dia (nominal mm):");
  8140. SERIAL_PROTOCOLLN(filament_width_nominal);
  8141. }
  8142. }
  8143. /**
  8144. * M405: Turn on filament sensor for control
  8145. */
  8146. inline void gcode_M405() {
  8147. // This is technically a linear measurement, but since it's quantized to centimeters and is a different
  8148. // unit than everything else, it uses parser.value_byte() instead of parser.value_linear_units().
  8149. if (parser.seen('D')) {
  8150. meas_delay_cm = parser.value_byte();
  8151. NOMORE(meas_delay_cm, MAX_MEASUREMENT_DELAY);
  8152. }
  8153. if (filwidth_delay_index[1] == -1) { // Initialize the ring buffer if not done since startup
  8154. const uint8_t temp_ratio = thermalManager.widthFil_to_size_ratio() - 100; // -100 to scale within a signed byte
  8155. for (uint8_t i = 0; i < COUNT(measurement_delay); ++i)
  8156. measurement_delay[i] = temp_ratio;
  8157. filwidth_delay_index[0] = filwidth_delay_index[1] = 0;
  8158. }
  8159. filament_sensor = true;
  8160. //SERIAL_PROTOCOLPGM("Filament dia (measured mm):");
  8161. //SERIAL_PROTOCOL(filament_width_meas);
  8162. //SERIAL_PROTOCOLPGM("Extrusion ratio(%):");
  8163. //SERIAL_PROTOCOL(flow_percentage[active_extruder]);
  8164. }
  8165. /**
  8166. * M406: Turn off filament sensor for control
  8167. */
  8168. inline void gcode_M406() {
  8169. filament_sensor = false;
  8170. calculate_volumetric_multipliers(); // Restore correct 'volumetric_multiplier' value
  8171. }
  8172. /**
  8173. * M407: Get measured filament diameter on serial output
  8174. */
  8175. inline void gcode_M407() {
  8176. SERIAL_PROTOCOLPGM("Filament dia (measured mm):");
  8177. SERIAL_PROTOCOLLN(filament_width_meas);
  8178. }
  8179. #endif // FILAMENT_WIDTH_SENSOR
  8180. void quickstop_stepper() {
  8181. stepper.quick_stop();
  8182. stepper.synchronize();
  8183. set_current_from_steppers_for_axis(ALL_AXES);
  8184. SYNC_PLAN_POSITION_KINEMATIC();
  8185. }
  8186. #if HAS_LEVELING
  8187. /**
  8188. * M420: Enable/Disable Bed Leveling and/or set the Z fade height.
  8189. *
  8190. * S[bool] Turns leveling on or off
  8191. * Z[height] Sets the Z fade height (0 or none to disable)
  8192. * V[bool] Verbose - Print the leveling grid
  8193. *
  8194. * With AUTO_BED_LEVELING_UBL only:
  8195. *
  8196. * L[index] Load UBL mesh from index (0 is default)
  8197. */
  8198. inline void gcode_M420() {
  8199. #if ENABLED(AUTO_BED_LEVELING_UBL)
  8200. // L to load a mesh from the EEPROM
  8201. if (parser.seen('L')) {
  8202. #if ENABLED(EEPROM_SETTINGS)
  8203. const int8_t storage_slot = parser.has_value() ? parser.value_int() : ubl.storage_slot;
  8204. const int16_t a = settings.calc_num_meshes();
  8205. if (!a) {
  8206. SERIAL_PROTOCOLLNPGM("?EEPROM storage not available.");
  8207. return;
  8208. }
  8209. if (!WITHIN(storage_slot, 0, a - 1)) {
  8210. SERIAL_PROTOCOLLNPGM("?Invalid storage slot.");
  8211. SERIAL_PROTOCOLLNPAIR("?Use 0 to ", a - 1);
  8212. return;
  8213. }
  8214. settings.load_mesh(storage_slot);
  8215. ubl.storage_slot = storage_slot;
  8216. #else
  8217. SERIAL_PROTOCOLLNPGM("?EEPROM storage not available.");
  8218. return;
  8219. #endif
  8220. }
  8221. // L to load a mesh from the EEPROM
  8222. if (parser.seen('L') || parser.seen('V')) {
  8223. ubl.display_map(0); // Currently only supports one map type
  8224. SERIAL_ECHOLNPAIR("UBL_MESH_VALID = ", UBL_MESH_VALID);
  8225. SERIAL_ECHOLNPAIR("ubl.storage_slot = ", ubl.storage_slot);
  8226. }
  8227. #endif // AUTO_BED_LEVELING_UBL
  8228. // V to print the matrix or mesh
  8229. if (parser.seen('V')) {
  8230. #if ABL_PLANAR
  8231. planner.bed_level_matrix.debug(PSTR("Bed Level Correction Matrix:"));
  8232. #else
  8233. if (leveling_is_valid()) {
  8234. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  8235. print_bilinear_leveling_grid();
  8236. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  8237. print_bilinear_leveling_grid_virt();
  8238. #endif
  8239. #elif ENABLED(MESH_BED_LEVELING)
  8240. SERIAL_ECHOLNPGM("Mesh Bed Level data:");
  8241. mbl_mesh_report();
  8242. #endif
  8243. }
  8244. #endif
  8245. }
  8246. const bool to_enable = parser.boolval('S');
  8247. if (parser.seen('S'))
  8248. set_bed_leveling_enabled(to_enable);
  8249. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  8250. if (parser.seen('Z')) set_z_fade_height(parser.value_linear_units());
  8251. #endif
  8252. const bool new_status = planner.leveling_active;
  8253. if (to_enable && !new_status) {
  8254. SERIAL_ERROR_START();
  8255. SERIAL_ERRORLNPGM(MSG_ERR_M420_FAILED);
  8256. }
  8257. SERIAL_ECHO_START();
  8258. SERIAL_ECHOLNPAIR("Bed Leveling ", new_status ? MSG_ON : MSG_OFF);
  8259. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  8260. SERIAL_ECHO_START();
  8261. SERIAL_ECHOPGM("Fade Height ");
  8262. if (planner.z_fade_height > 0.0)
  8263. SERIAL_ECHOLN(planner.z_fade_height);
  8264. else
  8265. SERIAL_ECHOLNPGM(MSG_OFF);
  8266. #endif
  8267. }
  8268. #endif
  8269. #if ENABLED(MESH_BED_LEVELING)
  8270. /**
  8271. * M421: Set a single Mesh Bed Leveling Z coordinate
  8272. *
  8273. * Usage:
  8274. * M421 X<linear> Y<linear> Z<linear>
  8275. * M421 X<linear> Y<linear> Q<offset>
  8276. * M421 I<xindex> J<yindex> Z<linear>
  8277. * M421 I<xindex> J<yindex> Q<offset>
  8278. */
  8279. inline void gcode_M421() {
  8280. const bool hasX = parser.seen('X'), hasI = parser.seen('I');
  8281. const int8_t ix = hasI ? parser.value_int() : hasX ? mbl.probe_index_x(parser.value_linear_units()) : -1;
  8282. const bool hasY = parser.seen('Y'), hasJ = parser.seen('J');
  8283. const int8_t iy = hasJ ? parser.value_int() : hasY ? mbl.probe_index_y(parser.value_linear_units()) : -1;
  8284. const bool hasZ = parser.seen('Z'), hasQ = !hasZ && parser.seen('Q');
  8285. if (int(hasI && hasJ) + int(hasX && hasY) != 1 || !(hasZ || hasQ)) {
  8286. SERIAL_ERROR_START();
  8287. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  8288. }
  8289. else if (ix < 0 || iy < 0) {
  8290. SERIAL_ERROR_START();
  8291. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  8292. }
  8293. else
  8294. mbl.set_z(ix, iy, parser.value_linear_units() + (hasQ ? mbl.z_values[ix][iy] : 0));
  8295. }
  8296. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  8297. /**
  8298. * M421: Set a single Mesh Bed Leveling Z coordinate
  8299. *
  8300. * Usage:
  8301. * M421 I<xindex> J<yindex> Z<linear>
  8302. * M421 I<xindex> J<yindex> Q<offset>
  8303. */
  8304. inline void gcode_M421() {
  8305. int8_t ix = parser.intval('I', -1), iy = parser.intval('J', -1);
  8306. const bool hasI = ix >= 0,
  8307. hasJ = iy >= 0,
  8308. hasZ = parser.seen('Z'),
  8309. hasQ = !hasZ && parser.seen('Q');
  8310. if (!hasI || !hasJ || !(hasZ || hasQ)) {
  8311. SERIAL_ERROR_START();
  8312. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  8313. }
  8314. else if (!WITHIN(ix, 0, GRID_MAX_POINTS_X - 1) || !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1)) {
  8315. SERIAL_ERROR_START();
  8316. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  8317. }
  8318. else {
  8319. z_values[ix][iy] = parser.value_linear_units() + (hasQ ? z_values[ix][iy] : 0);
  8320. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  8321. bed_level_virt_interpolate();
  8322. #endif
  8323. }
  8324. }
  8325. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  8326. /**
  8327. * M421: Set a single Mesh Bed Leveling Z coordinate
  8328. *
  8329. * Usage:
  8330. * M421 I<xindex> J<yindex> Z<linear>
  8331. * M421 I<xindex> J<yindex> Q<offset>
  8332. * M421 C Z<linear>
  8333. * M421 C Q<offset>
  8334. */
  8335. inline void gcode_M421() {
  8336. int8_t ix = parser.intval('I', -1), iy = parser.intval('J', -1);
  8337. const bool hasI = ix >= 0,
  8338. hasJ = iy >= 0,
  8339. hasC = parser.seen('C'),
  8340. hasZ = parser.seen('Z'),
  8341. hasQ = !hasZ && parser.seen('Q');
  8342. if (hasC) {
  8343. const mesh_index_pair location = ubl.find_closest_mesh_point_of_type(REAL, current_position[X_AXIS], current_position[Y_AXIS], USE_NOZZLE_AS_REFERENCE, NULL, false);
  8344. ix = location.x_index;
  8345. iy = location.y_index;
  8346. }
  8347. if (int(hasC) + int(hasI && hasJ) != 1 || !(hasZ || hasQ)) {
  8348. SERIAL_ERROR_START();
  8349. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  8350. }
  8351. else if (!WITHIN(ix, 0, GRID_MAX_POINTS_X - 1) || !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1)) {
  8352. SERIAL_ERROR_START();
  8353. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  8354. }
  8355. else
  8356. ubl.z_values[ix][iy] = parser.value_linear_units() + (hasQ ? ubl.z_values[ix][iy] : 0);
  8357. }
  8358. #endif // AUTO_BED_LEVELING_UBL
  8359. #if HAS_M206_COMMAND
  8360. /**
  8361. * M428: Set home_offset based on the distance between the
  8362. * current_position and the nearest "reference point."
  8363. * If an axis is past center its endstop position
  8364. * is the reference-point. Otherwise it uses 0. This allows
  8365. * the Z offset to be set near the bed when using a max endstop.
  8366. *
  8367. * M428 can't be used more than 2cm away from 0 or an endstop.
  8368. *
  8369. * Use M206 to set these values directly.
  8370. */
  8371. inline void gcode_M428() {
  8372. bool err = false;
  8373. LOOP_XYZ(i) {
  8374. if (axis_homed[i]) {
  8375. const float base = (current_position[i] > (soft_endstop_min[i] + soft_endstop_max[i]) * 0.5) ? base_home_pos((AxisEnum)i) : 0,
  8376. diff = base - current_position[i];
  8377. if (WITHIN(diff, -20, 20)) {
  8378. set_home_offset((AxisEnum)i, diff);
  8379. }
  8380. else {
  8381. SERIAL_ERROR_START();
  8382. SERIAL_ERRORLNPGM(MSG_ERR_M428_TOO_FAR);
  8383. LCD_ALERTMESSAGEPGM("Err: Too far!");
  8384. BUZZ(200, 40);
  8385. err = true;
  8386. break;
  8387. }
  8388. }
  8389. }
  8390. if (!err) {
  8391. report_current_position();
  8392. LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
  8393. BUZZ(100, 659);
  8394. BUZZ(100, 698);
  8395. }
  8396. }
  8397. #endif // HAS_M206_COMMAND
  8398. /**
  8399. * M500: Store settings in EEPROM
  8400. */
  8401. inline void gcode_M500() {
  8402. (void)settings.save();
  8403. }
  8404. /**
  8405. * M501: Read settings from EEPROM
  8406. */
  8407. inline void gcode_M501() {
  8408. (void)settings.load();
  8409. }
  8410. /**
  8411. * M502: Revert to default settings
  8412. */
  8413. inline void gcode_M502() {
  8414. (void)settings.reset();
  8415. }
  8416. #if DISABLED(DISABLE_M503)
  8417. /**
  8418. * M503: print settings currently in memory
  8419. */
  8420. inline void gcode_M503() {
  8421. (void)settings.report(parser.boolval('S'));
  8422. }
  8423. #endif
  8424. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  8425. /**
  8426. * M540: Set whether SD card print should abort on endstop hit (M540 S<0|1>)
  8427. */
  8428. inline void gcode_M540() {
  8429. if (parser.seen('S')) stepper.abort_on_endstop_hit = parser.value_bool();
  8430. }
  8431. #endif // ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
  8432. #if HAS_BED_PROBE
  8433. void refresh_zprobe_zoffset(const bool no_babystep/*=false*/) {
  8434. static float last_zoffset = NAN;
  8435. if (!isnan(last_zoffset)) {
  8436. #if ENABLED(AUTO_BED_LEVELING_BILINEAR) || ENABLED(BABYSTEP_ZPROBE_OFFSET) || ENABLED(DELTA)
  8437. const float diff = zprobe_zoffset - last_zoffset;
  8438. #endif
  8439. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  8440. // Correct bilinear grid for new probe offset
  8441. if (diff) {
  8442. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
  8443. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
  8444. z_values[x][y] -= diff;
  8445. }
  8446. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  8447. bed_level_virt_interpolate();
  8448. #endif
  8449. #endif
  8450. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  8451. if (!no_babystep && planner.leveling_active)
  8452. thermalManager.babystep_axis(Z_AXIS, -LROUND(diff * planner.axis_steps_per_mm[Z_AXIS]));
  8453. #else
  8454. UNUSED(no_babystep);
  8455. #endif
  8456. #if ENABLED(DELTA) // correct the delta_height
  8457. home_offset[Z_AXIS] -= diff;
  8458. #endif
  8459. }
  8460. last_zoffset = zprobe_zoffset;
  8461. }
  8462. inline void gcode_M851() {
  8463. SERIAL_ECHO_START();
  8464. SERIAL_ECHOPGM(MSG_ZPROBE_ZOFFSET " ");
  8465. if (parser.seen('Z')) {
  8466. const float value = parser.value_linear_units();
  8467. if (WITHIN(value, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX)) {
  8468. zprobe_zoffset = value;
  8469. refresh_zprobe_zoffset();
  8470. SERIAL_ECHO(zprobe_zoffset);
  8471. }
  8472. else
  8473. SERIAL_ECHOPGM(MSG_Z_MIN " " STRINGIFY(Z_PROBE_OFFSET_RANGE_MIN) " " MSG_Z_MAX " " STRINGIFY(Z_PROBE_OFFSET_RANGE_MAX));
  8474. }
  8475. else
  8476. SERIAL_ECHOPAIR(": ", zprobe_zoffset);
  8477. SERIAL_EOL();
  8478. }
  8479. #endif // HAS_BED_PROBE
  8480. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  8481. /**
  8482. * M600: Pause for filament change
  8483. *
  8484. * E[distance] - Retract the filament this far (negative value)
  8485. * Z[distance] - Move the Z axis by this distance
  8486. * X[position] - Move to this X position, with Y
  8487. * Y[position] - Move to this Y position, with X
  8488. * U[distance] - Retract distance for removal (negative value) (manual reload)
  8489. * L[distance] - Extrude distance for insertion (positive value) (manual reload)
  8490. * B[count] - Number of times to beep, -1 for indefinite (if equipped with a buzzer)
  8491. *
  8492. * Default values are used for omitted arguments.
  8493. *
  8494. */
  8495. inline void gcode_M600() {
  8496. #if ENABLED(HOME_BEFORE_FILAMENT_CHANGE)
  8497. // Don't allow filament change without homing first
  8498. if (axis_unhomed_error()) home_all_axes();
  8499. #endif
  8500. // Initial retract before move to filament change position
  8501. const float retract = parser.seen('E') ? parser.value_axis_units(E_AXIS) : 0
  8502. #ifdef PAUSE_PARK_RETRACT_LENGTH
  8503. - (PAUSE_PARK_RETRACT_LENGTH)
  8504. #endif
  8505. ;
  8506. // Lift Z axis
  8507. const float z_lift = parser.linearval('Z', 0
  8508. #ifdef PAUSE_PARK_Z_ADD
  8509. + PAUSE_PARK_Z_ADD
  8510. #endif
  8511. );
  8512. // Move XY axes to filament exchange position
  8513. const float x_pos = parser.linearval('X', 0
  8514. #ifdef PAUSE_PARK_X_POS
  8515. + PAUSE_PARK_X_POS
  8516. #endif
  8517. );
  8518. const float y_pos = parser.linearval('Y', 0
  8519. #ifdef PAUSE_PARK_Y_POS
  8520. + PAUSE_PARK_Y_POS
  8521. #endif
  8522. );
  8523. // Unload filament
  8524. const float unload_length = parser.seen('U') ? parser.value_axis_units(E_AXIS) : 0
  8525. #if defined(FILAMENT_CHANGE_UNLOAD_LENGTH) && FILAMENT_CHANGE_UNLOAD_LENGTH > 0
  8526. - (FILAMENT_CHANGE_UNLOAD_LENGTH)
  8527. #endif
  8528. ;
  8529. // Load filament
  8530. const float load_length = parser.seen('L') ? parser.value_axis_units(E_AXIS) : 0
  8531. #ifdef FILAMENT_CHANGE_LOAD_LENGTH
  8532. + FILAMENT_CHANGE_LOAD_LENGTH
  8533. #endif
  8534. ;
  8535. const int beep_count = parser.intval('B',
  8536. #ifdef FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS
  8537. FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS
  8538. #else
  8539. -1
  8540. #endif
  8541. );
  8542. const bool job_running = print_job_timer.isRunning();
  8543. if (pause_print(retract, z_lift, x_pos, y_pos, unload_length, beep_count, true)) {
  8544. wait_for_filament_reload(beep_count);
  8545. resume_print(load_length, ADVANCED_PAUSE_EXTRUDE_LENGTH, beep_count);
  8546. }
  8547. // Resume the print job timer if it was running
  8548. if (job_running) print_job_timer.start();
  8549. }
  8550. #endif // ADVANCED_PAUSE_FEATURE
  8551. #if ENABLED(MK2_MULTIPLEXER)
  8552. inline void select_multiplexed_stepper(const uint8_t e) {
  8553. stepper.synchronize();
  8554. disable_e_steppers();
  8555. WRITE(E_MUX0_PIN, TEST(e, 0) ? HIGH : LOW);
  8556. WRITE(E_MUX1_PIN, TEST(e, 1) ? HIGH : LOW);
  8557. WRITE(E_MUX2_PIN, TEST(e, 2) ? HIGH : LOW);
  8558. safe_delay(100);
  8559. }
  8560. /**
  8561. * M702: Unload all extruders
  8562. */
  8563. inline void gcode_M702() {
  8564. for (uint8_t s = 0; s < E_STEPPERS; s++) {
  8565. select_multiplexed_stepper(e);
  8566. // TODO: standard unload filament function
  8567. // MK2 firmware behavior:
  8568. // - Make sure temperature is high enough
  8569. // - Raise Z to at least 15 to make room
  8570. // - Extrude 1cm of filament in 1 second
  8571. // - Under 230C quickly purge ~12mm, over 230C purge ~10mm
  8572. // - Change E max feedrate to 80, eject the filament from the tube. Sync.
  8573. // - Restore E max feedrate to 50
  8574. }
  8575. // Go back to the last active extruder
  8576. select_multiplexed_stepper(active_extruder);
  8577. disable_e_steppers();
  8578. }
  8579. #endif // MK2_MULTIPLEXER
  8580. #if ENABLED(DUAL_X_CARRIAGE)
  8581. /**
  8582. * M605: Set dual x-carriage movement mode
  8583. *
  8584. * M605 S0: Full control mode. The slicer has full control over x-carriage movement
  8585. * M605 S1: Auto-park mode. The inactive head will auto park/unpark without slicer involvement
  8586. * M605 S2 [Xnnn] [Rmmm]: Duplication mode. The second extruder will duplicate the first with nnn
  8587. * units x-offset and an optional differential hotend temperature of
  8588. * mmm degrees. E.g., with "M605 S2 X100 R2" the second extruder will duplicate
  8589. * the first with a spacing of 100mm in the x direction and 2 degrees hotter.
  8590. *
  8591. * Note: the X axis should be homed after changing dual x-carriage mode.
  8592. */
  8593. inline void gcode_M605() {
  8594. stepper.synchronize();
  8595. if (parser.seen('S')) dual_x_carriage_mode = (DualXMode)parser.value_byte();
  8596. switch (dual_x_carriage_mode) {
  8597. case DXC_FULL_CONTROL_MODE:
  8598. case DXC_AUTO_PARK_MODE:
  8599. break;
  8600. case DXC_DUPLICATION_MODE:
  8601. if (parser.seen('X')) duplicate_extruder_x_offset = max(parser.value_linear_units(), X2_MIN_POS - x_home_pos(0));
  8602. if (parser.seen('R')) duplicate_extruder_temp_offset = parser.value_celsius_diff();
  8603. SERIAL_ECHO_START();
  8604. SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
  8605. SERIAL_CHAR(' ');
  8606. SERIAL_ECHO(hotend_offset[X_AXIS][0]);
  8607. SERIAL_CHAR(',');
  8608. SERIAL_ECHO(hotend_offset[Y_AXIS][0]);
  8609. SERIAL_CHAR(' ');
  8610. SERIAL_ECHO(duplicate_extruder_x_offset);
  8611. SERIAL_CHAR(',');
  8612. SERIAL_ECHOLN(hotend_offset[Y_AXIS][1]);
  8613. break;
  8614. default:
  8615. dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
  8616. break;
  8617. }
  8618. active_extruder_parked = false;
  8619. extruder_duplication_enabled = false;
  8620. delayed_move_time = 0;
  8621. }
  8622. #elif ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  8623. inline void gcode_M605() {
  8624. stepper.synchronize();
  8625. extruder_duplication_enabled = parser.intval('S') == (int)DXC_DUPLICATION_MODE;
  8626. SERIAL_ECHO_START();
  8627. SERIAL_ECHOLNPAIR(MSG_DUPLICATION_MODE, extruder_duplication_enabled ? MSG_ON : MSG_OFF);
  8628. }
  8629. #endif // DUAL_NOZZLE_DUPLICATION_MODE
  8630. #if ENABLED(LIN_ADVANCE)
  8631. /**
  8632. * M900: Set and/or Get advance K factor and WH/D ratio
  8633. *
  8634. * K<factor> Set advance K factor
  8635. * R<ratio> Set ratio directly (overrides WH/D)
  8636. * W<width> H<height> D<diam> Set ratio from WH/D
  8637. */
  8638. inline void gcode_M900() {
  8639. stepper.synchronize();
  8640. const float newK = parser.floatval('K', -1);
  8641. if (newK >= 0) planner.extruder_advance_k = newK;
  8642. float newR = parser.floatval('R', -1);
  8643. if (newR < 0) {
  8644. const float newD = parser.floatval('D', -1),
  8645. newW = parser.floatval('W', -1),
  8646. newH = parser.floatval('H', -1);
  8647. if (newD >= 0 && newW >= 0 && newH >= 0)
  8648. newR = newD ? (newW * newH) / (sq(newD * 0.5) * M_PI) : 0;
  8649. }
  8650. if (newR >= 0) planner.advance_ed_ratio = newR;
  8651. SERIAL_ECHO_START();
  8652. SERIAL_ECHOPAIR("Advance K=", planner.extruder_advance_k);
  8653. SERIAL_ECHOPGM(" E/D=");
  8654. const float ratio = planner.advance_ed_ratio;
  8655. if (ratio) SERIAL_ECHO(ratio); else SERIAL_ECHOPGM("Auto");
  8656. SERIAL_EOL();
  8657. }
  8658. #endif // LIN_ADVANCE
  8659. #if ENABLED(HAVE_TMC2130)
  8660. static void tmc2130_get_current(TMC2130Stepper &st, const char name) {
  8661. SERIAL_CHAR(name);
  8662. SERIAL_ECHOPGM(" axis driver current: ");
  8663. SERIAL_ECHOLN(st.getCurrent());
  8664. }
  8665. static void tmc2130_set_current(TMC2130Stepper &st, const char name, const int mA) {
  8666. st.setCurrent(mA, R_SENSE, HOLD_MULTIPLIER);
  8667. tmc2130_get_current(st, name);
  8668. }
  8669. static void tmc2130_report_otpw(TMC2130Stepper &st, const char name) {
  8670. SERIAL_CHAR(name);
  8671. SERIAL_ECHOPGM(" axis temperature prewarn triggered: ");
  8672. serialprintPGM(st.getOTPW() ? PSTR("true") : PSTR("false"));
  8673. SERIAL_EOL();
  8674. }
  8675. static void tmc2130_clear_otpw(TMC2130Stepper &st, const char name) {
  8676. st.clear_otpw();
  8677. SERIAL_CHAR(name);
  8678. SERIAL_ECHOLNPGM(" prewarn flag cleared");
  8679. }
  8680. static void tmc2130_get_pwmthrs(TMC2130Stepper &st, const char name, const uint16_t spmm) {
  8681. SERIAL_CHAR(name);
  8682. SERIAL_ECHOPGM(" stealthChop max speed set to ");
  8683. SERIAL_ECHOLN(12650000UL * st.microsteps() / (256 * st.stealth_max_speed() * spmm));
  8684. }
  8685. static void tmc2130_set_pwmthrs(TMC2130Stepper &st, const char name, const int32_t thrs, const uint32_t spmm) {
  8686. st.stealth_max_speed(12650000UL * st.microsteps() / (256 * thrs * spmm));
  8687. tmc2130_get_pwmthrs(st, name, spmm);
  8688. }
  8689. static void tmc2130_get_sgt(TMC2130Stepper &st, const char name) {
  8690. SERIAL_CHAR(name);
  8691. SERIAL_ECHOPGM(" driver homing sensitivity set to ");
  8692. SERIAL_ECHOLN(st.sgt());
  8693. }
  8694. static void tmc2130_set_sgt(TMC2130Stepper &st, const char name, const int8_t sgt_val) {
  8695. st.sgt(sgt_val);
  8696. tmc2130_get_sgt(st, name);
  8697. }
  8698. /**
  8699. * M906: Set motor current in milliamps using axis codes X, Y, Z, E
  8700. * Report driver currents when no axis specified
  8701. *
  8702. * S1: Enable automatic current control
  8703. * S0: Disable
  8704. */
  8705. inline void gcode_M906() {
  8706. uint16_t values[XYZE];
  8707. LOOP_XYZE(i)
  8708. values[i] = parser.intval(axis_codes[i]);
  8709. #if ENABLED(X_IS_TMC2130)
  8710. if (values[X_AXIS]) tmc2130_set_current(stepperX, 'X', values[X_AXIS]);
  8711. else tmc2130_get_current(stepperX, 'X');
  8712. #endif
  8713. #if ENABLED(Y_IS_TMC2130)
  8714. if (values[Y_AXIS]) tmc2130_set_current(stepperY, 'Y', values[Y_AXIS]);
  8715. else tmc2130_get_current(stepperY, 'Y');
  8716. #endif
  8717. #if ENABLED(Z_IS_TMC2130)
  8718. if (values[Z_AXIS]) tmc2130_set_current(stepperZ, 'Z', values[Z_AXIS]);
  8719. else tmc2130_get_current(stepperZ, 'Z');
  8720. #endif
  8721. #if ENABLED(E0_IS_TMC2130)
  8722. if (values[E_AXIS]) tmc2130_set_current(stepperE0, 'E', values[E_AXIS]);
  8723. else tmc2130_get_current(stepperE0, 'E');
  8724. #endif
  8725. #if ENABLED(AUTOMATIC_CURRENT_CONTROL)
  8726. if (parser.seen('S')) auto_current_control = parser.value_bool();
  8727. #endif
  8728. }
  8729. /**
  8730. * M911: Report TMC2130 stepper driver overtemperature pre-warn flag
  8731. * The flag is held by the library and persist until manually cleared by M912
  8732. */
  8733. inline void gcode_M911() {
  8734. const bool reportX = parser.seen('X'), reportY = parser.seen('Y'), reportZ = parser.seen('Z'), reportE = parser.seen('E'),
  8735. reportAll = (!reportX && !reportY && !reportZ && !reportE) || (reportX && reportY && reportZ && reportE);
  8736. #if ENABLED(X_IS_TMC2130)
  8737. if (reportX || reportAll) tmc2130_report_otpw(stepperX, 'X');
  8738. #endif
  8739. #if ENABLED(Y_IS_TMC2130)
  8740. if (reportY || reportAll) tmc2130_report_otpw(stepperY, 'Y');
  8741. #endif
  8742. #if ENABLED(Z_IS_TMC2130)
  8743. if (reportZ || reportAll) tmc2130_report_otpw(stepperZ, 'Z');
  8744. #endif
  8745. #if ENABLED(E0_IS_TMC2130)
  8746. if (reportE || reportAll) tmc2130_report_otpw(stepperE0, 'E');
  8747. #endif
  8748. }
  8749. /**
  8750. * M912: Clear TMC2130 stepper driver overtemperature pre-warn flag held by the library
  8751. */
  8752. inline void gcode_M912() {
  8753. const bool clearX = parser.seen('X'), clearY = parser.seen('Y'), clearZ = parser.seen('Z'), clearE = parser.seen('E'),
  8754. clearAll = (!clearX && !clearY && !clearZ && !clearE) || (clearX && clearY && clearZ && clearE);
  8755. #if ENABLED(X_IS_TMC2130)
  8756. if (clearX || clearAll) tmc2130_clear_otpw(stepperX, 'X');
  8757. #endif
  8758. #if ENABLED(Y_IS_TMC2130)
  8759. if (clearY || clearAll) tmc2130_clear_otpw(stepperY, 'Y');
  8760. #endif
  8761. #if ENABLED(Z_IS_TMC2130)
  8762. if (clearZ || clearAll) tmc2130_clear_otpw(stepperZ, 'Z');
  8763. #endif
  8764. #if ENABLED(E0_IS_TMC2130)
  8765. if (clearE || clearAll) tmc2130_clear_otpw(stepperE0, 'E');
  8766. #endif
  8767. }
  8768. /**
  8769. * M913: Set HYBRID_THRESHOLD speed.
  8770. */
  8771. #if ENABLED(HYBRID_THRESHOLD)
  8772. inline void gcode_M913() {
  8773. uint16_t values[XYZE];
  8774. LOOP_XYZE(i)
  8775. values[i] = parser.intval(axis_codes[i]);
  8776. #if ENABLED(X_IS_TMC2130)
  8777. if (values[X_AXIS]) tmc2130_set_pwmthrs(stepperX, 'X', values[X_AXIS], planner.axis_steps_per_mm[X_AXIS]);
  8778. else tmc2130_get_pwmthrs(stepperX, 'X', planner.axis_steps_per_mm[X_AXIS]);
  8779. #endif
  8780. #if ENABLED(Y_IS_TMC2130)
  8781. if (values[Y_AXIS]) tmc2130_set_pwmthrs(stepperY, 'Y', values[Y_AXIS], planner.axis_steps_per_mm[Y_AXIS]);
  8782. else tmc2130_get_pwmthrs(stepperY, 'Y', planner.axis_steps_per_mm[Y_AXIS]);
  8783. #endif
  8784. #if ENABLED(Z_IS_TMC2130)
  8785. if (values[Z_AXIS]) tmc2130_set_pwmthrs(stepperZ, 'Z', values[Z_AXIS], planner.axis_steps_per_mm[Z_AXIS]);
  8786. else tmc2130_get_pwmthrs(stepperZ, 'Z', planner.axis_steps_per_mm[Z_AXIS]);
  8787. #endif
  8788. #if ENABLED(E0_IS_TMC2130)
  8789. if (values[E_AXIS]) tmc2130_set_pwmthrs(stepperE0, 'E', values[E_AXIS], planner.axis_steps_per_mm[E_AXIS]);
  8790. else tmc2130_get_pwmthrs(stepperE0, 'E', planner.axis_steps_per_mm[E_AXIS]);
  8791. #endif
  8792. }
  8793. #endif // HYBRID_THRESHOLD
  8794. /**
  8795. * M914: Set SENSORLESS_HOMING sensitivity.
  8796. */
  8797. #if ENABLED(SENSORLESS_HOMING)
  8798. inline void gcode_M914() {
  8799. #if ENABLED(X_IS_TMC2130)
  8800. if (parser.seen(axis_codes[X_AXIS])) tmc2130_set_sgt(stepperX, 'X', parser.value_int());
  8801. else tmc2130_get_sgt(stepperX, 'X');
  8802. #endif
  8803. #if ENABLED(Y_IS_TMC2130)
  8804. if (parser.seen(axis_codes[Y_AXIS])) tmc2130_set_sgt(stepperY, 'Y', parser.value_int());
  8805. else tmc2130_get_sgt(stepperY, 'Y');
  8806. #endif
  8807. }
  8808. #endif // SENSORLESS_HOMING
  8809. #endif // HAVE_TMC2130
  8810. /**
  8811. * M907: Set digital trimpot motor current using axis codes X, Y, Z, E, B, S
  8812. */
  8813. inline void gcode_M907() {
  8814. #if HAS_DIGIPOTSS
  8815. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) stepper.digipot_current(i, parser.value_int());
  8816. if (parser.seen('B')) stepper.digipot_current(4, parser.value_int());
  8817. if (parser.seen('S')) for (uint8_t i = 0; i <= 4; i++) stepper.digipot_current(i, parser.value_int());
  8818. #elif HAS_MOTOR_CURRENT_PWM
  8819. #if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
  8820. if (parser.seen('X')) stepper.digipot_current(0, parser.value_int());
  8821. #endif
  8822. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
  8823. if (parser.seen('Z')) stepper.digipot_current(1, parser.value_int());
  8824. #endif
  8825. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
  8826. if (parser.seen('E')) stepper.digipot_current(2, parser.value_int());
  8827. #endif
  8828. #endif
  8829. #if ENABLED(DIGIPOT_I2C)
  8830. // this one uses actual amps in floating point
  8831. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) digipot_i2c_set_current(i, parser.value_float());
  8832. // for each additional extruder (named B,C,D,E..., channels 4,5,6,7...)
  8833. 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());
  8834. #endif
  8835. #if ENABLED(DAC_STEPPER_CURRENT)
  8836. if (parser.seen('S')) {
  8837. const float dac_percent = parser.value_float();
  8838. for (uint8_t i = 0; i <= 4; i++) dac_current_percent(i, dac_percent);
  8839. }
  8840. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) dac_current_percent(i, parser.value_float());
  8841. #endif
  8842. }
  8843. #if HAS_DIGIPOTSS || ENABLED(DAC_STEPPER_CURRENT)
  8844. /**
  8845. * M908: Control digital trimpot directly (M908 P<pin> S<current>)
  8846. */
  8847. inline void gcode_M908() {
  8848. #if HAS_DIGIPOTSS
  8849. stepper.digitalPotWrite(
  8850. parser.intval('P'),
  8851. parser.intval('S')
  8852. );
  8853. #endif
  8854. #ifdef DAC_STEPPER_CURRENT
  8855. dac_current_raw(
  8856. parser.byteval('P', -1),
  8857. parser.ushortval('S', 0)
  8858. );
  8859. #endif
  8860. }
  8861. #if ENABLED(DAC_STEPPER_CURRENT) // As with Printrbot RevF
  8862. inline void gcode_M909() { dac_print_values(); }
  8863. inline void gcode_M910() { dac_commit_eeprom(); }
  8864. #endif
  8865. #endif // HAS_DIGIPOTSS || DAC_STEPPER_CURRENT
  8866. #if HAS_MICROSTEPS
  8867. // M350 Set microstepping mode. Warning: Steps per unit remains unchanged. S code sets stepping mode for all drivers.
  8868. inline void gcode_M350() {
  8869. if (parser.seen('S')) for (int i = 0; i <= 4; i++) stepper.microstep_mode(i, parser.value_byte());
  8870. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) stepper.microstep_mode(i, parser.value_byte());
  8871. if (parser.seen('B')) stepper.microstep_mode(4, parser.value_byte());
  8872. stepper.microstep_readings();
  8873. }
  8874. /**
  8875. * M351: Toggle MS1 MS2 pins directly with axis codes X Y Z E B
  8876. * S# determines MS1 or MS2, X# sets the pin high/low.
  8877. */
  8878. inline void gcode_M351() {
  8879. if (parser.seenval('S')) switch (parser.value_byte()) {
  8880. case 1:
  8881. LOOP_XYZE(i) if (parser.seenval(axis_codes[i])) stepper.microstep_ms(i, parser.value_byte(), -1);
  8882. if (parser.seenval('B')) stepper.microstep_ms(4, parser.value_byte(), -1);
  8883. break;
  8884. case 2:
  8885. LOOP_XYZE(i) if (parser.seenval(axis_codes[i])) stepper.microstep_ms(i, -1, parser.value_byte());
  8886. if (parser.seenval('B')) stepper.microstep_ms(4, -1, parser.value_byte());
  8887. break;
  8888. }
  8889. stepper.microstep_readings();
  8890. }
  8891. #endif // HAS_MICROSTEPS
  8892. #if HAS_CASE_LIGHT
  8893. #ifndef INVERT_CASE_LIGHT
  8894. #define INVERT_CASE_LIGHT false
  8895. #endif
  8896. uint8_t case_light_brightness; // LCD routine wants INT
  8897. bool case_light_on;
  8898. void update_case_light() {
  8899. pinMode(CASE_LIGHT_PIN, OUTPUT); // digitalWrite doesn't set the port mode
  8900. if (case_light_on) {
  8901. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN))
  8902. analogWrite(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? 255 - case_light_brightness : case_light_brightness);
  8903. else
  8904. WRITE(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? LOW : HIGH);
  8905. }
  8906. else {
  8907. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN))
  8908. analogWrite(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? 255 : 0);
  8909. else
  8910. WRITE(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? HIGH : LOW);
  8911. }
  8912. }
  8913. #endif // HAS_CASE_LIGHT
  8914. /**
  8915. * M355: Turn case light on/off and set brightness
  8916. *
  8917. * P<byte> Set case light brightness (PWM pin required - ignored otherwise)
  8918. *
  8919. * S<bool> Set case light on/off
  8920. *
  8921. * When S turns on the light on a PWM pin then the current brightness level is used/restored
  8922. *
  8923. * M355 P200 S0 turns off the light & sets the brightness level
  8924. * M355 S1 turns on the light with a brightness of 200 (assuming a PWM pin)
  8925. */
  8926. inline void gcode_M355() {
  8927. #if HAS_CASE_LIGHT
  8928. uint8_t args = 0;
  8929. if (parser.seenval('P')) ++args, case_light_brightness = parser.value_byte();
  8930. if (parser.seenval('S')) ++args, case_light_on = parser.value_bool();
  8931. if (args) update_case_light();
  8932. // always report case light status
  8933. SERIAL_ECHO_START();
  8934. if (!case_light_on) {
  8935. SERIAL_ECHOLN("Case light: off");
  8936. }
  8937. else {
  8938. if (!USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) SERIAL_ECHOLN("Case light: on");
  8939. else SERIAL_ECHOLNPAIR("Case light: ", (int)case_light_brightness);
  8940. }
  8941. #else
  8942. SERIAL_ERROR_START();
  8943. SERIAL_ERRORLNPGM(MSG_ERR_M355_NONE);
  8944. #endif // HAS_CASE_LIGHT
  8945. }
  8946. #if ENABLED(MIXING_EXTRUDER)
  8947. /**
  8948. * M163: Set a single mix factor for a mixing extruder
  8949. * This is called "weight" by some systems.
  8950. *
  8951. * S[index] The channel index to set
  8952. * P[float] The mix value
  8953. *
  8954. */
  8955. inline void gcode_M163() {
  8956. const int mix_index = parser.intval('S');
  8957. if (mix_index < MIXING_STEPPERS) {
  8958. float mix_value = parser.floatval('P');
  8959. NOLESS(mix_value, 0.0);
  8960. mixing_factor[mix_index] = RECIPROCAL(mix_value);
  8961. }
  8962. }
  8963. #if MIXING_VIRTUAL_TOOLS > 1
  8964. /**
  8965. * M164: Store the current mix factors as a virtual tool.
  8966. *
  8967. * S[index] The virtual tool to store
  8968. *
  8969. */
  8970. inline void gcode_M164() {
  8971. const int tool_index = parser.intval('S');
  8972. if (tool_index < MIXING_VIRTUAL_TOOLS) {
  8973. normalize_mix();
  8974. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  8975. mixing_virtual_tool_mix[tool_index][i] = mixing_factor[i];
  8976. }
  8977. }
  8978. #endif
  8979. #if ENABLED(DIRECT_MIXING_IN_G1)
  8980. /**
  8981. * M165: Set multiple mix factors for a mixing extruder.
  8982. * Factors that are left out will be set to 0.
  8983. * All factors together must add up to 1.0.
  8984. *
  8985. * A[factor] Mix factor for extruder stepper 1
  8986. * B[factor] Mix factor for extruder stepper 2
  8987. * C[factor] Mix factor for extruder stepper 3
  8988. * D[factor] Mix factor for extruder stepper 4
  8989. * H[factor] Mix factor for extruder stepper 5
  8990. * I[factor] Mix factor for extruder stepper 6
  8991. *
  8992. */
  8993. inline void gcode_M165() { gcode_get_mix(); }
  8994. #endif
  8995. #endif // MIXING_EXTRUDER
  8996. /**
  8997. * M999: Restart after being stopped
  8998. *
  8999. * Default behaviour is to flush the serial buffer and request
  9000. * a resend to the host starting on the last N line received.
  9001. *
  9002. * Sending "M999 S1" will resume printing without flushing the
  9003. * existing command buffer.
  9004. *
  9005. */
  9006. inline void gcode_M999() {
  9007. Running = true;
  9008. lcd_reset_alert_level();
  9009. if (parser.boolval('S')) return;
  9010. // gcode_LastN = Stopped_gcode_LastN;
  9011. FlushSerialRequestResend();
  9012. }
  9013. #if ENABLED(SWITCHING_EXTRUDER)
  9014. #if EXTRUDERS > 3
  9015. #define REQ_ANGLES 4
  9016. #define _SERVO_NR (e < 2 ? SWITCHING_EXTRUDER_SERVO_NR : SWITCHING_EXTRUDER_E23_SERVO_NR)
  9017. #else
  9018. #define REQ_ANGLES 2
  9019. #define _SERVO_NR SWITCHING_EXTRUDER_SERVO_NR
  9020. #endif
  9021. inline void move_extruder_servo(const uint8_t e) {
  9022. constexpr int16_t angles[] = SWITCHING_EXTRUDER_SERVO_ANGLES;
  9023. static_assert(COUNT(angles) == REQ_ANGLES, "SWITCHING_EXTRUDER_SERVO_ANGLES needs " STRINGIFY(REQ_ANGLES) " angles.");
  9024. stepper.synchronize();
  9025. #if EXTRUDERS & 1
  9026. if (e < EXTRUDERS - 1)
  9027. #endif
  9028. {
  9029. MOVE_SERVO(_SERVO_NR, angles[e]);
  9030. safe_delay(500);
  9031. }
  9032. }
  9033. #endif // SWITCHING_EXTRUDER
  9034. #if ENABLED(SWITCHING_NOZZLE)
  9035. inline void move_nozzle_servo(const uint8_t e) {
  9036. const int16_t angles[2] = SWITCHING_NOZZLE_SERVO_ANGLES;
  9037. stepper.synchronize();
  9038. MOVE_SERVO(SWITCHING_NOZZLE_SERVO_NR, angles[e]);
  9039. safe_delay(500);
  9040. }
  9041. #endif
  9042. inline void invalid_extruder_error(const uint8_t e) {
  9043. SERIAL_ECHO_START();
  9044. SERIAL_CHAR('T');
  9045. SERIAL_ECHO_F(e, DEC);
  9046. SERIAL_CHAR(' ');
  9047. SERIAL_ECHOLN(MSG_INVALID_EXTRUDER);
  9048. }
  9049. #if ENABLED(PARKING_EXTRUDER)
  9050. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  9051. #define PE_MAGNET_ON_STATE !PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE
  9052. #else
  9053. #define PE_MAGNET_ON_STATE PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE
  9054. #endif
  9055. void pe_set_magnet(const uint8_t extruder_num, const uint8_t state) {
  9056. switch (extruder_num) {
  9057. case 1: OUT_WRITE(SOL1_PIN, state); break;
  9058. default: OUT_WRITE(SOL0_PIN, state); break;
  9059. }
  9060. #if PARKING_EXTRUDER_SOLENOIDS_DELAY > 0
  9061. dwell(PARKING_EXTRUDER_SOLENOIDS_DELAY);
  9062. #endif
  9063. }
  9064. inline void pe_activate_magnet(const uint8_t extruder_num) { pe_set_magnet(extruder_num, PE_MAGNET_ON_STATE); }
  9065. inline void pe_deactivate_magnet(const uint8_t extruder_num) { pe_set_magnet(extruder_num, !PE_MAGNET_ON_STATE); }
  9066. #endif // PARKING_EXTRUDER
  9067. #if HAS_FANMUX
  9068. void fanmux_switch(const uint8_t e) {
  9069. WRITE(FANMUX0_PIN, TEST(e, 0) ? HIGH : LOW);
  9070. #if PIN_EXISTS(FANMUX1)
  9071. WRITE(FANMUX1_PIN, TEST(e, 1) ? HIGH : LOW);
  9072. #if PIN_EXISTS(FANMUX2)
  9073. WRITE(FANMUX2, TEST(e, 2) ? HIGH : LOW);
  9074. #endif
  9075. #endif
  9076. }
  9077. FORCE_INLINE void fanmux_init(void){
  9078. SET_OUTPUT(FANMUX0_PIN);
  9079. #if PIN_EXISTS(FANMUX1)
  9080. SET_OUTPUT(FANMUX1_PIN);
  9081. #if PIN_EXISTS(FANMUX2)
  9082. SET_OUTPUT(FANMUX2_PIN);
  9083. #endif
  9084. #endif
  9085. fanmux_switch(0);
  9086. }
  9087. #endif // HAS_FANMUX
  9088. /**
  9089. * Perform a tool-change, which may result in moving the
  9090. * previous tool out of the way and the new tool into place.
  9091. */
  9092. void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool no_move/*=false*/) {
  9093. #if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
  9094. if (tmp_extruder >= MIXING_VIRTUAL_TOOLS)
  9095. return invalid_extruder_error(tmp_extruder);
  9096. // T0-Tnnn: Switch virtual tool by changing the mix
  9097. for (uint8_t j = 0; j < MIXING_STEPPERS; j++)
  9098. mixing_factor[j] = mixing_virtual_tool_mix[tmp_extruder][j];
  9099. #else // !MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
  9100. if (tmp_extruder >= EXTRUDERS)
  9101. return invalid_extruder_error(tmp_extruder);
  9102. #if HOTENDS > 1
  9103. const float old_feedrate_mm_s = fr_mm_s > 0.0 ? fr_mm_s : feedrate_mm_s;
  9104. feedrate_mm_s = fr_mm_s > 0.0 ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  9105. if (tmp_extruder != active_extruder) {
  9106. if (!no_move && axis_unhomed_error()) {
  9107. no_move = true;
  9108. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9109. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("No move on toolchange");
  9110. #endif
  9111. }
  9112. // Save current position to destination, for use later
  9113. set_destination_from_current();
  9114. #if ENABLED(DUAL_X_CARRIAGE)
  9115. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9116. if (DEBUGGING(LEVELING)) {
  9117. SERIAL_ECHOPGM("Dual X Carriage Mode ");
  9118. switch (dual_x_carriage_mode) {
  9119. case DXC_FULL_CONTROL_MODE: SERIAL_ECHOLNPGM("DXC_FULL_CONTROL_MODE"); break;
  9120. case DXC_AUTO_PARK_MODE: SERIAL_ECHOLNPGM("DXC_AUTO_PARK_MODE"); break;
  9121. case DXC_DUPLICATION_MODE: SERIAL_ECHOLNPGM("DXC_DUPLICATION_MODE"); break;
  9122. }
  9123. }
  9124. #endif
  9125. const float xhome = x_home_pos(active_extruder);
  9126. if (dual_x_carriage_mode == DXC_AUTO_PARK_MODE
  9127. && IsRunning()
  9128. && (delayed_move_time || current_position[X_AXIS] != xhome)
  9129. ) {
  9130. float raised_z = current_position[Z_AXIS] + TOOLCHANGE_PARK_ZLIFT;
  9131. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  9132. NOMORE(raised_z, soft_endstop_max[Z_AXIS]);
  9133. #endif
  9134. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9135. if (DEBUGGING(LEVELING)) {
  9136. SERIAL_ECHOLNPAIR("Raise to ", raised_z);
  9137. SERIAL_ECHOLNPAIR("MoveX to ", xhome);
  9138. SERIAL_ECHOLNPAIR("Lower to ", current_position[Z_AXIS]);
  9139. }
  9140. #endif
  9141. // Park old head: 1) raise 2) move to park position 3) lower
  9142. for (uint8_t i = 0; i < 3; i++)
  9143. planner.buffer_line(
  9144. i == 0 ? current_position[X_AXIS] : xhome,
  9145. current_position[Y_AXIS],
  9146. i == 2 ? current_position[Z_AXIS] : raised_z,
  9147. current_position[E_AXIS],
  9148. planner.max_feedrate_mm_s[i == 1 ? X_AXIS : Z_AXIS],
  9149. active_extruder
  9150. );
  9151. stepper.synchronize();
  9152. }
  9153. // Apply Y & Z extruder offset (X offset is used as home pos with Dual X)
  9154. current_position[Y_AXIS] -= hotend_offset[Y_AXIS][active_extruder] - hotend_offset[Y_AXIS][tmp_extruder];
  9155. current_position[Z_AXIS] -= hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder];
  9156. // Activate the new extruder ahead of calling set_axis_is_at_home!
  9157. active_extruder = tmp_extruder;
  9158. // This function resets the max/min values - the current position may be overwritten below.
  9159. set_axis_is_at_home(X_AXIS);
  9160. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9161. if (DEBUGGING(LEVELING)) DEBUG_POS("New Extruder", current_position);
  9162. #endif
  9163. // Only when auto-parking are carriages safe to move
  9164. if (dual_x_carriage_mode != DXC_AUTO_PARK_MODE) no_move = true;
  9165. switch (dual_x_carriage_mode) {
  9166. case DXC_FULL_CONTROL_MODE:
  9167. // New current position is the position of the activated extruder
  9168. current_position[X_AXIS] = inactive_extruder_x_pos;
  9169. // Save the inactive extruder's position (from the old current_position)
  9170. inactive_extruder_x_pos = destination[X_AXIS];
  9171. break;
  9172. case DXC_AUTO_PARK_MODE:
  9173. // record raised toolhead position for use by unpark
  9174. COPY(raised_parked_position, current_position);
  9175. raised_parked_position[Z_AXIS] += TOOLCHANGE_UNPARK_ZLIFT;
  9176. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  9177. NOMORE(raised_parked_position[Z_AXIS], soft_endstop_max[Z_AXIS]);
  9178. #endif
  9179. active_extruder_parked = true;
  9180. delayed_move_time = 0;
  9181. break;
  9182. case DXC_DUPLICATION_MODE:
  9183. // If the new extruder is the left one, set it "parked"
  9184. // This triggers the second extruder to move into the duplication position
  9185. active_extruder_parked = (active_extruder == 0);
  9186. if (active_extruder_parked)
  9187. current_position[X_AXIS] = inactive_extruder_x_pos;
  9188. else
  9189. current_position[X_AXIS] = destination[X_AXIS] + duplicate_extruder_x_offset;
  9190. inactive_extruder_x_pos = destination[X_AXIS];
  9191. extruder_duplication_enabled = false;
  9192. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9193. if (DEBUGGING(LEVELING)) {
  9194. SERIAL_ECHOLNPAIR("Set inactive_extruder_x_pos=", inactive_extruder_x_pos);
  9195. SERIAL_ECHOLNPGM("Clear extruder_duplication_enabled");
  9196. }
  9197. #endif
  9198. break;
  9199. }
  9200. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9201. if (DEBUGGING(LEVELING)) {
  9202. SERIAL_ECHOLNPAIR("Active extruder parked: ", active_extruder_parked ? "yes" : "no");
  9203. DEBUG_POS("New extruder (parked)", current_position);
  9204. }
  9205. #endif
  9206. // No extra case for HAS_ABL in DUAL_X_CARRIAGE. Does that mean they don't work together?
  9207. #else // !DUAL_X_CARRIAGE
  9208. #if ENABLED(PARKING_EXTRUDER) // Dual Parking extruder
  9209. const float z_diff = hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder];
  9210. float z_raise = 0;
  9211. if (!no_move) {
  9212. const float parkingposx[] = PARKING_EXTRUDER_PARKING_X,
  9213. midpos = ((parkingposx[1] - parkingposx[0])/2) + parkingposx[0] + hotend_offset[X_AXIS][active_extruder],
  9214. grabpos = parkingposx[tmp_extruder] + hotend_offset[X_AXIS][active_extruder]
  9215. + (tmp_extruder == 0 ? -(PARKING_EXTRUDER_GRAB_DISTANCE) : PARKING_EXTRUDER_GRAB_DISTANCE);
  9216. /**
  9217. * Steps:
  9218. * 1. Raise Z-Axis to give enough clearance
  9219. * 2. Move to park position of old extruder
  9220. * 3. Disengage magnetic field, wait for delay
  9221. * 4. Move near new extruder
  9222. * 5. Engage magnetic field for new extruder
  9223. * 6. Move to parking incl. offset of new extruder
  9224. * 7. Lower Z-Axis
  9225. */
  9226. // STEP 1
  9227. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9228. SERIAL_ECHOLNPGM("Starting Autopark");
  9229. if (DEBUGGING(LEVELING)) DEBUG_POS("current position:", current_position);
  9230. #endif
  9231. z_raise = PARKING_EXTRUDER_SECURITY_RAISE;
  9232. current_position[Z_AXIS] += z_raise;
  9233. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9234. SERIAL_ECHOLNPGM("(1) Raise Z-Axis ");
  9235. if (DEBUGGING(LEVELING)) DEBUG_POS("Moving to Raised Z-Position", current_position);
  9236. #endif
  9237. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
  9238. stepper.synchronize();
  9239. // STEP 2
  9240. current_position[X_AXIS] = parkingposx[active_extruder] + hotend_offset[X_AXIS][active_extruder];
  9241. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9242. SERIAL_ECHOLNPAIR("(2) Park extruder ", active_extruder);
  9243. if (DEBUGGING(LEVELING)) DEBUG_POS("Moving ParkPos", current_position);
  9244. #endif
  9245. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9246. stepper.synchronize();
  9247. // STEP 3
  9248. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9249. SERIAL_ECHOLNPGM("(3) Disengage magnet ");
  9250. #endif
  9251. pe_deactivate_magnet(active_extruder);
  9252. // STEP 4
  9253. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9254. SERIAL_ECHOLNPGM("(4) Move to position near new extruder");
  9255. #endif
  9256. current_position[X_AXIS] += (active_extruder == 0 ? 10 : -10); // move 10mm away from parked extruder
  9257. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9258. if (DEBUGGING(LEVELING)) DEBUG_POS("Moving away from parked extruder", current_position);
  9259. #endif
  9260. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9261. stepper.synchronize();
  9262. // STEP 5
  9263. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9264. SERIAL_ECHOLNPGM("(5) Engage magnetic field");
  9265. #endif
  9266. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  9267. pe_activate_magnet(active_extruder); //just save power for inverted magnets
  9268. #endif
  9269. pe_activate_magnet(tmp_extruder);
  9270. // STEP 6
  9271. current_position[X_AXIS] = grabpos + (tmp_extruder == 0 ? (+10) : (-10));
  9272. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9273. current_position[X_AXIS] = grabpos;
  9274. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9275. SERIAL_ECHOLNPAIR("(6) Unpark extruder ", tmp_extruder);
  9276. if (DEBUGGING(LEVELING)) DEBUG_POS("Move UnparkPos", current_position);
  9277. #endif
  9278. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS]/2, active_extruder);
  9279. stepper.synchronize();
  9280. // Step 7
  9281. current_position[X_AXIS] = midpos - hotend_offset[X_AXIS][tmp_extruder];
  9282. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9283. SERIAL_ECHOLNPGM("(7) Move midway between hotends");
  9284. if (DEBUGGING(LEVELING)) DEBUG_POS("Move midway to new extruder", current_position);
  9285. #endif
  9286. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9287. stepper.synchronize();
  9288. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9289. SERIAL_ECHOLNPGM("Autopark done.");
  9290. #endif
  9291. }
  9292. else { // nomove == true
  9293. // Only engage magnetic field for new extruder
  9294. pe_activate_magnet(tmp_extruder);
  9295. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  9296. pe_activate_magnet(active_extruder); // Just save power for inverted magnets
  9297. #endif
  9298. }
  9299. current_position[Z_AXIS] -= hotend_offset[Z_AXIS][tmp_extruder] - hotend_offset[Z_AXIS][active_extruder]; // Apply Zoffset
  9300. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9301. if (DEBUGGING(LEVELING)) DEBUG_POS("Applying Z-offset", current_position);
  9302. #endif
  9303. #endif // dualParking extruder
  9304. #if ENABLED(SWITCHING_NOZZLE)
  9305. #define DONT_SWITCH (SWITCHING_EXTRUDER_SERVO_NR == SWITCHING_NOZZLE_SERVO_NR)
  9306. // <0 if the new nozzle is higher, >0 if lower. A bigger raise when lower.
  9307. const float z_diff = hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder],
  9308. z_raise = 0.3 + (z_diff > 0.0 ? z_diff : 0.0);
  9309. // Always raise by some amount (destination copied from current_position earlier)
  9310. current_position[Z_AXIS] += z_raise;
  9311. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
  9312. move_nozzle_servo(tmp_extruder);
  9313. #endif
  9314. /**
  9315. * Set current_position to the position of the new nozzle.
  9316. * Offsets are based on linear distance, so we need to get
  9317. * the resulting position in coordinate space.
  9318. *
  9319. * - With grid or 3-point leveling, offset XYZ by a tilted vector
  9320. * - With mesh leveling, update Z for the new position
  9321. * - Otherwise, just use the raw linear distance
  9322. *
  9323. * Software endstops are altered here too. Consider a case where:
  9324. * E0 at X=0 ... E1 at X=10
  9325. * When we switch to E1 now X=10, but E1 can't move left.
  9326. * To express this we apply the change in XY to the software endstops.
  9327. * E1 can move farther right than E0, so the right limit is extended.
  9328. *
  9329. * Note that we don't adjust the Z software endstops. Why not?
  9330. * Consider a case where Z=0 (here) and switching to E1 makes Z=1
  9331. * because the bed is 1mm lower at the new position. As long as
  9332. * the first nozzle is out of the way, the carriage should be
  9333. * allowed to move 1mm lower. This technically "breaks" the
  9334. * Z software endstop. But this is technically correct (and
  9335. * there is no viable alternative).
  9336. */
  9337. #if ABL_PLANAR
  9338. // Offset extruder, make sure to apply the bed level rotation matrix
  9339. vector_3 tmp_offset_vec = vector_3(hotend_offset[X_AXIS][tmp_extruder],
  9340. hotend_offset[Y_AXIS][tmp_extruder],
  9341. 0),
  9342. act_offset_vec = vector_3(hotend_offset[X_AXIS][active_extruder],
  9343. hotend_offset[Y_AXIS][active_extruder],
  9344. 0),
  9345. offset_vec = tmp_offset_vec - act_offset_vec;
  9346. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9347. if (DEBUGGING(LEVELING)) {
  9348. tmp_offset_vec.debug(PSTR("tmp_offset_vec"));
  9349. act_offset_vec.debug(PSTR("act_offset_vec"));
  9350. offset_vec.debug(PSTR("offset_vec (BEFORE)"));
  9351. }
  9352. #endif
  9353. offset_vec.apply_rotation(planner.bed_level_matrix.transpose(planner.bed_level_matrix));
  9354. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9355. if (DEBUGGING(LEVELING)) offset_vec.debug(PSTR("offset_vec (AFTER)"));
  9356. #endif
  9357. // Adjustments to the current position
  9358. const float xydiff[2] = { offset_vec.x, offset_vec.y };
  9359. current_position[Z_AXIS] += offset_vec.z;
  9360. #else // !ABL_PLANAR
  9361. const float xydiff[2] = {
  9362. hotend_offset[X_AXIS][tmp_extruder] - hotend_offset[X_AXIS][active_extruder],
  9363. hotend_offset[Y_AXIS][tmp_extruder] - hotend_offset[Y_AXIS][active_extruder]
  9364. };
  9365. #if ENABLED(MESH_BED_LEVELING)
  9366. if (planner.leveling_active) {
  9367. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9368. if (DEBUGGING(LEVELING)) SERIAL_ECHOPAIR("Z before MBL: ", current_position[Z_AXIS]);
  9369. #endif
  9370. float x2 = current_position[X_AXIS] + xydiff[X_AXIS],
  9371. y2 = current_position[Y_AXIS] + xydiff[Y_AXIS],
  9372. z1 = current_position[Z_AXIS], z2 = z1;
  9373. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], z1);
  9374. planner.apply_leveling(x2, y2, z2);
  9375. current_position[Z_AXIS] += z2 - z1;
  9376. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9377. if (DEBUGGING(LEVELING))
  9378. SERIAL_ECHOLNPAIR(" after: ", current_position[Z_AXIS]);
  9379. #endif
  9380. }
  9381. #endif // MESH_BED_LEVELING
  9382. #endif // !HAS_ABL
  9383. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9384. if (DEBUGGING(LEVELING)) {
  9385. SERIAL_ECHOPAIR("Offset Tool XY by { ", xydiff[X_AXIS]);
  9386. SERIAL_ECHOPAIR(", ", xydiff[Y_AXIS]);
  9387. SERIAL_ECHOLNPGM(" }");
  9388. }
  9389. #endif
  9390. // The newly-selected extruder XY is actually at...
  9391. current_position[X_AXIS] += xydiff[X_AXIS];
  9392. current_position[Y_AXIS] += xydiff[Y_AXIS];
  9393. #if HAS_WORKSPACE_OFFSET || ENABLED(DUAL_X_CARRIAGE) || ENABLED(PARKING_EXTRUDER)
  9394. for (uint8_t i = X_AXIS; i <= Y_AXIS; i++) {
  9395. #if HAS_POSITION_SHIFT
  9396. position_shift[i] += xydiff[i];
  9397. #endif
  9398. update_software_endstops((AxisEnum)i);
  9399. }
  9400. #endif
  9401. // Set the new active extruder
  9402. active_extruder = tmp_extruder;
  9403. #endif // !DUAL_X_CARRIAGE
  9404. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9405. if (DEBUGGING(LEVELING)) DEBUG_POS("Sync After Toolchange", current_position);
  9406. #endif
  9407. // Tell the planner the new "current position"
  9408. SYNC_PLAN_POSITION_KINEMATIC();
  9409. // Move to the "old position" (move the extruder into place)
  9410. if (!no_move && IsRunning()) {
  9411. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9412. if (DEBUGGING(LEVELING)) DEBUG_POS("Move back", destination);
  9413. #endif
  9414. prepare_move_to_destination();
  9415. }
  9416. #if ENABLED(SWITCHING_NOZZLE)
  9417. // Move back down, if needed. (Including when the new tool is higher.)
  9418. if (z_raise != z_diff) {
  9419. destination[Z_AXIS] += z_diff;
  9420. feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS];
  9421. prepare_move_to_destination();
  9422. }
  9423. #endif
  9424. } // (tmp_extruder != active_extruder)
  9425. stepper.synchronize();
  9426. #if ENABLED(EXT_SOLENOID) && !ENABLED(PARKING_EXTRUDER)
  9427. disable_all_solenoids();
  9428. enable_solenoid_on_active_extruder();
  9429. #endif // EXT_SOLENOID
  9430. feedrate_mm_s = old_feedrate_mm_s;
  9431. #else // HOTENDS <= 1
  9432. UNUSED(fr_mm_s);
  9433. UNUSED(no_move);
  9434. #if ENABLED(MK2_MULTIPLEXER)
  9435. if (tmp_extruder >= E_STEPPERS)
  9436. return invalid_extruder_error(tmp_extruder);
  9437. select_multiplexed_stepper(tmp_extruder);
  9438. #endif
  9439. // Set the new active extruder
  9440. active_extruder = tmp_extruder;
  9441. #endif // HOTENDS <= 1
  9442. #if ENABLED(SWITCHING_EXTRUDER) && !DONT_SWITCH
  9443. stepper.synchronize();
  9444. move_extruder_servo(active_extruder);
  9445. #endif
  9446. #if HAS_FANMUX
  9447. fanmux_switch(active_extruder);
  9448. #endif
  9449. SERIAL_ECHO_START();
  9450. SERIAL_ECHOLNPAIR(MSG_ACTIVE_EXTRUDER, (int)active_extruder);
  9451. #endif // !MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
  9452. }
  9453. /**
  9454. * T0-T3: Switch tool, usually switching extruders
  9455. *
  9456. * F[units/min] Set the movement feedrate
  9457. * S1 Don't move the tool in XY after change
  9458. */
  9459. inline void gcode_T(const uint8_t tmp_extruder) {
  9460. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9461. if (DEBUGGING(LEVELING)) {
  9462. SERIAL_ECHOPAIR(">>> gcode_T(", tmp_extruder);
  9463. SERIAL_CHAR(')');
  9464. SERIAL_EOL();
  9465. DEBUG_POS("BEFORE", current_position);
  9466. }
  9467. #endif
  9468. #if HOTENDS == 1 || (ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1)
  9469. tool_change(tmp_extruder);
  9470. #elif HOTENDS > 1
  9471. tool_change(
  9472. tmp_extruder,
  9473. MMM_TO_MMS(parser.linearval('F')),
  9474. (tmp_extruder == active_extruder) || parser.boolval('S')
  9475. );
  9476. #endif
  9477. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9478. if (DEBUGGING(LEVELING)) {
  9479. DEBUG_POS("AFTER", current_position);
  9480. SERIAL_ECHOLNPGM("<<< gcode_T");
  9481. }
  9482. #endif
  9483. }
  9484. /**
  9485. * Process a single command and dispatch it to its handler
  9486. * This is called from the main loop()
  9487. */
  9488. void process_next_command() {
  9489. char * const current_command = command_queue[cmd_queue_index_r];
  9490. if (DEBUGGING(ECHO)) {
  9491. SERIAL_ECHO_START();
  9492. SERIAL_ECHOLN(current_command);
  9493. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  9494. SERIAL_ECHOPAIR("slot:", cmd_queue_index_r);
  9495. M100_dump_routine(" Command Queue:", (const char*)command_queue, (const char*)(command_queue + sizeof(command_queue)));
  9496. #endif
  9497. }
  9498. KEEPALIVE_STATE(IN_HANDLER);
  9499. // Parse the next command in the queue
  9500. parser.parse(current_command);
  9501. // Handle a known G, M, or T
  9502. switch (parser.command_letter) {
  9503. case 'G': switch (parser.codenum) {
  9504. // G0, G1
  9505. case 0:
  9506. case 1:
  9507. #if IS_SCARA
  9508. gcode_G0_G1(parser.codenum == 0);
  9509. #else
  9510. gcode_G0_G1();
  9511. #endif
  9512. break;
  9513. // G2, G3
  9514. #if ENABLED(ARC_SUPPORT) && DISABLED(SCARA)
  9515. case 2: // G2: CW ARC
  9516. case 3: // G3: CCW ARC
  9517. gcode_G2_G3(parser.codenum == 2);
  9518. break;
  9519. #endif
  9520. // G4 Dwell
  9521. case 4:
  9522. gcode_G4();
  9523. break;
  9524. #if ENABLED(BEZIER_CURVE_SUPPORT)
  9525. case 5: // G5: Cubic B_spline
  9526. gcode_G5();
  9527. break;
  9528. #endif // BEZIER_CURVE_SUPPORT
  9529. #if ENABLED(FWRETRACT)
  9530. case 10: // G10: retract
  9531. gcode_G10();
  9532. break;
  9533. case 11: // G11: retract_recover
  9534. gcode_G11();
  9535. break;
  9536. #endif // FWRETRACT
  9537. #if ENABLED(NOZZLE_CLEAN_FEATURE)
  9538. case 12:
  9539. gcode_G12(); // G12: Nozzle Clean
  9540. break;
  9541. #endif // NOZZLE_CLEAN_FEATURE
  9542. #if ENABLED(CNC_WORKSPACE_PLANES)
  9543. case 17: // G17: Select Plane XY
  9544. gcode_G17();
  9545. break;
  9546. case 18: // G18: Select Plane ZX
  9547. gcode_G18();
  9548. break;
  9549. case 19: // G19: Select Plane YZ
  9550. gcode_G19();
  9551. break;
  9552. #endif // CNC_WORKSPACE_PLANES
  9553. #if ENABLED(INCH_MODE_SUPPORT)
  9554. case 20: // G20: Inch Mode
  9555. gcode_G20();
  9556. break;
  9557. case 21: // G21: MM Mode
  9558. gcode_G21();
  9559. break;
  9560. #endif // INCH_MODE_SUPPORT
  9561. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
  9562. case 26: // G26: Mesh Validation Pattern generation
  9563. gcode_G26();
  9564. break;
  9565. #endif // AUTO_BED_LEVELING_UBL
  9566. #if ENABLED(NOZZLE_PARK_FEATURE)
  9567. case 27: // G27: Nozzle Park
  9568. gcode_G27();
  9569. break;
  9570. #endif // NOZZLE_PARK_FEATURE
  9571. case 28: // G28: Home all axes, one at a time
  9572. gcode_G28(false);
  9573. break;
  9574. #if HAS_LEVELING
  9575. case 29: // G29 Detailed Z probe, probes the bed at 3 or more points,
  9576. // or provides access to the UBL System if enabled.
  9577. gcode_G29();
  9578. break;
  9579. #endif // HAS_LEVELING
  9580. #if HAS_BED_PROBE
  9581. case 30: // G30 Single Z probe
  9582. gcode_G30();
  9583. break;
  9584. #if ENABLED(Z_PROBE_SLED)
  9585. case 31: // G31: dock the sled
  9586. gcode_G31();
  9587. break;
  9588. case 32: // G32: undock the sled
  9589. gcode_G32();
  9590. break;
  9591. #endif // Z_PROBE_SLED
  9592. #endif // HAS_BED_PROBE
  9593. #if PROBE_SELECTED
  9594. #if ENABLED(DELTA_AUTO_CALIBRATION)
  9595. case 33: // G33: Delta Auto-Calibration
  9596. gcode_G33();
  9597. break;
  9598. #endif // DELTA_AUTO_CALIBRATION
  9599. #endif // PROBE_SELECTED
  9600. #if ENABLED(G38_PROBE_TARGET)
  9601. case 38: // G38.2 & G38.3
  9602. if (parser.subcode == 2 || parser.subcode == 3)
  9603. gcode_G38(parser.subcode == 2);
  9604. break;
  9605. #endif
  9606. case 90: // G90
  9607. relative_mode = false;
  9608. break;
  9609. case 91: // G91
  9610. relative_mode = true;
  9611. break;
  9612. case 92: // G92
  9613. gcode_G92();
  9614. break;
  9615. #if HAS_MESH
  9616. case 42:
  9617. gcode_G42();
  9618. break;
  9619. #endif
  9620. #if ENABLED(DEBUG_GCODE_PARSER)
  9621. case 800:
  9622. parser.debug(); // GCode Parser Test for G
  9623. break;
  9624. #endif
  9625. }
  9626. break;
  9627. case 'M': switch (parser.codenum) {
  9628. #if HAS_RESUME_CONTINUE
  9629. case 0: // M0: Unconditional stop - Wait for user button press on LCD
  9630. case 1: // M1: Conditional stop - Wait for user button press on LCD
  9631. gcode_M0_M1();
  9632. break;
  9633. #endif // ULTIPANEL
  9634. #if ENABLED(SPINDLE_LASER_ENABLE)
  9635. case 3:
  9636. gcode_M3_M4(true); // M3: turn spindle/laser on, set laser/spindle power/speed, set rotation direction CW
  9637. break; // synchronizes with movement commands
  9638. case 4:
  9639. gcode_M3_M4(false); // M4: turn spindle/laser on, set laser/spindle power/speed, set rotation direction CCW
  9640. break; // synchronizes with movement commands
  9641. case 5:
  9642. gcode_M5(); // M5 - turn spindle/laser off
  9643. break; // synchronizes with movement commands
  9644. #endif
  9645. case 17: // M17: Enable all stepper motors
  9646. gcode_M17();
  9647. break;
  9648. #if ENABLED(SDSUPPORT)
  9649. case 20: // M20: list SD card
  9650. gcode_M20(); break;
  9651. case 21: // M21: init SD card
  9652. gcode_M21(); break;
  9653. case 22: // M22: release SD card
  9654. gcode_M22(); break;
  9655. case 23: // M23: Select file
  9656. gcode_M23(); break;
  9657. case 24: // M24: Start SD print
  9658. gcode_M24(); break;
  9659. case 25: // M25: Pause SD print
  9660. gcode_M25(); break;
  9661. case 26: // M26: Set SD index
  9662. gcode_M26(); break;
  9663. case 27: // M27: Get SD status
  9664. gcode_M27(); break;
  9665. case 28: // M28: Start SD write
  9666. gcode_M28(); break;
  9667. case 29: // M29: Stop SD write
  9668. gcode_M29(); break;
  9669. case 30: // M30 <filename> Delete File
  9670. gcode_M30(); break;
  9671. case 32: // M32: Select file and start SD print
  9672. gcode_M32(); break;
  9673. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  9674. case 33: // M33: Get the long full path to a file or folder
  9675. gcode_M33(); break;
  9676. #endif
  9677. #if ENABLED(SDCARD_SORT_ALPHA) && ENABLED(SDSORT_GCODE)
  9678. case 34: // M34: Set SD card sorting options
  9679. gcode_M34(); break;
  9680. #endif // SDCARD_SORT_ALPHA && SDSORT_GCODE
  9681. case 928: // M928: Start SD write
  9682. gcode_M928(); break;
  9683. #endif // SDSUPPORT
  9684. case 31: // M31: Report time since the start of SD print or last M109
  9685. gcode_M31(); break;
  9686. case 42: // M42: Change pin state
  9687. gcode_M42(); break;
  9688. #if ENABLED(PINS_DEBUGGING)
  9689. case 43: // M43: Read pin state
  9690. gcode_M43(); break;
  9691. #endif
  9692. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  9693. case 48: // M48: Z probe repeatability test
  9694. gcode_M48();
  9695. break;
  9696. #endif // Z_MIN_PROBE_REPEATABILITY_TEST
  9697. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
  9698. case 49: // M49: Turn on or off G26 debug flag for verbose output
  9699. gcode_M49();
  9700. break;
  9701. #endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION
  9702. #if ENABLED(ULTRA_LCD) && ENABLED(LCD_SET_PROGRESS_MANUALLY)
  9703. case 73: // M73: Set print progress percentage
  9704. gcode_M73(); break;
  9705. #endif
  9706. case 75: // M75: Start print timer
  9707. gcode_M75(); break;
  9708. case 76: // M76: Pause print timer
  9709. gcode_M76(); break;
  9710. case 77: // M77: Stop print timer
  9711. gcode_M77(); break;
  9712. #if ENABLED(PRINTCOUNTER)
  9713. case 78: // M78: Show print statistics
  9714. gcode_M78(); break;
  9715. #endif
  9716. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  9717. case 100: // M100: Free Memory Report
  9718. gcode_M100();
  9719. break;
  9720. #endif
  9721. case 104: // M104: Set hot end temperature
  9722. gcode_M104();
  9723. break;
  9724. case 110: // M110: Set Current Line Number
  9725. gcode_M110();
  9726. break;
  9727. case 111: // M111: Set debug level
  9728. gcode_M111();
  9729. break;
  9730. #if DISABLED(EMERGENCY_PARSER)
  9731. case 108: // M108: Cancel Waiting
  9732. gcode_M108();
  9733. break;
  9734. case 112: // M112: Emergency Stop
  9735. gcode_M112();
  9736. break;
  9737. case 410: // M410 quickstop - Abort all the planned moves.
  9738. gcode_M410();
  9739. break;
  9740. #endif
  9741. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  9742. case 113: // M113: Set Host Keepalive interval
  9743. gcode_M113();
  9744. break;
  9745. #endif
  9746. case 140: // M140: Set bed temperature
  9747. gcode_M140();
  9748. break;
  9749. case 105: // M105: Report current temperature
  9750. gcode_M105();
  9751. KEEPALIVE_STATE(NOT_BUSY);
  9752. return; // "ok" already printed
  9753. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  9754. case 155: // M155: Set temperature auto-report interval
  9755. gcode_M155();
  9756. break;
  9757. #endif
  9758. case 109: // M109: Wait for hotend temperature to reach target
  9759. gcode_M109();
  9760. break;
  9761. #if HAS_TEMP_BED
  9762. case 190: // M190: Wait for bed temperature to reach target
  9763. gcode_M190();
  9764. break;
  9765. #endif // HAS_TEMP_BED
  9766. #if FAN_COUNT > 0
  9767. case 106: // M106: Fan On
  9768. gcode_M106();
  9769. break;
  9770. case 107: // M107: Fan Off
  9771. gcode_M107();
  9772. break;
  9773. #endif // FAN_COUNT > 0
  9774. #if ENABLED(PARK_HEAD_ON_PAUSE)
  9775. case 125: // M125: Store current position and move to filament change position
  9776. gcode_M125(); break;
  9777. #endif
  9778. #if ENABLED(BARICUDA)
  9779. // PWM for HEATER_1_PIN
  9780. #if HAS_HEATER_1
  9781. case 126: // M126: valve open
  9782. gcode_M126();
  9783. break;
  9784. case 127: // M127: valve closed
  9785. gcode_M127();
  9786. break;
  9787. #endif // HAS_HEATER_1
  9788. // PWM for HEATER_2_PIN
  9789. #if HAS_HEATER_2
  9790. case 128: // M128: valve open
  9791. gcode_M128();
  9792. break;
  9793. case 129: // M129: valve closed
  9794. gcode_M129();
  9795. break;
  9796. #endif // HAS_HEATER_2
  9797. #endif // BARICUDA
  9798. #if HAS_POWER_SWITCH
  9799. case 80: // M80: Turn on Power Supply
  9800. gcode_M80();
  9801. break;
  9802. #endif // HAS_POWER_SWITCH
  9803. case 81: // M81: Turn off Power, including Power Supply, if possible
  9804. gcode_M81();
  9805. break;
  9806. case 82: // M82: Set E axis normal mode (same as other axes)
  9807. gcode_M82();
  9808. break;
  9809. case 83: // M83: Set E axis relative mode
  9810. gcode_M83();
  9811. break;
  9812. case 18: // M18 => M84
  9813. case 84: // M84: Disable all steppers or set timeout
  9814. gcode_M18_M84();
  9815. break;
  9816. case 85: // M85: Set inactivity stepper shutdown timeout
  9817. gcode_M85();
  9818. break;
  9819. case 92: // M92: Set the steps-per-unit for one or more axes
  9820. gcode_M92();
  9821. break;
  9822. case 114: // M114: Report current position
  9823. gcode_M114();
  9824. break;
  9825. case 115: // M115: Report capabilities
  9826. gcode_M115();
  9827. break;
  9828. case 117: // M117: Set LCD message text, if possible
  9829. gcode_M117();
  9830. break;
  9831. case 118: // M118: Display a message in the host console
  9832. gcode_M118();
  9833. break;
  9834. case 119: // M119: Report endstop states
  9835. gcode_M119();
  9836. break;
  9837. case 120: // M120: Enable endstops
  9838. gcode_M120();
  9839. break;
  9840. case 121: // M121: Disable endstops
  9841. gcode_M121();
  9842. break;
  9843. #if ENABLED(ULTIPANEL)
  9844. case 145: // M145: Set material heatup parameters
  9845. gcode_M145();
  9846. break;
  9847. #endif
  9848. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  9849. case 149: // M149: Set temperature units
  9850. gcode_M149();
  9851. break;
  9852. #endif
  9853. #if HAS_COLOR_LEDS
  9854. case 150: // M150: Set Status LED Color
  9855. gcode_M150();
  9856. break;
  9857. #endif // HAS_COLOR_LEDS
  9858. #if ENABLED(MIXING_EXTRUDER)
  9859. case 163: // M163: Set a component weight for mixing extruder
  9860. gcode_M163();
  9861. break;
  9862. #if MIXING_VIRTUAL_TOOLS > 1
  9863. case 164: // M164: Save current mix as a virtual extruder
  9864. gcode_M164();
  9865. break;
  9866. #endif
  9867. #if ENABLED(DIRECT_MIXING_IN_G1)
  9868. case 165: // M165: Set multiple mix weights
  9869. gcode_M165();
  9870. break;
  9871. #endif
  9872. #endif
  9873. case 200: // M200: Set filament diameter, E to cubic units
  9874. gcode_M200();
  9875. break;
  9876. case 201: // M201: Set max acceleration for print moves (units/s^2)
  9877. gcode_M201();
  9878. break;
  9879. #if 0 // Not used for Sprinter/grbl gen6
  9880. case 202: // M202
  9881. gcode_M202();
  9882. break;
  9883. #endif
  9884. case 203: // M203: Set max feedrate (units/sec)
  9885. gcode_M203();
  9886. break;
  9887. case 204: // M204: Set acceleration
  9888. gcode_M204();
  9889. break;
  9890. case 205: // M205: Set advanced settings
  9891. gcode_M205();
  9892. break;
  9893. #if HAS_M206_COMMAND
  9894. case 206: // M206: Set home offsets
  9895. gcode_M206();
  9896. break;
  9897. #endif
  9898. #if ENABLED(DELTA)
  9899. case 665: // M665: Set delta configurations
  9900. gcode_M665();
  9901. break;
  9902. #endif
  9903. #if ENABLED(DELTA) || ENABLED(X_DUAL_ENDSTOPS) || ENABLED(Y_DUAL_ENDSTOPS) || ENABLED(Z_DUAL_ENDSTOPS)
  9904. case 666: // M666: Set delta or dual endstop adjustment
  9905. gcode_M666();
  9906. break;
  9907. #endif
  9908. #if ENABLED(FWRETRACT)
  9909. case 207: // M207: Set Retract Length, Feedrate, and Z lift
  9910. gcode_M207();
  9911. break;
  9912. case 208: // M208: Set Recover (unretract) Additional Length and Feedrate
  9913. gcode_M208();
  9914. break;
  9915. case 209: // M209: Turn Automatic Retract Detection on/off
  9916. if (MIN_AUTORETRACT <= MAX_AUTORETRACT) gcode_M209();
  9917. break;
  9918. #endif // FWRETRACT
  9919. case 211: // M211: Enable, Disable, and/or Report software endstops
  9920. gcode_M211();
  9921. break;
  9922. #if HOTENDS > 1
  9923. case 218: // M218: Set a tool offset
  9924. gcode_M218();
  9925. break;
  9926. #endif // HOTENDS > 1
  9927. case 220: // M220: Set Feedrate Percentage: S<percent> ("FR" on your LCD)
  9928. gcode_M220();
  9929. break;
  9930. case 221: // M221: Set Flow Percentage
  9931. gcode_M221();
  9932. break;
  9933. case 226: // M226: Wait until a pin reaches a state
  9934. gcode_M226();
  9935. break;
  9936. #if HAS_SERVOS
  9937. case 280: // M280: Set servo position absolute
  9938. gcode_M280();
  9939. break;
  9940. #endif // HAS_SERVOS
  9941. #if ENABLED(BABYSTEPPING)
  9942. case 290: // M290: Babystepping
  9943. gcode_M290();
  9944. break;
  9945. #endif // BABYSTEPPING
  9946. #if HAS_BUZZER
  9947. case 300: // M300: Play beep tone
  9948. gcode_M300();
  9949. break;
  9950. #endif // HAS_BUZZER
  9951. #if ENABLED(PIDTEMP)
  9952. case 301: // M301: Set hotend PID parameters
  9953. gcode_M301();
  9954. break;
  9955. #endif // PIDTEMP
  9956. #if ENABLED(PIDTEMPBED)
  9957. case 304: // M304: Set bed PID parameters
  9958. gcode_M304();
  9959. break;
  9960. #endif // PIDTEMPBED
  9961. #if defined(CHDK) || HAS_PHOTOGRAPH
  9962. case 240: // M240: Trigger a camera by emulating a Canon RC-1 : http://www.doc-diy.net/photo/rc-1_hacked/
  9963. gcode_M240();
  9964. break;
  9965. #endif // CHDK || PHOTOGRAPH_PIN
  9966. #if HAS_LCD_CONTRAST
  9967. case 250: // M250: Set LCD contrast
  9968. gcode_M250();
  9969. break;
  9970. #endif // HAS_LCD_CONTRAST
  9971. #if ENABLED(EXPERIMENTAL_I2CBUS)
  9972. case 260: // M260: Send data to an i2c slave
  9973. gcode_M260();
  9974. break;
  9975. case 261: // M261: Request data from an i2c slave
  9976. gcode_M261();
  9977. break;
  9978. #endif // EXPERIMENTAL_I2CBUS
  9979. #if ENABLED(PREVENT_COLD_EXTRUSION)
  9980. case 302: // M302: Allow cold extrudes (set the minimum extrude temperature)
  9981. gcode_M302();
  9982. break;
  9983. #endif // PREVENT_COLD_EXTRUSION
  9984. case 303: // M303: PID autotune
  9985. gcode_M303();
  9986. break;
  9987. #if ENABLED(MORGAN_SCARA)
  9988. case 360: // M360: SCARA Theta pos1
  9989. if (gcode_M360()) return;
  9990. break;
  9991. case 361: // M361: SCARA Theta pos2
  9992. if (gcode_M361()) return;
  9993. break;
  9994. case 362: // M362: SCARA Psi pos1
  9995. if (gcode_M362()) return;
  9996. break;
  9997. case 363: // M363: SCARA Psi pos2
  9998. if (gcode_M363()) return;
  9999. break;
  10000. case 364: // M364: SCARA Psi pos3 (90 deg to Theta)
  10001. if (gcode_M364()) return;
  10002. break;
  10003. #endif // SCARA
  10004. case 400: // M400: Finish all moves
  10005. gcode_M400();
  10006. break;
  10007. #if HAS_BED_PROBE
  10008. case 401: // M401: Deploy probe
  10009. gcode_M401();
  10010. break;
  10011. case 402: // M402: Stow probe
  10012. gcode_M402();
  10013. break;
  10014. #endif // HAS_BED_PROBE
  10015. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  10016. case 404: // M404: Enter the nominal filament width (3mm, 1.75mm ) N<3.0> or display nominal filament width
  10017. gcode_M404();
  10018. break;
  10019. case 405: // M405: Turn on filament sensor for control
  10020. gcode_M405();
  10021. break;
  10022. case 406: // M406: Turn off filament sensor for control
  10023. gcode_M406();
  10024. break;
  10025. case 407: // M407: Display measured filament diameter
  10026. gcode_M407();
  10027. break;
  10028. #endif // FILAMENT_WIDTH_SENSOR
  10029. #if HAS_LEVELING
  10030. case 420: // M420: Enable/Disable Bed Leveling
  10031. gcode_M420();
  10032. break;
  10033. #endif
  10034. #if HAS_MESH
  10035. case 421: // M421: Set a Mesh Bed Leveling Z coordinate
  10036. gcode_M421();
  10037. break;
  10038. #endif
  10039. #if HAS_M206_COMMAND
  10040. case 428: // M428: Apply current_position to home_offset
  10041. gcode_M428();
  10042. break;
  10043. #endif
  10044. case 500: // M500: Store settings in EEPROM
  10045. gcode_M500();
  10046. break;
  10047. case 501: // M501: Read settings from EEPROM
  10048. gcode_M501();
  10049. break;
  10050. case 502: // M502: Revert to default settings
  10051. gcode_M502();
  10052. break;
  10053. #if DISABLED(DISABLE_M503)
  10054. case 503: // M503: print settings currently in memory
  10055. gcode_M503();
  10056. break;
  10057. #endif
  10058. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  10059. case 540: // M540: Set abort on endstop hit for SD printing
  10060. gcode_M540();
  10061. break;
  10062. #endif
  10063. #if HAS_BED_PROBE
  10064. case 851: // M851: Set Z Probe Z Offset
  10065. gcode_M851();
  10066. break;
  10067. #endif // HAS_BED_PROBE
  10068. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  10069. case 600: // M600: Pause for filament change
  10070. gcode_M600();
  10071. break;
  10072. #endif // ADVANCED_PAUSE_FEATURE
  10073. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  10074. case 605: // M605: Set Dual X Carriage movement mode
  10075. gcode_M605();
  10076. break;
  10077. #endif // DUAL_X_CARRIAGE
  10078. #if ENABLED(MK2_MULTIPLEXER)
  10079. case 702: // M702: Unload all extruders
  10080. gcode_M702();
  10081. break;
  10082. #endif
  10083. #if ENABLED(LIN_ADVANCE)
  10084. case 900: // M900: Set advance K factor.
  10085. gcode_M900();
  10086. break;
  10087. #endif
  10088. #if ENABLED(HAVE_TMC2130)
  10089. case 906: // M906: Set motor current in milliamps using axis codes X, Y, Z, E
  10090. gcode_M906();
  10091. break;
  10092. #endif
  10093. case 907: // M907: Set digital trimpot motor current using axis codes.
  10094. gcode_M907();
  10095. break;
  10096. #if HAS_DIGIPOTSS || ENABLED(DAC_STEPPER_CURRENT)
  10097. case 908: // M908: Control digital trimpot directly.
  10098. gcode_M908();
  10099. break;
  10100. #if ENABLED(DAC_STEPPER_CURRENT) // As with Printrbot RevF
  10101. case 909: // M909: Print digipot/DAC current value
  10102. gcode_M909();
  10103. break;
  10104. case 910: // M910: Commit digipot/DAC value to external EEPROM
  10105. gcode_M910();
  10106. break;
  10107. #endif
  10108. #endif // HAS_DIGIPOTSS || DAC_STEPPER_CURRENT
  10109. #if ENABLED(HAVE_TMC2130)
  10110. case 911: // M911: Report TMC2130 prewarn triggered flags
  10111. gcode_M911();
  10112. break;
  10113. case 912: // M911: Clear TMC2130 prewarn triggered flags
  10114. gcode_M912();
  10115. break;
  10116. #if ENABLED(HYBRID_THRESHOLD)
  10117. case 913: // M913: Set HYBRID_THRESHOLD speed.
  10118. gcode_M913();
  10119. break;
  10120. #endif
  10121. #if ENABLED(SENSORLESS_HOMING)
  10122. case 914: // M914: Set SENSORLESS_HOMING sensitivity.
  10123. gcode_M914();
  10124. break;
  10125. #endif
  10126. #endif
  10127. #if HAS_MICROSTEPS
  10128. case 350: // M350: Set microstepping mode. Warning: Steps per unit remains unchanged. S code sets stepping mode for all drivers.
  10129. gcode_M350();
  10130. break;
  10131. case 351: // M351: Toggle MS1 MS2 pins directly, S# determines MS1 or MS2, X# sets the pin high/low.
  10132. gcode_M351();
  10133. break;
  10134. #endif // HAS_MICROSTEPS
  10135. case 355: // M355 set case light brightness
  10136. gcode_M355();
  10137. break;
  10138. #if ENABLED(DEBUG_GCODE_PARSER)
  10139. case 800:
  10140. parser.debug(); // GCode Parser Test for M
  10141. break;
  10142. #endif
  10143. #if ENABLED(I2C_POSITION_ENCODERS)
  10144. case 860: // M860 Report encoder module position
  10145. gcode_M860();
  10146. break;
  10147. case 861: // M861 Report encoder module status
  10148. gcode_M861();
  10149. break;
  10150. case 862: // M862 Perform axis test
  10151. gcode_M862();
  10152. break;
  10153. case 863: // M863 Calibrate steps/mm
  10154. gcode_M863();
  10155. break;
  10156. case 864: // M864 Change module address
  10157. gcode_M864();
  10158. break;
  10159. case 865: // M865 Check module firmware version
  10160. gcode_M865();
  10161. break;
  10162. case 866: // M866 Report axis error count
  10163. gcode_M866();
  10164. break;
  10165. case 867: // M867 Toggle error correction
  10166. gcode_M867();
  10167. break;
  10168. case 868: // M868 Set error correction threshold
  10169. gcode_M868();
  10170. break;
  10171. case 869: // M869 Report axis error
  10172. gcode_M869();
  10173. break;
  10174. #endif // I2C_POSITION_ENCODERS
  10175. case 999: // M999: Restart after being Stopped
  10176. gcode_M999();
  10177. break;
  10178. }
  10179. break;
  10180. case 'T':
  10181. gcode_T(parser.codenum);
  10182. break;
  10183. default: parser.unknown_command_error();
  10184. }
  10185. KEEPALIVE_STATE(NOT_BUSY);
  10186. ok_to_send();
  10187. }
  10188. /**
  10189. * Send a "Resend: nnn" message to the host to
  10190. * indicate that a command needs to be re-sent.
  10191. */
  10192. void FlushSerialRequestResend() {
  10193. //char command_queue[cmd_queue_index_r][100]="Resend:";
  10194. MYSERIAL.flush();
  10195. SERIAL_PROTOCOLPGM(MSG_RESEND);
  10196. SERIAL_PROTOCOLLN(gcode_LastN + 1);
  10197. ok_to_send();
  10198. }
  10199. /**
  10200. * Send an "ok" message to the host, indicating
  10201. * that a command was successfully processed.
  10202. *
  10203. * If ADVANCED_OK is enabled also include:
  10204. * N<int> Line number of the command, if any
  10205. * P<int> Planner space remaining
  10206. * B<int> Block queue space remaining
  10207. */
  10208. void ok_to_send() {
  10209. refresh_cmd_timeout();
  10210. if (!send_ok[cmd_queue_index_r]) return;
  10211. SERIAL_PROTOCOLPGM(MSG_OK);
  10212. #if ENABLED(ADVANCED_OK)
  10213. char* p = command_queue[cmd_queue_index_r];
  10214. if (*p == 'N') {
  10215. SERIAL_PROTOCOL(' ');
  10216. SERIAL_ECHO(*p++);
  10217. while (NUMERIC_SIGNED(*p))
  10218. SERIAL_ECHO(*p++);
  10219. }
  10220. SERIAL_PROTOCOLPGM(" P"); SERIAL_PROTOCOL(int(BLOCK_BUFFER_SIZE - planner.movesplanned() - 1));
  10221. SERIAL_PROTOCOLPGM(" B"); SERIAL_PROTOCOL(BUFSIZE - commands_in_queue);
  10222. #endif
  10223. SERIAL_EOL();
  10224. }
  10225. #if HAS_SOFTWARE_ENDSTOPS
  10226. /**
  10227. * Constrain the given coordinates to the software endstops.
  10228. *
  10229. * For DELTA/SCARA the XY constraint is based on the smallest
  10230. * radius within the set software endstops.
  10231. */
  10232. void clamp_to_software_endstops(float target[XYZ]) {
  10233. if (!soft_endstops_enabled) return;
  10234. #if IS_KINEMATIC
  10235. const float dist_2 = HYPOT2(target[X_AXIS], target[Y_AXIS]);
  10236. if (dist_2 > soft_endstop_radius_2) {
  10237. const float ratio = soft_endstop_radius / SQRT(dist_2); // 200 / 300 = 0.66
  10238. target[X_AXIS] *= ratio;
  10239. target[Y_AXIS] *= ratio;
  10240. }
  10241. #else
  10242. #if ENABLED(MIN_SOFTWARE_ENDSTOP_X)
  10243. NOLESS(target[X_AXIS], soft_endstop_min[X_AXIS]);
  10244. #endif
  10245. #if ENABLED(MIN_SOFTWARE_ENDSTOP_Y)
  10246. NOLESS(target[Y_AXIS], soft_endstop_min[Y_AXIS]);
  10247. #endif
  10248. #if ENABLED(MAX_SOFTWARE_ENDSTOP_X)
  10249. NOMORE(target[X_AXIS], soft_endstop_max[X_AXIS]);
  10250. #endif
  10251. #if ENABLED(MAX_SOFTWARE_ENDSTOP_Y)
  10252. NOMORE(target[Y_AXIS], soft_endstop_max[Y_AXIS]);
  10253. #endif
  10254. #endif
  10255. #if ENABLED(MIN_SOFTWARE_ENDSTOP_Z)
  10256. NOLESS(target[Z_AXIS], soft_endstop_min[Z_AXIS]);
  10257. #endif
  10258. #if ENABLED(MAX_SOFTWARE_ENDSTOP_Z)
  10259. NOMORE(target[Z_AXIS], soft_endstop_max[Z_AXIS]);
  10260. #endif
  10261. }
  10262. #endif
  10263. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  10264. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  10265. #define ABL_BG_SPACING(A) bilinear_grid_spacing_virt[A]
  10266. #define ABL_BG_FACTOR(A) bilinear_grid_factor_virt[A]
  10267. #define ABL_BG_POINTS_X ABL_GRID_POINTS_VIRT_X
  10268. #define ABL_BG_POINTS_Y ABL_GRID_POINTS_VIRT_Y
  10269. #define ABL_BG_GRID(X,Y) z_values_virt[X][Y]
  10270. #else
  10271. #define ABL_BG_SPACING(A) bilinear_grid_spacing[A]
  10272. #define ABL_BG_FACTOR(A) bilinear_grid_factor[A]
  10273. #define ABL_BG_POINTS_X GRID_MAX_POINTS_X
  10274. #define ABL_BG_POINTS_Y GRID_MAX_POINTS_Y
  10275. #define ABL_BG_GRID(X,Y) z_values[X][Y]
  10276. #endif
  10277. // Get the Z adjustment for non-linear bed leveling
  10278. float bilinear_z_offset(const float raw[XYZ]) {
  10279. static float z1, d2, z3, d4, L, D, ratio_x, ratio_y,
  10280. last_x = -999.999, last_y = -999.999;
  10281. // Whole units for the grid line indices. Constrained within bounds.
  10282. static int8_t gridx, gridy, nextx, nexty,
  10283. last_gridx = -99, last_gridy = -99;
  10284. // XY relative to the probed area
  10285. const float rx = raw[X_AXIS] - bilinear_start[X_AXIS],
  10286. ry = raw[Y_AXIS] - bilinear_start[Y_AXIS];
  10287. #if ENABLED(EXTRAPOLATE_BEYOND_GRID)
  10288. // Keep using the last grid box
  10289. #define FAR_EDGE_OR_BOX 2
  10290. #else
  10291. // Just use the grid far edge
  10292. #define FAR_EDGE_OR_BOX 1
  10293. #endif
  10294. if (last_x != rx) {
  10295. last_x = rx;
  10296. ratio_x = rx * ABL_BG_FACTOR(X_AXIS);
  10297. const float gx = constrain(FLOOR(ratio_x), 0, ABL_BG_POINTS_X - FAR_EDGE_OR_BOX);
  10298. ratio_x -= gx; // Subtract whole to get the ratio within the grid box
  10299. #if DISABLED(EXTRAPOLATE_BEYOND_GRID)
  10300. // Beyond the grid maintain height at grid edges
  10301. NOLESS(ratio_x, 0); // Never < 0.0. (> 1.0 is ok when nextx==gridx.)
  10302. #endif
  10303. gridx = gx;
  10304. nextx = min(gridx + 1, ABL_BG_POINTS_X - 1);
  10305. }
  10306. if (last_y != ry || last_gridx != gridx) {
  10307. if (last_y != ry) {
  10308. last_y = ry;
  10309. ratio_y = ry * ABL_BG_FACTOR(Y_AXIS);
  10310. const float gy = constrain(FLOOR(ratio_y), 0, ABL_BG_POINTS_Y - FAR_EDGE_OR_BOX);
  10311. ratio_y -= gy;
  10312. #if DISABLED(EXTRAPOLATE_BEYOND_GRID)
  10313. // Beyond the grid maintain height at grid edges
  10314. NOLESS(ratio_y, 0); // Never < 0.0. (> 1.0 is ok when nexty==gridy.)
  10315. #endif
  10316. gridy = gy;
  10317. nexty = min(gridy + 1, ABL_BG_POINTS_Y - 1);
  10318. }
  10319. if (last_gridx != gridx || last_gridy != gridy) {
  10320. last_gridx = gridx;
  10321. last_gridy = gridy;
  10322. // Z at the box corners
  10323. z1 = ABL_BG_GRID(gridx, gridy); // left-front
  10324. d2 = ABL_BG_GRID(gridx, nexty) - z1; // left-back (delta)
  10325. z3 = ABL_BG_GRID(nextx, gridy); // right-front
  10326. d4 = ABL_BG_GRID(nextx, nexty) - z3; // right-back (delta)
  10327. }
  10328. // Bilinear interpolate. Needed since ry or gridx has changed.
  10329. L = z1 + d2 * ratio_y; // Linear interp. LF -> LB
  10330. const float R = z3 + d4 * ratio_y; // Linear interp. RF -> RB
  10331. D = R - L;
  10332. }
  10333. const float offset = L + ratio_x * D; // the offset almost always changes
  10334. /*
  10335. static float last_offset = 0;
  10336. if (FABS(last_offset - offset) > 0.2) {
  10337. SERIAL_ECHOPGM("Sudden Shift at ");
  10338. SERIAL_ECHOPAIR("x=", rx);
  10339. SERIAL_ECHOPAIR(" / ", bilinear_grid_spacing[X_AXIS]);
  10340. SERIAL_ECHOLNPAIR(" -> gridx=", gridx);
  10341. SERIAL_ECHOPAIR(" y=", ry);
  10342. SERIAL_ECHOPAIR(" / ", bilinear_grid_spacing[Y_AXIS]);
  10343. SERIAL_ECHOLNPAIR(" -> gridy=", gridy);
  10344. SERIAL_ECHOPAIR(" ratio_x=", ratio_x);
  10345. SERIAL_ECHOLNPAIR(" ratio_y=", ratio_y);
  10346. SERIAL_ECHOPAIR(" z1=", z1);
  10347. SERIAL_ECHOPAIR(" z2=", z2);
  10348. SERIAL_ECHOPAIR(" z3=", z3);
  10349. SERIAL_ECHOLNPAIR(" z4=", z4);
  10350. SERIAL_ECHOPAIR(" L=", L);
  10351. SERIAL_ECHOPAIR(" R=", R);
  10352. SERIAL_ECHOLNPAIR(" offset=", offset);
  10353. }
  10354. last_offset = offset;
  10355. //*/
  10356. return offset;
  10357. }
  10358. #endif // AUTO_BED_LEVELING_BILINEAR
  10359. #if ENABLED(DELTA)
  10360. /**
  10361. * Recalculate factors used for delta kinematics whenever
  10362. * settings have been changed (e.g., by M665).
  10363. */
  10364. void recalc_delta_settings(float radius, float diagonal_rod, float tower_angle_trim[ABC]) {
  10365. const float trt[ABC] = DELTA_RADIUS_TRIM_TOWER,
  10366. drt[ABC] = DELTA_DIAGONAL_ROD_TRIM_TOWER;
  10367. delta_tower[A_AXIS][X_AXIS] = cos(RADIANS(210 + tower_angle_trim[A_AXIS])) * (radius + trt[A_AXIS]); // front left tower
  10368. delta_tower[A_AXIS][Y_AXIS] = sin(RADIANS(210 + tower_angle_trim[A_AXIS])) * (radius + trt[A_AXIS]);
  10369. delta_tower[B_AXIS][X_AXIS] = cos(RADIANS(330 + tower_angle_trim[B_AXIS])) * (radius + trt[B_AXIS]); // front right tower
  10370. delta_tower[B_AXIS][Y_AXIS] = sin(RADIANS(330 + tower_angle_trim[B_AXIS])) * (radius + trt[B_AXIS]);
  10371. delta_tower[C_AXIS][X_AXIS] = cos(RADIANS( 90 + tower_angle_trim[C_AXIS])) * (radius + trt[C_AXIS]); // back middle tower
  10372. delta_tower[C_AXIS][Y_AXIS] = sin(RADIANS( 90 + tower_angle_trim[C_AXIS])) * (radius + trt[C_AXIS]);
  10373. delta_diagonal_rod_2_tower[A_AXIS] = sq(diagonal_rod + drt[A_AXIS]);
  10374. delta_diagonal_rod_2_tower[B_AXIS] = sq(diagonal_rod + drt[B_AXIS]);
  10375. delta_diagonal_rod_2_tower[C_AXIS] = sq(diagonal_rod + drt[C_AXIS]);
  10376. }
  10377. #if ENABLED(DELTA_FAST_SQRT)
  10378. /**
  10379. * Fast inverse sqrt from Quake III Arena
  10380. * See: https://en.wikipedia.org/wiki/Fast_inverse_square_root
  10381. */
  10382. float Q_rsqrt(float number) {
  10383. long i;
  10384. float x2, y;
  10385. const float threehalfs = 1.5f;
  10386. x2 = number * 0.5f;
  10387. y = number;
  10388. i = * ( long * ) &y; // evil floating point bit level hacking
  10389. i = 0x5F3759DF - ( i >> 1 ); // what the f***?
  10390. y = * ( float * ) &i;
  10391. y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
  10392. // y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
  10393. return y;
  10394. }
  10395. #define _SQRT(n) (1.0f / Q_rsqrt(n))
  10396. #else
  10397. #define _SQRT(n) SQRT(n)
  10398. #endif
  10399. /**
  10400. * Delta Inverse Kinematics
  10401. *
  10402. * Calculate the tower positions for a given machine
  10403. * position, storing the result in the delta[] array.
  10404. *
  10405. * This is an expensive calculation, requiring 3 square
  10406. * roots per segmented linear move, and strains the limits
  10407. * of a Mega2560 with a Graphical Display.
  10408. *
  10409. * Suggested optimizations include:
  10410. *
  10411. * - Disable the home_offset (M206) and/or position_shift (G92)
  10412. * features to remove up to 12 float additions.
  10413. *
  10414. * - Use a fast-inverse-sqrt function and add the reciprocal.
  10415. * (see above)
  10416. */
  10417. // Macro to obtain the Z position of an individual tower
  10418. #define DELTA_Z(T) raw[Z_AXIS] + _SQRT( \
  10419. delta_diagonal_rod_2_tower[T] - HYPOT2( \
  10420. delta_tower[T][X_AXIS] - raw[X_AXIS], \
  10421. delta_tower[T][Y_AXIS] - raw[Y_AXIS] \
  10422. ) \
  10423. )
  10424. #define DELTA_RAW_IK() do { \
  10425. delta[A_AXIS] = DELTA_Z(A_AXIS); \
  10426. delta[B_AXIS] = DELTA_Z(B_AXIS); \
  10427. delta[C_AXIS] = DELTA_Z(C_AXIS); \
  10428. }while(0)
  10429. #define DELTA_DEBUG() do { \
  10430. SERIAL_ECHOPAIR("cartesian X:", raw[X_AXIS]); \
  10431. SERIAL_ECHOPAIR(" Y:", raw[Y_AXIS]); \
  10432. SERIAL_ECHOLNPAIR(" Z:", raw[Z_AXIS]); \
  10433. SERIAL_ECHOPAIR("delta A:", delta[A_AXIS]); \
  10434. SERIAL_ECHOPAIR(" B:", delta[B_AXIS]); \
  10435. SERIAL_ECHOLNPAIR(" C:", delta[C_AXIS]); \
  10436. }while(0)
  10437. void inverse_kinematics(const float raw[XYZ]) {
  10438. DELTA_RAW_IK();
  10439. // DELTA_DEBUG();
  10440. }
  10441. /**
  10442. * Calculate the highest Z position where the
  10443. * effector has the full range of XY motion.
  10444. */
  10445. float delta_safe_distance_from_top() {
  10446. float cartesian[XYZ] = { 0, 0, 0 };
  10447. inverse_kinematics(cartesian);
  10448. float distance = delta[A_AXIS];
  10449. cartesian[Y_AXIS] = LOGICAL_Y_POSITION(DELTA_PRINTABLE_RADIUS);
  10450. inverse_kinematics(cartesian);
  10451. return FABS(distance - delta[A_AXIS]);
  10452. }
  10453. /**
  10454. * Delta Forward Kinematics
  10455. *
  10456. * See the Wikipedia article "Trilateration"
  10457. * https://en.wikipedia.org/wiki/Trilateration
  10458. *
  10459. * Establish a new coordinate system in the plane of the
  10460. * three carriage points. This system has its origin at
  10461. * tower1, with tower2 on the X axis. Tower3 is in the X-Y
  10462. * plane with a Z component of zero.
  10463. * We will define unit vectors in this coordinate system
  10464. * in our original coordinate system. Then when we calculate
  10465. * the Xnew, Ynew and Znew values, we can translate back into
  10466. * the original system by moving along those unit vectors
  10467. * by the corresponding values.
  10468. *
  10469. * Variable names matched to Marlin, c-version, and avoid the
  10470. * use of any vector library.
  10471. *
  10472. * by Andreas Hardtung 2016-06-07
  10473. * based on a Java function from "Delta Robot Kinematics V3"
  10474. * by Steve Graves
  10475. *
  10476. * The result is stored in the cartes[] array.
  10477. */
  10478. void forward_kinematics_DELTA(float z1, float z2, float z3) {
  10479. // Create a vector in old coordinates along x axis of new coordinate
  10480. 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 };
  10481. // Get the Magnitude of vector.
  10482. float d = SQRT( sq(p12[0]) + sq(p12[1]) + sq(p12[2]) );
  10483. // Create unit vector by dividing by magnitude.
  10484. float ex[3] = { p12[0] / d, p12[1] / d, p12[2] / d };
  10485. // Get the vector from the origin of the new system to the third point.
  10486. 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 };
  10487. // Use the dot product to find the component of this vector on the X axis.
  10488. float i = ex[0] * p13[0] + ex[1] * p13[1] + ex[2] * p13[2];
  10489. // Create a vector along the x axis that represents the x component of p13.
  10490. float iex[3] = { ex[0] * i, ex[1] * i, ex[2] * i };
  10491. // Subtract the X component from the original vector leaving only Y. We use the
  10492. // variable that will be the unit vector after we scale it.
  10493. float ey[3] = { p13[0] - iex[0], p13[1] - iex[1], p13[2] - iex[2] };
  10494. // The magnitude of Y component
  10495. float j = SQRT( sq(ey[0]) + sq(ey[1]) + sq(ey[2]) );
  10496. // Convert to a unit vector
  10497. ey[0] /= j; ey[1] /= j; ey[2] /= j;
  10498. // The cross product of the unit x and y is the unit z
  10499. // float[] ez = vectorCrossProd(ex, ey);
  10500. float ez[3] = {
  10501. ex[1] * ey[2] - ex[2] * ey[1],
  10502. ex[2] * ey[0] - ex[0] * ey[2],
  10503. ex[0] * ey[1] - ex[1] * ey[0]
  10504. };
  10505. // We now have the d, i and j values defined in Wikipedia.
  10506. // Plug them into the equations defined in Wikipedia for Xnew, Ynew and Znew
  10507. float Xnew = (delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[B_AXIS] + sq(d)) / (d * 2),
  10508. Ynew = ((delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[C_AXIS] + HYPOT2(i, j)) / 2 - i * Xnew) / j,
  10509. Znew = SQRT(delta_diagonal_rod_2_tower[A_AXIS] - HYPOT2(Xnew, Ynew));
  10510. // Start from the origin of the old coordinates and add vectors in the
  10511. // old coords that represent the Xnew, Ynew and Znew to find the point
  10512. // in the old system.
  10513. cartes[X_AXIS] = delta_tower[A_AXIS][X_AXIS] + ex[0] * Xnew + ey[0] * Ynew - ez[0] * Znew;
  10514. cartes[Y_AXIS] = delta_tower[A_AXIS][Y_AXIS] + ex[1] * Xnew + ey[1] * Ynew - ez[1] * Znew;
  10515. cartes[Z_AXIS] = z1 + ex[2] * Xnew + ey[2] * Ynew - ez[2] * Znew;
  10516. }
  10517. void forward_kinematics_DELTA(float point[ABC]) {
  10518. forward_kinematics_DELTA(point[A_AXIS], point[B_AXIS], point[C_AXIS]);
  10519. }
  10520. #endif // DELTA
  10521. /**
  10522. * Get the stepper positions in the cartes[] array.
  10523. * Forward kinematics are applied for DELTA and SCARA.
  10524. *
  10525. * The result is in the current coordinate space with
  10526. * leveling applied. The coordinates need to be run through
  10527. * unapply_leveling to obtain machine coordinates suitable
  10528. * for current_position, etc.
  10529. */
  10530. void get_cartesian_from_steppers() {
  10531. #if ENABLED(DELTA)
  10532. forward_kinematics_DELTA(
  10533. stepper.get_axis_position_mm(A_AXIS),
  10534. stepper.get_axis_position_mm(B_AXIS),
  10535. stepper.get_axis_position_mm(C_AXIS)
  10536. );
  10537. #else
  10538. #if IS_SCARA
  10539. forward_kinematics_SCARA(
  10540. stepper.get_axis_position_degrees(A_AXIS),
  10541. stepper.get_axis_position_degrees(B_AXIS)
  10542. );
  10543. #else
  10544. cartes[X_AXIS] = stepper.get_axis_position_mm(X_AXIS);
  10545. cartes[Y_AXIS] = stepper.get_axis_position_mm(Y_AXIS);
  10546. #endif
  10547. cartes[Z_AXIS] = stepper.get_axis_position_mm(Z_AXIS);
  10548. #endif
  10549. }
  10550. /**
  10551. * Set the current_position for an axis based on
  10552. * the stepper positions, removing any leveling that
  10553. * may have been applied.
  10554. */
  10555. void set_current_from_steppers_for_axis(const AxisEnum axis) {
  10556. get_cartesian_from_steppers();
  10557. #if PLANNER_LEVELING
  10558. planner.unapply_leveling(cartes);
  10559. #endif
  10560. if (axis == ALL_AXES)
  10561. COPY(current_position, cartes);
  10562. else
  10563. current_position[axis] = cartes[axis];
  10564. }
  10565. #if ENABLED(MESH_BED_LEVELING)
  10566. /**
  10567. * Prepare a mesh-leveled linear move in a Cartesian setup,
  10568. * splitting the move where it crosses mesh borders.
  10569. */
  10570. void mesh_line_to_destination(float fr_mm_s, uint8_t x_splits = 0xFF, uint8_t y_splits = 0xFF) {
  10571. int cx1 = mbl.cell_index_x(current_position[X_AXIS]),
  10572. cy1 = mbl.cell_index_y(current_position[Y_AXIS]),
  10573. cx2 = mbl.cell_index_x(destination[X_AXIS]),
  10574. cy2 = mbl.cell_index_y(destination[Y_AXIS]);
  10575. NOMORE(cx1, GRID_MAX_POINTS_X - 2);
  10576. NOMORE(cy1, GRID_MAX_POINTS_Y - 2);
  10577. NOMORE(cx2, GRID_MAX_POINTS_X - 2);
  10578. NOMORE(cy2, GRID_MAX_POINTS_Y - 2);
  10579. if (cx1 == cx2 && cy1 == cy2) {
  10580. // Start and end on same mesh square
  10581. line_to_destination(fr_mm_s);
  10582. set_current_from_destination();
  10583. return;
  10584. }
  10585. #define MBL_SEGMENT_END(A) (current_position[A ##_AXIS] + (destination[A ##_AXIS] - current_position[A ##_AXIS]) * normalized_dist)
  10586. float normalized_dist, end[XYZE];
  10587. // Split at the left/front border of the right/top square
  10588. const int8_t gcx = max(cx1, cx2), gcy = max(cy1, cy2);
  10589. if (cx2 != cx1 && TEST(x_splits, gcx)) {
  10590. COPY(end, destination);
  10591. destination[X_AXIS] = mbl.index_to_xpos[gcx];
  10592. normalized_dist = (destination[X_AXIS] - current_position[X_AXIS]) / (end[X_AXIS] - current_position[X_AXIS]);
  10593. destination[Y_AXIS] = MBL_SEGMENT_END(Y);
  10594. CBI(x_splits, gcx);
  10595. }
  10596. else if (cy2 != cy1 && TEST(y_splits, gcy)) {
  10597. COPY(end, destination);
  10598. destination[Y_AXIS] = mbl.index_to_ypos[gcy];
  10599. normalized_dist = (destination[Y_AXIS] - current_position[Y_AXIS]) / (end[Y_AXIS] - current_position[Y_AXIS]);
  10600. destination[X_AXIS] = MBL_SEGMENT_END(X);
  10601. CBI(y_splits, gcy);
  10602. }
  10603. else {
  10604. // Already split on a border
  10605. line_to_destination(fr_mm_s);
  10606. set_current_from_destination();
  10607. return;
  10608. }
  10609. destination[Z_AXIS] = MBL_SEGMENT_END(Z);
  10610. destination[E_AXIS] = MBL_SEGMENT_END(E);
  10611. // Do the split and look for more borders
  10612. mesh_line_to_destination(fr_mm_s, x_splits, y_splits);
  10613. // Restore destination from stack
  10614. COPY(destination, end);
  10615. mesh_line_to_destination(fr_mm_s, x_splits, y_splits);
  10616. }
  10617. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR) && !IS_KINEMATIC
  10618. #define CELL_INDEX(A,V) ((RAW_##A##_POSITION(V) - bilinear_start[A##_AXIS]) * ABL_BG_FACTOR(A##_AXIS))
  10619. /**
  10620. * Prepare a bilinear-leveled linear move on Cartesian,
  10621. * splitting the move where it crosses grid borders.
  10622. */
  10623. void bilinear_line_to_destination(float fr_mm_s, uint16_t x_splits = 0xFFFF, uint16_t y_splits = 0xFFFF) {
  10624. int cx1 = CELL_INDEX(X, current_position[X_AXIS]),
  10625. cy1 = CELL_INDEX(Y, current_position[Y_AXIS]),
  10626. cx2 = CELL_INDEX(X, destination[X_AXIS]),
  10627. cy2 = CELL_INDEX(Y, destination[Y_AXIS]);
  10628. cx1 = constrain(cx1, 0, ABL_BG_POINTS_X - 2);
  10629. cy1 = constrain(cy1, 0, ABL_BG_POINTS_Y - 2);
  10630. cx2 = constrain(cx2, 0, ABL_BG_POINTS_X - 2);
  10631. cy2 = constrain(cy2, 0, ABL_BG_POINTS_Y - 2);
  10632. if (cx1 == cx2 && cy1 == cy2) {
  10633. // Start and end on same mesh square
  10634. line_to_destination(fr_mm_s);
  10635. set_current_from_destination();
  10636. return;
  10637. }
  10638. #define LINE_SEGMENT_END(A) (current_position[A ##_AXIS] + (destination[A ##_AXIS] - current_position[A ##_AXIS]) * normalized_dist)
  10639. float normalized_dist, end[XYZE];
  10640. // Split at the left/front border of the right/top square
  10641. const int8_t gcx = max(cx1, cx2), gcy = max(cy1, cy2);
  10642. if (cx2 != cx1 && TEST(x_splits, gcx)) {
  10643. COPY(end, destination);
  10644. destination[X_AXIS] = bilinear_start[X_AXIS] + ABL_BG_SPACING(X_AXIS) * gcx;
  10645. normalized_dist = (destination[X_AXIS] - current_position[X_AXIS]) / (end[X_AXIS] - current_position[X_AXIS]);
  10646. destination[Y_AXIS] = LINE_SEGMENT_END(Y);
  10647. CBI(x_splits, gcx);
  10648. }
  10649. else if (cy2 != cy1 && TEST(y_splits, gcy)) {
  10650. COPY(end, destination);
  10651. destination[Y_AXIS] = bilinear_start[Y_AXIS] + ABL_BG_SPACING(Y_AXIS) * gcy;
  10652. normalized_dist = (destination[Y_AXIS] - current_position[Y_AXIS]) / (end[Y_AXIS] - current_position[Y_AXIS]);
  10653. destination[X_AXIS] = LINE_SEGMENT_END(X);
  10654. CBI(y_splits, gcy);
  10655. }
  10656. else {
  10657. // Already split on a border
  10658. line_to_destination(fr_mm_s);
  10659. set_current_from_destination();
  10660. return;
  10661. }
  10662. destination[Z_AXIS] = LINE_SEGMENT_END(Z);
  10663. destination[E_AXIS] = LINE_SEGMENT_END(E);
  10664. // Do the split and look for more borders
  10665. bilinear_line_to_destination(fr_mm_s, x_splits, y_splits);
  10666. // Restore destination from stack
  10667. COPY(destination, end);
  10668. bilinear_line_to_destination(fr_mm_s, x_splits, y_splits);
  10669. }
  10670. #endif // AUTO_BED_LEVELING_BILINEAR
  10671. #if IS_KINEMATIC && !UBL_DELTA
  10672. /**
  10673. * Prepare a linear move in a DELTA or SCARA setup.
  10674. *
  10675. * This calls planner.buffer_line several times, adding
  10676. * small incremental moves for DELTA or SCARA.
  10677. */
  10678. inline bool prepare_kinematic_move_to(float rtarget[XYZE]) {
  10679. // Get the top feedrate of the move in the XY plane
  10680. const float _feedrate_mm_s = MMS_SCALED(feedrate_mm_s);
  10681. // If the move is only in Z/E don't split up the move
  10682. if (rtarget[X_AXIS] == current_position[X_AXIS] && rtarget[Y_AXIS] == current_position[Y_AXIS]) {
  10683. planner.buffer_line_kinematic(rtarget, _feedrate_mm_s, active_extruder);
  10684. return false;
  10685. }
  10686. // Fail if attempting move outside printable radius
  10687. if (!position_is_reachable(rtarget[X_AXIS], rtarget[Y_AXIS])) return true;
  10688. // Get the cartesian distances moved in XYZE
  10689. const float difference[XYZE] = {
  10690. rtarget[X_AXIS] - current_position[X_AXIS],
  10691. rtarget[Y_AXIS] - current_position[Y_AXIS],
  10692. rtarget[Z_AXIS] - current_position[Z_AXIS],
  10693. rtarget[E_AXIS] - current_position[E_AXIS]
  10694. };
  10695. // Get the linear distance in XYZ
  10696. float cartesian_mm = SQRT(sq(difference[X_AXIS]) + sq(difference[Y_AXIS]) + sq(difference[Z_AXIS]));
  10697. // If the move is very short, check the E move distance
  10698. if (UNEAR_ZERO(cartesian_mm)) cartesian_mm = FABS(difference[E_AXIS]);
  10699. // No E move either? Game over.
  10700. if (UNEAR_ZERO(cartesian_mm)) return true;
  10701. // Minimum number of seconds to move the given distance
  10702. const float seconds = cartesian_mm / _feedrate_mm_s;
  10703. // The number of segments-per-second times the duration
  10704. // gives the number of segments
  10705. uint16_t segments = delta_segments_per_second * seconds;
  10706. // For SCARA minimum segment size is 0.25mm
  10707. #if IS_SCARA
  10708. NOMORE(segments, cartesian_mm * 4);
  10709. #endif
  10710. // At least one segment is required
  10711. NOLESS(segments, 1);
  10712. // The approximate length of each segment
  10713. const float inv_segments = 1.0 / float(segments),
  10714. segment_distance[XYZE] = {
  10715. difference[X_AXIS] * inv_segments,
  10716. difference[Y_AXIS] * inv_segments,
  10717. difference[Z_AXIS] * inv_segments,
  10718. difference[E_AXIS] * inv_segments
  10719. };
  10720. // SERIAL_ECHOPAIR("mm=", cartesian_mm);
  10721. // SERIAL_ECHOPAIR(" seconds=", seconds);
  10722. // SERIAL_ECHOLNPAIR(" segments=", segments);
  10723. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  10724. // SCARA needs to scale the feed rate from mm/s to degrees/s
  10725. const float inv_segment_length = min(10.0, float(segments) / cartesian_mm), // 1/mm/segs
  10726. feed_factor = inv_segment_length * _feedrate_mm_s;
  10727. float oldA = stepper.get_axis_position_degrees(A_AXIS),
  10728. oldB = stepper.get_axis_position_degrees(B_AXIS);
  10729. #endif
  10730. // Get the raw current position as starting point
  10731. float raw[XYZE];
  10732. COPY(raw, current_position);
  10733. // Drop one segment so the last move is to the exact target.
  10734. // If there's only 1 segment, loops will be skipped entirely.
  10735. --segments;
  10736. // Calculate and execute the segments
  10737. for (uint16_t s = segments + 1; --s;) {
  10738. LOOP_XYZE(i) raw[i] += segment_distance[i];
  10739. #if ENABLED(DELTA)
  10740. DELTA_RAW_IK(); // Delta can inline its kinematics
  10741. #else
  10742. inverse_kinematics(raw);
  10743. #endif
  10744. ADJUST_DELTA(raw); // Adjust Z if bed leveling is enabled
  10745. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  10746. // For SCARA scale the feed rate from mm/s to degrees/s
  10747. // Use ratio between the length of the move and the larger angle change
  10748. const float adiff = abs(delta[A_AXIS] - oldA),
  10749. bdiff = abs(delta[B_AXIS] - oldB);
  10750. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], raw[E_AXIS], max(adiff, bdiff) * feed_factor, active_extruder);
  10751. oldA = delta[A_AXIS];
  10752. oldB = delta[B_AXIS];
  10753. #else
  10754. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], raw[E_AXIS], _feedrate_mm_s, active_extruder);
  10755. #endif
  10756. }
  10757. // Since segment_distance is only approximate,
  10758. // the final move must be to the exact destination.
  10759. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  10760. // For SCARA scale the feed rate from mm/s to degrees/s
  10761. // With segments > 1 length is 1 segment, otherwise total length
  10762. inverse_kinematics(rtarget);
  10763. ADJUST_DELTA(rtarget);
  10764. const float adiff = abs(delta[A_AXIS] - oldA),
  10765. bdiff = abs(delta[B_AXIS] - oldB);
  10766. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], raw[E_AXIS], max(adiff, bdiff) * feed_factor, active_extruder);
  10767. #else
  10768. planner.buffer_line_kinematic(rtarget, _feedrate_mm_s, active_extruder);
  10769. #endif
  10770. return false;
  10771. }
  10772. #else // !IS_KINEMATIC || UBL_DELTA
  10773. /**
  10774. * Prepare a linear move in a Cartesian setup.
  10775. * If Mesh Bed Leveling is enabled, perform a mesh move.
  10776. *
  10777. * Returns true if current_position[] was set to destination[]
  10778. */
  10779. inline bool prepare_move_to_destination_cartesian() {
  10780. if (current_position[X_AXIS] != destination[X_AXIS] || current_position[Y_AXIS] != destination[Y_AXIS]) {
  10781. const float fr_scaled = MMS_SCALED(feedrate_mm_s);
  10782. #if HAS_MESH
  10783. if (planner.leveling_active) {
  10784. #if ENABLED(AUTO_BED_LEVELING_UBL)
  10785. ubl.line_to_destination_cartesian(fr_scaled, active_extruder);
  10786. #elif ENABLED(MESH_BED_LEVELING)
  10787. mesh_line_to_destination(fr_scaled);
  10788. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  10789. bilinear_line_to_destination(fr_scaled);
  10790. #endif
  10791. return true;
  10792. }
  10793. #endif // HAS_MESH
  10794. line_to_destination(fr_scaled);
  10795. }
  10796. else
  10797. line_to_destination();
  10798. return false;
  10799. }
  10800. #endif // !IS_KINEMATIC || UBL_DELTA
  10801. #if ENABLED(DUAL_X_CARRIAGE)
  10802. /**
  10803. * Prepare a linear move in a dual X axis setup
  10804. */
  10805. inline bool prepare_move_to_destination_dualx() {
  10806. if (active_extruder_parked) {
  10807. switch (dual_x_carriage_mode) {
  10808. case DXC_FULL_CONTROL_MODE:
  10809. break;
  10810. case DXC_AUTO_PARK_MODE:
  10811. if (current_position[E_AXIS] == destination[E_AXIS]) {
  10812. // This is a travel move (with no extrusion)
  10813. // Skip it, but keep track of the current position
  10814. // (so it can be used as the start of the next non-travel move)
  10815. if (delayed_move_time != 0xFFFFFFFFUL) {
  10816. set_current_from_destination();
  10817. NOLESS(raised_parked_position[Z_AXIS], destination[Z_AXIS]);
  10818. delayed_move_time = millis();
  10819. return true;
  10820. }
  10821. }
  10822. // unpark extruder: 1) raise, 2) move into starting XY position, 3) lower
  10823. for (uint8_t i = 0; i < 3; i++)
  10824. planner.buffer_line(
  10825. i == 0 ? raised_parked_position[X_AXIS] : current_position[X_AXIS],
  10826. i == 0 ? raised_parked_position[Y_AXIS] : current_position[Y_AXIS],
  10827. i == 2 ? current_position[Z_AXIS] : raised_parked_position[Z_AXIS],
  10828. current_position[E_AXIS],
  10829. i == 1 ? PLANNER_XY_FEEDRATE() : planner.max_feedrate_mm_s[Z_AXIS],
  10830. active_extruder
  10831. );
  10832. delayed_move_time = 0;
  10833. active_extruder_parked = false;
  10834. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10835. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Clear active_extruder_parked");
  10836. #endif
  10837. break;
  10838. case DXC_DUPLICATION_MODE:
  10839. if (active_extruder == 0) {
  10840. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10841. if (DEBUGGING(LEVELING)) {
  10842. SERIAL_ECHOPAIR("Set planner X", inactive_extruder_x_pos);
  10843. SERIAL_ECHOLNPAIR(" ... Line to X", current_position[X_AXIS] + duplicate_extruder_x_offset);
  10844. }
  10845. #endif
  10846. // move duplicate extruder into correct duplication position.
  10847. planner.set_position_mm(
  10848. inactive_extruder_x_pos,
  10849. current_position[Y_AXIS],
  10850. current_position[Z_AXIS],
  10851. current_position[E_AXIS]
  10852. );
  10853. planner.buffer_line(
  10854. current_position[X_AXIS] + duplicate_extruder_x_offset,
  10855. current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS],
  10856. planner.max_feedrate_mm_s[X_AXIS], 1
  10857. );
  10858. SYNC_PLAN_POSITION_KINEMATIC();
  10859. stepper.synchronize();
  10860. extruder_duplication_enabled = true;
  10861. active_extruder_parked = false;
  10862. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10863. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Set extruder_duplication_enabled\nClear active_extruder_parked");
  10864. #endif
  10865. }
  10866. else {
  10867. #if ENABLED(DEBUG_LEVELING_FEATURE)
  10868. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Active extruder not 0");
  10869. #endif
  10870. }
  10871. break;
  10872. }
  10873. }
  10874. return prepare_move_to_destination_cartesian();
  10875. }
  10876. #endif // DUAL_X_CARRIAGE
  10877. /**
  10878. * Prepare a single move and get ready for the next one
  10879. *
  10880. * This may result in several calls to planner.buffer_line to
  10881. * do smaller moves for DELTA, SCARA, mesh moves, etc.
  10882. */
  10883. void prepare_move_to_destination() {
  10884. clamp_to_software_endstops(destination);
  10885. refresh_cmd_timeout();
  10886. #if ENABLED(PREVENT_COLD_EXTRUSION)
  10887. if (!DEBUGGING(DRYRUN)) {
  10888. if (destination[E_AXIS] != current_position[E_AXIS]) {
  10889. if (thermalManager.tooColdToExtrude(active_extruder)) {
  10890. current_position[E_AXIS] = destination[E_AXIS]; // Behave as if the move really took place, but ignore E part
  10891. SERIAL_ECHO_START();
  10892. SERIAL_ECHOLNPGM(MSG_ERR_COLD_EXTRUDE_STOP);
  10893. }
  10894. #if ENABLED(PREVENT_LENGTHY_EXTRUDE)
  10895. if (destination[E_AXIS] - current_position[E_AXIS] > EXTRUDE_MAXLENGTH) {
  10896. current_position[E_AXIS] = destination[E_AXIS]; // Behave as if the move really took place, but ignore E part
  10897. SERIAL_ECHO_START();
  10898. SERIAL_ECHOLNPGM(MSG_ERR_LONG_EXTRUDE_STOP);
  10899. }
  10900. #endif
  10901. }
  10902. }
  10903. #endif
  10904. if (
  10905. #if UBL_DELTA // Also works for CARTESIAN (smaller segments follow mesh more closely)
  10906. ubl.prepare_segmented_line_to(destination, MMS_SCALED(feedrate_mm_s))
  10907. #elif IS_KINEMATIC
  10908. prepare_kinematic_move_to(destination)
  10909. #elif ENABLED(DUAL_X_CARRIAGE)
  10910. prepare_move_to_destination_dualx()
  10911. #else
  10912. prepare_move_to_destination_cartesian()
  10913. #endif
  10914. ) return;
  10915. set_current_from_destination();
  10916. }
  10917. #if ENABLED(ARC_SUPPORT)
  10918. #if N_ARC_CORRECTION < 1
  10919. #undef N_ARC_CORRECTION
  10920. #define N_ARC_CORRECTION 1
  10921. #endif
  10922. /**
  10923. * Plan an arc in 2 dimensions
  10924. *
  10925. * The arc is approximated by generating many small linear segments.
  10926. * The length of each segment is configured in MM_PER_ARC_SEGMENT (Default 1mm)
  10927. * Arcs should only be made relatively large (over 5mm), as larger arcs with
  10928. * larger segments will tend to be more efficient. Your slicer should have
  10929. * options for G2/G3 arc generation. In future these options may be GCode tunable.
  10930. */
  10931. void plan_arc(
  10932. float raw[XYZE], // Destination position
  10933. float *offset, // Center of rotation relative to current_position
  10934. uint8_t clockwise // Clockwise?
  10935. ) {
  10936. #if ENABLED(CNC_WORKSPACE_PLANES)
  10937. AxisEnum p_axis, q_axis, l_axis;
  10938. switch (workspace_plane) {
  10939. case PLANE_XY: p_axis = X_AXIS; q_axis = Y_AXIS; l_axis = Z_AXIS; break;
  10940. case PLANE_ZX: p_axis = Z_AXIS; q_axis = X_AXIS; l_axis = Y_AXIS; break;
  10941. case PLANE_YZ: p_axis = Y_AXIS; q_axis = Z_AXIS; l_axis = X_AXIS; break;
  10942. }
  10943. #else
  10944. constexpr AxisEnum p_axis = X_AXIS, q_axis = Y_AXIS, l_axis = Z_AXIS;
  10945. #endif
  10946. // Radius vector from center to current location
  10947. float r_P = -offset[0], r_Q = -offset[1];
  10948. const float radius = HYPOT(r_P, r_Q),
  10949. center_P = current_position[p_axis] - r_P,
  10950. center_Q = current_position[q_axis] - r_Q,
  10951. rt_X = raw[p_axis] - center_P,
  10952. rt_Y = raw[q_axis] - center_Q,
  10953. linear_travel = raw[l_axis] - current_position[l_axis],
  10954. extruder_travel = raw[E_AXIS] - current_position[E_AXIS];
  10955. // CCW angle of rotation between position and target from the circle center. Only one atan2() trig computation required.
  10956. float angular_travel = ATAN2(r_P * rt_Y - r_Q * rt_X, r_P * rt_X + r_Q * rt_Y);
  10957. if (angular_travel < 0) angular_travel += RADIANS(360);
  10958. if (clockwise) angular_travel -= RADIANS(360);
  10959. // Make a circle if the angular rotation is 0 and the target is current position
  10960. if (angular_travel == 0 && current_position[p_axis] == raw[p_axis] && current_position[q_axis] == raw[q_axis])
  10961. angular_travel = RADIANS(360);
  10962. const float mm_of_travel = HYPOT(angular_travel * radius, FABS(linear_travel));
  10963. if (mm_of_travel < 0.001) return;
  10964. uint16_t segments = FLOOR(mm_of_travel / (MM_PER_ARC_SEGMENT));
  10965. if (segments == 0) segments = 1;
  10966. /**
  10967. * Vector rotation by transformation matrix: r is the original vector, r_T is the rotated vector,
  10968. * and phi is the angle of rotation. Based on the solution approach by Jens Geisler.
  10969. * r_T = [cos(phi) -sin(phi);
  10970. * sin(phi) cos(phi)] * r ;
  10971. *
  10972. * For arc generation, the center of the circle is the axis of rotation and the radius vector is
  10973. * defined from the circle center to the initial position. Each line segment is formed by successive
  10974. * vector rotations. This requires only two cos() and sin() computations to form the rotation
  10975. * matrix for the duration of the entire arc. Error may accumulate from numerical round-off, since
  10976. * all double numbers are single precision on the Arduino. (True double precision will not have
  10977. * round off issues for CNC applications.) Single precision error can accumulate to be greater than
  10978. * tool precision in some cases. Therefore, arc path correction is implemented.
  10979. *
  10980. * Small angle approximation may be used to reduce computation overhead further. This approximation
  10981. * holds for everything, but very small circles and large MM_PER_ARC_SEGMENT values. In other words,
  10982. * theta_per_segment would need to be greater than 0.1 rad and N_ARC_CORRECTION would need to be large
  10983. * to cause an appreciable drift error. N_ARC_CORRECTION~=25 is more than small enough to correct for
  10984. * numerical drift error. N_ARC_CORRECTION may be on the order a hundred(s) before error becomes an
  10985. * issue for CNC machines with the single precision Arduino calculations.
  10986. *
  10987. * This approximation also allows plan_arc to immediately insert a line segment into the planner
  10988. * without the initial overhead of computing cos() or sin(). By the time the arc needs to be applied
  10989. * a correction, the planner should have caught up to the lag caused by the initial plan_arc overhead.
  10990. * This is important when there are successive arc motions.
  10991. */
  10992. // Vector rotation matrix values
  10993. float arc_target[XYZE];
  10994. const float theta_per_segment = angular_travel / segments,
  10995. linear_per_segment = linear_travel / segments,
  10996. extruder_per_segment = extruder_travel / segments,
  10997. sin_T = theta_per_segment,
  10998. cos_T = 1 - 0.5 * sq(theta_per_segment); // Small angle approximation
  10999. // Initialize the linear axis
  11000. arc_target[l_axis] = current_position[l_axis];
  11001. // Initialize the extruder axis
  11002. arc_target[E_AXIS] = current_position[E_AXIS];
  11003. const float fr_mm_s = MMS_SCALED(feedrate_mm_s);
  11004. millis_t next_idle_ms = millis() + 200UL;
  11005. #if N_ARC_CORRECTION > 1
  11006. int8_t arc_recalc_count = N_ARC_CORRECTION;
  11007. #endif
  11008. for (uint16_t i = 1; i < segments; i++) { // Iterate (segments-1) times
  11009. thermalManager.manage_heater();
  11010. if (ELAPSED(millis(), next_idle_ms)) {
  11011. next_idle_ms = millis() + 200UL;
  11012. idle();
  11013. }
  11014. #if N_ARC_CORRECTION > 1
  11015. if (--arc_recalc_count) {
  11016. // Apply vector rotation matrix to previous r_P / 1
  11017. const float r_new_Y = r_P * sin_T + r_Q * cos_T;
  11018. r_P = r_P * cos_T - r_Q * sin_T;
  11019. r_Q = r_new_Y;
  11020. }
  11021. else
  11022. #endif
  11023. {
  11024. #if N_ARC_CORRECTION > 1
  11025. arc_recalc_count = N_ARC_CORRECTION;
  11026. #endif
  11027. // Arc correction to radius vector. Computed only every N_ARC_CORRECTION increments.
  11028. // Compute exact location by applying transformation matrix from initial radius vector(=-offset).
  11029. // To reduce stuttering, the sin and cos could be computed at different times.
  11030. // For now, compute both at the same time.
  11031. const float cos_Ti = cos(i * theta_per_segment), sin_Ti = sin(i * theta_per_segment);
  11032. r_P = -offset[0] * cos_Ti + offset[1] * sin_Ti;
  11033. r_Q = -offset[0] * sin_Ti - offset[1] * cos_Ti;
  11034. }
  11035. // Update arc_target location
  11036. arc_target[p_axis] = center_P + r_P;
  11037. arc_target[q_axis] = center_Q + r_Q;
  11038. arc_target[l_axis] += linear_per_segment;
  11039. arc_target[E_AXIS] += extruder_per_segment;
  11040. clamp_to_software_endstops(arc_target);
  11041. planner.buffer_line_kinematic(arc_target, fr_mm_s, active_extruder);
  11042. }
  11043. // Ensure last segment arrives at target location.
  11044. planner.buffer_line_kinematic(raw, fr_mm_s, active_extruder);
  11045. // As far as the parser is concerned, the position is now == target. In reality the
  11046. // motion control system might still be processing the action and the real tool position
  11047. // in any intermediate location.
  11048. set_current_from_destination();
  11049. } // plan_arc
  11050. #endif // ARC_SUPPORT
  11051. #if ENABLED(BEZIER_CURVE_SUPPORT)
  11052. void plan_cubic_move(const float offset[4]) {
  11053. cubic_b_spline(current_position, destination, offset, MMS_SCALED(feedrate_mm_s), active_extruder);
  11054. // As far as the parser is concerned, the position is now == destination. In reality the
  11055. // motion control system might still be processing the action and the real tool position
  11056. // in any intermediate location.
  11057. set_current_from_destination();
  11058. }
  11059. #endif // BEZIER_CURVE_SUPPORT
  11060. #if ENABLED(USE_CONTROLLER_FAN)
  11061. void controllerFan() {
  11062. static millis_t lastMotorOn = 0, // Last time a motor was turned on
  11063. nextMotorCheck = 0; // Last time the state was checked
  11064. const millis_t ms = millis();
  11065. if (ELAPSED(ms, nextMotorCheck)) {
  11066. nextMotorCheck = ms + 2500UL; // Not a time critical function, so only check every 2.5s
  11067. 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
  11068. || E0_ENABLE_READ == E_ENABLE_ON // If any of the drivers are enabled...
  11069. #if E_STEPPERS > 1
  11070. || E1_ENABLE_READ == E_ENABLE_ON
  11071. #if HAS_X2_ENABLE
  11072. || X2_ENABLE_READ == X_ENABLE_ON
  11073. #endif
  11074. #if E_STEPPERS > 2
  11075. || E2_ENABLE_READ == E_ENABLE_ON
  11076. #if E_STEPPERS > 3
  11077. || E3_ENABLE_READ == E_ENABLE_ON
  11078. #if E_STEPPERS > 4
  11079. || E4_ENABLE_READ == E_ENABLE_ON
  11080. #endif // E_STEPPERS > 4
  11081. #endif // E_STEPPERS > 3
  11082. #endif // E_STEPPERS > 2
  11083. #endif // E_STEPPERS > 1
  11084. ) {
  11085. lastMotorOn = ms; //... set time to NOW so the fan will turn on
  11086. }
  11087. // Fan off if no steppers have been enabled for CONTROLLERFAN_SECS seconds
  11088. uint8_t speed = (!lastMotorOn || ELAPSED(ms, lastMotorOn + (CONTROLLERFAN_SECS) * 1000UL)) ? 0 : CONTROLLERFAN_SPEED;
  11089. // allows digital or PWM fan output to be used (see M42 handling)
  11090. WRITE(CONTROLLER_FAN_PIN, speed);
  11091. analogWrite(CONTROLLER_FAN_PIN, speed);
  11092. }
  11093. }
  11094. #endif // USE_CONTROLLER_FAN
  11095. #if ENABLED(MORGAN_SCARA)
  11096. /**
  11097. * Morgan SCARA Forward Kinematics. Results in cartes[].
  11098. * Maths and first version by QHARLEY.
  11099. * Integrated into Marlin and slightly restructured by Joachim Cerny.
  11100. */
  11101. void forward_kinematics_SCARA(const float &a, const float &b) {
  11102. float a_sin = sin(RADIANS(a)) * L1,
  11103. a_cos = cos(RADIANS(a)) * L1,
  11104. b_sin = sin(RADIANS(b)) * L2,
  11105. b_cos = cos(RADIANS(b)) * L2;
  11106. cartes[X_AXIS] = a_cos + b_cos + SCARA_OFFSET_X; //theta
  11107. cartes[Y_AXIS] = a_sin + b_sin + SCARA_OFFSET_Y; //theta+phi
  11108. /*
  11109. SERIAL_ECHOPAIR("SCARA FK Angle a=", a);
  11110. SERIAL_ECHOPAIR(" b=", b);
  11111. SERIAL_ECHOPAIR(" a_sin=", a_sin);
  11112. SERIAL_ECHOPAIR(" a_cos=", a_cos);
  11113. SERIAL_ECHOPAIR(" b_sin=", b_sin);
  11114. SERIAL_ECHOLNPAIR(" b_cos=", b_cos);
  11115. SERIAL_ECHOPAIR(" cartes[X_AXIS]=", cartes[X_AXIS]);
  11116. SERIAL_ECHOLNPAIR(" cartes[Y_AXIS]=", cartes[Y_AXIS]);
  11117. //*/
  11118. }
  11119. /**
  11120. * Morgan SCARA Inverse Kinematics. Results in delta[].
  11121. *
  11122. * See http://forums.reprap.org/read.php?185,283327
  11123. *
  11124. * Maths and first version by QHARLEY.
  11125. * Integrated into Marlin and slightly restructured by Joachim Cerny.
  11126. */
  11127. void inverse_kinematics(const float raw[XYZ]) {
  11128. static float C2, S2, SK1, SK2, THETA, PSI;
  11129. float sx = raw[X_AXIS] - SCARA_OFFSET_X, // Translate SCARA to standard X Y
  11130. sy = raw[Y_AXIS] - SCARA_OFFSET_Y; // With scaling factor.
  11131. if (L1 == L2)
  11132. C2 = HYPOT2(sx, sy) / L1_2_2 - 1;
  11133. else
  11134. C2 = (HYPOT2(sx, sy) - (L1_2 + L2_2)) / (2.0 * L1 * L2);
  11135. S2 = SQRT(1 - sq(C2));
  11136. // Unrotated Arm1 plus rotated Arm2 gives the distance from Center to End
  11137. SK1 = L1 + L2 * C2;
  11138. // Rotated Arm2 gives the distance from Arm1 to Arm2
  11139. SK2 = L2 * S2;
  11140. // Angle of Arm1 is the difference between Center-to-End angle and the Center-to-Elbow
  11141. THETA = ATAN2(SK1, SK2) - ATAN2(sx, sy);
  11142. // Angle of Arm2
  11143. PSI = ATAN2(S2, C2);
  11144. delta[A_AXIS] = DEGREES(THETA); // theta is support arm angle
  11145. delta[B_AXIS] = DEGREES(THETA + PSI); // equal to sub arm angle (inverted motor)
  11146. delta[C_AXIS] = raw[Z_AXIS];
  11147. /*
  11148. DEBUG_POS("SCARA IK", raw);
  11149. DEBUG_POS("SCARA IK", delta);
  11150. SERIAL_ECHOPAIR(" SCARA (x,y) ", sx);
  11151. SERIAL_ECHOPAIR(",", sy);
  11152. SERIAL_ECHOPAIR(" C2=", C2);
  11153. SERIAL_ECHOPAIR(" S2=", S2);
  11154. SERIAL_ECHOPAIR(" Theta=", THETA);
  11155. SERIAL_ECHOLNPAIR(" Phi=", PHI);
  11156. //*/
  11157. }
  11158. #endif // MORGAN_SCARA
  11159. #if ENABLED(TEMP_STAT_LEDS)
  11160. static bool red_led = false;
  11161. static millis_t next_status_led_update_ms = 0;
  11162. void handle_status_leds(void) {
  11163. if (ELAPSED(millis(), next_status_led_update_ms)) {
  11164. next_status_led_update_ms += 500; // Update every 0.5s
  11165. float max_temp = 0.0;
  11166. #if HAS_TEMP_BED
  11167. max_temp = MAX3(max_temp, thermalManager.degTargetBed(), thermalManager.degBed());
  11168. #endif
  11169. HOTEND_LOOP()
  11170. max_temp = MAX3(max_temp, thermalManager.degHotend(e), thermalManager.degTargetHotend(e));
  11171. const bool new_led = (max_temp > 55.0) ? true : (max_temp < 54.0) ? false : red_led;
  11172. if (new_led != red_led) {
  11173. red_led = new_led;
  11174. #if PIN_EXISTS(STAT_LED_RED)
  11175. WRITE(STAT_LED_RED_PIN, new_led ? HIGH : LOW);
  11176. #if PIN_EXISTS(STAT_LED_BLUE)
  11177. WRITE(STAT_LED_BLUE_PIN, new_led ? LOW : HIGH);
  11178. #endif
  11179. #else
  11180. WRITE(STAT_LED_BLUE_PIN, new_led ? HIGH : LOW);
  11181. #endif
  11182. }
  11183. }
  11184. }
  11185. #endif
  11186. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  11187. void handle_filament_runout() {
  11188. if (!filament_ran_out) {
  11189. filament_ran_out = true;
  11190. enqueue_and_echo_commands_P(PSTR(FILAMENT_RUNOUT_SCRIPT));
  11191. stepper.synchronize();
  11192. }
  11193. }
  11194. #endif // FILAMENT_RUNOUT_SENSOR
  11195. #if ENABLED(FAST_PWM_FAN)
  11196. void setPwmFrequency(uint8_t pin, int val) {
  11197. val &= 0x07;
  11198. switch (digitalPinToTimer(pin)) {
  11199. #ifdef TCCR0A
  11200. #if !AVR_AT90USB1286_FAMILY
  11201. case TIMER0A:
  11202. #endif
  11203. case TIMER0B:
  11204. //_SET_CS(0, val);
  11205. break;
  11206. #endif
  11207. #ifdef TCCR1A
  11208. case TIMER1A:
  11209. case TIMER1B:
  11210. //_SET_CS(1, val);
  11211. break;
  11212. #endif
  11213. #ifdef TCCR2
  11214. case TIMER2:
  11215. case TIMER2:
  11216. _SET_CS(2, val);
  11217. break;
  11218. #endif
  11219. #ifdef TCCR2A
  11220. case TIMER2A:
  11221. case TIMER2B:
  11222. _SET_CS(2, val);
  11223. break;
  11224. #endif
  11225. #ifdef TCCR3A
  11226. case TIMER3A:
  11227. case TIMER3B:
  11228. case TIMER3C:
  11229. _SET_CS(3, val);
  11230. break;
  11231. #endif
  11232. #ifdef TCCR4A
  11233. case TIMER4A:
  11234. case TIMER4B:
  11235. case TIMER4C:
  11236. _SET_CS(4, val);
  11237. break;
  11238. #endif
  11239. #ifdef TCCR5A
  11240. case TIMER5A:
  11241. case TIMER5B:
  11242. case TIMER5C:
  11243. _SET_CS(5, val);
  11244. break;
  11245. #endif
  11246. }
  11247. }
  11248. #endif // FAST_PWM_FAN
  11249. float calculate_volumetric_multiplier(const float diameter) {
  11250. if (!volumetric_enabled || diameter == 0) return 1.0;
  11251. return 1.0 / (M_PI * sq(diameter * 0.5));
  11252. }
  11253. void calculate_volumetric_multipliers() {
  11254. for (uint8_t i = 0; i < COUNT(filament_size); i++)
  11255. volumetric_multiplier[i] = calculate_volumetric_multiplier(filament_size[i]);
  11256. }
  11257. void enable_all_steppers() {
  11258. enable_X();
  11259. enable_Y();
  11260. enable_Z();
  11261. enable_E0();
  11262. enable_E1();
  11263. enable_E2();
  11264. enable_E3();
  11265. enable_E4();
  11266. }
  11267. void disable_e_steppers() {
  11268. disable_E0();
  11269. disable_E1();
  11270. disable_E2();
  11271. disable_E3();
  11272. disable_E4();
  11273. }
  11274. void disable_all_steppers() {
  11275. disable_X();
  11276. disable_Y();
  11277. disable_Z();
  11278. disable_e_steppers();
  11279. }
  11280. #if ENABLED(HAVE_TMC2130)
  11281. void automatic_current_control(TMC2130Stepper &st, String axisID) {
  11282. // Check otpw even if we don't use automatic control. Allows for flag inspection.
  11283. const bool is_otpw = st.checkOT();
  11284. // Report if a warning was triggered
  11285. static bool previous_otpw = false;
  11286. if (is_otpw && !previous_otpw) {
  11287. char timestamp[10];
  11288. duration_t elapsed = print_job_timer.duration();
  11289. const bool has_days = (elapsed.value > 60*60*24L);
  11290. (void)elapsed.toDigital(timestamp, has_days);
  11291. SERIAL_ECHO(timestamp);
  11292. SERIAL_ECHOPGM(": ");
  11293. SERIAL_ECHO(axisID);
  11294. SERIAL_ECHOLNPGM(" driver overtemperature warning!");
  11295. }
  11296. previous_otpw = is_otpw;
  11297. #if CURRENT_STEP > 0 && ENABLED(AUTOMATIC_CURRENT_CONTROL)
  11298. // Return if user has not enabled current control start with M906 S1.
  11299. if (!auto_current_control) return;
  11300. /**
  11301. * Decrease current if is_otpw is true.
  11302. * Bail out if driver is disabled.
  11303. * Increase current if OTPW has not been triggered yet.
  11304. */
  11305. uint16_t current = st.getCurrent();
  11306. if (is_otpw) {
  11307. st.setCurrent(current - CURRENT_STEP, R_SENSE, HOLD_MULTIPLIER);
  11308. #if ENABLED(REPORT_CURRENT_CHANGE)
  11309. SERIAL_ECHO(axisID);
  11310. SERIAL_ECHOPAIR(" current decreased to ", st.getCurrent());
  11311. #endif
  11312. }
  11313. else if (!st.isEnabled())
  11314. return;
  11315. else if (!is_otpw && !st.getOTPW()) {
  11316. current += CURRENT_STEP;
  11317. if (current <= AUTO_ADJUST_MAX) {
  11318. st.setCurrent(current, R_SENSE, HOLD_MULTIPLIER);
  11319. #if ENABLED(REPORT_CURRENT_CHANGE)
  11320. SERIAL_ECHO(axisID);
  11321. SERIAL_ECHOPAIR(" current increased to ", st.getCurrent());
  11322. #endif
  11323. }
  11324. }
  11325. SERIAL_EOL();
  11326. #endif
  11327. }
  11328. void checkOverTemp() {
  11329. static millis_t next_cOT = 0;
  11330. if (ELAPSED(millis(), next_cOT)) {
  11331. next_cOT = millis() + 5000;
  11332. #if ENABLED(X_IS_TMC2130)
  11333. automatic_current_control(stepperX, "X");
  11334. #endif
  11335. #if ENABLED(Y_IS_TMC2130)
  11336. automatic_current_control(stepperY, "Y");
  11337. #endif
  11338. #if ENABLED(Z_IS_TMC2130)
  11339. automatic_current_control(stepperZ, "Z");
  11340. #endif
  11341. #if ENABLED(X2_IS_TMC2130)
  11342. automatic_current_control(stepperX2, "X2");
  11343. #endif
  11344. #if ENABLED(Y2_IS_TMC2130)
  11345. automatic_current_control(stepperY2, "Y2");
  11346. #endif
  11347. #if ENABLED(Z2_IS_TMC2130)
  11348. automatic_current_control(stepperZ2, "Z2");
  11349. #endif
  11350. #if ENABLED(E0_IS_TMC2130)
  11351. automatic_current_control(stepperE0, "E0");
  11352. #endif
  11353. #if ENABLED(E1_IS_TMC2130)
  11354. automatic_current_control(stepperE1, "E1");
  11355. #endif
  11356. #if ENABLED(E2_IS_TMC2130)
  11357. automatic_current_control(stepperE2, "E2");
  11358. #endif
  11359. #if ENABLED(E3_IS_TMC2130)
  11360. automatic_current_control(stepperE3, "E3");
  11361. #endif
  11362. #if ENABLED(E4_IS_TMC2130)
  11363. automatic_current_control(stepperE4, "E4");
  11364. #endif
  11365. }
  11366. }
  11367. #endif // HAVE_TMC2130
  11368. /**
  11369. * Manage several activities:
  11370. * - Check for Filament Runout
  11371. * - Keep the command buffer full
  11372. * - Check for maximum inactive time between commands
  11373. * - Check for maximum inactive time between stepper commands
  11374. * - Check if pin CHDK needs to go LOW
  11375. * - Check for KILL button held down
  11376. * - Check for HOME button held down
  11377. * - Check if cooling fan needs to be switched on
  11378. * - Check if an idle but hot extruder needs filament extruded (EXTRUDER_RUNOUT_PREVENT)
  11379. */
  11380. void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
  11381. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  11382. if ((IS_SD_PRINTING || print_job_timer.isRunning()) && (READ(FIL_RUNOUT_PIN) == FIL_RUNOUT_INVERTING))
  11383. handle_filament_runout();
  11384. #endif
  11385. if (commands_in_queue < BUFSIZE) get_available_commands();
  11386. const millis_t ms = millis();
  11387. if (max_inactive_time && ELAPSED(ms, previous_cmd_ms + max_inactive_time)) {
  11388. SERIAL_ERROR_START();
  11389. SERIAL_ECHOLNPAIR(MSG_KILL_INACTIVE_TIME, parser.command_ptr);
  11390. kill(PSTR(MSG_KILLED));
  11391. }
  11392. // Prevent steppers timing-out in the middle of M600
  11393. #if ENABLED(ADVANCED_PAUSE_FEATURE) && ENABLED(PAUSE_PARK_NO_STEPPER_TIMEOUT)
  11394. #define MOVE_AWAY_TEST !move_away_flag
  11395. #else
  11396. #define MOVE_AWAY_TEST true
  11397. #endif
  11398. if (MOVE_AWAY_TEST && stepper_inactive_time && ELAPSED(ms, previous_cmd_ms + stepper_inactive_time)
  11399. && !ignore_stepper_queue && !planner.blocks_queued()) {
  11400. #if ENABLED(DISABLE_INACTIVE_X)
  11401. disable_X();
  11402. #endif
  11403. #if ENABLED(DISABLE_INACTIVE_Y)
  11404. disable_Y();
  11405. #endif
  11406. #if ENABLED(DISABLE_INACTIVE_Z)
  11407. disable_Z();
  11408. #endif
  11409. #if ENABLED(DISABLE_INACTIVE_E)
  11410. disable_e_steppers();
  11411. #endif
  11412. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTRA_LCD) // Only needed with an LCD
  11413. ubl_lcd_map_control = defer_return_to_status = false;
  11414. #endif
  11415. }
  11416. #ifdef CHDK // Check if pin should be set to LOW after M240 set it to HIGH
  11417. if (chdkActive && ELAPSED(ms, chdkHigh + CHDK_DELAY)) {
  11418. chdkActive = false;
  11419. WRITE(CHDK, LOW);
  11420. }
  11421. #endif
  11422. #if HAS_KILL
  11423. // Check if the kill button was pressed and wait just in case it was an accidental
  11424. // key kill key press
  11425. // -------------------------------------------------------------------------------
  11426. static int killCount = 0; // make the inactivity button a bit less responsive
  11427. const int KILL_DELAY = 750;
  11428. if (!READ(KILL_PIN))
  11429. killCount++;
  11430. else if (killCount > 0)
  11431. killCount--;
  11432. // Exceeded threshold and we can confirm that it was not accidental
  11433. // KILL the machine
  11434. // ----------------------------------------------------------------
  11435. if (killCount >= KILL_DELAY) {
  11436. SERIAL_ERROR_START();
  11437. SERIAL_ERRORLNPGM(MSG_KILL_BUTTON);
  11438. kill(PSTR(MSG_KILLED));
  11439. }
  11440. #endif
  11441. #if HAS_HOME
  11442. // Check to see if we have to home, use poor man's debouncer
  11443. // ---------------------------------------------------------
  11444. static int homeDebounceCount = 0; // poor man's debouncing count
  11445. const int HOME_DEBOUNCE_DELAY = 2500;
  11446. if (!IS_SD_PRINTING && !READ(HOME_PIN)) {
  11447. if (!homeDebounceCount) {
  11448. enqueue_and_echo_commands_P(PSTR("G28"));
  11449. LCD_MESSAGEPGM(MSG_AUTO_HOME);
  11450. }
  11451. if (homeDebounceCount < HOME_DEBOUNCE_DELAY)
  11452. homeDebounceCount++;
  11453. else
  11454. homeDebounceCount = 0;
  11455. }
  11456. #endif
  11457. #if ENABLED(USE_CONTROLLER_FAN)
  11458. controllerFan(); // Check if fan should be turned on to cool stepper drivers down
  11459. #endif
  11460. #if ENABLED(EXTRUDER_RUNOUT_PREVENT)
  11461. if (ELAPSED(ms, previous_cmd_ms + (EXTRUDER_RUNOUT_SECONDS) * 1000UL)
  11462. && thermalManager.degHotend(active_extruder) > EXTRUDER_RUNOUT_MINTEMP) {
  11463. #if ENABLED(SWITCHING_EXTRUDER)
  11464. const bool oldstatus = E0_ENABLE_READ;
  11465. enable_E0();
  11466. #else // !SWITCHING_EXTRUDER
  11467. bool oldstatus;
  11468. switch (active_extruder) {
  11469. default: oldstatus = E0_ENABLE_READ; enable_E0(); break;
  11470. #if E_STEPPERS > 1
  11471. case 1: oldstatus = E1_ENABLE_READ; enable_E1(); break;
  11472. #if E_STEPPERS > 2
  11473. case 2: oldstatus = E2_ENABLE_READ; enable_E2(); break;
  11474. #if E_STEPPERS > 3
  11475. case 3: oldstatus = E3_ENABLE_READ; enable_E3(); break;
  11476. #if E_STEPPERS > 4
  11477. case 4: oldstatus = E4_ENABLE_READ; enable_E4(); break;
  11478. #endif // E_STEPPERS > 4
  11479. #endif // E_STEPPERS > 3
  11480. #endif // E_STEPPERS > 2
  11481. #endif // E_STEPPERS > 1
  11482. }
  11483. #endif // !SWITCHING_EXTRUDER
  11484. previous_cmd_ms = ms; // refresh_cmd_timeout()
  11485. const float olde = current_position[E_AXIS];
  11486. current_position[E_AXIS] += EXTRUDER_RUNOUT_EXTRUDE;
  11487. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(EXTRUDER_RUNOUT_SPEED), active_extruder);
  11488. current_position[E_AXIS] = olde;
  11489. planner.set_e_position_mm(olde);
  11490. stepper.synchronize();
  11491. #if ENABLED(SWITCHING_EXTRUDER)
  11492. E0_ENABLE_WRITE(oldstatus);
  11493. #else
  11494. switch (active_extruder) {
  11495. case 0: E0_ENABLE_WRITE(oldstatus); break;
  11496. #if E_STEPPERS > 1
  11497. case 1: E1_ENABLE_WRITE(oldstatus); break;
  11498. #if E_STEPPERS > 2
  11499. case 2: E2_ENABLE_WRITE(oldstatus); break;
  11500. #if E_STEPPERS > 3
  11501. case 3: E3_ENABLE_WRITE(oldstatus); break;
  11502. #if E_STEPPERS > 4
  11503. case 4: E4_ENABLE_WRITE(oldstatus); break;
  11504. #endif // E_STEPPERS > 4
  11505. #endif // E_STEPPERS > 3
  11506. #endif // E_STEPPERS > 2
  11507. #endif // E_STEPPERS > 1
  11508. }
  11509. #endif // !SWITCHING_EXTRUDER
  11510. }
  11511. #endif // EXTRUDER_RUNOUT_PREVENT
  11512. #if ENABLED(DUAL_X_CARRIAGE)
  11513. // handle delayed move timeout
  11514. if (delayed_move_time && ELAPSED(ms, delayed_move_time + 1000UL) && IsRunning()) {
  11515. // travel moves have been received so enact them
  11516. delayed_move_time = 0xFFFFFFFFUL; // force moves to be done
  11517. set_destination_from_current();
  11518. prepare_move_to_destination();
  11519. }
  11520. #endif
  11521. #if ENABLED(TEMP_STAT_LEDS)
  11522. handle_status_leds();
  11523. #endif
  11524. #if ENABLED(HAVE_TMC2130)
  11525. checkOverTemp();
  11526. #endif
  11527. planner.check_axes_activity();
  11528. }
  11529. /**
  11530. * Standard idle routine keeps the machine alive
  11531. */
  11532. void idle(
  11533. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  11534. bool no_stepper_sleep/*=false*/
  11535. #endif
  11536. ) {
  11537. #if ENABLED(MAX7219_DEBUG)
  11538. Max7219_idle_tasks();
  11539. #endif // MAX7219_DEBUG
  11540. lcd_update();
  11541. host_keepalive();
  11542. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  11543. auto_report_temperatures();
  11544. #endif
  11545. manage_inactivity(
  11546. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  11547. no_stepper_sleep
  11548. #endif
  11549. );
  11550. thermalManager.manage_heater();
  11551. #if ENABLED(PRINTCOUNTER)
  11552. print_job_timer.tick();
  11553. #endif
  11554. #if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
  11555. buzzer.tick();
  11556. #endif
  11557. #if ENABLED(I2C_POSITION_ENCODERS)
  11558. if (planner.blocks_queued() &&
  11559. ( (blockBufferIndexRef != planner.block_buffer_head) ||
  11560. ((lastUpdateMillis + I2CPE_MIN_UPD_TIME_MS) < millis())) ) {
  11561. blockBufferIndexRef = planner.block_buffer_head;
  11562. I2CPEM.update();
  11563. lastUpdateMillis = millis();
  11564. }
  11565. #endif
  11566. }
  11567. /**
  11568. * Kill all activity and lock the machine.
  11569. * After this the machine will need to be reset.
  11570. */
  11571. void kill(const char* lcd_msg) {
  11572. SERIAL_ERROR_START();
  11573. SERIAL_ERRORLNPGM(MSG_ERR_KILLED);
  11574. thermalManager.disable_all_heaters();
  11575. disable_all_steppers();
  11576. #if ENABLED(ULTRA_LCD)
  11577. kill_screen(lcd_msg);
  11578. #else
  11579. UNUSED(lcd_msg);
  11580. #endif
  11581. _delay_ms(600); // Wait a short time (allows messages to get out before shutting down.
  11582. cli(); // Stop interrupts
  11583. _delay_ms(250); //Wait to ensure all interrupts routines stopped
  11584. thermalManager.disable_all_heaters(); //turn off heaters again
  11585. #ifdef ACTION_ON_KILL
  11586. SERIAL_ECHOLNPGM("//action:" ACTION_ON_KILL);
  11587. #endif
  11588. #if HAS_POWER_SWITCH
  11589. SET_INPUT(PS_ON_PIN);
  11590. #endif
  11591. suicide();
  11592. while (1) {
  11593. #if ENABLED(USE_WATCHDOG)
  11594. watchdog_reset();
  11595. #endif
  11596. } // Wait for reset
  11597. }
  11598. /**
  11599. * Turn off heaters and stop the print in progress
  11600. * After a stop the machine may be resumed with M999
  11601. */
  11602. void stop() {
  11603. thermalManager.disable_all_heaters(); // 'unpause' taken care of in here
  11604. #if ENABLED(PROBING_FANS_OFF)
  11605. if (fans_paused) fans_pause(false); // put things back the way they were
  11606. #endif
  11607. if (IsRunning()) {
  11608. Stopped_gcode_LastN = gcode_LastN; // Save last g_code for restart
  11609. SERIAL_ERROR_START();
  11610. SERIAL_ERRORLNPGM(MSG_ERR_STOPPED);
  11611. LCD_MESSAGEPGM(MSG_STOPPED);
  11612. safe_delay(350); // allow enough time for messages to get out before stopping
  11613. Running = false;
  11614. }
  11615. }
  11616. /**
  11617. * Marlin entry-point: Set up before the program loop
  11618. * - Set up the kill pin, filament runout, power hold
  11619. * - Start the serial port
  11620. * - Print startup messages and diagnostics
  11621. * - Get EEPROM or default settings
  11622. * - Initialize managers for:
  11623. * • temperature
  11624. * • planner
  11625. * • watchdog
  11626. * • stepper
  11627. * • photo pin
  11628. * • servos
  11629. * • LCD controller
  11630. * • Digipot I2C
  11631. * • Z probe sled
  11632. * • status LEDs
  11633. */
  11634. void setup() {
  11635. #if ENABLED(MAX7219_DEBUG)
  11636. Max7219_init();
  11637. #endif
  11638. #ifdef DISABLE_JTAG
  11639. // Disable JTAG on AT90USB chips to free up pins for IO
  11640. MCUCR = 0x80;
  11641. MCUCR = 0x80;
  11642. #endif
  11643. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  11644. setup_filrunoutpin();
  11645. #endif
  11646. setup_killpin();
  11647. setup_powerhold();
  11648. #if HAS_STEPPER_RESET
  11649. disableStepperDrivers();
  11650. #endif
  11651. MYSERIAL.begin(BAUDRATE);
  11652. SERIAL_PROTOCOLLNPGM("start");
  11653. SERIAL_ECHO_START();
  11654. // Check startup - does nothing if bootloader sets MCUSR to 0
  11655. byte mcu = MCUSR;
  11656. if (mcu & 1) SERIAL_ECHOLNPGM(MSG_POWERUP);
  11657. if (mcu & 2) SERIAL_ECHOLNPGM(MSG_EXTERNAL_RESET);
  11658. if (mcu & 4) SERIAL_ECHOLNPGM(MSG_BROWNOUT_RESET);
  11659. if (mcu & 8) SERIAL_ECHOLNPGM(MSG_WATCHDOG_RESET);
  11660. if (mcu & 32) SERIAL_ECHOLNPGM(MSG_SOFTWARE_RESET);
  11661. MCUSR = 0;
  11662. SERIAL_ECHOPGM(MSG_MARLIN);
  11663. SERIAL_CHAR(' ');
  11664. SERIAL_ECHOLNPGM(SHORT_BUILD_VERSION);
  11665. SERIAL_EOL();
  11666. #if defined(STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
  11667. SERIAL_ECHO_START();
  11668. SERIAL_ECHOPGM(MSG_CONFIGURATION_VER);
  11669. SERIAL_ECHOPGM(STRING_DISTRIBUTION_DATE);
  11670. SERIAL_ECHOLNPGM(MSG_AUTHOR STRING_CONFIG_H_AUTHOR);
  11671. SERIAL_ECHO_START();
  11672. SERIAL_ECHOLNPGM("Compiled: " __DATE__);
  11673. #endif
  11674. SERIAL_ECHO_START();
  11675. SERIAL_ECHOPAIR(MSG_FREE_MEMORY, freeMemory());
  11676. SERIAL_ECHOLNPAIR(MSG_PLANNER_BUFFER_BYTES, (int)sizeof(block_t)*BLOCK_BUFFER_SIZE);
  11677. // Send "ok" after commands by default
  11678. for (int8_t i = 0; i < BUFSIZE; i++) send_ok[i] = true;
  11679. // Load data from EEPROM if available (or use defaults)
  11680. // This also updates variables in the planner, elsewhere
  11681. (void)settings.load();
  11682. #if HAS_M206_COMMAND
  11683. // Initialize current position based on home_offset
  11684. COPY(current_position, home_offset);
  11685. #else
  11686. ZERO(current_position);
  11687. #endif
  11688. // Vital to init stepper/planner equivalent for current_position
  11689. SYNC_PLAN_POSITION_KINEMATIC();
  11690. thermalManager.init(); // Initialize temperature loop
  11691. #if ENABLED(USE_WATCHDOG)
  11692. watchdog_init();
  11693. #endif
  11694. stepper.init(); // Initialize stepper, this enables interrupts!
  11695. servo_init();
  11696. #if HAS_PHOTOGRAPH
  11697. OUT_WRITE(PHOTOGRAPH_PIN, LOW);
  11698. #endif
  11699. #if HAS_CASE_LIGHT
  11700. case_light_on = CASE_LIGHT_DEFAULT_ON;
  11701. case_light_brightness = CASE_LIGHT_DEFAULT_BRIGHTNESS;
  11702. update_case_light();
  11703. #endif
  11704. #if ENABLED(SPINDLE_LASER_ENABLE)
  11705. OUT_WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // init spindle to off
  11706. #if SPINDLE_DIR_CHANGE
  11707. OUT_WRITE(SPINDLE_DIR_PIN, SPINDLE_INVERT_DIR ? 255 : 0); // init rotation to clockwise (M3)
  11708. #endif
  11709. #if ENABLED(SPINDLE_LASER_PWM)
  11710. SET_OUTPUT(SPINDLE_LASER_PWM_PIN);
  11711. analogWrite(SPINDLE_LASER_PWM_PIN, SPINDLE_LASER_PWM_INVERT ? 255 : 0); // set to lowest speed
  11712. #endif
  11713. #endif
  11714. #if HAS_BED_PROBE
  11715. endstops.enable_z_probe(false);
  11716. #endif
  11717. #if ENABLED(USE_CONTROLLER_FAN)
  11718. SET_OUTPUT(CONTROLLER_FAN_PIN); //Set pin used for driver cooling fan
  11719. #endif
  11720. #if HAS_STEPPER_RESET
  11721. enableStepperDrivers();
  11722. #endif
  11723. #if ENABLED(DIGIPOT_I2C)
  11724. digipot_i2c_init();
  11725. #endif
  11726. #if ENABLED(DAC_STEPPER_CURRENT)
  11727. dac_init();
  11728. #endif
  11729. #if (ENABLED(Z_PROBE_SLED) || ENABLED(SOLENOID_PROBE)) && HAS_SOLENOID_1
  11730. OUT_WRITE(SOL1_PIN, LOW); // turn it off
  11731. #endif
  11732. #if HAS_HOME
  11733. SET_INPUT_PULLUP(HOME_PIN);
  11734. #endif
  11735. #if PIN_EXISTS(STAT_LED_RED)
  11736. OUT_WRITE(STAT_LED_RED_PIN, LOW); // turn it off
  11737. #endif
  11738. #if PIN_EXISTS(STAT_LED_BLUE)
  11739. OUT_WRITE(STAT_LED_BLUE_PIN, LOW); // turn it off
  11740. #endif
  11741. #if ENABLED(NEOPIXEL_LED)
  11742. SET_OUTPUT(NEOPIXEL_PIN);
  11743. setup_neopixel();
  11744. #endif
  11745. #if ENABLED(RGB_LED) || ENABLED(RGBW_LED)
  11746. SET_OUTPUT(RGB_LED_R_PIN);
  11747. SET_OUTPUT(RGB_LED_G_PIN);
  11748. SET_OUTPUT(RGB_LED_B_PIN);
  11749. #if ENABLED(RGBW_LED)
  11750. SET_OUTPUT(RGB_LED_W_PIN);
  11751. #endif
  11752. #endif
  11753. #if ENABLED(MK2_MULTIPLEXER)
  11754. SET_OUTPUT(E_MUX0_PIN);
  11755. SET_OUTPUT(E_MUX1_PIN);
  11756. SET_OUTPUT(E_MUX2_PIN);
  11757. #endif
  11758. #if HAS_FANMUX
  11759. fanmux_init();
  11760. #endif
  11761. lcd_init();
  11762. #if ENABLED(SHOW_BOOTSCREEN)
  11763. lcd_bootscreen();
  11764. #if ENABLED(ULTRA_LCD) && DISABLED(SDSUPPORT)
  11765. lcd_init();
  11766. #endif
  11767. #endif
  11768. #if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
  11769. // Initialize mixing to 100% color 1
  11770. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  11771. mixing_factor[i] = (i == 0) ? 1.0 : 0.0;
  11772. for (uint8_t t = 0; t < MIXING_VIRTUAL_TOOLS; t++)
  11773. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  11774. mixing_virtual_tool_mix[t][i] = mixing_factor[i];
  11775. #endif
  11776. #if ENABLED(BLTOUCH)
  11777. // Make sure any BLTouch error condition is cleared
  11778. bltouch_command(BLTOUCH_RESET);
  11779. set_bltouch_deployed(true);
  11780. set_bltouch_deployed(false);
  11781. #endif
  11782. #if ENABLED(I2C_POSITION_ENCODERS)
  11783. I2CPEM.init();
  11784. #endif
  11785. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  11786. i2c.onReceive(i2c_on_receive);
  11787. i2c.onRequest(i2c_on_request);
  11788. #endif
  11789. #if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
  11790. setup_endstop_interrupts();
  11791. #endif
  11792. #if ENABLED(SWITCHING_EXTRUDER) && !DONT_SWITCH
  11793. move_extruder_servo(0); // Initialize extruder servo
  11794. #endif
  11795. #if ENABLED(SWITCHING_NOZZLE)
  11796. move_nozzle_servo(0); // Initialize nozzle servo
  11797. #endif
  11798. #if ENABLED(PARKING_EXTRUDER)
  11799. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  11800. pe_activate_magnet(0);
  11801. pe_activate_magnet(1);
  11802. #else
  11803. pe_deactivate_magnet(0);
  11804. pe_deactivate_magnet(1);
  11805. #endif
  11806. #endif
  11807. #if ENABLED(MKS_12864OLED)
  11808. SET_OUTPUT(LCD_PINS_DC);
  11809. OUT_WRITE(LCD_PINS_RS, LOW);
  11810. delay(1000);
  11811. WRITE(LCD_PINS_RS, HIGH);
  11812. #endif
  11813. }
  11814. /**
  11815. * The main Marlin program loop
  11816. *
  11817. * - Save or log commands to SD
  11818. * - Process available commands (if not saving)
  11819. * - Call heater manager
  11820. * - Call inactivity manager
  11821. * - Call endstop manager
  11822. * - Call LCD update
  11823. */
  11824. void loop() {
  11825. if (commands_in_queue < BUFSIZE) get_available_commands();
  11826. #if ENABLED(SDSUPPORT)
  11827. card.checkautostart(false);
  11828. #endif
  11829. if (commands_in_queue) {
  11830. #if ENABLED(SDSUPPORT)
  11831. if (card.saving) {
  11832. char* command = command_queue[cmd_queue_index_r];
  11833. if (strstr_P(command, PSTR("M29"))) {
  11834. // M29 closes the file
  11835. card.closefile();
  11836. SERIAL_PROTOCOLLNPGM(MSG_FILE_SAVED);
  11837. #if ENABLED(SERIAL_STATS_DROPPED_RX)
  11838. SERIAL_ECHOLNPAIR("Dropped bytes: ", customizedSerial.dropped());
  11839. #endif
  11840. #if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
  11841. SERIAL_ECHOLNPAIR("Max RX Queue Size: ", customizedSerial.rxMaxEnqueued());
  11842. #endif
  11843. ok_to_send();
  11844. }
  11845. else {
  11846. // Write the string from the read buffer to SD
  11847. card.write_command(command);
  11848. if (card.logging)
  11849. process_next_command(); // The card is saving because it's logging
  11850. else
  11851. ok_to_send();
  11852. }
  11853. }
  11854. else
  11855. process_next_command();
  11856. #else
  11857. process_next_command();
  11858. #endif // SDSUPPORT
  11859. // The queue may be reset by a command handler or by code invoked by idle() within a handler
  11860. if (commands_in_queue) {
  11861. --commands_in_queue;
  11862. if (++cmd_queue_index_r >= BUFSIZE) cmd_queue_index_r = 0;
  11863. }
  11864. }
  11865. endstops.report_state();
  11866. idle();
  11867. }