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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016, 2017 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * About Marlin
  24. *
  25. * This firmware is a mashup between Sprinter and grbl.
  26. * - https://github.com/kliment/Sprinter
  27. * - https://github.com/simen/grbl/tree
  28. */
  29. /**
  30. * -----------------
  31. * G-Codes in Marlin
  32. * -----------------
  33. *
  34. * Helpful G-code references:
  35. * - http://linuxcnc.org/handbook/gcode/g-code.html
  36. * - http://objects.reprap.org/wiki/Mendel_User_Manual:_RepRapGCodes
  37. *
  38. * Help to document Marlin's G-codes online:
  39. * - http://reprap.org/wiki/G-code
  40. * - https://github.com/MarlinFirmware/MarlinDocumentation
  41. *
  42. * -----------------
  43. *
  44. * "G" Codes
  45. *
  46. * G0 -> G1
  47. * G1 - Coordinated Movement X Y Z E
  48. * G2 - CW ARC
  49. * G3 - CCW ARC
  50. * G4 - Dwell S<seconds> or P<milliseconds>
  51. * G5 - Cubic B-spline with XYZE destination and IJPQ offsets
  52. * G10 - Retract filament according to settings of M207
  53. * G11 - Retract recover filament according to settings of M208
  54. * G12 - Clean tool
  55. * G20 - Set input units to inches
  56. * G21 - Set input units to millimeters
  57. * G28 - Home one or more axes
  58. * G29 - Detailed Z probe, probes the bed at 3 or more points. Will fail if you haven't homed yet.
  59. * G30 - Single Z probe, probes bed at X Y location (defaults to current XY location)
  60. * G31 - Dock sled (Z_PROBE_SLED only)
  61. * G32 - Undock sled (Z_PROBE_SLED only)
  62. * G38 - Probe target - similar to G28 except it uses the Z_MIN endstop for all three axes
  63. * G90 - Use Absolute Coordinates
  64. * G91 - Use Relative Coordinates
  65. * G92 - Set current position to coordinates given
  66. *
  67. * "M" Codes
  68. *
  69. * M0 - Unconditional stop - Wait for user to press a button on the LCD (Only if ULTRA_LCD is enabled)
  70. * M1 - Same as M0
  71. * M17 - Enable/Power all stepper motors
  72. * M18 - Disable all stepper motors; same as M84
  73. * M20 - List SD card. (Requires SDSUPPORT)
  74. * M21 - Init SD card. (Requires SDSUPPORT)
  75. * M22 - Release SD card. (Requires SDSUPPORT)
  76. * M23 - Select SD file: "M23 /path/file.gco". (Requires SDSUPPORT)
  77. * M24 - Start/resume SD print. (Requires SDSUPPORT)
  78. * M25 - Pause SD print. (Requires SDSUPPORT)
  79. * M26 - Set SD position in bytes: "M26 S12345". (Requires SDSUPPORT)
  80. * M27 - Report SD print status. (Requires SDSUPPORT)
  81. * M28 - Start SD write: "M28 /path/file.gco". (Requires SDSUPPORT)
  82. * M29 - Stop SD write. (Requires SDSUPPORT)
  83. * M30 - Delete file from SD: "M30 /path/file.gco"
  84. * M31 - Report time since last M109 or SD card start to serial.
  85. * M32 - Select file and start SD print: "M32 [S<bytepos>] !/path/file.gco#". (Requires SDSUPPORT)
  86. * Use P to run other files as sub-programs: "M32 P !filename#"
  87. * The '#' is necessary when calling from within sd files, as it stops buffer prereading
  88. * M33 - Get the longname version of a path. (Requires LONG_FILENAME_HOST_SUPPORT)
  89. * M34 - Set SD Card sorting options. (Requires SDCARD_SORT_ALPHA)
  90. * M42 - Change pin status via gcode: M42 P<pin> S<value>. LED pin assumed if P is omitted.
  91. * M43 - Monitor pins & report changes - report active pins
  92. * M48 - Measure Z Probe repeatability: M48 P<points> X<pos> Y<pos> V<level> E<engage> L<legs>. (Requires Z_MIN_PROBE_REPEATABILITY_TEST)
  93. * M75 - Start the print job timer.
  94. * M76 - Pause the print job timer.
  95. * M77 - Stop the print job timer.
  96. * M78 - Show statistical information about the print jobs. (Requires PRINTCOUNTER)
  97. * M80 - Turn on Power Supply. (Requires POWER_SUPPLY)
  98. * M81 - Turn off Power Supply. (Requires POWER_SUPPLY)
  99. * M82 - Set E codes absolute (default).
  100. * M83 - Set E codes relative while in Absolute (G90) mode.
  101. * M84 - Disable steppers until next move, or use S<seconds> to specify an idle
  102. * duration after which steppers should turn off. S0 disables the timeout.
  103. * M85 - Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
  104. * M92 - Set planner.axis_steps_per_mm for one or more axes.
  105. * M104 - Set extruder target temp.
  106. * M105 - Report current temperatures.
  107. * M106 - Fan on.
  108. * M107 - Fan off.
  109. * M108 - Break out of heating loops (M109, M190, M303). With no controller, breaks out of M0/M1. (Requires EMERGENCY_PARSER)
  110. * M109 - Sxxx Wait for extruder current temp to reach target temp. Waits only when heating
  111. * Rxxx Wait for extruder current temp to reach target temp. Waits when heating and cooling
  112. * If AUTOTEMP is enabled, S<mintemp> B<maxtemp> F<factor>. Exit autotemp by any M109 without F
  113. * M110 - Set the current line number. (Used by host printing)
  114. * M111 - Set debug flags: "M111 S<flagbits>". See flag bits defined in enum.h.
  115. * M112 - Emergency stop.
  116. * M113 - Get or set the timeout interval for Host Keepalive "busy" messages. (Requires HOST_KEEPALIVE_FEATURE)
  117. * M114 - Report current position.
  118. * M115 - Report capabilities. (Extended capabilities requires EXTENDED_CAPABILITIES_REPORT)
  119. * M117 - Display a message on the controller screen. (Requires an LCD)
  120. * M119 - Report endstops status.
  121. * M120 - Enable endstops detection.
  122. * M121 - Disable endstops detection.
  123. * M125 - Save current position and move to filament change position. (Requires PARK_HEAD_ON_PAUSE)
  124. * M126 - Solenoid Air Valve Open. (Requires BARICUDA)
  125. * M127 - Solenoid Air Valve Closed. (Requires BARICUDA)
  126. * M128 - EtoP Open. (Requires BARICUDA)
  127. * M129 - EtoP Closed. (Requires BARICUDA)
  128. * M140 - Set bed target temp. S<temp>
  129. * M145 - Set heatup values for materials on the LCD. H<hotend> B<bed> F<fan speed> for S<material> (0=PLA, 1=ABS)
  130. * M149 - Set temperature units. (Requires TEMPERATURE_UNITS_SUPPORT)
  131. * M150 - Set Status LED Color as R<red> U<green> B<blue>. Values 0-255. (Requires BLINKM or RGB_LED)
  132. * M155 - Auto-report temperatures with interval of S<seconds>. (Requires AUTO_REPORT_TEMPERATURES)
  133. * M163 - Set a single proportion for a mixing extruder. (Requires MIXING_EXTRUDER)
  134. * M164 - Save the mix as a virtual extruder. (Requires MIXING_EXTRUDER and MIXING_VIRTUAL_TOOLS)
  135. * M165 - Set the proportions for a mixing extruder. Use parameters ABCDHI to set the mixing factors. (Requires MIXING_EXTRUDER)
  136. * M190 - Sxxx Wait for bed current temp to reach target temp. ** Waits only when heating! **
  137. * Rxxx Wait for bed current temp to reach target temp. ** Waits for heating or cooling. **
  138. * M200 - Set filament diameter, D<diameter>, setting E axis units to cubic. (Use S0 to revert to linear units.)
  139. * M201 - Set max acceleration in units/s^2 for print moves: "M201 X<accel> Y<accel> Z<accel> E<accel>"
  140. * M202 - Set max acceleration in units/s^2 for travel moves: "M202 X<accel> Y<accel> Z<accel> E<accel>" ** UNUSED IN MARLIN! **
  141. * M203 - Set maximum feedrate: "M203 X<fr> Y<fr> Z<fr> E<fr>" in units/sec.
  142. * M204 - Set default acceleration in units/sec^2: P<printing> R<extruder_only> T<travel>
  143. * M205 - Set advanced settings. Current units apply:
  144. S<print> T<travel> minimum speeds
  145. B<minimum segment time>
  146. X<max X jerk>, Y<max Y jerk>, Z<max Z jerk>, E<max E jerk>
  147. * M206 - Set additional homing offset.
  148. * M207 - Set Retract Length: S<length>, Feedrate: F<units/min>, and Z lift: Z<distance>. (Requires FWRETRACT)
  149. * M208 - Set Recover (unretract) Additional (!) Length: S<length> and Feedrate: F<units/min>. (Requires FWRETRACT)
  150. * M209 - Turn Automatic Retract Detection on/off: S<0|1> (For slicers that don't support G10/11). (Requires FWRETRACT)
  151. Every normal extrude-only move will be classified as retract depending on the direction.
  152. * M211 - Enable, Disable, and/or Report software endstops: S<0|1> (Requires MIN_SOFTWARE_ENDSTOPS or MAX_SOFTWARE_ENDSTOPS)
  153. * M218 - Set a tool offset: "M218 T<index> X<offset> Y<offset>". (Requires 2 or more extruders)
  154. * M220 - Set Feedrate Percentage: "M220 S<percent>" (i.e., "FR" on the LCD)
  155. * M221 - Set Flow Percentage: "M221 S<percent>"
  156. * M226 - Wait until a pin is in a given state: "M226 P<pin> S<state>"
  157. * M240 - Trigger a camera to take a photograph. (Requires CHDK or PHOTOGRAPH_PIN)
  158. * M250 - Set LCD contrast: "M250 C<contrast>" (0-63). (Requires LCD support)
  159. * M260 - i2c Send Data (Requires EXPERIMENTAL_I2CBUS)
  160. * M261 - i2c Request Data (Requires EXPERIMENTAL_I2CBUS)
  161. * M280 - Set servo position absolute: "M280 P<index> S<angle|µs>". (Requires servos)
  162. * M300 - Play beep sound S<frequency Hz> P<duration ms>
  163. * M301 - Set PID parameters P I and D. (Requires PIDTEMP)
  164. * M302 - Allow cold extrudes, or set the minimum extrude S<temperature>. (Requires PREVENT_COLD_EXTRUSION)
  165. * M303 - PID relay autotune S<temperature> sets the target temperature. Default 150C. (Requires PIDTEMP)
  166. * M304 - Set bed PID parameters P I and D. (Requires PIDTEMPBED)
  167. * M355 - Turn the Case Light on/off and set its brightness. (Requires CASE_LIGHT_PIN)
  168. * M380 - Activate solenoid on active extruder. (Requires EXT_SOLENOID)
  169. * M381 - Disable all solenoids. (Requires EXT_SOLENOID)
  170. * M400 - Finish all moves.
  171. * M401 - Lower Z probe. (Requires a probe)
  172. * M402 - Raise Z probe. (Requires a probe)
  173. * M404 - Display or set the Nominal Filament Width: "W<diameter>". (Requires FILAMENT_WIDTH_SENSOR)
  174. * M405 - Enable Filament Sensor flow control. "M405 D<delay_cm>". (Requires FILAMENT_WIDTH_SENSOR)
  175. * M406 - Disable Filament Sensor flow control. (Requires FILAMENT_WIDTH_SENSOR)
  176. * M407 - Display measured filament diameter in millimeters. (Requires FILAMENT_WIDTH_SENSOR)
  177. * M410 - Quickstop. Abort all planned moves.
  178. * M420 - Enable/Disable Leveling (with current values) S1=enable S0=disable (Requires MESH_BED_LEVELING or ABL)
  179. * M421 - Set a single Z coordinate in the Mesh Leveling grid. X<units> Y<units> Z<units> (Requires MESH_BED_LEVELING)
  180. * M428 - Set the home_offset based on the current_position. Nearest edge applies.
  181. * M500 - Store parameters in EEPROM. (Requires EEPROM_SETTINGS)
  182. * M501 - Restore parameters from EEPROM. (Requires EEPROM_SETTINGS)
  183. * M502 - Revert to the default "factory settings". ** Does not write them to EEPROM! **
  184. * M503 - Print the current settings (in memory): "M503 S<verbose>". S0 specifies compact output.
  185. * M540 - Enable/disable SD card abort on endstop hit: "M540 S<state>". (Requires ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  186. * M600 - Pause for filament change: "M600 X<pos> Y<pos> Z<raise> E<first_retract> L<later_retract>". (Requires FILAMENT_CHANGE_FEATURE)
  187. * 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)
  188. * M666 - Set delta endstop adjustment. (Requires DELTA)
  189. * M605 - Set dual x-carriage movement mode: "M605 S<mode> [X<x_offset>] [R<temp_offset>]". (Requires DUAL_X_CARRIAGE)
  190. * M851 - Set Z probe's Z offset in current units. (Negative = below the nozzle.)
  191. * 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)
  192. * M907 - Set digital trimpot motor current using axis codes. (Requires a board with digital trimpots)
  193. * M908 - Control digital trimpot directly. (Requires DAC_STEPPER_CURRENT or DIGIPOTSS_PIN)
  194. * M909 - Print digipot/DAC current value. (Requires DAC_STEPPER_CURRENT)
  195. * M910 - Commit digipot/DAC value to external EEPROM via I2C. (Requires DAC_STEPPER_CURRENT)
  196. * M911 - Report stepper driver overtemperature pre-warn condition. (Requires HAVE_TMC2130)
  197. * M912 - Clear stepper driver overtemperature pre-warn condition flag. (Requires HAVE_TMC2130)
  198. * M350 - Set microstepping mode. (Requires digital microstepping pins.)
  199. * M351 - Toggle MS1 MS2 pins directly. (Requires digital microstepping pins.)
  200. *
  201. * M360 - SCARA calibration: Move to cal-position ThetaA (0 deg calibration)
  202. * M361 - SCARA calibration: Move to cal-position ThetaB (90 deg calibration - steps per degree)
  203. * M362 - SCARA calibration: Move to cal-position PsiA (0 deg calibration)
  204. * M363 - SCARA calibration: Move to cal-position PsiB (90 deg calibration - steps per degree)
  205. * M364 - SCARA calibration: Move to cal-position PSIC (90 deg to Theta calibration position)
  206. *
  207. * ************ Custom codes - This can change to suit future G-code regulations
  208. * M100 - Watch Free Memory (For Debugging). (Requires M100_FREE_MEMORY_WATCHER)
  209. * M928 - Start SD logging: "M928 filename.gco". Stop with M29. (Requires SDSUPPORT)
  210. * M999 - Restart after being stopped by error
  211. *
  212. * "T" Codes
  213. *
  214. * T0-T3 - Select an extruder (tool) by index: "T<n> F<units/min>"
  215. *
  216. */
  217. #include "Marlin.h"
  218. #include "ultralcd.h"
  219. #include "planner.h"
  220. #include "stepper.h"
  221. #include "endstops.h"
  222. #include "temperature.h"
  223. #include "cardreader.h"
  224. #include "configuration_store.h"
  225. #include "language.h"
  226. #include "pins_arduino.h"
  227. #include "math.h"
  228. #include "nozzle.h"
  229. #include "duration_t.h"
  230. #include "types.h"
  231. #if HAS_ABL
  232. #include "vector_3.h"
  233. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  234. #include "qr_solve.h"
  235. #endif
  236. #elif ENABLED(MESH_BED_LEVELING)
  237. #include "mesh_bed_leveling.h"
  238. #endif
  239. #if ENABLED(BEZIER_CURVE_SUPPORT)
  240. #include "planner_bezier.h"
  241. #endif
  242. #if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
  243. #include "buzzer.h"
  244. #endif
  245. #if ENABLED(USE_WATCHDOG)
  246. #include "watchdog.h"
  247. #endif
  248. #if ENABLED(BLINKM)
  249. #include "blinkm.h"
  250. #include "Wire.h"
  251. #endif
  252. #if HAS_SERVOS
  253. #include "servo.h"
  254. #endif
  255. #if HAS_DIGIPOTSS
  256. #include <SPI.h>
  257. #endif
  258. #if ENABLED(DAC_STEPPER_CURRENT)
  259. #include "stepper_dac.h"
  260. #endif
  261. #if ENABLED(EXPERIMENTAL_I2CBUS)
  262. #include "twibus.h"
  263. #endif
  264. #if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
  265. #include "endstop_interrupts.h"
  266. #endif
  267. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  268. void gcode_M100();
  269. #endif
  270. #if ENABLED(SDSUPPORT)
  271. CardReader card;
  272. #endif
  273. #if ENABLED(EXPERIMENTAL_I2CBUS)
  274. TWIBus i2c;
  275. #endif
  276. #if ENABLED(G38_PROBE_TARGET)
  277. bool G38_move = false,
  278. G38_endstop_hit = false;
  279. #endif
  280. #if ENABLED(AUTO_BED_LEVELING_UBL)
  281. #include "UBL.h"
  282. unified_bed_leveling ubl;
  283. #define UBL_MESH_VALID !( z_values[0][0] == z_values[0][1] && z_values[0][1] == z_values[0][2] \
  284. && z_values[1][0] == z_values[1][1] && z_values[1][1] == z_values[1][2] \
  285. && z_values[2][0] == z_values[2][1] && z_values[2][1] == z_values[2][2] \
  286. && z_values[0][0] == 0 && z_values[1][0] == 0 && z_values[2][0] == 0 \
  287. || isnan(z_values[0][0]))
  288. #endif
  289. bool Running = true;
  290. uint8_t marlin_debug_flags = DEBUG_NONE;
  291. /**
  292. * Cartesian Current Position
  293. * Used to track the logical position as moves are queued.
  294. * Used by 'line_to_current_position' to do a move after changing it.
  295. * Used by 'SYNC_PLAN_POSITION_KINEMATIC' to update 'planner.position'.
  296. */
  297. float current_position[XYZE] = { 0.0 };
  298. /**
  299. * Cartesian Destination
  300. * A temporary position, usually applied to 'current_position'.
  301. * Set with 'gcode_get_destination' or 'set_destination_to_current'.
  302. * 'line_to_destination' sets 'current_position' to 'destination'.
  303. */
  304. float destination[XYZE] = { 0.0 };
  305. /**
  306. * axis_homed
  307. * Flags that each linear axis was homed.
  308. * XYZ on cartesian, ABC on delta, ABZ on SCARA.
  309. *
  310. * axis_known_position
  311. * Flags that the position is known in each linear axis. Set when homed.
  312. * Cleared whenever a stepper powers off, potentially losing its position.
  313. */
  314. bool axis_homed[XYZ] = { false }, axis_known_position[XYZ] = { false };
  315. /**
  316. * GCode line number handling. Hosts may opt to include line numbers when
  317. * sending commands to Marlin, and lines will be checked for sequentiality.
  318. * M110 N<int> sets the current line number.
  319. */
  320. static long gcode_N, gcode_LastN, Stopped_gcode_LastN = 0;
  321. /**
  322. * GCode Command Queue
  323. * A simple ring buffer of BUFSIZE command strings.
  324. *
  325. * Commands are copied into this buffer by the command injectors
  326. * (immediate, serial, sd card) and they are processed sequentially by
  327. * the main loop. The process_next_command function parses the next
  328. * command and hands off execution to individual handler functions.
  329. */
  330. static char command_queue[BUFSIZE][MAX_CMD_SIZE];
  331. static uint8_t cmd_queue_index_r = 0, // Ring buffer read position
  332. cmd_queue_index_w = 0, // Ring buffer write position
  333. commands_in_queue = 0; // Count of commands in the queue
  334. /**
  335. * Current GCode Command
  336. * When a GCode handler is running, these will be set
  337. */
  338. static char *current_command, // The command currently being executed
  339. *current_command_args, // The address where arguments begin
  340. *seen_pointer; // Set by code_seen(), used by the code_value functions
  341. /**
  342. * Next Injected Command pointer. NULL if no commands are being injected.
  343. * Used by Marlin internally to ensure that commands initiated from within
  344. * are enqueued ahead of any pending serial or sd card commands.
  345. */
  346. static const char *injected_commands_P = NULL;
  347. #if ENABLED(INCH_MODE_SUPPORT)
  348. float linear_unit_factor = 1.0, volumetric_unit_factor = 1.0;
  349. #endif
  350. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  351. TempUnit input_temp_units = TEMPUNIT_C;
  352. #endif
  353. /**
  354. * Feed rates are often configured with mm/m
  355. * but the planner and stepper like mm/s units.
  356. */
  357. float constexpr homing_feedrate_mm_s[] = {
  358. #if ENABLED(DELTA)
  359. MMM_TO_MMS(HOMING_FEEDRATE_Z), MMM_TO_MMS(HOMING_FEEDRATE_Z),
  360. #else
  361. MMM_TO_MMS(HOMING_FEEDRATE_XY), MMM_TO_MMS(HOMING_FEEDRATE_XY),
  362. #endif
  363. MMM_TO_MMS(HOMING_FEEDRATE_Z), 0
  364. };
  365. static float feedrate_mm_s = MMM_TO_MMS(1500.0), saved_feedrate_mm_s;
  366. int feedrate_percentage = 100, saved_feedrate_percentage,
  367. flow_percentage[EXTRUDERS] = ARRAY_BY_EXTRUDERS1(100);
  368. bool axis_relative_modes[] = AXIS_RELATIVE_MODES,
  369. volumetric_enabled =
  370. #if ENABLED(VOLUMETRIC_DEFAULT_ON)
  371. true
  372. #else
  373. false
  374. #endif
  375. ;
  376. float filament_size[EXTRUDERS] = ARRAY_BY_EXTRUDERS1(DEFAULT_NOMINAL_FILAMENT_DIA),
  377. volumetric_multiplier[EXTRUDERS] = ARRAY_BY_EXTRUDERS1(1.0);
  378. #if DISABLED(NO_WORKSPACE_OFFSETS)
  379. // The distance that XYZ has been offset by G92. Reset by G28.
  380. float position_shift[XYZ] = { 0 };
  381. // This offset is added to the configured home position.
  382. // Set by M206, M428, or menu item. Saved to EEPROM.
  383. float home_offset[XYZ] = { 0 };
  384. // The above two are combined to save on computes
  385. float workspace_offset[XYZ] = { 0 };
  386. #endif
  387. // Software Endstops are based on the configured limits.
  388. #if HAS_SOFTWARE_ENDSTOPS
  389. bool soft_endstops_enabled = true;
  390. #endif
  391. float soft_endstop_min[XYZ] = { X_MIN_POS, Y_MIN_POS, Z_MIN_POS },
  392. soft_endstop_max[XYZ] = { X_MAX_POS, Y_MAX_POS, Z_MAX_POS };
  393. #if FAN_COUNT > 0
  394. int fanSpeeds[FAN_COUNT] = { 0 };
  395. #endif
  396. // The active extruder (tool). Set with T<extruder> command.
  397. uint8_t active_extruder = 0;
  398. // Relative Mode. Enable with G91, disable with G90.
  399. static bool relative_mode = false;
  400. // For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
  401. volatile bool wait_for_heatup = true;
  402. // For M0/M1, this flag may be cleared (by M108) to exit the wait-for-user loop
  403. #if ENABLED(EMERGENCY_PARSER) || ENABLED(ULTIPANEL)
  404. volatile bool wait_for_user = false;
  405. #endif
  406. const char errormagic[] PROGMEM = "Error:";
  407. const char echomagic[] PROGMEM = "echo:";
  408. const char axis_codes[XYZE] = {'X', 'Y', 'Z', 'E'};
  409. // Number of characters read in the current line of serial input
  410. static int serial_count = 0;
  411. // Inactivity shutdown
  412. millis_t previous_cmd_ms = 0;
  413. static millis_t max_inactive_time = 0;
  414. static millis_t stepper_inactive_time = (DEFAULT_STEPPER_DEACTIVE_TIME) * 1000UL;
  415. // Print Job Timer
  416. #if ENABLED(PRINTCOUNTER)
  417. PrintCounter print_job_timer = PrintCounter();
  418. #else
  419. Stopwatch print_job_timer = Stopwatch();
  420. #endif
  421. // Buzzer - I2C on the LCD or a BEEPER_PIN
  422. #if ENABLED(LCD_USE_I2C_BUZZER)
  423. #define BUZZ(d,f) lcd_buzz(d, f)
  424. #elif PIN_EXISTS(BEEPER)
  425. Buzzer buzzer;
  426. #define BUZZ(d,f) buzzer.tone(d, f)
  427. #else
  428. #define BUZZ(d,f) NOOP
  429. #endif
  430. static uint8_t target_extruder;
  431. #if HAS_BED_PROBE
  432. float zprobe_zoffset = Z_PROBE_OFFSET_FROM_EXTRUDER;
  433. #endif
  434. #define PLANNER_XY_FEEDRATE() (min(planner.max_feedrate_mm_s[X_AXIS], planner.max_feedrate_mm_s[Y_AXIS]))
  435. #if HAS_ABL
  436. float xy_probe_feedrate_mm_s = MMM_TO_MMS(XY_PROBE_SPEED);
  437. #define XY_PROBE_FEEDRATE_MM_S xy_probe_feedrate_mm_s
  438. #elif defined(XY_PROBE_SPEED)
  439. #define XY_PROBE_FEEDRATE_MM_S MMM_TO_MMS(XY_PROBE_SPEED)
  440. #else
  441. #define XY_PROBE_FEEDRATE_MM_S PLANNER_XY_FEEDRATE()
  442. #endif
  443. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  444. #if ENABLED(DELTA)
  445. #define ADJUST_DELTA(V) \
  446. if (planner.abl_enabled) { \
  447. const float zadj = bilinear_z_offset(V); \
  448. delta[A_AXIS] += zadj; \
  449. delta[B_AXIS] += zadj; \
  450. delta[C_AXIS] += zadj; \
  451. }
  452. #else
  453. #define ADJUST_DELTA(V) if (planner.abl_enabled) { delta[Z_AXIS] += bilinear_z_offset(V); }
  454. #endif
  455. #elif IS_KINEMATIC
  456. #define ADJUST_DELTA(V) NOOP
  457. #endif
  458. #if ENABLED(Z_DUAL_ENDSTOPS)
  459. float z_endstop_adj =
  460. #ifdef Z_DUAL_ENDSTOPS_ADJUSTMENT
  461. Z_DUAL_ENDSTOPS_ADJUSTMENT
  462. #else
  463. 0
  464. #endif
  465. ;
  466. #endif
  467. // Extruder offsets
  468. #if HOTENDS > 1
  469. float hotend_offset[XYZ][HOTENDS];
  470. #endif
  471. #if HAS_Z_SERVO_ENDSTOP
  472. const int z_servo_angle[2] = Z_SERVO_ANGLES;
  473. #endif
  474. #if ENABLED(BARICUDA)
  475. int baricuda_valve_pressure = 0;
  476. int baricuda_e_to_p_pressure = 0;
  477. #endif
  478. #if ENABLED(FWRETRACT)
  479. bool autoretract_enabled = false;
  480. bool retracted[EXTRUDERS] = { false };
  481. bool retracted_swap[EXTRUDERS] = { false };
  482. float retract_length = RETRACT_LENGTH;
  483. float retract_length_swap = RETRACT_LENGTH_SWAP;
  484. float retract_feedrate_mm_s = RETRACT_FEEDRATE;
  485. float retract_zlift = RETRACT_ZLIFT;
  486. float retract_recover_length = RETRACT_RECOVER_LENGTH;
  487. float retract_recover_length_swap = RETRACT_RECOVER_LENGTH_SWAP;
  488. float retract_recover_feedrate_mm_s = RETRACT_RECOVER_FEEDRATE;
  489. #endif // FWRETRACT
  490. #if ENABLED(ULTIPANEL) && HAS_POWER_SWITCH
  491. bool powersupply =
  492. #if ENABLED(PS_DEFAULT_OFF)
  493. false
  494. #else
  495. true
  496. #endif
  497. ;
  498. #endif
  499. #if HAS_CASE_LIGHT
  500. bool case_light_on =
  501. #if ENABLED(CASE_LIGHT_DEFAULT_ON)
  502. true
  503. #else
  504. false
  505. #endif
  506. ;
  507. #endif
  508. #if ENABLED(DELTA)
  509. float delta[ABC],
  510. endstop_adj[ABC] = { 0 };
  511. // These values are loaded or reset at boot time when setup() calls
  512. // Config_RetrieveSettings(), which calls recalc_delta_settings().
  513. float delta_radius,
  514. delta_tower_angle_trim[ABC],
  515. delta_tower[ABC][2],
  516. delta_diagonal_rod,
  517. delta_diagonal_rod_trim[ABC],
  518. delta_diagonal_rod_2_tower[ABC],
  519. delta_segments_per_second,
  520. delta_clip_start_height = Z_MAX_POS;
  521. float delta_safe_distance_from_top();
  522. #endif
  523. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  524. #define UNPROBED 9999.0f
  525. int bilinear_grid_spacing[2], bilinear_start[2];
  526. float bed_level_grid[ABL_GRID_MAX_POINTS_X][ABL_GRID_MAX_POINTS_Y];
  527. #endif
  528. #if IS_SCARA
  529. // Float constants for SCARA calculations
  530. const float L1 = SCARA_LINKAGE_1, L2 = SCARA_LINKAGE_2,
  531. L1_2 = sq(float(L1)), L1_2_2 = 2.0 * L1_2,
  532. L2_2 = sq(float(L2));
  533. float delta_segments_per_second = SCARA_SEGMENTS_PER_SECOND,
  534. delta[ABC];
  535. #endif
  536. float cartes[XYZ] = { 0 };
  537. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  538. bool filament_sensor = false; //M405 turns on filament_sensor control, M406 turns it off
  539. float filament_width_nominal = DEFAULT_NOMINAL_FILAMENT_DIA, // Nominal filament width. Change with M404
  540. filament_width_meas = DEFAULT_MEASURED_FILAMENT_DIA; // Measured filament diameter
  541. int8_t measurement_delay[MAX_MEASUREMENT_DELAY + 1]; // Ring buffer to delayed measurement. Store extruder factor after subtracting 100
  542. int filwidth_delay_index[2] = { 0, -1 }; // Indexes into ring buffer
  543. int meas_delay_cm = MEASUREMENT_DELAY_CM; //distance delay setting
  544. #endif
  545. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  546. static bool filament_ran_out = false;
  547. #endif
  548. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  549. FilamentChangeMenuResponse filament_change_menu_response;
  550. #endif
  551. #if ENABLED(MIXING_EXTRUDER)
  552. float mixing_factor[MIXING_STEPPERS]; // Reciprocal of mix proportion. 0.0 = off, otherwise >= 1.0.
  553. #if MIXING_VIRTUAL_TOOLS > 1
  554. float mixing_virtual_tool_mix[MIXING_VIRTUAL_TOOLS][MIXING_STEPPERS];
  555. #endif
  556. #endif
  557. static bool send_ok[BUFSIZE];
  558. #if HAS_SERVOS
  559. Servo servo[NUM_SERVOS];
  560. #define MOVE_SERVO(I, P) servo[I].move(P)
  561. #if HAS_Z_SERVO_ENDSTOP
  562. #define DEPLOY_Z_SERVO() MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[0])
  563. #define STOW_Z_SERVO() MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[1])
  564. #endif
  565. #endif
  566. #ifdef CHDK
  567. millis_t chdkHigh = 0;
  568. bool chdkActive = false;
  569. #endif
  570. #if ENABLED(PID_EXTRUSION_SCALING)
  571. int lpq_len = 20;
  572. #endif
  573. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  574. static MarlinBusyState busy_state = NOT_BUSY;
  575. static millis_t next_busy_signal_ms = 0;
  576. uint8_t host_keepalive_interval = DEFAULT_KEEPALIVE_INTERVAL;
  577. #define KEEPALIVE_STATE(n) do{ busy_state = n; }while(0)
  578. #else
  579. #define host_keepalive() ;
  580. #define KEEPALIVE_STATE(n) ;
  581. #endif // HOST_KEEPALIVE_FEATURE
  582. #define DEFINE_PGM_READ_ANY(type, reader) \
  583. static inline type pgm_read_any(const type *p) \
  584. { return pgm_read_##reader##_near(p); }
  585. DEFINE_PGM_READ_ANY(float, float)
  586. DEFINE_PGM_READ_ANY(signed char, byte)
  587. #define XYZ_CONSTS_FROM_CONFIG(type, array, CONFIG) \
  588. static const PROGMEM type array##_P[XYZ] = \
  589. { X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
  590. static inline type array(int axis) \
  591. { return pgm_read_any(&array##_P[axis]); }
  592. XYZ_CONSTS_FROM_CONFIG(float, base_min_pos, MIN_POS)
  593. XYZ_CONSTS_FROM_CONFIG(float, base_max_pos, MAX_POS)
  594. XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS)
  595. XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH)
  596. XYZ_CONSTS_FROM_CONFIG(float, home_bump_mm, HOME_BUMP_MM)
  597. XYZ_CONSTS_FROM_CONFIG(signed char, home_dir, HOME_DIR)
  598. /**
  599. * ***************************************************************************
  600. * ******************************** FUNCTIONS ********************************
  601. * ***************************************************************************
  602. */
  603. void stop();
  604. void get_available_commands();
  605. void process_next_command();
  606. void prepare_move_to_destination();
  607. void get_cartesian_from_steppers();
  608. void set_current_from_steppers_for_axis(const AxisEnum axis);
  609. #if ENABLED(ARC_SUPPORT)
  610. void plan_arc(float target[XYZE], float* offset, uint8_t clockwise);
  611. #endif
  612. #if ENABLED(BEZIER_CURVE_SUPPORT)
  613. void plan_cubic_move(const float offset[4]);
  614. #endif
  615. void serial_echopair_P(const char* s_P, const char *v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  616. void serial_echopair_P(const char* s_P, char v) { serialprintPGM(s_P); SERIAL_CHAR(v); }
  617. void serial_echopair_P(const char* s_P, int v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  618. void serial_echopair_P(const char* s_P, long v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  619. void serial_echopair_P(const char* s_P, float v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  620. void serial_echopair_P(const char* s_P, double v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  621. void serial_echopair_P(const char* s_P, unsigned long v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  622. void tool_change(const uint8_t tmp_extruder, const float fr_mm_s=0.0, bool no_move=false);
  623. static void report_current_position();
  624. #if ENABLED(DEBUG_LEVELING_FEATURE)
  625. void print_xyz(const char* prefix, const char* suffix, const float x, const float y, const float z) {
  626. serialprintPGM(prefix);
  627. SERIAL_ECHOPAIR("(", x);
  628. SERIAL_ECHOPAIR(", ", y);
  629. SERIAL_ECHOPAIR(", ", z);
  630. SERIAL_CHAR(')');
  631. if (suffix) serialprintPGM(suffix);
  632. else SERIAL_EOL;
  633. }
  634. void print_xyz(const char* prefix, const char* suffix, const float xyz[]) {
  635. print_xyz(prefix, suffix, xyz[X_AXIS], xyz[Y_AXIS], xyz[Z_AXIS]);
  636. }
  637. #if HAS_ABL
  638. void print_xyz(const char* prefix, const char* suffix, const vector_3 &xyz) {
  639. print_xyz(prefix, suffix, xyz.x, xyz.y, xyz.z);
  640. }
  641. #endif
  642. #define DEBUG_POS(SUFFIX,VAR) do { \
  643. print_xyz(PSTR(" " STRINGIFY(VAR) "="), PSTR(" : " SUFFIX "\n"), VAR); } while(0)
  644. #endif
  645. /**
  646. * sync_plan_position
  647. *
  648. * Set the planner/stepper positions directly from current_position with
  649. * no kinematic translation. Used for homing axes and cartesian/core syncing.
  650. */
  651. inline void sync_plan_position() {
  652. #if ENABLED(DEBUG_LEVELING_FEATURE)
  653. if (DEBUGGING(LEVELING)) DEBUG_POS("sync_plan_position", current_position);
  654. #endif
  655. planner.set_position_mm(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
  656. }
  657. inline void sync_plan_position_e() { planner.set_e_position_mm(current_position[E_AXIS]); }
  658. #if IS_KINEMATIC
  659. inline void sync_plan_position_kinematic() {
  660. #if ENABLED(DEBUG_LEVELING_FEATURE)
  661. if (DEBUGGING(LEVELING)) DEBUG_POS("sync_plan_position_kinematic", current_position);
  662. #endif
  663. planner.set_position_mm_kinematic(current_position);
  664. }
  665. #define SYNC_PLAN_POSITION_KINEMATIC() sync_plan_position_kinematic()
  666. #else
  667. #define SYNC_PLAN_POSITION_KINEMATIC() sync_plan_position()
  668. #endif
  669. #if ENABLED(SDSUPPORT)
  670. #include "SdFatUtil.h"
  671. int freeMemory() { return SdFatUtil::FreeRam(); }
  672. #else
  673. extern "C" {
  674. extern char __bss_end;
  675. extern char __heap_start;
  676. extern void* __brkval;
  677. int freeMemory() {
  678. int free_memory;
  679. if ((int)__brkval == 0)
  680. free_memory = ((int)&free_memory) - ((int)&__bss_end);
  681. else
  682. free_memory = ((int)&free_memory) - ((int)__brkval);
  683. return free_memory;
  684. }
  685. }
  686. #endif //!SDSUPPORT
  687. #if ENABLED(DIGIPOT_I2C)
  688. extern void digipot_i2c_set_current(int channel, float current);
  689. extern void digipot_i2c_init();
  690. #endif
  691. inline void echo_command(const char* cmd) {
  692. SERIAL_ECHO_START;
  693. SERIAL_ECHOPAIR(MSG_ENQUEUEING, cmd);
  694. SERIAL_CHAR('"');
  695. SERIAL_EOL;
  696. }
  697. /**
  698. * Shove a command in RAM to the front of the main command queue.
  699. * Return true if the command is successfully added.
  700. */
  701. inline bool _shovecommand(const char* cmd, bool say_ok=false) {
  702. if (*cmd == ';' || commands_in_queue >= BUFSIZE) return false;
  703. cmd_queue_index_r = (cmd_queue_index_r + BUFSIZE - 1) % BUFSIZE; // Index of the previous slot
  704. commands_in_queue++;
  705. strcpy(command_queue[cmd_queue_index_r], cmd);
  706. send_ok[cmd_queue_index_r] = say_ok;
  707. return true;
  708. }
  709. /**
  710. * Shove a command to the front of the queue with Serial Echo
  711. * Return true if the command is successfully added.
  712. */
  713. bool shove_and_echo_command(const char* cmd, bool say_ok=false) {
  714. if (_shovecommand(cmd, say_ok)) {
  715. echo_command(cmd);
  716. return true;
  717. }
  718. return false;
  719. }
  720. /**
  721. * Shove a command onto the front of the queue,
  722. * and don't return until successful.
  723. */
  724. void shove_and_echo_command_now(const char* cmd) {
  725. while (!shove_and_echo_command(cmd)) idle();
  726. }
  727. /**
  728. * Inject the next "immediate" command, when possible, onto the front of the queue.
  729. * Return true if any immediate commands remain to inject.
  730. */
  731. static bool drain_injected_commands_P() {
  732. if (injected_commands_P != NULL) {
  733. size_t i = 0;
  734. char c, cmd[30];
  735. strncpy_P(cmd, injected_commands_P, sizeof(cmd) - 1);
  736. cmd[sizeof(cmd) - 1] = '\0';
  737. while ((c = cmd[i]) && c != '\n') i++; // find the end of this gcode command
  738. cmd[i] = '\0';
  739. if (shove_and_echo_command(cmd)) { // success?
  740. if (c) // newline char?
  741. injected_commands_P += i + 1; // advance to the next command
  742. else
  743. injected_commands_P = NULL; // nul char? no more commands
  744. }
  745. }
  746. return (injected_commands_P != NULL); // return whether any more remain
  747. }
  748. /**
  749. * Record one or many commands to run from program memory.
  750. * Aborts the current queue, if any.
  751. * Note: drain_injected_commands_P() must be called repeatedly to drain the commands afterwards
  752. */
  753. void enqueue_and_echo_commands_P(const char* pgcode) {
  754. injected_commands_P = pgcode;
  755. drain_injected_commands_P(); // first command executed asap (when possible)
  756. }
  757. /**
  758. * Clear the Marlin command queue
  759. */
  760. void clear_command_queue() {
  761. cmd_queue_index_r = cmd_queue_index_w;
  762. commands_in_queue = 0;
  763. }
  764. /**
  765. * Once a new command is in the ring buffer, call this to commit it
  766. */
  767. inline void _commit_command(bool say_ok) {
  768. send_ok[cmd_queue_index_w] = say_ok;
  769. cmd_queue_index_w = (cmd_queue_index_w + 1) % BUFSIZE;
  770. commands_in_queue++;
  771. }
  772. /**
  773. * Copy a command from RAM into the main command buffer.
  774. * Return true if the command was successfully added.
  775. * Return false for a full buffer, or if the 'command' is a comment.
  776. */
  777. inline bool _enqueuecommand(const char* cmd, bool say_ok=false) {
  778. if (*cmd == ';' || commands_in_queue >= BUFSIZE) return false;
  779. strcpy(command_queue[cmd_queue_index_w], cmd);
  780. _commit_command(say_ok);
  781. return true;
  782. }
  783. /**
  784. * Enqueue with Serial Echo
  785. */
  786. bool enqueue_and_echo_command(const char* cmd, bool say_ok/*=false*/) {
  787. if (_enqueuecommand(cmd, say_ok)) {
  788. echo_command(cmd);
  789. return true;
  790. }
  791. return false;
  792. }
  793. void enqueue_and_echo_command_now(const char* cmd) {
  794. while (!enqueue_and_echo_command(cmd)) idle();
  795. }
  796. void setup_killpin() {
  797. #if HAS_KILL
  798. SET_INPUT_PULLUP(KILL_PIN);
  799. #endif
  800. }
  801. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  802. void setup_filrunoutpin() {
  803. #if ENABLED(ENDSTOPPULLUP_FIL_RUNOUT)
  804. SET_INPUT_PULLUP(FIL_RUNOUT_PIN);
  805. #else
  806. SET_INPUT(FIL_RUNOUT_PIN);
  807. #endif
  808. }
  809. #endif
  810. void setup_homepin(void) {
  811. #if HAS_HOME
  812. SET_INPUT_PULLUP(HOME_PIN);
  813. #endif
  814. }
  815. void setup_powerhold() {
  816. #if HAS_SUICIDE
  817. OUT_WRITE(SUICIDE_PIN, HIGH);
  818. #endif
  819. #if HAS_POWER_SWITCH
  820. #if ENABLED(PS_DEFAULT_OFF)
  821. OUT_WRITE(PS_ON_PIN, PS_ON_ASLEEP);
  822. #else
  823. OUT_WRITE(PS_ON_PIN, PS_ON_AWAKE);
  824. #endif
  825. #endif
  826. }
  827. void suicide() {
  828. #if HAS_SUICIDE
  829. OUT_WRITE(SUICIDE_PIN, LOW);
  830. #endif
  831. }
  832. void servo_init() {
  833. #if NUM_SERVOS >= 1 && HAS_SERVO_0
  834. servo[0].attach(SERVO0_PIN);
  835. servo[0].detach(); // Just set up the pin. We don't have a position yet. Don't move to a random position.
  836. #endif
  837. #if NUM_SERVOS >= 2 && HAS_SERVO_1
  838. servo[1].attach(SERVO1_PIN);
  839. servo[1].detach();
  840. #endif
  841. #if NUM_SERVOS >= 3 && HAS_SERVO_2
  842. servo[2].attach(SERVO2_PIN);
  843. servo[2].detach();
  844. #endif
  845. #if NUM_SERVOS >= 4 && HAS_SERVO_3
  846. servo[3].attach(SERVO3_PIN);
  847. servo[3].detach();
  848. #endif
  849. #if HAS_Z_SERVO_ENDSTOP
  850. /**
  851. * Set position of Z Servo Endstop
  852. *
  853. * The servo might be deployed and positioned too low to stow
  854. * when starting up the machine or rebooting the board.
  855. * There's no way to know where the nozzle is positioned until
  856. * homing has been done - no homing with z-probe without init!
  857. *
  858. */
  859. STOW_Z_SERVO();
  860. #endif
  861. }
  862. /**
  863. * Stepper Reset (RigidBoard, et.al.)
  864. */
  865. #if HAS_STEPPER_RESET
  866. void disableStepperDrivers() {
  867. OUT_WRITE(STEPPER_RESET_PIN, LOW); // drive it down to hold in reset motor driver chips
  868. }
  869. void enableStepperDrivers() { SET_INPUT(STEPPER_RESET_PIN); } // set to input, which allows it to be pulled high by pullups
  870. #endif
  871. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  872. void i2c_on_receive(int bytes) { // just echo all bytes received to serial
  873. i2c.receive(bytes);
  874. }
  875. void i2c_on_request() { // just send dummy data for now
  876. i2c.reply("Hello World!\n");
  877. }
  878. #endif
  879. void gcode_line_error(const char* err, bool doFlush = true) {
  880. SERIAL_ERROR_START;
  881. serialprintPGM(err);
  882. SERIAL_ERRORLN(gcode_LastN);
  883. //Serial.println(gcode_N);
  884. if (doFlush) FlushSerialRequestResend();
  885. serial_count = 0;
  886. }
  887. /**
  888. * Get all commands waiting on the serial port and queue them.
  889. * Exit when the buffer is full or when no more characters are
  890. * left on the serial port.
  891. */
  892. inline void get_serial_commands() {
  893. static char serial_line_buffer[MAX_CMD_SIZE];
  894. static bool serial_comment_mode = false;
  895. // If the command buffer is empty for too long,
  896. // send "wait" to indicate Marlin is still waiting.
  897. #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
  898. static millis_t last_command_time = 0;
  899. millis_t ms = millis();
  900. if (commands_in_queue == 0 && !MYSERIAL.available() && ELAPSED(ms, last_command_time + NO_TIMEOUTS)) {
  901. SERIAL_ECHOLNPGM(MSG_WAIT);
  902. last_command_time = ms;
  903. }
  904. #endif
  905. /**
  906. * Loop while serial characters are incoming and the queue is not full
  907. */
  908. while (commands_in_queue < BUFSIZE && MYSERIAL.available() > 0) {
  909. char serial_char = MYSERIAL.read();
  910. /**
  911. * If the character ends the line
  912. */
  913. if (serial_char == '\n' || serial_char == '\r') {
  914. serial_comment_mode = false; // end of line == end of comment
  915. if (!serial_count) continue; // skip empty lines
  916. serial_line_buffer[serial_count] = 0; // terminate string
  917. serial_count = 0; //reset buffer
  918. char* command = serial_line_buffer;
  919. while (*command == ' ') command++; // skip any leading spaces
  920. char* npos = (*command == 'N') ? command : NULL; // Require the N parameter to start the line
  921. char* apos = strchr(command, '*');
  922. if (npos) {
  923. bool M110 = strstr_P(command, PSTR("M110")) != NULL;
  924. if (M110) {
  925. char* n2pos = strchr(command + 4, 'N');
  926. if (n2pos) npos = n2pos;
  927. }
  928. gcode_N = strtol(npos + 1, NULL, 10);
  929. if (gcode_N != gcode_LastN + 1 && !M110) {
  930. gcode_line_error(PSTR(MSG_ERR_LINE_NO));
  931. return;
  932. }
  933. if (apos) {
  934. byte checksum = 0, count = 0;
  935. while (command[count] != '*') checksum ^= command[count++];
  936. if (strtol(apos + 1, NULL, 10) != checksum) {
  937. gcode_line_error(PSTR(MSG_ERR_CHECKSUM_MISMATCH));
  938. return;
  939. }
  940. // if no errors, continue parsing
  941. }
  942. else {
  943. gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM));
  944. return;
  945. }
  946. gcode_LastN = gcode_N;
  947. // if no errors, continue parsing
  948. }
  949. else if (apos) { // No '*' without 'N'
  950. gcode_line_error(PSTR(MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM), false);
  951. return;
  952. }
  953. // Movement commands alert when stopped
  954. if (IsStopped()) {
  955. char* gpos = strchr(command, 'G');
  956. if (gpos) {
  957. int codenum = strtol(gpos + 1, NULL, 10);
  958. switch (codenum) {
  959. case 0:
  960. case 1:
  961. case 2:
  962. case 3:
  963. SERIAL_ERRORLNPGM(MSG_ERR_STOPPED);
  964. LCD_MESSAGEPGM(MSG_STOPPED);
  965. break;
  966. }
  967. }
  968. }
  969. #if DISABLED(EMERGENCY_PARSER)
  970. // If command was e-stop process now
  971. if (strcmp(command, "M108") == 0) {
  972. wait_for_heatup = false;
  973. #if ENABLED(ULTIPANEL)
  974. wait_for_user = false;
  975. #endif
  976. }
  977. if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
  978. if (strcmp(command, "M410") == 0) { quickstop_stepper(); }
  979. #endif
  980. #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
  981. last_command_time = ms;
  982. #endif
  983. // Add the command to the queue
  984. _enqueuecommand(serial_line_buffer, true);
  985. }
  986. else if (serial_count >= MAX_CMD_SIZE - 1) {
  987. // Keep fetching, but ignore normal characters beyond the max length
  988. // The command will be injected when EOL is reached
  989. }
  990. else if (serial_char == '\\') { // Handle escapes
  991. if (MYSERIAL.available() > 0) {
  992. // if we have one more character, copy it over
  993. serial_char = MYSERIAL.read();
  994. if (!serial_comment_mode) serial_line_buffer[serial_count++] = serial_char;
  995. }
  996. // otherwise do nothing
  997. }
  998. else { // it's not a newline, carriage return or escape char
  999. if (serial_char == ';') serial_comment_mode = true;
  1000. if (!serial_comment_mode) serial_line_buffer[serial_count++] = serial_char;
  1001. }
  1002. } // queue has space, serial has data
  1003. }
  1004. #if ENABLED(SDSUPPORT)
  1005. /**
  1006. * Get commands from the SD Card until the command buffer is full
  1007. * or until the end of the file is reached. The special character '#'
  1008. * can also interrupt buffering.
  1009. */
  1010. inline void get_sdcard_commands() {
  1011. static bool stop_buffering = false,
  1012. sd_comment_mode = false;
  1013. if (!card.sdprinting) return;
  1014. /**
  1015. * '#' stops reading from SD to the buffer prematurely, so procedural
  1016. * macro calls are possible. If it occurs, stop_buffering is triggered
  1017. * and the buffer is run dry; this character _can_ occur in serial com
  1018. * due to checksums, however, no checksums are used in SD printing.
  1019. */
  1020. if (commands_in_queue == 0) stop_buffering = false;
  1021. uint16_t sd_count = 0;
  1022. bool card_eof = card.eof();
  1023. while (commands_in_queue < BUFSIZE && !card_eof && !stop_buffering) {
  1024. const int16_t n = card.get();
  1025. char sd_char = (char)n;
  1026. card_eof = card.eof();
  1027. if (card_eof || n == -1
  1028. || sd_char == '\n' || sd_char == '\r'
  1029. || ((sd_char == '#' || sd_char == ':') && !sd_comment_mode)
  1030. ) {
  1031. if (card_eof) {
  1032. SERIAL_PROTOCOLLNPGM(MSG_FILE_PRINTED);
  1033. card.printingHasFinished();
  1034. card.checkautostart(true);
  1035. }
  1036. else if (n == -1) {
  1037. SERIAL_ERROR_START;
  1038. SERIAL_ECHOLNPGM(MSG_SD_ERR_READ);
  1039. }
  1040. if (sd_char == '#') stop_buffering = true;
  1041. sd_comment_mode = false; // for new command
  1042. if (!sd_count) continue; // skip empty lines (and comment lines)
  1043. command_queue[cmd_queue_index_w][sd_count] = '\0'; // terminate string
  1044. sd_count = 0; // clear sd line buffer
  1045. _commit_command(false);
  1046. }
  1047. else if (sd_count >= MAX_CMD_SIZE - 1) {
  1048. /**
  1049. * Keep fetching, but ignore normal characters beyond the max length
  1050. * The command will be injected when EOL is reached
  1051. */
  1052. }
  1053. else {
  1054. if (sd_char == ';') sd_comment_mode = true;
  1055. if (!sd_comment_mode) command_queue[cmd_queue_index_w][sd_count++] = sd_char;
  1056. }
  1057. }
  1058. }
  1059. #endif // SDSUPPORT
  1060. /**
  1061. * Add to the circular command queue the next command from:
  1062. * - The command-injection queue (injected_commands_P)
  1063. * - The active serial input (usually USB)
  1064. * - The SD card file being actively printed
  1065. */
  1066. void get_available_commands() {
  1067. // if any immediate commands remain, don't get other commands yet
  1068. if (drain_injected_commands_P()) return;
  1069. get_serial_commands();
  1070. #if ENABLED(SDSUPPORT)
  1071. get_sdcard_commands();
  1072. #endif
  1073. }
  1074. inline bool code_has_value() {
  1075. int i = 1;
  1076. char c = seen_pointer[i];
  1077. while (c == ' ') c = seen_pointer[++i];
  1078. if (c == '-' || c == '+') c = seen_pointer[++i];
  1079. if (c == '.') c = seen_pointer[++i];
  1080. return NUMERIC(c);
  1081. }
  1082. inline float code_value_float() {
  1083. char* e = strchr(seen_pointer, 'E');
  1084. if (!e) return strtod(seen_pointer + 1, NULL);
  1085. *e = 0;
  1086. float ret = strtod(seen_pointer + 1, NULL);
  1087. *e = 'E';
  1088. return ret;
  1089. }
  1090. inline unsigned long code_value_ulong() { return strtoul(seen_pointer + 1, NULL, 10); }
  1091. inline long code_value_long() { return strtol(seen_pointer + 1, NULL, 10); }
  1092. inline int code_value_int() { return (int)strtol(seen_pointer + 1, NULL, 10); }
  1093. inline uint16_t code_value_ushort() { return (uint16_t)strtoul(seen_pointer + 1, NULL, 10); }
  1094. inline uint8_t code_value_byte() { return (uint8_t)(constrain(strtol(seen_pointer + 1, NULL, 10), 0, 255)); }
  1095. inline bool code_value_bool() { return !code_has_value() || code_value_byte() > 0; }
  1096. #if ENABLED(INCH_MODE_SUPPORT)
  1097. inline void set_input_linear_units(LinearUnit units) {
  1098. switch (units) {
  1099. case LINEARUNIT_INCH:
  1100. linear_unit_factor = 25.4;
  1101. break;
  1102. case LINEARUNIT_MM:
  1103. default:
  1104. linear_unit_factor = 1.0;
  1105. break;
  1106. }
  1107. volumetric_unit_factor = pow(linear_unit_factor, 3.0);
  1108. }
  1109. inline float axis_unit_factor(int axis) {
  1110. return (axis >= E_AXIS && volumetric_enabled ? volumetric_unit_factor : linear_unit_factor);
  1111. }
  1112. inline float code_value_linear_units() { return code_value_float() * linear_unit_factor; }
  1113. inline float code_value_axis_units(int axis) { return code_value_float() * axis_unit_factor(axis); }
  1114. inline float code_value_per_axis_unit(int axis) { return code_value_float() / axis_unit_factor(axis); }
  1115. #else
  1116. inline float code_value_linear_units() { return code_value_float(); }
  1117. inline float code_value_axis_units(int axis) { UNUSED(axis); return code_value_float(); }
  1118. inline float code_value_per_axis_unit(int axis) { UNUSED(axis); return code_value_float(); }
  1119. #endif
  1120. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  1121. inline void set_input_temp_units(TempUnit units) { input_temp_units = units; }
  1122. float code_value_temp_abs() {
  1123. switch (input_temp_units) {
  1124. case TEMPUNIT_C:
  1125. return code_value_float();
  1126. case TEMPUNIT_F:
  1127. return (code_value_float() - 32) * 0.5555555556;
  1128. case TEMPUNIT_K:
  1129. return code_value_float() - 273.15;
  1130. default:
  1131. return code_value_float();
  1132. }
  1133. }
  1134. float code_value_temp_diff() {
  1135. switch (input_temp_units) {
  1136. case TEMPUNIT_C:
  1137. case TEMPUNIT_K:
  1138. return code_value_float();
  1139. case TEMPUNIT_F:
  1140. return code_value_float() * 0.5555555556;
  1141. default:
  1142. return code_value_float();
  1143. }
  1144. }
  1145. #else
  1146. float code_value_temp_abs() { return code_value_float(); }
  1147. float code_value_temp_diff() { return code_value_float(); }
  1148. #endif
  1149. FORCE_INLINE millis_t code_value_millis() { return code_value_ulong(); }
  1150. inline millis_t code_value_millis_from_seconds() { return code_value_float() * 1000; }
  1151. bool code_seen(char code) {
  1152. seen_pointer = strchr(current_command_args, code);
  1153. return (seen_pointer != NULL); // Return TRUE if the code-letter was found
  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(int code) {
  1161. if (code_seen('T')) {
  1162. if (code_value_byte() >= EXTRUDERS) {
  1163. SERIAL_ECHO_START;
  1164. SERIAL_CHAR('M');
  1165. SERIAL_ECHO(code);
  1166. SERIAL_ECHOLNPAIR(" " MSG_INVALID_EXTRUDER " ", code_value_byte());
  1167. return true;
  1168. }
  1169. target_extruder = code_value_byte();
  1170. }
  1171. else
  1172. target_extruder = active_extruder;
  1173. return false;
  1174. }
  1175. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  1176. bool extruder_duplication_enabled = false; // Used in Dual X mode 2
  1177. #endif
  1178. #if ENABLED(DUAL_X_CARRIAGE)
  1179. static DualXMode dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
  1180. static float x_home_pos(const int extruder) {
  1181. if (extruder == 0)
  1182. return LOGICAL_X_POSITION(base_home_pos(X_AXIS));
  1183. else
  1184. /**
  1185. * In dual carriage mode the extruder offset provides an override of the
  1186. * second X-carriage position when homed - otherwise X2_HOME_POS is used.
  1187. * This allows soft recalibration of the second extruder home position
  1188. * without firmware reflash (through the M218 command).
  1189. */
  1190. return LOGICAL_X_POSITION(hotend_offset[X_AXIS][1] > 0 ? hotend_offset[X_AXIS][1] : X2_HOME_POS);
  1191. }
  1192. static int x_home_dir(const int extruder) { return extruder ? X2_HOME_DIR : X_HOME_DIR; }
  1193. static float inactive_extruder_x_pos = X2_MAX_POS; // used in mode 0 & 1
  1194. static bool active_extruder_parked = false; // used in mode 1 & 2
  1195. static float raised_parked_position[XYZE]; // used in mode 1
  1196. static millis_t delayed_move_time = 0; // used in mode 1
  1197. static float duplicate_extruder_x_offset = DEFAULT_DUPLICATION_X_OFFSET; // used in mode 2
  1198. static float duplicate_extruder_temp_offset = 0; // used in mode 2
  1199. #endif // DUAL_X_CARRIAGE
  1200. #if DISABLED(NO_WORKSPACE_OFFSETS) || ENABLED(DUAL_X_CARRIAGE) || ENABLED(DELTA)
  1201. /**
  1202. * Software endstops can be used to monitor the open end of
  1203. * an axis that has a hardware endstop on the other end. Or
  1204. * they can prevent axes from moving past endstops and grinding.
  1205. *
  1206. * To keep doing their job as the coordinate system changes,
  1207. * the software endstop positions must be refreshed to remain
  1208. * at the same positions relative to the machine.
  1209. */
  1210. void update_software_endstops(const AxisEnum axis) {
  1211. const float offs = workspace_offset[axis] = LOGICAL_POSITION(0, axis);
  1212. #if ENABLED(DUAL_X_CARRIAGE)
  1213. if (axis == X_AXIS) {
  1214. // In Dual X mode hotend_offset[X] is T1's home position
  1215. float dual_max_x = max(hotend_offset[X_AXIS][1], X2_MAX_POS);
  1216. if (active_extruder != 0) {
  1217. // T1 can move from X2_MIN_POS to X2_MAX_POS or X2 home position (whichever is larger)
  1218. soft_endstop_min[X_AXIS] = X2_MIN_POS + offs;
  1219. soft_endstop_max[X_AXIS] = dual_max_x + offs;
  1220. }
  1221. else if (dual_x_carriage_mode == DXC_DUPLICATION_MODE) {
  1222. // In Duplication Mode, T0 can move as far left as X_MIN_POS
  1223. // but not so far to the right that T1 would move past the end
  1224. soft_endstop_min[X_AXIS] = base_min_pos(X_AXIS) + offs;
  1225. soft_endstop_max[X_AXIS] = min(base_max_pos(X_AXIS), dual_max_x - duplicate_extruder_x_offset) + offs;
  1226. }
  1227. else {
  1228. // In other modes, T0 can move from X_MIN_POS to X_MAX_POS
  1229. soft_endstop_min[axis] = base_min_pos(axis) + offs;
  1230. soft_endstop_max[axis] = base_max_pos(axis) + offs;
  1231. }
  1232. }
  1233. #else
  1234. soft_endstop_min[axis] = base_min_pos(axis) + offs;
  1235. soft_endstop_max[axis] = base_max_pos(axis) + offs;
  1236. #endif
  1237. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1238. if (DEBUGGING(LEVELING)) {
  1239. SERIAL_ECHOPAIR("For ", axis_codes[axis]);
  1240. #if DISABLED(NO_WORKSPACE_OFFSETS)
  1241. SERIAL_ECHOPAIR(" axis:\n home_offset = ", home_offset[axis]);
  1242. SERIAL_ECHOPAIR("\n position_shift = ", position_shift[axis]);
  1243. #endif
  1244. SERIAL_ECHOPAIR("\n soft_endstop_min = ", soft_endstop_min[axis]);
  1245. SERIAL_ECHOLNPAIR("\n soft_endstop_max = ", soft_endstop_max[axis]);
  1246. }
  1247. #endif
  1248. #if ENABLED(DELTA)
  1249. if (axis == Z_AXIS)
  1250. delta_clip_start_height = soft_endstop_max[axis] - delta_safe_distance_from_top();
  1251. #endif
  1252. }
  1253. #endif // NO_WORKSPACE_OFFSETS
  1254. #if DISABLED(NO_WORKSPACE_OFFSETS)
  1255. /**
  1256. * Change the home offset for an axis, update the current
  1257. * position and the software endstops to retain the same
  1258. * relative distance to the new home.
  1259. *
  1260. * Since this changes the current_position, code should
  1261. * call sync_plan_position soon after this.
  1262. */
  1263. static void set_home_offset(const AxisEnum axis, const float v) {
  1264. current_position[axis] += v - home_offset[axis];
  1265. home_offset[axis] = v;
  1266. update_software_endstops(axis);
  1267. }
  1268. #endif // NO_WORKSPACE_OFFSETS
  1269. /**
  1270. * Set an axis' current position to its home position (after homing).
  1271. *
  1272. * For Core and Cartesian robots this applies one-to-one when an
  1273. * individual axis has been homed.
  1274. *
  1275. * DELTA should wait until all homing is done before setting the XYZ
  1276. * current_position to home, because homing is a single operation.
  1277. * In the case where the axis positions are already known and previously
  1278. * homed, DELTA could home to X or Y individually by moving either one
  1279. * to the center. However, homing Z always homes XY and Z.
  1280. *
  1281. * SCARA should wait until all XY homing is done before setting the XY
  1282. * current_position to home, because neither X nor Y is at home until
  1283. * both are at home. Z can however be homed individually.
  1284. *
  1285. * Callers must sync the planner position after calling this!
  1286. */
  1287. static void set_axis_is_at_home(AxisEnum axis) {
  1288. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1289. if (DEBUGGING(LEVELING)) {
  1290. SERIAL_ECHOPAIR(">>> set_axis_is_at_home(", axis_codes[axis]);
  1291. SERIAL_CHAR(')');
  1292. SERIAL_EOL;
  1293. }
  1294. #endif
  1295. axis_known_position[axis] = axis_homed[axis] = true;
  1296. #if DISABLED(NO_WORKSPACE_OFFSETS)
  1297. position_shift[axis] = 0;
  1298. update_software_endstops(axis);
  1299. #endif
  1300. #if ENABLED(DUAL_X_CARRIAGE)
  1301. if (axis == X_AXIS && (active_extruder == 1 || dual_x_carriage_mode == DXC_DUPLICATION_MODE)) {
  1302. current_position[X_AXIS] = x_home_pos(active_extruder);
  1303. return;
  1304. }
  1305. #endif
  1306. #if ENABLED(MORGAN_SCARA)
  1307. /**
  1308. * Morgan SCARA homes XY at the same time
  1309. */
  1310. if (axis == X_AXIS || axis == Y_AXIS) {
  1311. float homeposition[XYZ];
  1312. LOOP_XYZ(i) homeposition[i] = LOGICAL_POSITION(base_home_pos((AxisEnum)i), i);
  1313. // SERIAL_ECHOPAIR("homeposition X:", homeposition[X_AXIS]);
  1314. // SERIAL_ECHOLNPAIR(" Y:", homeposition[Y_AXIS]);
  1315. /**
  1316. * Get Home position SCARA arm angles using inverse kinematics,
  1317. * and calculate homing offset using forward kinematics
  1318. */
  1319. inverse_kinematics(homeposition);
  1320. forward_kinematics_SCARA(delta[A_AXIS], delta[B_AXIS]);
  1321. // SERIAL_ECHOPAIR("Cartesian X:", cartes[X_AXIS]);
  1322. // SERIAL_ECHOLNPAIR(" Y:", cartes[Y_AXIS]);
  1323. current_position[axis] = LOGICAL_POSITION(cartes[axis], axis);
  1324. /**
  1325. * SCARA home positions are based on configuration since the actual
  1326. * limits are determined by the inverse kinematic transform.
  1327. */
  1328. soft_endstop_min[axis] = base_min_pos(axis); // + (cartes[axis] - base_home_pos(axis));
  1329. soft_endstop_max[axis] = base_max_pos(axis); // + (cartes[axis] - base_home_pos(axis));
  1330. }
  1331. else
  1332. #endif
  1333. {
  1334. current_position[axis] = LOGICAL_POSITION(base_home_pos(axis), axis);
  1335. }
  1336. /**
  1337. * Z Probe Z Homing? Account for the probe's Z offset.
  1338. */
  1339. #if HAS_BED_PROBE && Z_HOME_DIR < 0
  1340. if (axis == Z_AXIS) {
  1341. #if HOMING_Z_WITH_PROBE
  1342. current_position[Z_AXIS] -= zprobe_zoffset;
  1343. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1344. if (DEBUGGING(LEVELING)) {
  1345. SERIAL_ECHOLNPGM("*** Z HOMED WITH PROBE (Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) ***");
  1346. SERIAL_ECHOLNPAIR("> zprobe_zoffset = ", zprobe_zoffset);
  1347. }
  1348. #endif
  1349. #elif ENABLED(DEBUG_LEVELING_FEATURE)
  1350. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("*** Z HOMED TO ENDSTOP (Z_MIN_PROBE_ENDSTOP) ***");
  1351. #endif
  1352. }
  1353. #endif
  1354. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1355. if (DEBUGGING(LEVELING)) {
  1356. #if DISABLED(NO_WORKSPACE_OFFSETS)
  1357. SERIAL_ECHOPAIR("> home_offset[", axis_codes[axis]);
  1358. SERIAL_ECHOLNPAIR("] = ", home_offset[axis]);
  1359. #endif
  1360. DEBUG_POS("", current_position);
  1361. SERIAL_ECHOPAIR("<<< set_axis_is_at_home(", axis_codes[axis]);
  1362. SERIAL_CHAR(')');
  1363. SERIAL_EOL;
  1364. }
  1365. #endif
  1366. }
  1367. /**
  1368. * Some planner shorthand inline functions
  1369. */
  1370. inline float get_homing_bump_feedrate(AxisEnum axis) {
  1371. int constexpr homing_bump_divisor[] = HOMING_BUMP_DIVISOR;
  1372. int hbd = homing_bump_divisor[axis];
  1373. if (hbd < 1) {
  1374. hbd = 10;
  1375. SERIAL_ECHO_START;
  1376. SERIAL_ECHOLNPGM("Warning: Homing Bump Divisor < 1");
  1377. }
  1378. return homing_feedrate_mm_s[axis] / hbd;
  1379. }
  1380. //
  1381. // line_to_current_position
  1382. // Move the planner to the current position from wherever it last moved
  1383. // (or from wherever it has been told it is located).
  1384. //
  1385. inline void line_to_current_position() {
  1386. planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], feedrate_mm_s, active_extruder);
  1387. }
  1388. //
  1389. // line_to_destination
  1390. // Move the planner, not necessarily synced with current_position
  1391. //
  1392. inline void line_to_destination(float fr_mm_s) {
  1393. planner.buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], fr_mm_s, active_extruder);
  1394. }
  1395. inline void line_to_destination() { line_to_destination(feedrate_mm_s); }
  1396. inline void set_current_to_destination() { COPY(current_position, destination); }
  1397. inline void set_destination_to_current() { COPY(destination, current_position); }
  1398. #if IS_KINEMATIC
  1399. /**
  1400. * Calculate delta, start a line, and set current_position to destination
  1401. */
  1402. void prepare_uninterpolated_move_to_destination(const float fr_mm_s=0.0) {
  1403. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1404. if (DEBUGGING(LEVELING)) DEBUG_POS("prepare_uninterpolated_move_to_destination", destination);
  1405. #endif
  1406. if ( current_position[X_AXIS] == destination[X_AXIS]
  1407. && current_position[Y_AXIS] == destination[Y_AXIS]
  1408. && current_position[Z_AXIS] == destination[Z_AXIS]
  1409. && current_position[E_AXIS] == destination[E_AXIS]
  1410. ) return;
  1411. refresh_cmd_timeout();
  1412. planner.buffer_line_kinematic(destination, MMS_SCALED(fr_mm_s ? fr_mm_s : feedrate_mm_s), active_extruder);
  1413. set_current_to_destination();
  1414. }
  1415. #endif // IS_KINEMATIC
  1416. /**
  1417. * Plan a move to (X, Y, Z) and set the current_position
  1418. * The final current_position may not be the one that was requested
  1419. */
  1420. void do_blocking_move_to(const float &x, const float &y, const float &z, const float &fr_mm_s /*=0.0*/) {
  1421. const float old_feedrate_mm_s = feedrate_mm_s;
  1422. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1423. if (DEBUGGING(LEVELING)) print_xyz(PSTR(">>> do_blocking_move_to"), NULL, x, y, z);
  1424. #endif
  1425. #if ENABLED(DELTA)
  1426. feedrate_mm_s = fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  1427. set_destination_to_current(); // sync destination at the start
  1428. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1429. if (DEBUGGING(LEVELING)) DEBUG_POS("set_destination_to_current", destination);
  1430. #endif
  1431. // when in the danger zone
  1432. if (current_position[Z_AXIS] > delta_clip_start_height) {
  1433. if (z > delta_clip_start_height) { // staying in the danger zone
  1434. destination[X_AXIS] = x; // move directly (uninterpolated)
  1435. destination[Y_AXIS] = y;
  1436. destination[Z_AXIS] = z;
  1437. prepare_uninterpolated_move_to_destination(); // set_current_to_destination
  1438. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1439. if (DEBUGGING(LEVELING)) DEBUG_POS("danger zone move", current_position);
  1440. #endif
  1441. return;
  1442. }
  1443. else {
  1444. destination[Z_AXIS] = delta_clip_start_height;
  1445. prepare_uninterpolated_move_to_destination(); // set_current_to_destination
  1446. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1447. if (DEBUGGING(LEVELING)) DEBUG_POS("zone border move", current_position);
  1448. #endif
  1449. }
  1450. }
  1451. if (z > current_position[Z_AXIS]) { // raising?
  1452. destination[Z_AXIS] = z;
  1453. prepare_uninterpolated_move_to_destination(); // set_current_to_destination
  1454. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1455. if (DEBUGGING(LEVELING)) DEBUG_POS("z raise move", current_position);
  1456. #endif
  1457. }
  1458. destination[X_AXIS] = x;
  1459. destination[Y_AXIS] = y;
  1460. prepare_move_to_destination(); // set_current_to_destination
  1461. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1462. if (DEBUGGING(LEVELING)) DEBUG_POS("xy move", current_position);
  1463. #endif
  1464. if (z < current_position[Z_AXIS]) { // lowering?
  1465. destination[Z_AXIS] = z;
  1466. prepare_uninterpolated_move_to_destination(); // set_current_to_destination
  1467. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1468. if (DEBUGGING(LEVELING)) DEBUG_POS("z lower move", current_position);
  1469. #endif
  1470. }
  1471. #elif IS_SCARA
  1472. set_destination_to_current();
  1473. // If Z needs to raise, do it before moving XY
  1474. if (destination[Z_AXIS] < z) {
  1475. destination[Z_AXIS] = z;
  1476. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : homing_feedrate_mm_s[Z_AXIS]);
  1477. }
  1478. destination[X_AXIS] = x;
  1479. destination[Y_AXIS] = y;
  1480. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S);
  1481. // If Z needs to lower, do it after moving XY
  1482. if (destination[Z_AXIS] > z) {
  1483. destination[Z_AXIS] = z;
  1484. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : homing_feedrate_mm_s[Z_AXIS]);
  1485. }
  1486. #else
  1487. // If Z needs to raise, do it before moving XY
  1488. if (current_position[Z_AXIS] < z) {
  1489. feedrate_mm_s = fr_mm_s ? fr_mm_s : homing_feedrate_mm_s[Z_AXIS];
  1490. current_position[Z_AXIS] = z;
  1491. line_to_current_position();
  1492. }
  1493. feedrate_mm_s = fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  1494. current_position[X_AXIS] = x;
  1495. current_position[Y_AXIS] = y;
  1496. line_to_current_position();
  1497. // If Z needs to lower, do it after moving XY
  1498. if (current_position[Z_AXIS] > z) {
  1499. feedrate_mm_s = fr_mm_s ? fr_mm_s : homing_feedrate_mm_s[Z_AXIS];
  1500. current_position[Z_AXIS] = z;
  1501. line_to_current_position();
  1502. }
  1503. #endif
  1504. stepper.synchronize();
  1505. feedrate_mm_s = old_feedrate_mm_s;
  1506. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1507. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< do_blocking_move_to");
  1508. #endif
  1509. }
  1510. void do_blocking_move_to_x(const float &x, const float &fr_mm_s/*=0.0*/) {
  1511. do_blocking_move_to(x, current_position[Y_AXIS], current_position[Z_AXIS], fr_mm_s);
  1512. }
  1513. void do_blocking_move_to_z(const float &z, const float &fr_mm_s/*=0.0*/) {
  1514. do_blocking_move_to(current_position[X_AXIS], current_position[Y_AXIS], z, fr_mm_s);
  1515. }
  1516. void do_blocking_move_to_xy(const float &x, const float &y, const float &fr_mm_s/*=0.0*/) {
  1517. do_blocking_move_to(x, y, current_position[Z_AXIS], fr_mm_s);
  1518. }
  1519. //
  1520. // Prepare to do endstop or probe moves
  1521. // with custom feedrates.
  1522. //
  1523. // - Save current feedrates
  1524. // - Reset the rate multiplier
  1525. // - Reset the command timeout
  1526. // - Enable the endstops (for endstop moves)
  1527. //
  1528. static void setup_for_endstop_or_probe_move() {
  1529. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1530. if (DEBUGGING(LEVELING)) DEBUG_POS("setup_for_endstop_or_probe_move", current_position);
  1531. #endif
  1532. saved_feedrate_mm_s = feedrate_mm_s;
  1533. saved_feedrate_percentage = feedrate_percentage;
  1534. feedrate_percentage = 100;
  1535. refresh_cmd_timeout();
  1536. }
  1537. static void clean_up_after_endstop_or_probe_move() {
  1538. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1539. if (DEBUGGING(LEVELING)) DEBUG_POS("clean_up_after_endstop_or_probe_move", current_position);
  1540. #endif
  1541. feedrate_mm_s = saved_feedrate_mm_s;
  1542. feedrate_percentage = saved_feedrate_percentage;
  1543. refresh_cmd_timeout();
  1544. }
  1545. #if HAS_BED_PROBE
  1546. /**
  1547. * Raise Z to a minimum height to make room for a probe to move
  1548. */
  1549. inline void do_probe_raise(float z_raise) {
  1550. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1551. if (DEBUGGING(LEVELING)) {
  1552. SERIAL_ECHOPAIR("do_probe_raise(", z_raise);
  1553. SERIAL_CHAR(')');
  1554. SERIAL_EOL;
  1555. }
  1556. #endif
  1557. float z_dest = LOGICAL_Z_POSITION(z_raise);
  1558. if (zprobe_zoffset < 0) z_dest -= zprobe_zoffset;
  1559. if (z_dest > current_position[Z_AXIS])
  1560. do_blocking_move_to_z(z_dest);
  1561. }
  1562. #endif //HAS_BED_PROBE
  1563. #if ENABLED(Z_PROBE_ALLEN_KEY) || ENABLED(Z_PROBE_SLED) || HAS_PROBING_PROCEDURE || HOTENDS > 1 || ENABLED(NOZZLE_CLEAN_FEATURE) || ENABLED(NOZZLE_PARK_FEATURE)
  1564. bool axis_unhomed_error(const bool x, const bool y, const bool z) {
  1565. const bool xx = x && !axis_homed[X_AXIS],
  1566. yy = y && !axis_homed[Y_AXIS],
  1567. zz = z && !axis_homed[Z_AXIS];
  1568. if (xx || yy || zz) {
  1569. SERIAL_ECHO_START;
  1570. SERIAL_ECHOPGM(MSG_HOME " ");
  1571. if (xx) SERIAL_ECHOPGM(MSG_X);
  1572. if (yy) SERIAL_ECHOPGM(MSG_Y);
  1573. if (zz) SERIAL_ECHOPGM(MSG_Z);
  1574. SERIAL_ECHOLNPGM(" " MSG_FIRST);
  1575. #if ENABLED(ULTRA_LCD)
  1576. char message[3 * (LCD_WIDTH) + 1] = ""; // worst case is kana.utf with up to 3*LCD_WIDTH+1
  1577. strcat_P(message, PSTR(MSG_HOME " "));
  1578. if (xx) strcat_P(message, PSTR(MSG_X));
  1579. if (yy) strcat_P(message, PSTR(MSG_Y));
  1580. if (zz) strcat_P(message, PSTR(MSG_Z));
  1581. strcat_P(message, PSTR(" " MSG_FIRST));
  1582. lcd_setstatus(message);
  1583. #endif
  1584. return true;
  1585. }
  1586. return false;
  1587. }
  1588. #endif
  1589. #if ENABLED(Z_PROBE_SLED)
  1590. #ifndef SLED_DOCKING_OFFSET
  1591. #define SLED_DOCKING_OFFSET 0
  1592. #endif
  1593. /**
  1594. * Method to dock/undock a sled designed by Charles Bell.
  1595. *
  1596. * stow[in] If false, move to MAX_X and engage the solenoid
  1597. * If true, move to MAX_X and release the solenoid
  1598. */
  1599. static void dock_sled(bool stow) {
  1600. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1601. if (DEBUGGING(LEVELING)) {
  1602. SERIAL_ECHOPAIR("dock_sled(", stow);
  1603. SERIAL_CHAR(')');
  1604. SERIAL_EOL;
  1605. }
  1606. #endif
  1607. // Dock sled a bit closer to ensure proper capturing
  1608. do_blocking_move_to_x(X_MAX_POS + SLED_DOCKING_OFFSET - ((stow) ? 1 : 0));
  1609. #if PIN_EXISTS(SLED)
  1610. digitalWrite(SLED_PIN, !stow); // switch solenoid
  1611. #endif
  1612. }
  1613. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  1614. void run_deploy_moves_script() {
  1615. #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)
  1616. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_X
  1617. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_X current_position[X_AXIS]
  1618. #endif
  1619. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_Y
  1620. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_Y current_position[Y_AXIS]
  1621. #endif
  1622. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_Z
  1623. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_Z current_position[Z_AXIS]
  1624. #endif
  1625. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE
  1626. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE 0.0
  1627. #endif
  1628. do_blocking_move_to(Z_PROBE_ALLEN_KEY_DEPLOY_1_X, Z_PROBE_ALLEN_KEY_DEPLOY_1_Y, Z_PROBE_ALLEN_KEY_DEPLOY_1_Z, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE));
  1629. #endif
  1630. #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)
  1631. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_X
  1632. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_X current_position[X_AXIS]
  1633. #endif
  1634. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_Y
  1635. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Y current_position[Y_AXIS]
  1636. #endif
  1637. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_Z
  1638. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Z current_position[Z_AXIS]
  1639. #endif
  1640. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE
  1641. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE 0.0
  1642. #endif
  1643. do_blocking_move_to(Z_PROBE_ALLEN_KEY_DEPLOY_2_X, Z_PROBE_ALLEN_KEY_DEPLOY_2_Y, Z_PROBE_ALLEN_KEY_DEPLOY_2_Z, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE));
  1644. #endif
  1645. #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)
  1646. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_X
  1647. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_X current_position[X_AXIS]
  1648. #endif
  1649. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_Y
  1650. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Y current_position[Y_AXIS]
  1651. #endif
  1652. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_Z
  1653. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Z current_position[Z_AXIS]
  1654. #endif
  1655. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE
  1656. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE 0.0
  1657. #endif
  1658. do_blocking_move_to(Z_PROBE_ALLEN_KEY_DEPLOY_3_X, Z_PROBE_ALLEN_KEY_DEPLOY_3_Y, Z_PROBE_ALLEN_KEY_DEPLOY_3_Z, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE));
  1659. #endif
  1660. #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)
  1661. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_X
  1662. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_X current_position[X_AXIS]
  1663. #endif
  1664. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_Y
  1665. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_Y current_position[Y_AXIS]
  1666. #endif
  1667. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_Z
  1668. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_Z current_position[Z_AXIS]
  1669. #endif
  1670. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE
  1671. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE 0.0
  1672. #endif
  1673. do_blocking_move_to(Z_PROBE_ALLEN_KEY_DEPLOY_4_X, Z_PROBE_ALLEN_KEY_DEPLOY_4_Y, Z_PROBE_ALLEN_KEY_DEPLOY_4_Z, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE));
  1674. #endif
  1675. #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)
  1676. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_X
  1677. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_X current_position[X_AXIS]
  1678. #endif
  1679. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_Y
  1680. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_Y current_position[Y_AXIS]
  1681. #endif
  1682. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_Z
  1683. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_Z current_position[Z_AXIS]
  1684. #endif
  1685. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE
  1686. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE 0.0
  1687. #endif
  1688. do_blocking_move_to(Z_PROBE_ALLEN_KEY_DEPLOY_5_X, Z_PROBE_ALLEN_KEY_DEPLOY_5_Y, Z_PROBE_ALLEN_KEY_DEPLOY_5_Z, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE));
  1689. #endif
  1690. }
  1691. void run_stow_moves_script() {
  1692. #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)
  1693. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_X
  1694. #define Z_PROBE_ALLEN_KEY_STOW_1_X current_position[X_AXIS]
  1695. #endif
  1696. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_Y
  1697. #define Z_PROBE_ALLEN_KEY_STOW_1_Y current_position[Y_AXIS]
  1698. #endif
  1699. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_Z
  1700. #define Z_PROBE_ALLEN_KEY_STOW_1_Z current_position[Z_AXIS]
  1701. #endif
  1702. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE
  1703. #define Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE 0.0
  1704. #endif
  1705. do_blocking_move_to(Z_PROBE_ALLEN_KEY_STOW_1_X, Z_PROBE_ALLEN_KEY_STOW_1_Y, Z_PROBE_ALLEN_KEY_STOW_1_Z, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE));
  1706. #endif
  1707. #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)
  1708. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_X
  1709. #define Z_PROBE_ALLEN_KEY_STOW_2_X current_position[X_AXIS]
  1710. #endif
  1711. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_Y
  1712. #define Z_PROBE_ALLEN_KEY_STOW_2_Y current_position[Y_AXIS]
  1713. #endif
  1714. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_Z
  1715. #define Z_PROBE_ALLEN_KEY_STOW_2_Z current_position[Z_AXIS]
  1716. #endif
  1717. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE
  1718. #define Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE 0.0
  1719. #endif
  1720. do_blocking_move_to(Z_PROBE_ALLEN_KEY_STOW_2_X, Z_PROBE_ALLEN_KEY_STOW_2_Y, Z_PROBE_ALLEN_KEY_STOW_2_Z, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE));
  1721. #endif
  1722. #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)
  1723. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_X
  1724. #define Z_PROBE_ALLEN_KEY_STOW_3_X current_position[X_AXIS]
  1725. #endif
  1726. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_Y
  1727. #define Z_PROBE_ALLEN_KEY_STOW_3_Y current_position[Y_AXIS]
  1728. #endif
  1729. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_Z
  1730. #define Z_PROBE_ALLEN_KEY_STOW_3_Z current_position[Z_AXIS]
  1731. #endif
  1732. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE
  1733. #define Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE 0.0
  1734. #endif
  1735. do_blocking_move_to(Z_PROBE_ALLEN_KEY_STOW_3_X, Z_PROBE_ALLEN_KEY_STOW_3_Y, Z_PROBE_ALLEN_KEY_STOW_3_Z, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE));
  1736. #endif
  1737. #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)
  1738. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_X
  1739. #define Z_PROBE_ALLEN_KEY_STOW_4_X current_position[X_AXIS]
  1740. #endif
  1741. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_Y
  1742. #define Z_PROBE_ALLEN_KEY_STOW_4_Y current_position[Y_AXIS]
  1743. #endif
  1744. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_Z
  1745. #define Z_PROBE_ALLEN_KEY_STOW_4_Z current_position[Z_AXIS]
  1746. #endif
  1747. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE
  1748. #define Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE 0.0
  1749. #endif
  1750. do_blocking_move_to(Z_PROBE_ALLEN_KEY_STOW_4_X, Z_PROBE_ALLEN_KEY_STOW_4_Y, Z_PROBE_ALLEN_KEY_STOW_4_Z, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE));
  1751. #endif
  1752. #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)
  1753. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_X
  1754. #define Z_PROBE_ALLEN_KEY_STOW_5_X current_position[X_AXIS]
  1755. #endif
  1756. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_Y
  1757. #define Z_PROBE_ALLEN_KEY_STOW_5_Y current_position[Y_AXIS]
  1758. #endif
  1759. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_Z
  1760. #define Z_PROBE_ALLEN_KEY_STOW_5_Z current_position[Z_AXIS]
  1761. #endif
  1762. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE
  1763. #define Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE 0.0
  1764. #endif
  1765. do_blocking_move_to(Z_PROBE_ALLEN_KEY_STOW_5_X, Z_PROBE_ALLEN_KEY_STOW_5_Y, Z_PROBE_ALLEN_KEY_STOW_5_Z, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE));
  1766. #endif
  1767. }
  1768. #endif
  1769. #if HAS_BED_PROBE
  1770. // TRIGGERED_WHEN_STOWED_TEST can easily be extended to servo probes, ... if needed.
  1771. #if ENABLED(PROBE_IS_TRIGGERED_WHEN_STOWED_TEST)
  1772. #if ENABLED(Z_MIN_PROBE_ENDSTOP)
  1773. #define _TRIGGERED_WHEN_STOWED_TEST (READ(Z_MIN_PROBE_PIN) != Z_MIN_PROBE_ENDSTOP_INVERTING)
  1774. #else
  1775. #define _TRIGGERED_WHEN_STOWED_TEST (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING)
  1776. #endif
  1777. #endif
  1778. #define DEPLOY_PROBE() set_probe_deployed(true)
  1779. #define STOW_PROBE() set_probe_deployed(false)
  1780. #if ENABLED(BLTOUCH)
  1781. void bltouch_command(int angle) {
  1782. servo[Z_ENDSTOP_SERVO_NR].move(angle); // Give the BL-Touch the command and wait
  1783. safe_delay(375);
  1784. }
  1785. void set_bltouch_deployed(const bool deploy) {
  1786. bltouch_command(deploy ? BLTOUCH_DEPLOY : BLTOUCH_STOW);
  1787. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1788. if (DEBUGGING(LEVELING)) {
  1789. SERIAL_ECHOPAIR("set_bltouch_deployed(", deploy);
  1790. SERIAL_CHAR(')');
  1791. SERIAL_EOL;
  1792. }
  1793. #endif
  1794. }
  1795. #endif
  1796. // returns false for ok and true for failure
  1797. bool set_probe_deployed(bool deploy) {
  1798. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1799. if (DEBUGGING(LEVELING)) {
  1800. DEBUG_POS("set_probe_deployed", current_position);
  1801. SERIAL_ECHOLNPAIR("deploy: ", deploy);
  1802. }
  1803. #endif
  1804. if (endstops.z_probe_enabled == deploy) return false;
  1805. // Make room for probe
  1806. do_probe_raise(_Z_CLEARANCE_DEPLOY_PROBE);
  1807. // When deploying make sure BLTOUCH is not already triggered
  1808. #if ENABLED(BLTOUCH)
  1809. if (deploy && TEST_BLTOUCH()) { // If BL-Touch says it's triggered
  1810. bltouch_command(BLTOUCH_RESET); // try to reset it.
  1811. set_bltouch_deployed(true); // Also needs to deploy and stow to
  1812. set_bltouch_deployed(false); // clear the triggered condition.
  1813. if (TEST_BLTOUCH()) { // If it still claims to be triggered...
  1814. SERIAL_ERROR_START;
  1815. SERIAL_ERRORLNPGM(MSG_STOP_BLTOUCH);
  1816. stop(); // punt!
  1817. return true;
  1818. }
  1819. }
  1820. #elif ENABLED(Z_PROBE_SLED)
  1821. if (axis_unhomed_error(true, false, false)) {
  1822. SERIAL_ERROR_START;
  1823. SERIAL_ERRORLNPGM(MSG_STOP_UNHOMED);
  1824. stop();
  1825. return true;
  1826. }
  1827. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  1828. if (axis_unhomed_error(true, true, true )) {
  1829. SERIAL_ERROR_START;
  1830. SERIAL_ERRORLNPGM(MSG_STOP_UNHOMED);
  1831. stop();
  1832. return true;
  1833. }
  1834. #endif
  1835. const float oldXpos = current_position[X_AXIS],
  1836. oldYpos = current_position[Y_AXIS];
  1837. #ifdef _TRIGGERED_WHEN_STOWED_TEST
  1838. // If endstop is already false, the Z probe is deployed
  1839. if (_TRIGGERED_WHEN_STOWED_TEST == deploy) { // closed after the probe specific actions.
  1840. // Would a goto be less ugly?
  1841. //while (!_TRIGGERED_WHEN_STOWED_TEST) idle(); // would offer the opportunity
  1842. // for a triggered when stowed manual probe.
  1843. if (!deploy) endstops.enable_z_probe(false); // Switch off triggered when stowed probes early
  1844. // otherwise an Allen-Key probe can't be stowed.
  1845. #endif
  1846. #if ENABLED(Z_PROBE_SLED)
  1847. dock_sled(!deploy);
  1848. #elif HAS_Z_SERVO_ENDSTOP && DISABLED(BLTOUCH)
  1849. servo[Z_ENDSTOP_SERVO_NR].move(z_servo_angle[deploy ? 0 : 1]);
  1850. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  1851. deploy ? run_deploy_moves_script() : run_stow_moves_script();
  1852. #endif
  1853. #ifdef _TRIGGERED_WHEN_STOWED_TEST
  1854. } // _TRIGGERED_WHEN_STOWED_TEST == deploy
  1855. if (_TRIGGERED_WHEN_STOWED_TEST == deploy) { // State hasn't changed?
  1856. if (IsRunning()) {
  1857. SERIAL_ERROR_START;
  1858. SERIAL_ERRORLNPGM("Z-Probe failed");
  1859. LCD_ALERTMESSAGEPGM("Err: ZPROBE");
  1860. }
  1861. stop();
  1862. return true;
  1863. } // _TRIGGERED_WHEN_STOWED_TEST == deploy
  1864. #endif
  1865. do_blocking_move_to(oldXpos, oldYpos, current_position[Z_AXIS]); // return to position before deploy
  1866. endstops.enable_z_probe(deploy);
  1867. return false;
  1868. }
  1869. static void do_probe_move(float z, float fr_mm_m) {
  1870. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1871. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> do_probe_move", current_position);
  1872. #endif
  1873. // Deploy BLTouch at the start of any probe
  1874. #if ENABLED(BLTOUCH)
  1875. set_bltouch_deployed(true);
  1876. #endif
  1877. // Move down until probe triggered
  1878. do_blocking_move_to_z(LOGICAL_Z_POSITION(z), MMM_TO_MMS(fr_mm_m));
  1879. // Retract BLTouch immediately after a probe
  1880. #if ENABLED(BLTOUCH)
  1881. set_bltouch_deployed(false);
  1882. #endif
  1883. // Clear endstop flags
  1884. endstops.hit_on_purpose();
  1885. // Get Z where the steppers were interrupted
  1886. set_current_from_steppers_for_axis(Z_AXIS);
  1887. // Tell the planner where we actually are
  1888. SYNC_PLAN_POSITION_KINEMATIC();
  1889. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1890. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< do_probe_move", current_position);
  1891. #endif
  1892. }
  1893. // Do a single Z probe and return with current_position[Z_AXIS]
  1894. // at the height where the probe triggered.
  1895. static float run_z_probe() {
  1896. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1897. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> run_z_probe", current_position);
  1898. #endif
  1899. // Prevent stepper_inactive_time from running out and EXTRUDER_RUNOUT_PREVENT from extruding
  1900. refresh_cmd_timeout();
  1901. #if ENABLED(PROBE_DOUBLE_TOUCH)
  1902. // Do a first probe at the fast speed
  1903. do_probe_move(-(Z_MAX_LENGTH) - 10, Z_PROBE_SPEED_FAST);
  1904. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1905. float first_probe_z = current_position[Z_AXIS];
  1906. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("1st Probe Z:", first_probe_z);
  1907. #endif
  1908. // move up by the bump distance
  1909. do_blocking_move_to_z(current_position[Z_AXIS] + home_bump_mm(Z_AXIS), MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  1910. #else
  1911. // If the nozzle is above the travel height then
  1912. // move down quickly before doing the slow probe
  1913. float z = LOGICAL_Z_POSITION(Z_CLEARANCE_BETWEEN_PROBES);
  1914. if (zprobe_zoffset < 0) z -= zprobe_zoffset;
  1915. if (z < current_position[Z_AXIS])
  1916. do_blocking_move_to_z(z, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  1917. #endif
  1918. // move down slowly to find bed
  1919. do_probe_move(-(Z_MAX_LENGTH) - 10, Z_PROBE_SPEED_SLOW);
  1920. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1921. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< run_z_probe", current_position);
  1922. #endif
  1923. // Debug: compare probe heights
  1924. #if ENABLED(PROBE_DOUBLE_TOUCH) && ENABLED(DEBUG_LEVELING_FEATURE)
  1925. if (DEBUGGING(LEVELING)) {
  1926. SERIAL_ECHOPAIR("2nd Probe Z:", current_position[Z_AXIS]);
  1927. SERIAL_ECHOLNPAIR(" Discrepancy:", first_probe_z - current_position[Z_AXIS]);
  1928. }
  1929. #endif
  1930. return current_position[Z_AXIS];
  1931. }
  1932. //
  1933. // - Move to the given XY
  1934. // - Deploy the probe, if not already deployed
  1935. // - Probe the bed, get the Z position
  1936. // - Depending on the 'stow' flag
  1937. // - Stow the probe, or
  1938. // - Raise to the BETWEEN height
  1939. // - Return the probed Z position
  1940. //
  1941. //float probe_pt(const float &x, const float &y, const bool stow = true, const int verbose_level = 1) {
  1942. float probe_pt(const float x, const float y, const bool stow, const int verbose_level) {
  1943. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1944. if (DEBUGGING(LEVELING)) {
  1945. SERIAL_ECHOPAIR(">>> probe_pt(", x);
  1946. SERIAL_ECHOPAIR(", ", y);
  1947. SERIAL_ECHOPAIR(", ", stow ? "" : "no ");
  1948. SERIAL_ECHOLNPGM("stow)");
  1949. DEBUG_POS("", current_position);
  1950. }
  1951. #endif
  1952. const float old_feedrate_mm_s = feedrate_mm_s;
  1953. #if ENABLED(DELTA)
  1954. if (current_position[Z_AXIS] > delta_clip_start_height)
  1955. do_blocking_move_to_z(delta_clip_start_height);
  1956. #endif
  1957. // Ensure a minimum height before moving the probe
  1958. do_probe_raise(Z_CLEARANCE_BETWEEN_PROBES);
  1959. feedrate_mm_s = XY_PROBE_FEEDRATE_MM_S;
  1960. // Move the probe to the given XY
  1961. do_blocking_move_to_xy(x - (X_PROBE_OFFSET_FROM_EXTRUDER), y - (Y_PROBE_OFFSET_FROM_EXTRUDER));
  1962. if (DEPLOY_PROBE()) return NAN;
  1963. const float measured_z = run_z_probe();
  1964. if (!stow)
  1965. do_probe_raise(Z_CLEARANCE_BETWEEN_PROBES);
  1966. else
  1967. if (STOW_PROBE()) return NAN;
  1968. if (verbose_level > 2) {
  1969. SERIAL_PROTOCOLPGM("Bed X: ");
  1970. SERIAL_PROTOCOL_F(x, 3);
  1971. SERIAL_PROTOCOLPGM(" Y: ");
  1972. SERIAL_PROTOCOL_F(y, 3);
  1973. SERIAL_PROTOCOLPGM(" Z: ");
  1974. SERIAL_PROTOCOL_F(measured_z - -zprobe_zoffset + 0.0001, 3);
  1975. SERIAL_EOL;
  1976. }
  1977. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1978. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< probe_pt");
  1979. #endif
  1980. feedrate_mm_s = old_feedrate_mm_s;
  1981. return measured_z;
  1982. }
  1983. #endif // HAS_BED_PROBE
  1984. #if PLANNER_LEVELING
  1985. /**
  1986. * Turn bed leveling on or off, fixing the current
  1987. * position as-needed.
  1988. *
  1989. * Disable: Current position = physical position
  1990. * Enable: Current position = "unleveled" physical position
  1991. */
  1992. void set_bed_leveling_enabled(bool enable/*=true*/) {
  1993. #if ENABLED(MESH_BED_LEVELING)
  1994. if (enable != mbl.active()) {
  1995. if (!enable)
  1996. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS]);
  1997. mbl.set_active(enable && mbl.has_mesh());
  1998. if (enable && mbl.has_mesh()) planner.unapply_leveling(current_position);
  1999. }
  2000. #elif HAS_ABL && !ENABLED(AUTO_BED_LEVELING_UBL)
  2001. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2002. const bool can_change = (!enable || (bilinear_grid_spacing[0] && bilinear_grid_spacing[1]));
  2003. #else
  2004. constexpr bool can_change = true;
  2005. #endif
  2006. if (can_change && enable != planner.abl_enabled) {
  2007. planner.abl_enabled = enable;
  2008. if (!enable)
  2009. set_current_from_steppers_for_axis(
  2010. #if ABL_PLANAR
  2011. ALL_AXES
  2012. #else
  2013. Z_AXIS
  2014. #endif
  2015. );
  2016. else
  2017. planner.unapply_leveling(current_position);
  2018. }
  2019. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2020. ubl.state.active = enable;
  2021. //set_current_from_steppers_for_axis(Z_AXIS);
  2022. #endif
  2023. }
  2024. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  2025. void set_z_fade_height(const float zfh) {
  2026. planner.z_fade_height = zfh;
  2027. planner.inverse_z_fade_height = RECIPROCAL(zfh);
  2028. if (
  2029. #if ENABLED(MESH_BED_LEVELING)
  2030. mbl.active()
  2031. #else
  2032. planner.abl_enabled
  2033. #endif
  2034. ) {
  2035. set_current_from_steppers_for_axis(
  2036. #if ABL_PLANAR
  2037. ALL_AXES
  2038. #else
  2039. Z_AXIS
  2040. #endif
  2041. );
  2042. }
  2043. }
  2044. #endif // LEVELING_FADE_HEIGHT
  2045. /**
  2046. * Reset calibration results to zero.
  2047. */
  2048. void reset_bed_level() {
  2049. set_bed_leveling_enabled(false);
  2050. #if ENABLED(MESH_BED_LEVELING)
  2051. if (mbl.has_mesh()) {
  2052. mbl.reset();
  2053. mbl.set_has_mesh(false);
  2054. }
  2055. #else
  2056. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2057. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("reset_bed_level");
  2058. #endif
  2059. #if ABL_PLANAR
  2060. planner.bed_level_matrix.set_to_identity();
  2061. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2062. bilinear_start[X_AXIS] = bilinear_start[Y_AXIS] =
  2063. bilinear_grid_spacing[X_AXIS] = bilinear_grid_spacing[Y_AXIS] = 0;
  2064. for (uint8_t x = 0; x < ABL_GRID_MAX_POINTS_X; x++)
  2065. for (uint8_t y = 0; y < ABL_GRID_MAX_POINTS_Y; y++)
  2066. bed_level_grid[x][y] = UNPROBED;
  2067. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2068. ubl.reset();
  2069. #endif
  2070. #endif
  2071. }
  2072. #endif // PLANNER_LEVELING
  2073. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2074. /**
  2075. * Extrapolate a single point from its neighbors
  2076. */
  2077. static void extrapolate_one_point(uint8_t x, uint8_t y, int8_t xdir, int8_t ydir) {
  2078. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2079. if (DEBUGGING(LEVELING)) {
  2080. SERIAL_ECHOPGM("Extrapolate [");
  2081. if (x < 10) SERIAL_CHAR(' ');
  2082. SERIAL_ECHO((int)x);
  2083. SERIAL_CHAR(xdir ? (xdir > 0 ? '+' : '-') : ' ');
  2084. SERIAL_CHAR(' ');
  2085. if (y < 10) SERIAL_CHAR(' ');
  2086. SERIAL_ECHO((int)y);
  2087. SERIAL_CHAR(ydir ? (ydir > 0 ? '+' : '-') : ' ');
  2088. SERIAL_CHAR(']');
  2089. }
  2090. #endif
  2091. if (bed_level_grid[x][y] != UNPROBED) {
  2092. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2093. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM(" (done)");
  2094. #endif
  2095. return; // Don't overwrite good values.
  2096. }
  2097. SERIAL_EOL;
  2098. // Get X neighbors, Y neighbors, and XY neighbors
  2099. float a1 = bed_level_grid[x + xdir][y], a2 = bed_level_grid[x + xdir * 2][y],
  2100. b1 = bed_level_grid[x][y + ydir], b2 = bed_level_grid[x][y + ydir * 2],
  2101. c1 = bed_level_grid[x + xdir][y + ydir], c2 = bed_level_grid[x + xdir * 2][y + ydir * 2];
  2102. // Treat far unprobed points as zero, near as equal to far
  2103. if (a2 == UNPROBED) a2 = 0.0; if (a1 == UNPROBED) a1 = a2;
  2104. if (b2 == UNPROBED) b2 = 0.0; if (b1 == UNPROBED) b1 = b2;
  2105. if (c2 == UNPROBED) c2 = 0.0; if (c1 == UNPROBED) c1 = c2;
  2106. const float a = 2 * a1 - a2, b = 2 * b1 - b2, c = 2 * c1 - c2;
  2107. // Take the average instead of the median
  2108. bed_level_grid[x][y] = (a + b + c) / 3.0;
  2109. // Median is robust (ignores outliers).
  2110. // bed_level_grid[x][y] = (a < b) ? ((b < c) ? b : (c < a) ? a : c)
  2111. // : ((c < b) ? b : (a < c) ? a : c);
  2112. }
  2113. //Enable this if your SCARA uses 180° of total area
  2114. //#define EXTRAPOLATE_FROM_EDGE
  2115. #if ENABLED(EXTRAPOLATE_FROM_EDGE)
  2116. #if ABL_GRID_MAX_POINTS_X < ABL_GRID_MAX_POINTS_Y
  2117. #define HALF_IN_X
  2118. #elif ABL_GRID_MAX_POINTS_Y < ABL_GRID_MAX_POINTS_X
  2119. #define HALF_IN_Y
  2120. #endif
  2121. #endif
  2122. /**
  2123. * Fill in the unprobed points (corners of circular print surface)
  2124. * using linear extrapolation, away from the center.
  2125. */
  2126. static void extrapolate_unprobed_bed_level() {
  2127. #ifdef HALF_IN_X
  2128. const uint8_t ctrx2 = 0, xlen = ABL_GRID_MAX_POINTS_X - 1;
  2129. #else
  2130. const uint8_t ctrx1 = (ABL_GRID_MAX_POINTS_X - 1) / 2, // left-of-center
  2131. ctrx2 = ABL_GRID_MAX_POINTS_X / 2, // right-of-center
  2132. xlen = ctrx1;
  2133. #endif
  2134. #ifdef HALF_IN_Y
  2135. const uint8_t ctry2 = 0, ylen = ABL_GRID_MAX_POINTS_Y - 1;
  2136. #else
  2137. const uint8_t ctry1 = (ABL_GRID_MAX_POINTS_Y - 1) / 2, // top-of-center
  2138. ctry2 = ABL_GRID_MAX_POINTS_Y / 2, // bottom-of-center
  2139. ylen = ctry1;
  2140. #endif
  2141. for (uint8_t xo = 0; xo <= xlen; xo++)
  2142. for (uint8_t yo = 0; yo <= ylen; yo++) {
  2143. uint8_t x2 = ctrx2 + xo, y2 = ctry2 + yo;
  2144. #ifndef HALF_IN_X
  2145. const uint8_t x1 = ctrx1 - xo;
  2146. #endif
  2147. #ifndef HALF_IN_Y
  2148. const uint8_t y1 = ctry1 - yo;
  2149. #ifndef HALF_IN_X
  2150. extrapolate_one_point(x1, y1, +1, +1); // left-below + +
  2151. #endif
  2152. extrapolate_one_point(x2, y1, -1, +1); // right-below - +
  2153. #endif
  2154. #ifndef HALF_IN_X
  2155. extrapolate_one_point(x1, y2, +1, -1); // left-above + -
  2156. #endif
  2157. extrapolate_one_point(x2, y2, -1, -1); // right-above - -
  2158. }
  2159. }
  2160. /**
  2161. * Print calibration results for plotting or manual frame adjustment.
  2162. */
  2163. 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)) {
  2164. for (uint8_t x = 0; x < sx; x++) {
  2165. for (uint8_t i = 0; i < precision + 2 + (x < 10 ? 1 : 0); i++)
  2166. SERIAL_PROTOCOLCHAR(' ');
  2167. SERIAL_PROTOCOL((int)x);
  2168. }
  2169. SERIAL_EOL;
  2170. for (uint8_t y = 0; y < sy; y++) {
  2171. if (y < 10) SERIAL_PROTOCOLCHAR(' ');
  2172. SERIAL_PROTOCOL((int)y);
  2173. for (uint8_t x = 0; x < sx; x++) {
  2174. SERIAL_PROTOCOLCHAR(' ');
  2175. float offset = fn(x, y);
  2176. if (offset != UNPROBED) {
  2177. if (offset >= 0) SERIAL_PROTOCOLCHAR('+');
  2178. SERIAL_PROTOCOL_F(offset, precision);
  2179. }
  2180. else
  2181. for (uint8_t i = 0; i < precision + 3; i++)
  2182. SERIAL_PROTOCOLCHAR(i ? '=' : ' ');
  2183. }
  2184. SERIAL_EOL;
  2185. }
  2186. SERIAL_EOL;
  2187. }
  2188. static void print_bilinear_leveling_grid() {
  2189. SERIAL_ECHOLNPGM("Bilinear Leveling Grid:");
  2190. print_2d_array(ABL_GRID_MAX_POINTS_X, ABL_GRID_MAX_POINTS_Y, 2,
  2191. [](const uint8_t x, const uint8_t y) { return bed_level_grid[x][y]; }
  2192. );
  2193. }
  2194. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  2195. #define ABL_GRID_POINTS_VIRT_X (ABL_GRID_MAX_POINTS_X - 1) * (BILINEAR_SUBDIVISIONS) + 1
  2196. #define ABL_GRID_POINTS_VIRT_Y (ABL_GRID_MAX_POINTS_Y - 1) * (BILINEAR_SUBDIVISIONS) + 1
  2197. #define ABL_TEMP_POINTS_X (ABL_GRID_MAX_POINTS_X + 2)
  2198. #define ABL_TEMP_POINTS_Y (ABL_GRID_MAX_POINTS_Y + 2)
  2199. float bed_level_grid_virt[ABL_GRID_POINTS_VIRT_X][ABL_GRID_POINTS_VIRT_Y];
  2200. int bilinear_grid_spacing_virt[2] = { 0 };
  2201. static void bed_level_virt_print() {
  2202. SERIAL_ECHOLNPGM("Subdivided with CATMULL ROM Leveling Grid:");
  2203. print_2d_array(ABL_GRID_POINTS_VIRT_X, ABL_GRID_POINTS_VIRT_Y, 5,
  2204. [](const uint8_t x, const uint8_t y) { return bed_level_grid_virt[x][y]; }
  2205. );
  2206. }
  2207. #define LINEAR_EXTRAPOLATION(E, I) ((E) * 2 - (I))
  2208. float bed_level_virt_coord(const uint8_t x, const uint8_t y) {
  2209. uint8_t ep = 0, ip = 1;
  2210. if (!x || x == ABL_TEMP_POINTS_X - 1) {
  2211. if (x) {
  2212. ep = ABL_GRID_MAX_POINTS_X - 1;
  2213. ip = ABL_GRID_MAX_POINTS_X - 2;
  2214. }
  2215. if (y > 0 && y < ABL_TEMP_POINTS_Y - 1)
  2216. return LINEAR_EXTRAPOLATION(
  2217. bed_level_grid[ep][y - 1],
  2218. bed_level_grid[ip][y - 1]
  2219. );
  2220. else
  2221. return LINEAR_EXTRAPOLATION(
  2222. bed_level_virt_coord(ep + 1, y),
  2223. bed_level_virt_coord(ip + 1, y)
  2224. );
  2225. }
  2226. if (!y || y == ABL_TEMP_POINTS_Y - 1) {
  2227. if (y) {
  2228. ep = ABL_GRID_MAX_POINTS_Y - 1;
  2229. ip = ABL_GRID_MAX_POINTS_Y - 2;
  2230. }
  2231. if (x > 0 && x < ABL_TEMP_POINTS_X - 1)
  2232. return LINEAR_EXTRAPOLATION(
  2233. bed_level_grid[x - 1][ep],
  2234. bed_level_grid[x - 1][ip]
  2235. );
  2236. else
  2237. return LINEAR_EXTRAPOLATION(
  2238. bed_level_virt_coord(x, ep + 1),
  2239. bed_level_virt_coord(x, ip + 1)
  2240. );
  2241. }
  2242. return bed_level_grid[x - 1][y - 1];
  2243. }
  2244. static float bed_level_virt_cmr(const float p[4], const uint8_t i, const float t) {
  2245. return (
  2246. p[i-1] * -t * sq(1 - t)
  2247. + p[i] * (2 - 5 * sq(t) + 3 * t * sq(t))
  2248. + p[i+1] * t * (1 + 4 * t - 3 * sq(t))
  2249. - p[i+2] * sq(t) * (1 - t)
  2250. ) * 0.5;
  2251. }
  2252. static float bed_level_virt_2cmr(const uint8_t x, const uint8_t y, const float &tx, const float &ty) {
  2253. float row[4], column[4];
  2254. for (uint8_t i = 0; i < 4; i++) {
  2255. for (uint8_t j = 0; j < 4; j++) {
  2256. column[j] = bed_level_virt_coord(i + x - 1, j + y - 1);
  2257. }
  2258. row[i] = bed_level_virt_cmr(column, 1, ty);
  2259. }
  2260. return bed_level_virt_cmr(row, 1, tx);
  2261. }
  2262. void bed_level_virt_interpolate() {
  2263. for (uint8_t y = 0; y < ABL_GRID_MAX_POINTS_Y; y++)
  2264. for (uint8_t x = 0; x < ABL_GRID_MAX_POINTS_X; x++)
  2265. for (uint8_t ty = 0; ty < BILINEAR_SUBDIVISIONS; ty++)
  2266. for (uint8_t tx = 0; tx < BILINEAR_SUBDIVISIONS; tx++) {
  2267. if ((ty && y == ABL_GRID_MAX_POINTS_Y - 1) || (tx && x == ABL_GRID_MAX_POINTS_X - 1))
  2268. continue;
  2269. bed_level_grid_virt[x * (BILINEAR_SUBDIVISIONS) + tx][y * (BILINEAR_SUBDIVISIONS) + ty] =
  2270. bed_level_virt_2cmr(
  2271. x + 1,
  2272. y + 1,
  2273. (float)tx / (BILINEAR_SUBDIVISIONS),
  2274. (float)ty / (BILINEAR_SUBDIVISIONS)
  2275. );
  2276. }
  2277. }
  2278. #endif // ABL_BILINEAR_SUBDIVISION
  2279. #endif // AUTO_BED_LEVELING_BILINEAR
  2280. /**
  2281. * Home an individual linear axis
  2282. */
  2283. static void do_homing_move(const AxisEnum axis, float distance, float fr_mm_s=0.0) {
  2284. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2285. if (DEBUGGING(LEVELING)) {
  2286. SERIAL_ECHOPAIR(">>> do_homing_move(", axis_codes[axis]);
  2287. SERIAL_ECHOPAIR(", ", distance);
  2288. SERIAL_ECHOPAIR(", ", fr_mm_s);
  2289. SERIAL_CHAR(')');
  2290. SERIAL_EOL;
  2291. }
  2292. #endif
  2293. #if HOMING_Z_WITH_PROBE && ENABLED(BLTOUCH)
  2294. const bool deploy_bltouch = (axis == Z_AXIS && distance < 0);
  2295. if (deploy_bltouch) set_bltouch_deployed(true);
  2296. #endif
  2297. // Tell the planner we're at Z=0
  2298. current_position[axis] = 0;
  2299. #if IS_SCARA
  2300. SYNC_PLAN_POSITION_KINEMATIC();
  2301. current_position[axis] = distance;
  2302. inverse_kinematics(current_position);
  2303. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], current_position[E_AXIS], fr_mm_s ? fr_mm_s : homing_feedrate_mm_s[axis], active_extruder);
  2304. #else
  2305. sync_plan_position();
  2306. current_position[axis] = distance;
  2307. 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_mm_s[axis], active_extruder);
  2308. #endif
  2309. stepper.synchronize();
  2310. #if HOMING_Z_WITH_PROBE && ENABLED(BLTOUCH)
  2311. if (deploy_bltouch) set_bltouch_deployed(false);
  2312. #endif
  2313. endstops.hit_on_purpose();
  2314. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2315. if (DEBUGGING(LEVELING)) {
  2316. SERIAL_ECHOPAIR("<<< do_homing_move(", axis_codes[axis]);
  2317. SERIAL_CHAR(')');
  2318. SERIAL_EOL;
  2319. }
  2320. #endif
  2321. }
  2322. /**
  2323. * Home an individual "raw axis" to its endstop.
  2324. * This applies to XYZ on Cartesian and Core robots, and
  2325. * to the individual ABC steppers on DELTA and SCARA.
  2326. *
  2327. * At the end of the procedure the axis is marked as
  2328. * homed and the current position of that axis is updated.
  2329. * Kinematic robots should wait till all axes are homed
  2330. * before updating the current position.
  2331. */
  2332. #define HOMEAXIS(LETTER) homeaxis(LETTER##_AXIS)
  2333. static void homeaxis(const AxisEnum axis) {
  2334. #if IS_SCARA
  2335. // Only Z homing (with probe) is permitted
  2336. if (axis != Z_AXIS) { BUZZ(100, 880); return; }
  2337. #else
  2338. #define CAN_HOME(A) \
  2339. (axis == A##_AXIS && ((A##_MIN_PIN > -1 && A##_HOME_DIR < 0) || (A##_MAX_PIN > -1 && A##_HOME_DIR > 0)))
  2340. if (!CAN_HOME(X) && !CAN_HOME(Y) && !CAN_HOME(Z)) return;
  2341. #endif
  2342. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2343. if (DEBUGGING(LEVELING)) {
  2344. SERIAL_ECHOPAIR(">>> homeaxis(", axis_codes[axis]);
  2345. SERIAL_CHAR(')');
  2346. SERIAL_EOL;
  2347. }
  2348. #endif
  2349. const int axis_home_dir =
  2350. #if ENABLED(DUAL_X_CARRIAGE)
  2351. (axis == X_AXIS) ? x_home_dir(active_extruder) :
  2352. #endif
  2353. home_dir(axis);
  2354. // Homing Z towards the bed? Deploy the Z probe or endstop.
  2355. #if HOMING_Z_WITH_PROBE
  2356. if (axis == Z_AXIS && DEPLOY_PROBE()) return;
  2357. #endif
  2358. // Set a flag for Z motor locking
  2359. #if ENABLED(Z_DUAL_ENDSTOPS)
  2360. if (axis == Z_AXIS) stepper.set_homing_flag(true);
  2361. #endif
  2362. // Fast move towards endstop until triggered
  2363. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2364. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Home 1 Fast:");
  2365. #endif
  2366. do_homing_move(axis, 1.5 * max_length(axis) * axis_home_dir);
  2367. // When homing Z with probe respect probe clearance
  2368. const float bump = axis_home_dir * (
  2369. #if HOMING_Z_WITH_PROBE
  2370. (axis == Z_AXIS) ? max(Z_CLEARANCE_BETWEEN_PROBES, home_bump_mm(Z_AXIS)) :
  2371. #endif
  2372. home_bump_mm(axis)
  2373. );
  2374. // If a second homing move is configured...
  2375. if (bump) {
  2376. // Move away from the endstop by the axis HOME_BUMP_MM
  2377. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2378. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Move Away:");
  2379. #endif
  2380. do_homing_move(axis, -bump);
  2381. // Slow move towards endstop until triggered
  2382. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2383. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Home 2 Slow:");
  2384. #endif
  2385. do_homing_move(axis, 2 * bump, get_homing_bump_feedrate(axis));
  2386. }
  2387. #if ENABLED(Z_DUAL_ENDSTOPS)
  2388. if (axis == Z_AXIS) {
  2389. float adj = fabs(z_endstop_adj);
  2390. bool lockZ1;
  2391. if (axis_home_dir > 0) {
  2392. adj = -adj;
  2393. lockZ1 = (z_endstop_adj > 0);
  2394. }
  2395. else
  2396. lockZ1 = (z_endstop_adj < 0);
  2397. if (lockZ1) stepper.set_z_lock(true); else stepper.set_z2_lock(true);
  2398. // Move to the adjusted endstop height
  2399. do_homing_move(axis, adj);
  2400. if (lockZ1) stepper.set_z_lock(false); else stepper.set_z2_lock(false);
  2401. stepper.set_homing_flag(false);
  2402. } // Z_AXIS
  2403. #endif
  2404. #if IS_SCARA
  2405. set_axis_is_at_home(axis);
  2406. SYNC_PLAN_POSITION_KINEMATIC();
  2407. #elif ENABLED(DELTA)
  2408. // Delta has already moved all three towers up in G28
  2409. // so here it re-homes each tower in turn.
  2410. // Delta homing treats the axes as normal linear axes.
  2411. // retrace by the amount specified in endstop_adj
  2412. if (endstop_adj[axis] * Z_HOME_DIR < 0) {
  2413. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2414. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("endstop_adj:");
  2415. #endif
  2416. do_homing_move(axis, endstop_adj[axis]);
  2417. }
  2418. #else
  2419. // For cartesian/core machines,
  2420. // set the axis to its home position
  2421. set_axis_is_at_home(axis);
  2422. sync_plan_position();
  2423. destination[axis] = current_position[axis];
  2424. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2425. if (DEBUGGING(LEVELING)) DEBUG_POS("> AFTER set_axis_is_at_home", current_position);
  2426. #endif
  2427. #endif
  2428. // Put away the Z probe
  2429. #if HOMING_Z_WITH_PROBE
  2430. if (axis == Z_AXIS && STOW_PROBE()) return;
  2431. #endif
  2432. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2433. if (DEBUGGING(LEVELING)) {
  2434. SERIAL_ECHOPAIR("<<< homeaxis(", axis_codes[axis]);
  2435. SERIAL_CHAR(')');
  2436. SERIAL_EOL;
  2437. }
  2438. #endif
  2439. } // homeaxis()
  2440. #if ENABLED(FWRETRACT)
  2441. void retract(const bool retracting, const bool swapping = false) {
  2442. static float hop_height;
  2443. if (retracting == retracted[active_extruder]) return;
  2444. const float old_feedrate_mm_s = feedrate_mm_s;
  2445. set_destination_to_current();
  2446. if (retracting) {
  2447. feedrate_mm_s = retract_feedrate_mm_s;
  2448. current_position[E_AXIS] += (swapping ? retract_length_swap : retract_length) / volumetric_multiplier[active_extruder];
  2449. sync_plan_position_e();
  2450. prepare_move_to_destination();
  2451. if (retract_zlift > 0.01) {
  2452. hop_height = current_position[Z_AXIS];
  2453. // Pretend current position is lower
  2454. current_position[Z_AXIS] -= retract_zlift;
  2455. SYNC_PLAN_POSITION_KINEMATIC();
  2456. // Raise up to the old current_position
  2457. prepare_move_to_destination();
  2458. }
  2459. }
  2460. else {
  2461. // If the height hasn't been altered, undo the Z hop
  2462. if (retract_zlift > 0.01 && hop_height == current_position[Z_AXIS]) {
  2463. // Pretend current position is higher. Z will lower on the next move
  2464. current_position[Z_AXIS] += retract_zlift;
  2465. SYNC_PLAN_POSITION_KINEMATIC();
  2466. }
  2467. feedrate_mm_s = retract_recover_feedrate_mm_s;
  2468. const float move_e = swapping ? retract_length_swap + retract_recover_length_swap : retract_length + retract_recover_length;
  2469. current_position[E_AXIS] -= move_e / volumetric_multiplier[active_extruder];
  2470. sync_plan_position_e();
  2471. // Lower Z and recover E
  2472. prepare_move_to_destination();
  2473. }
  2474. feedrate_mm_s = old_feedrate_mm_s;
  2475. retracted[active_extruder] = retracting;
  2476. } // retract()
  2477. #endif // FWRETRACT
  2478. #if ENABLED(MIXING_EXTRUDER)
  2479. void normalize_mix() {
  2480. float mix_total = 0.0;
  2481. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) mix_total += RECIPROCAL(mixing_factor[i]);
  2482. // Scale all values if they don't add up to ~1.0
  2483. if (!NEAR(mix_total, 1.0)) {
  2484. SERIAL_PROTOCOLLNPGM("Warning: Mix factors must add up to 1.0. Scaling.");
  2485. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) mixing_factor[i] *= mix_total;
  2486. }
  2487. }
  2488. #if ENABLED(DIRECT_MIXING_IN_G1)
  2489. // Get mixing parameters from the GCode
  2490. // The total "must" be 1.0 (but it will be normalized)
  2491. // If no mix factors are given, the old mix is preserved
  2492. void gcode_get_mix() {
  2493. const char* mixing_codes = "ABCDHI";
  2494. byte mix_bits = 0;
  2495. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) {
  2496. if (code_seen(mixing_codes[i])) {
  2497. SBI(mix_bits, i);
  2498. float v = code_value_float();
  2499. NOLESS(v, 0.0);
  2500. mixing_factor[i] = RECIPROCAL(v);
  2501. }
  2502. }
  2503. // If any mixing factors were included, clear the rest
  2504. // If none were included, preserve the last mix
  2505. if (mix_bits) {
  2506. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  2507. if (!TEST(mix_bits, i)) mixing_factor[i] = 0.0;
  2508. normalize_mix();
  2509. }
  2510. }
  2511. #endif
  2512. #endif
  2513. /**
  2514. * ***************************************************************************
  2515. * ***************************** G-CODE HANDLING *****************************
  2516. * ***************************************************************************
  2517. */
  2518. /**
  2519. * Set XYZE destination and feedrate from the current GCode command
  2520. *
  2521. * - Set destination from included axis codes
  2522. * - Set to current for missing axis codes
  2523. * - Set the feedrate, if included
  2524. */
  2525. void gcode_get_destination() {
  2526. LOOP_XYZE(i) {
  2527. if (code_seen(axis_codes[i]))
  2528. destination[i] = code_value_axis_units(i) + (axis_relative_modes[i] || relative_mode ? current_position[i] : 0);
  2529. else
  2530. destination[i] = current_position[i];
  2531. }
  2532. if (code_seen('F') && code_value_linear_units() > 0.0)
  2533. feedrate_mm_s = MMM_TO_MMS(code_value_linear_units());
  2534. #if ENABLED(PRINTCOUNTER)
  2535. if (!DEBUGGING(DRYRUN))
  2536. print_job_timer.incFilamentUsed(destination[E_AXIS] - current_position[E_AXIS]);
  2537. #endif
  2538. // Get ABCDHI mixing factors
  2539. #if ENABLED(MIXING_EXTRUDER) && ENABLED(DIRECT_MIXING_IN_G1)
  2540. gcode_get_mix();
  2541. #endif
  2542. }
  2543. void unknown_command_error() {
  2544. SERIAL_ECHO_START;
  2545. SERIAL_ECHOPAIR(MSG_UNKNOWN_COMMAND, current_command);
  2546. SERIAL_CHAR('"');
  2547. SERIAL_EOL;
  2548. }
  2549. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  2550. /**
  2551. * Output a "busy" message at regular intervals
  2552. * while the machine is not accepting commands.
  2553. */
  2554. void host_keepalive() {
  2555. const millis_t ms = millis();
  2556. if (host_keepalive_interval && busy_state != NOT_BUSY) {
  2557. if (PENDING(ms, next_busy_signal_ms)) return;
  2558. switch (busy_state) {
  2559. case IN_HANDLER:
  2560. case IN_PROCESS:
  2561. SERIAL_ECHO_START;
  2562. SERIAL_ECHOLNPGM(MSG_BUSY_PROCESSING);
  2563. break;
  2564. case PAUSED_FOR_USER:
  2565. SERIAL_ECHO_START;
  2566. SERIAL_ECHOLNPGM(MSG_BUSY_PAUSED_FOR_USER);
  2567. break;
  2568. case PAUSED_FOR_INPUT:
  2569. SERIAL_ECHO_START;
  2570. SERIAL_ECHOLNPGM(MSG_BUSY_PAUSED_FOR_INPUT);
  2571. break;
  2572. default:
  2573. break;
  2574. }
  2575. }
  2576. next_busy_signal_ms = ms + host_keepalive_interval * 1000UL;
  2577. }
  2578. #endif //HOST_KEEPALIVE_FEATURE
  2579. bool position_is_reachable(float target[XYZ]
  2580. #if HAS_BED_PROBE
  2581. , bool by_probe=false
  2582. #endif
  2583. ) {
  2584. float dx = RAW_X_POSITION(target[X_AXIS]),
  2585. dy = RAW_Y_POSITION(target[Y_AXIS]);
  2586. #if HAS_BED_PROBE
  2587. if (by_probe) {
  2588. dx -= X_PROBE_OFFSET_FROM_EXTRUDER;
  2589. dy -= Y_PROBE_OFFSET_FROM_EXTRUDER;
  2590. }
  2591. #endif
  2592. #if IS_SCARA
  2593. #if MIDDLE_DEAD_ZONE_R > 0
  2594. const float R2 = HYPOT2(dx - SCARA_OFFSET_X, dy - SCARA_OFFSET_Y);
  2595. return R2 >= sq(float(MIDDLE_DEAD_ZONE_R)) && R2 <= sq(L1 + L2);
  2596. #else
  2597. return HYPOT2(dx - SCARA_OFFSET_X, dy - SCARA_OFFSET_Y) <= sq(L1 + L2);
  2598. #endif
  2599. #elif ENABLED(DELTA)
  2600. return HYPOT2(dx, dy) <= sq((float)(DELTA_PRINTABLE_RADIUS));
  2601. #else
  2602. const float dz = RAW_Z_POSITION(target[Z_AXIS]);
  2603. return dx >= X_MIN_POS - 0.0001 && dx <= X_MAX_POS + 0.0001
  2604. && dy >= Y_MIN_POS - 0.0001 && dy <= Y_MAX_POS + 0.0001
  2605. && dz >= Z_MIN_POS - 0.0001 && dz <= Z_MAX_POS + 0.0001;
  2606. #endif
  2607. }
  2608. /**************************************************
  2609. ***************** GCode Handlers *****************
  2610. **************************************************/
  2611. /**
  2612. * G0, G1: Coordinated movement of X Y Z E axes
  2613. */
  2614. inline void gcode_G0_G1(
  2615. #if IS_SCARA
  2616. bool fast_move=false
  2617. #endif
  2618. ) {
  2619. if (IsRunning()) {
  2620. gcode_get_destination(); // For X Y Z E F
  2621. #if ENABLED(FWRETRACT)
  2622. if (autoretract_enabled && !(code_seen('X') || code_seen('Y') || code_seen('Z')) && code_seen('E')) {
  2623. const float echange = destination[E_AXIS] - current_position[E_AXIS];
  2624. // Is this move an attempt to retract or recover?
  2625. if ((echange < -MIN_RETRACT && !retracted[active_extruder]) || (echange > MIN_RETRACT && retracted[active_extruder])) {
  2626. current_position[E_AXIS] = destination[E_AXIS]; // hide the slicer-generated retract/recover from calculations
  2627. sync_plan_position_e(); // AND from the planner
  2628. retract(!retracted[active_extruder]);
  2629. return;
  2630. }
  2631. }
  2632. #endif //FWRETRACT
  2633. #if IS_SCARA
  2634. fast_move ? prepare_uninterpolated_move_to_destination() : prepare_move_to_destination();
  2635. #else
  2636. prepare_move_to_destination();
  2637. #endif
  2638. }
  2639. }
  2640. /**
  2641. * G2: Clockwise Arc
  2642. * G3: Counterclockwise Arc
  2643. *
  2644. * This command has two forms: IJ-form and R-form.
  2645. *
  2646. * - I specifies an X offset. J specifies a Y offset.
  2647. * At least one of the IJ parameters is required.
  2648. * X and Y can be omitted to do a complete circle.
  2649. * The given XY is not error-checked. The arc ends
  2650. * based on the angle of the destination.
  2651. * Mixing I or J with R will throw an error.
  2652. *
  2653. * - R specifies the radius. X or Y is required.
  2654. * Omitting both X and Y will throw an error.
  2655. * X or Y must differ from the current XY.
  2656. * Mixing R with I or J will throw an error.
  2657. *
  2658. * Examples:
  2659. *
  2660. * G2 I10 ; CW circle centered at X+10
  2661. * G3 X20 Y12 R14 ; CCW circle with r=14 ending at X20 Y12
  2662. */
  2663. #if ENABLED(ARC_SUPPORT)
  2664. inline void gcode_G2_G3(bool clockwise) {
  2665. if (IsRunning()) {
  2666. #if ENABLED(SF_ARC_FIX)
  2667. const bool relative_mode_backup = relative_mode;
  2668. relative_mode = true;
  2669. #endif
  2670. gcode_get_destination();
  2671. #if ENABLED(SF_ARC_FIX)
  2672. relative_mode = relative_mode_backup;
  2673. #endif
  2674. float arc_offset[2] = { 0.0, 0.0 };
  2675. if (code_seen('R')) {
  2676. const float r = code_value_axis_units(X_AXIS),
  2677. x1 = current_position[X_AXIS], y1 = current_position[Y_AXIS],
  2678. x2 = destination[X_AXIS], y2 = destination[Y_AXIS];
  2679. if (r && (x2 != x1 || y2 != y1)) {
  2680. const float e = clockwise ^ (r < 0) ? -1 : 1, // clockwise -1/1, counterclockwise 1/-1
  2681. dx = x2 - x1, dy = y2 - y1, // X and Y differences
  2682. d = HYPOT(dx, dy), // Linear distance between the points
  2683. h = sqrt(sq(r) - sq(d * 0.5)), // Distance to the arc pivot-point
  2684. mx = (x1 + x2) * 0.5, my = (y1 + y2) * 0.5, // Point between the two points
  2685. sx = -dy / d, sy = dx / d, // Slope of the perpendicular bisector
  2686. cx = mx + e * h * sx, cy = my + e * h * sy; // Pivot-point of the arc
  2687. arc_offset[X_AXIS] = cx - x1;
  2688. arc_offset[Y_AXIS] = cy - y1;
  2689. }
  2690. }
  2691. else {
  2692. if (code_seen('I')) arc_offset[X_AXIS] = code_value_axis_units(X_AXIS);
  2693. if (code_seen('J')) arc_offset[Y_AXIS] = code_value_axis_units(Y_AXIS);
  2694. }
  2695. if (arc_offset[0] || arc_offset[1]) {
  2696. // Send an arc to the planner
  2697. plan_arc(destination, arc_offset, clockwise);
  2698. refresh_cmd_timeout();
  2699. }
  2700. else {
  2701. // Bad arguments
  2702. SERIAL_ERROR_START;
  2703. SERIAL_ERRORLNPGM(MSG_ERR_ARC_ARGS);
  2704. }
  2705. }
  2706. }
  2707. #endif
  2708. /**
  2709. * G4: Dwell S<seconds> or P<milliseconds>
  2710. */
  2711. inline void gcode_G4() {
  2712. millis_t dwell_ms = 0;
  2713. if (code_seen('P')) dwell_ms = code_value_millis(); // milliseconds to wait
  2714. if (code_seen('S')) dwell_ms = code_value_millis_from_seconds(); // seconds to wait
  2715. stepper.synchronize();
  2716. refresh_cmd_timeout();
  2717. dwell_ms += previous_cmd_ms; // keep track of when we started waiting
  2718. if (!lcd_hasstatus()) LCD_MESSAGEPGM(MSG_DWELL);
  2719. while (PENDING(millis(), dwell_ms)) idle();
  2720. }
  2721. #if ENABLED(BEZIER_CURVE_SUPPORT)
  2722. /**
  2723. * Parameters interpreted according to:
  2724. * http://linuxcnc.org/docs/2.6/html/gcode/gcode.html#sec:G5-Cubic-Spline
  2725. * However I, J omission is not supported at this point; all
  2726. * parameters can be omitted and default to zero.
  2727. */
  2728. /**
  2729. * G5: Cubic B-spline
  2730. */
  2731. inline void gcode_G5() {
  2732. if (IsRunning()) {
  2733. gcode_get_destination();
  2734. const float offset[] = {
  2735. code_seen('I') ? code_value_axis_units(X_AXIS) : 0.0,
  2736. code_seen('J') ? code_value_axis_units(Y_AXIS) : 0.0,
  2737. code_seen('P') ? code_value_axis_units(X_AXIS) : 0.0,
  2738. code_seen('Q') ? code_value_axis_units(Y_AXIS) : 0.0
  2739. };
  2740. plan_cubic_move(offset);
  2741. }
  2742. }
  2743. #endif // BEZIER_CURVE_SUPPORT
  2744. #if ENABLED(FWRETRACT)
  2745. /**
  2746. * G10 - Retract filament according to settings of M207
  2747. * G11 - Recover filament according to settings of M208
  2748. */
  2749. inline void gcode_G10_G11(bool doRetract=false) {
  2750. #if EXTRUDERS > 1
  2751. if (doRetract) {
  2752. retracted_swap[active_extruder] = (code_seen('S') && code_value_bool()); // checks for swap retract argument
  2753. }
  2754. #endif
  2755. retract(doRetract
  2756. #if EXTRUDERS > 1
  2757. , retracted_swap[active_extruder]
  2758. #endif
  2759. );
  2760. }
  2761. #endif //FWRETRACT
  2762. #if ENABLED(NOZZLE_CLEAN_FEATURE)
  2763. /**
  2764. * G12: Clean the nozzle
  2765. */
  2766. inline void gcode_G12() {
  2767. // Don't allow nozzle cleaning without homing first
  2768. if (axis_unhomed_error(true, true, true)) { return; }
  2769. const uint8_t pattern = code_seen('P') ? code_value_ushort() : 0,
  2770. strokes = code_seen('S') ? code_value_ushort() : NOZZLE_CLEAN_STROKES,
  2771. objects = code_seen('T') ? code_value_ushort() : NOZZLE_CLEAN_TRIANGLES;
  2772. const float radius = code_seen('R') ? code_value_float() : NOZZLE_CLEAN_CIRCLE_RADIUS;
  2773. Nozzle::clean(pattern, strokes, radius, objects);
  2774. }
  2775. #endif
  2776. #if ENABLED(INCH_MODE_SUPPORT)
  2777. /**
  2778. * G20: Set input mode to inches
  2779. */
  2780. inline void gcode_G20() { set_input_linear_units(LINEARUNIT_INCH); }
  2781. /**
  2782. * G21: Set input mode to millimeters
  2783. */
  2784. inline void gcode_G21() { set_input_linear_units(LINEARUNIT_MM); }
  2785. #endif
  2786. #if ENABLED(NOZZLE_PARK_FEATURE)
  2787. /**
  2788. * G27: Park the nozzle
  2789. */
  2790. inline void gcode_G27() {
  2791. // Don't allow nozzle parking without homing first
  2792. if (axis_unhomed_error(true, true, true)) return;
  2793. Nozzle::park(code_seen('P') ? code_value_ushort() : 0);
  2794. }
  2795. #endif // NOZZLE_PARK_FEATURE
  2796. #if ENABLED(QUICK_HOME)
  2797. static void quick_home_xy() {
  2798. // Pretend the current position is 0,0
  2799. current_position[X_AXIS] = current_position[Y_AXIS] = 0.0;
  2800. sync_plan_position();
  2801. const int x_axis_home_dir =
  2802. #if ENABLED(DUAL_X_CARRIAGE)
  2803. x_home_dir(active_extruder)
  2804. #else
  2805. home_dir(X_AXIS)
  2806. #endif
  2807. ;
  2808. const float mlx = max_length(X_AXIS),
  2809. mly = max_length(Y_AXIS),
  2810. mlratio = mlx > mly ? mly / mlx : mlx / mly,
  2811. fr_mm_s = min(homing_feedrate_mm_s[X_AXIS], homing_feedrate_mm_s[Y_AXIS]) * sqrt(sq(mlratio) + 1.0);
  2812. do_blocking_move_to_xy(1.5 * mlx * x_axis_home_dir, 1.5 * mly * home_dir(Y_AXIS), fr_mm_s);
  2813. endstops.hit_on_purpose(); // clear endstop hit flags
  2814. current_position[X_AXIS] = current_position[Y_AXIS] = 0.0;
  2815. }
  2816. #endif // QUICK_HOME
  2817. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2818. void log_machine_info() {
  2819. SERIAL_ECHOPGM("Machine Type: ");
  2820. #if ENABLED(DELTA)
  2821. SERIAL_ECHOLNPGM("Delta");
  2822. #elif IS_SCARA
  2823. SERIAL_ECHOLNPGM("SCARA");
  2824. #elif IS_CORE
  2825. SERIAL_ECHOLNPGM("Core");
  2826. #else
  2827. SERIAL_ECHOLNPGM("Cartesian");
  2828. #endif
  2829. SERIAL_ECHOPGM("Probe: ");
  2830. #if ENABLED(PROBE_MANUALLY)
  2831. SERIAL_ECHOLNPGM("PROBE_MANUALLY");
  2832. #elif ENABLED(FIX_MOUNTED_PROBE)
  2833. SERIAL_ECHOLNPGM("FIX_MOUNTED_PROBE");
  2834. #elif ENABLED(BLTOUCH)
  2835. SERIAL_ECHOLNPGM("BLTOUCH");
  2836. #elif HAS_Z_SERVO_ENDSTOP
  2837. SERIAL_ECHOLNPGM("SERVO PROBE");
  2838. #elif ENABLED(Z_PROBE_SLED)
  2839. SERIAL_ECHOLNPGM("Z_PROBE_SLED");
  2840. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  2841. SERIAL_ECHOLNPGM("Z_PROBE_ALLEN_KEY");
  2842. #else
  2843. SERIAL_ECHOLNPGM("NONE");
  2844. #endif
  2845. #if HAS_BED_PROBE
  2846. SERIAL_ECHOPAIR("Probe Offset X:", X_PROBE_OFFSET_FROM_EXTRUDER);
  2847. SERIAL_ECHOPAIR(" Y:", Y_PROBE_OFFSET_FROM_EXTRUDER);
  2848. SERIAL_ECHOPAIR(" Z:", zprobe_zoffset);
  2849. #if (X_PROBE_OFFSET_FROM_EXTRUDER > 0)
  2850. SERIAL_ECHOPGM(" (Right");
  2851. #elif (X_PROBE_OFFSET_FROM_EXTRUDER < 0)
  2852. SERIAL_ECHOPGM(" (Left");
  2853. #elif (Y_PROBE_OFFSET_FROM_EXTRUDER != 0)
  2854. SERIAL_ECHOPGM(" (Middle");
  2855. #else
  2856. SERIAL_ECHOPGM(" (Aligned With");
  2857. #endif
  2858. #if (Y_PROBE_OFFSET_FROM_EXTRUDER > 0)
  2859. SERIAL_ECHOPGM("-Back");
  2860. #elif (Y_PROBE_OFFSET_FROM_EXTRUDER < 0)
  2861. SERIAL_ECHOPGM("-Front");
  2862. #elif (X_PROBE_OFFSET_FROM_EXTRUDER != 0)
  2863. SERIAL_ECHOPGM("-Center");
  2864. #endif
  2865. if (zprobe_zoffset < 0)
  2866. SERIAL_ECHOPGM(" & Below");
  2867. else if (zprobe_zoffset > 0)
  2868. SERIAL_ECHOPGM(" & Above");
  2869. else
  2870. SERIAL_ECHOPGM(" & Same Z as");
  2871. SERIAL_ECHOLNPGM(" Nozzle)");
  2872. #endif
  2873. #if HAS_ABL
  2874. SERIAL_ECHOPGM("Auto Bed Leveling: ");
  2875. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  2876. SERIAL_ECHOPGM("LINEAR");
  2877. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2878. SERIAL_ECHOPGM("BILINEAR");
  2879. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  2880. SERIAL_ECHOPGM("3POINT");
  2881. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2882. SERIAL_ECHOPGM("UBL");
  2883. #endif
  2884. if (planner.abl_enabled) {
  2885. SERIAL_ECHOLNPGM(" (enabled)");
  2886. #if ABL_PLANAR
  2887. float diff[XYZ] = {
  2888. stepper.get_axis_position_mm(X_AXIS) - current_position[X_AXIS],
  2889. stepper.get_axis_position_mm(Y_AXIS) - current_position[Y_AXIS],
  2890. stepper.get_axis_position_mm(Z_AXIS) - current_position[Z_AXIS]
  2891. };
  2892. SERIAL_ECHOPGM("ABL Adjustment X");
  2893. if (diff[X_AXIS] > 0) SERIAL_CHAR('+');
  2894. SERIAL_ECHO(diff[X_AXIS]);
  2895. SERIAL_ECHOPGM(" Y");
  2896. if (diff[Y_AXIS] > 0) SERIAL_CHAR('+');
  2897. SERIAL_ECHO(diff[Y_AXIS]);
  2898. SERIAL_ECHOPGM(" Z");
  2899. if (diff[Z_AXIS] > 0) SERIAL_CHAR('+');
  2900. SERIAL_ECHO(diff[Z_AXIS]);
  2901. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2902. SERIAL_ECHOPAIR("UBL Adjustment Z", stepper.get_axis_position_mm(Z_AXIS) - current_position[Z_AXIS]);
  2903. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2904. SERIAL_ECHOPAIR("ABL Adjustment Z", bilinear_z_offset(current_position));
  2905. #endif
  2906. }
  2907. else
  2908. SERIAL_ECHOLNPGM(" (disabled)");
  2909. SERIAL_EOL;
  2910. #elif ENABLED(MESH_BED_LEVELING)
  2911. SERIAL_ECHOPGM("Mesh Bed Leveling");
  2912. if (mbl.active()) {
  2913. float lz = current_position[Z_AXIS];
  2914. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], lz);
  2915. SERIAL_ECHOLNPGM(" (enabled)");
  2916. SERIAL_ECHOPAIR("MBL Adjustment Z", lz);
  2917. }
  2918. else
  2919. SERIAL_ECHOPGM(" (disabled)");
  2920. SERIAL_EOL;
  2921. #endif // MESH_BED_LEVELING
  2922. }
  2923. #endif // DEBUG_LEVELING_FEATURE
  2924. #if ENABLED(DELTA)
  2925. /**
  2926. * A delta can only safely home all axes at the same time
  2927. * This is like quick_home_xy() but for 3 towers.
  2928. */
  2929. inline void home_delta() {
  2930. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2931. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> home_delta", current_position);
  2932. #endif
  2933. // Init the current position of all carriages to 0,0,0
  2934. ZERO(current_position);
  2935. sync_plan_position();
  2936. // Move all carriages together linearly until an endstop is hit.
  2937. current_position[X_AXIS] = current_position[Y_AXIS] = current_position[Z_AXIS] = (Z_MAX_LENGTH + 10);
  2938. feedrate_mm_s = homing_feedrate_mm_s[X_AXIS];
  2939. line_to_current_position();
  2940. stepper.synchronize();
  2941. endstops.hit_on_purpose(); // clear endstop hit flags
  2942. // At least one carriage has reached the top.
  2943. // Now re-home each carriage separately.
  2944. HOMEAXIS(A);
  2945. HOMEAXIS(B);
  2946. HOMEAXIS(C);
  2947. // Set all carriages to their home positions
  2948. // Do this here all at once for Delta, because
  2949. // XYZ isn't ABC. Applying this per-tower would
  2950. // give the impression that they are the same.
  2951. LOOP_XYZ(i) set_axis_is_at_home((AxisEnum)i);
  2952. SYNC_PLAN_POSITION_KINEMATIC();
  2953. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2954. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< home_delta", current_position);
  2955. #endif
  2956. }
  2957. #endif // DELTA
  2958. #if ENABLED(Z_SAFE_HOMING)
  2959. inline void home_z_safely() {
  2960. // Disallow Z homing if X or Y are unknown
  2961. if (!axis_known_position[X_AXIS] || !axis_known_position[Y_AXIS]) {
  2962. LCD_MESSAGEPGM(MSG_ERR_Z_HOMING);
  2963. SERIAL_ECHO_START;
  2964. SERIAL_ECHOLNPGM(MSG_ERR_Z_HOMING);
  2965. return;
  2966. }
  2967. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2968. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Z_SAFE_HOMING >>>");
  2969. #endif
  2970. SYNC_PLAN_POSITION_KINEMATIC();
  2971. /**
  2972. * Move the Z probe (or just the nozzle) to the safe homing point
  2973. */
  2974. destination[X_AXIS] = LOGICAL_X_POSITION(Z_SAFE_HOMING_X_POINT);
  2975. destination[Y_AXIS] = LOGICAL_Y_POSITION(Z_SAFE_HOMING_Y_POINT);
  2976. destination[Z_AXIS] = current_position[Z_AXIS]; // Z is already at the right height
  2977. if (position_is_reachable(
  2978. destination
  2979. #if HOMING_Z_WITH_PROBE
  2980. , true
  2981. #endif
  2982. )
  2983. ) {
  2984. #if HOMING_Z_WITH_PROBE
  2985. destination[X_AXIS] -= X_PROBE_OFFSET_FROM_EXTRUDER;
  2986. destination[Y_AXIS] -= Y_PROBE_OFFSET_FROM_EXTRUDER;
  2987. #endif
  2988. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2989. if (DEBUGGING(LEVELING)) DEBUG_POS("Z_SAFE_HOMING", destination);
  2990. #endif
  2991. // This causes the carriage on Dual X to unpark
  2992. #if ENABLED(DUAL_X_CARRIAGE)
  2993. active_extruder_parked = false;
  2994. #endif
  2995. do_blocking_move_to_xy(destination[X_AXIS], destination[Y_AXIS]);
  2996. HOMEAXIS(Z);
  2997. }
  2998. else {
  2999. LCD_MESSAGEPGM(MSG_ZPROBE_OUT);
  3000. SERIAL_ECHO_START;
  3001. SERIAL_ECHOLNPGM(MSG_ZPROBE_OUT);
  3002. }
  3003. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3004. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< Z_SAFE_HOMING");
  3005. #endif
  3006. }
  3007. #endif // Z_SAFE_HOMING
  3008. /**
  3009. * G28: Home all axes according to settings
  3010. *
  3011. * Parameters
  3012. *
  3013. * None Home to all axes with no parameters.
  3014. * With QUICK_HOME enabled XY will home together, then Z.
  3015. *
  3016. * Cartesian parameters
  3017. *
  3018. * X Home to the X endstop
  3019. * Y Home to the Y endstop
  3020. * Z Home to the Z endstop
  3021. *
  3022. */
  3023. inline void gcode_G28() {
  3024. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3025. if (DEBUGGING(LEVELING)) {
  3026. SERIAL_ECHOLNPGM(">>> gcode_G28");
  3027. log_machine_info();
  3028. }
  3029. #endif
  3030. // Wait for planner moves to finish!
  3031. stepper.synchronize();
  3032. // Disable the leveling matrix before homing
  3033. #if PLANNER_LEVELING
  3034. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3035. const bool bed_leveling_state_at_entry = ubl.state.active;
  3036. #endif
  3037. set_bed_leveling_enabled(false);
  3038. #endif
  3039. // Always home with tool 0 active
  3040. #if HOTENDS > 1
  3041. const uint8_t old_tool_index = active_extruder;
  3042. tool_change(0, 0, true);
  3043. #endif
  3044. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  3045. extruder_duplication_enabled = false;
  3046. #endif
  3047. setup_for_endstop_or_probe_move();
  3048. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3049. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> endstops.enable(true)");
  3050. #endif
  3051. endstops.enable(true); // Enable endstops for next homing move
  3052. #if ENABLED(DELTA)
  3053. home_delta();
  3054. #else // NOT DELTA
  3055. const bool homeX = code_seen('X'), homeY = code_seen('Y'), homeZ = code_seen('Z'),
  3056. home_all_axis = (!homeX && !homeY && !homeZ) || (homeX && homeY && homeZ);
  3057. set_destination_to_current();
  3058. #if Z_HOME_DIR > 0 // If homing away from BED do Z first
  3059. if (home_all_axis || homeZ) {
  3060. HOMEAXIS(Z);
  3061. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3062. if (DEBUGGING(LEVELING)) DEBUG_POS("> HOMEAXIS(Z)", current_position);
  3063. #endif
  3064. }
  3065. #else
  3066. if (home_all_axis || homeX || homeY) {
  3067. // Raise Z before homing any other axes and z is not already high enough (never lower z)
  3068. destination[Z_AXIS] = LOGICAL_Z_POSITION(Z_HOMING_HEIGHT);
  3069. if (destination[Z_AXIS] > current_position[Z_AXIS]) {
  3070. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3071. if (DEBUGGING(LEVELING))
  3072. SERIAL_ECHOLNPAIR("Raise Z (before homing) to ", destination[Z_AXIS]);
  3073. #endif
  3074. do_blocking_move_to_z(destination[Z_AXIS]);
  3075. }
  3076. }
  3077. #endif
  3078. #if ENABLED(QUICK_HOME)
  3079. if (home_all_axis || (homeX && homeY)) quick_home_xy();
  3080. #endif
  3081. #if ENABLED(HOME_Y_BEFORE_X)
  3082. // Home Y
  3083. if (home_all_axis || homeY) {
  3084. HOMEAXIS(Y);
  3085. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3086. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeY", current_position);
  3087. #endif
  3088. }
  3089. #endif
  3090. // Home X
  3091. if (home_all_axis || homeX) {
  3092. #if ENABLED(DUAL_X_CARRIAGE)
  3093. // Always home the 2nd (right) extruder first
  3094. active_extruder = 1;
  3095. HOMEAXIS(X);
  3096. // Remember this extruder's position for later tool change
  3097. inactive_extruder_x_pos = RAW_X_POSITION(current_position[X_AXIS]);
  3098. // Home the 1st (left) extruder
  3099. active_extruder = 0;
  3100. HOMEAXIS(X);
  3101. // Consider the active extruder to be parked
  3102. COPY(raised_parked_position, current_position);
  3103. delayed_move_time = 0;
  3104. active_extruder_parked = true;
  3105. #else
  3106. HOMEAXIS(X);
  3107. #endif
  3108. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3109. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeX", current_position);
  3110. #endif
  3111. }
  3112. #if DISABLED(HOME_Y_BEFORE_X)
  3113. // Home Y
  3114. if (home_all_axis || homeY) {
  3115. HOMEAXIS(Y);
  3116. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3117. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeY", current_position);
  3118. #endif
  3119. }
  3120. #endif
  3121. // Home Z last if homing towards the bed
  3122. #if Z_HOME_DIR < 0
  3123. if (home_all_axis || homeZ) {
  3124. #if ENABLED(Z_SAFE_HOMING)
  3125. home_z_safely();
  3126. #else
  3127. HOMEAXIS(Z);
  3128. #endif
  3129. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3130. if (DEBUGGING(LEVELING)) DEBUG_POS("> (home_all_axis || homeZ) > final", current_position);
  3131. #endif
  3132. } // home_all_axis || homeZ
  3133. #endif // Z_HOME_DIR < 0
  3134. SYNC_PLAN_POSITION_KINEMATIC();
  3135. #endif // !DELTA (gcode_G28)
  3136. endstops.not_homing();
  3137. #if ENABLED(DELTA) && ENABLED(DELTA_HOME_TO_SAFE_ZONE)
  3138. // move to a height where we can use the full xy-area
  3139. do_blocking_move_to_z(delta_clip_start_height);
  3140. #endif
  3141. // Enable mesh leveling again
  3142. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3143. set_bed_leveling_enabled(bed_leveling_state_at_entry);
  3144. #endif
  3145. #if ENABLED(MESH_BED_LEVELING)
  3146. if (mbl.reactivate()) {
  3147. set_bed_leveling_enabled(true);
  3148. if (home_all_axis || (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && homeZ)) {
  3149. #if ENABLED(MESH_G28_REST_ORIGIN)
  3150. current_position[Z_AXIS] = LOGICAL_Z_POSITION(Z_MIN_POS);
  3151. set_destination_to_current();
  3152. line_to_destination(homing_feedrate_mm_s[Z_AXIS]);
  3153. stepper.synchronize();
  3154. #endif
  3155. }
  3156. }
  3157. #endif
  3158. clean_up_after_endstop_or_probe_move();
  3159. // Restore the active tool after homing
  3160. #if HOTENDS > 1
  3161. tool_change(old_tool_index, 0, true);
  3162. #endif
  3163. report_current_position();
  3164. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3165. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G28");
  3166. #endif
  3167. }
  3168. #if HAS_PROBING_PROCEDURE
  3169. void out_of_range_error(const char* p_edge) {
  3170. SERIAL_PROTOCOLPGM("?Probe ");
  3171. serialprintPGM(p_edge);
  3172. SERIAL_PROTOCOLLNPGM(" position out of range.");
  3173. }
  3174. #endif
  3175. #if ENABLED(MESH_BED_LEVELING)
  3176. inline void _mbl_goto_xy(const float &x, const float &y) {
  3177. const float old_feedrate_mm_s = feedrate_mm_s;
  3178. #if MANUAL_PROBE_HEIGHT > 0
  3179. feedrate_mm_s = homing_feedrate_mm_s[Z_AXIS];
  3180. current_position[Z_AXIS] = LOGICAL_Z_POSITION(Z_MIN_POS) + MANUAL_PROBE_HEIGHT;
  3181. line_to_current_position();
  3182. #endif
  3183. feedrate_mm_s = MMM_TO_MMS(XY_PROBE_SPEED);
  3184. current_position[X_AXIS] = LOGICAL_X_POSITION(x);
  3185. current_position[Y_AXIS] = LOGICAL_Y_POSITION(y);
  3186. line_to_current_position();
  3187. #if MANUAL_PROBE_HEIGHT > 0
  3188. feedrate_mm_s = homing_feedrate_mm_s[Z_AXIS];
  3189. current_position[Z_AXIS] = LOGICAL_Z_POSITION(Z_MIN_POS) + 0.2; // just slightly over the bed
  3190. line_to_current_position();
  3191. #endif
  3192. feedrate_mm_s = old_feedrate_mm_s;
  3193. stepper.synchronize();
  3194. }
  3195. // Save 130 bytes with non-duplication of PSTR
  3196. void say_not_entered() { SERIAL_PROTOCOLLNPGM(" not entered."); }
  3197. void mbl_mesh_report() {
  3198. SERIAL_PROTOCOLLNPGM("Num X,Y: " STRINGIFY(MESH_NUM_X_POINTS) "," STRINGIFY(MESH_NUM_Y_POINTS));
  3199. SERIAL_PROTOCOLPGM("Z offset: "); SERIAL_PROTOCOL_F(mbl.z_offset, 5);
  3200. SERIAL_PROTOCOLLNPGM("\nMeasured points:");
  3201. for (uint8_t py = 0; py < MESH_NUM_Y_POINTS; py++) {
  3202. for (uint8_t px = 0; px < MESH_NUM_X_POINTS; px++) {
  3203. SERIAL_PROTOCOLPGM(" ");
  3204. SERIAL_PROTOCOL_F(mbl.z_values[py][px], 5);
  3205. }
  3206. SERIAL_EOL;
  3207. }
  3208. }
  3209. /**
  3210. * G29: Mesh-based Z probe, probes a grid and produces a
  3211. * mesh to compensate for variable bed height
  3212. *
  3213. * Parameters With MESH_BED_LEVELING:
  3214. *
  3215. * S0 Produce a mesh report
  3216. * S1 Start probing mesh points
  3217. * S2 Probe the next mesh point
  3218. * S3 Xn Yn Zn.nn Manually modify a single point
  3219. * S4 Zn.nn Set z offset. Positive away from bed, negative closer to bed.
  3220. * S5 Reset and disable mesh
  3221. *
  3222. * The S0 report the points as below
  3223. *
  3224. * +----> X-axis 1-n
  3225. * |
  3226. * |
  3227. * v Y-axis 1-n
  3228. *
  3229. */
  3230. inline void gcode_G29() {
  3231. static int probe_index = -1;
  3232. #if HAS_SOFTWARE_ENDSTOPS
  3233. static bool enable_soft_endstops;
  3234. #endif
  3235. const MeshLevelingState state = code_seen('S') ? (MeshLevelingState)code_value_byte() : MeshReport;
  3236. if (state < 0 || state > 5) {
  3237. SERIAL_PROTOCOLLNPGM("S out of range (0-5).");
  3238. return;
  3239. }
  3240. int8_t px, py;
  3241. switch (state) {
  3242. case MeshReport:
  3243. if (mbl.has_mesh()) {
  3244. SERIAL_PROTOCOLLNPAIR("State: ", mbl.active() ? MSG_ON : MSG_OFF);
  3245. mbl_mesh_report();
  3246. }
  3247. else
  3248. SERIAL_PROTOCOLLNPGM("Mesh bed leveling has no data.");
  3249. break;
  3250. case MeshStart:
  3251. mbl.reset();
  3252. probe_index = 0;
  3253. enqueue_and_echo_commands_P(PSTR("G28\nG29 S2"));
  3254. break;
  3255. case MeshNext:
  3256. if (probe_index < 0) {
  3257. SERIAL_PROTOCOLLNPGM("Start mesh probing with \"G29 S1\" first.");
  3258. return;
  3259. }
  3260. // For each G29 S2...
  3261. if (probe_index == 0) {
  3262. #if HAS_SOFTWARE_ENDSTOPS
  3263. // For the initial G29 S2 save software endstop state
  3264. enable_soft_endstops = soft_endstops_enabled;
  3265. #endif
  3266. }
  3267. else {
  3268. // For G29 S2 after adjusting Z.
  3269. mbl.set_zigzag_z(probe_index - 1, current_position[Z_AXIS]);
  3270. #if HAS_SOFTWARE_ENDSTOPS
  3271. soft_endstops_enabled = enable_soft_endstops;
  3272. #endif
  3273. }
  3274. // If there's another point to sample, move there with optional lift.
  3275. if (probe_index < (MESH_NUM_X_POINTS) * (MESH_NUM_Y_POINTS)) {
  3276. mbl.zigzag(probe_index, px, py);
  3277. _mbl_goto_xy(mbl.get_probe_x(px), mbl.get_probe_y(py));
  3278. #if HAS_SOFTWARE_ENDSTOPS
  3279. // Disable software endstops to allow manual adjustment
  3280. // If G29 is not completed, they will not be re-enabled
  3281. soft_endstops_enabled = false;
  3282. #endif
  3283. probe_index++;
  3284. }
  3285. else {
  3286. // One last "return to the bed" (as originally coded) at completion
  3287. current_position[Z_AXIS] = LOGICAL_Z_POSITION(Z_MIN_POS) + MANUAL_PROBE_HEIGHT;
  3288. line_to_current_position();
  3289. stepper.synchronize();
  3290. // After recording the last point, activate the mbl and home
  3291. SERIAL_PROTOCOLLNPGM("Mesh probing done.");
  3292. probe_index = -1;
  3293. mbl.set_has_mesh(true);
  3294. mbl.set_reactivate(true);
  3295. enqueue_and_echo_commands_P(PSTR("G28"));
  3296. BUZZ(100, 659);
  3297. BUZZ(100, 698);
  3298. }
  3299. break;
  3300. case MeshSet:
  3301. if (code_seen('X')) {
  3302. px = code_value_int() - 1;
  3303. if (px < 0 || px >= MESH_NUM_X_POINTS) {
  3304. SERIAL_PROTOCOLLNPGM("X out of range (1-" STRINGIFY(MESH_NUM_X_POINTS) ").");
  3305. return;
  3306. }
  3307. }
  3308. else {
  3309. SERIAL_CHAR('X'); say_not_entered();
  3310. return;
  3311. }
  3312. if (code_seen('Y')) {
  3313. py = code_value_int() - 1;
  3314. if (py < 0 || py >= MESH_NUM_Y_POINTS) {
  3315. SERIAL_PROTOCOLLNPGM("Y out of range (1-" STRINGIFY(MESH_NUM_Y_POINTS) ").");
  3316. return;
  3317. }
  3318. }
  3319. else {
  3320. SERIAL_CHAR('Y'); say_not_entered();
  3321. return;
  3322. }
  3323. if (code_seen('Z')) {
  3324. mbl.z_values[py][px] = code_value_axis_units(Z_AXIS);
  3325. }
  3326. else {
  3327. SERIAL_CHAR('Z'); say_not_entered();
  3328. return;
  3329. }
  3330. break;
  3331. case MeshSetZOffset:
  3332. if (code_seen('Z')) {
  3333. mbl.z_offset = code_value_axis_units(Z_AXIS);
  3334. }
  3335. else {
  3336. SERIAL_CHAR('Z'); say_not_entered();
  3337. return;
  3338. }
  3339. break;
  3340. case MeshReset:
  3341. reset_bed_level();
  3342. break;
  3343. } // switch(state)
  3344. report_current_position();
  3345. }
  3346. #elif HAS_ABL && DISABLED(AUTO_BED_LEVELING_UBL)
  3347. /**
  3348. * G29: Detailed Z probe, probes the bed at 3 or more points.
  3349. * Will fail if the printer has not been homed with G28.
  3350. *
  3351. * Enhanced G29 Auto Bed Leveling Probe Routine
  3352. *
  3353. * Parameters With LINEAR and BILINEAR:
  3354. *
  3355. * P Set the size of the grid that will be probed (P x P points).
  3356. * Not supported by non-linear delta printer bed leveling.
  3357. * Example: "G29 P4"
  3358. *
  3359. * S Set the XY travel speed between probe points (in units/min)
  3360. *
  3361. * D Dry-Run mode. Just evaluate the bed Topology - Don't apply
  3362. * or clean the rotation Matrix. Useful to check the topology
  3363. * after a first run of G29.
  3364. *
  3365. * V Set the verbose level (0-4). Example: "G29 V3"
  3366. *
  3367. * T Generate a Bed Topology Report. Example: "G29 P5 T" for a detailed report.
  3368. * This is useful for manual bed leveling and finding flaws in the bed (to
  3369. * assist with part placement).
  3370. * Not supported by non-linear delta printer bed leveling.
  3371. *
  3372. * F Set the Front limit of the probing grid
  3373. * B Set the Back limit of the probing grid
  3374. * L Set the Left limit of the probing grid
  3375. * R Set the Right limit of the probing grid
  3376. *
  3377. * Parameters with BILINEAR only:
  3378. *
  3379. * Z Supply an additional Z probe offset
  3380. *
  3381. * Global Parameters:
  3382. *
  3383. * E/e By default G29 will engage the Z probe, test the bed, then disengage.
  3384. * Include "E" to engage/disengage the Z probe for each sample.
  3385. * There's no extra effect if you have a fixed Z probe.
  3386. * Usage: "G29 E" or "G29 e"
  3387. *
  3388. */
  3389. inline void gcode_G29() {
  3390. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3391. const bool query = code_seen('Q');
  3392. const uint8_t old_debug_flags = marlin_debug_flags;
  3393. if (query) marlin_debug_flags |= DEBUG_LEVELING;
  3394. if (DEBUGGING(LEVELING)) {
  3395. DEBUG_POS(">>> gcode_G29", current_position);
  3396. log_machine_info();
  3397. }
  3398. marlin_debug_flags = old_debug_flags;
  3399. if (query) return;
  3400. #endif
  3401. // Don't allow auto-leveling without homing first
  3402. if (axis_unhomed_error(true, true, true)) return;
  3403. const int verbose_level = code_seen('V') ? code_value_int() : 1;
  3404. if (verbose_level < 0 || verbose_level > 4) {
  3405. SERIAL_PROTOCOLLNPGM("?(V)erbose Level is implausible (0-4).");
  3406. return;
  3407. }
  3408. bool dryrun = code_seen('D'),
  3409. stow_probe_after_each = code_seen('E');
  3410. #if ABL_GRID
  3411. if (verbose_level > 0) {
  3412. SERIAL_PROTOCOLLNPGM("G29 Auto Bed Leveling");
  3413. if (dryrun) SERIAL_PROTOCOLLNPGM("Running in DRY-RUN mode");
  3414. }
  3415. #if ABL_PLANAR
  3416. bool do_topography_map = verbose_level > 2 || code_seen('T');
  3417. // X and Y specify points in each direction, overriding the default
  3418. // These values may be saved with the completed mesh
  3419. int abl_grid_points_x = code_seen('X') ? code_value_int() : ABL_GRID_MAX_POINTS_X,
  3420. abl_grid_points_y = code_seen('Y') ? code_value_int() : ABL_GRID_MAX_POINTS_Y;
  3421. if (code_seen('P')) abl_grid_points_x = abl_grid_points_y = code_value_int();
  3422. if (abl_grid_points_x < 2 || abl_grid_points_y < 2) {
  3423. SERIAL_PROTOCOLLNPGM("?Number of probe points is implausible (2 minimum).");
  3424. return;
  3425. }
  3426. #else
  3427. const uint8_t abl_grid_points_x = ABL_GRID_MAX_POINTS_X, abl_grid_points_y = ABL_GRID_MAX_POINTS_Y;
  3428. #endif
  3429. xy_probe_feedrate_mm_s = MMM_TO_MMS(code_seen('S') ? code_value_linear_units() : XY_PROBE_SPEED);
  3430. int left_probe_bed_position = code_seen('L') ? (int)code_value_axis_units(X_AXIS) : LOGICAL_X_POSITION(LEFT_PROBE_BED_POSITION),
  3431. right_probe_bed_position = code_seen('R') ? (int)code_value_axis_units(X_AXIS) : LOGICAL_X_POSITION(RIGHT_PROBE_BED_POSITION),
  3432. front_probe_bed_position = code_seen('F') ? (int)code_value_axis_units(Y_AXIS) : LOGICAL_Y_POSITION(FRONT_PROBE_BED_POSITION),
  3433. back_probe_bed_position = code_seen('B') ? (int)code_value_axis_units(Y_AXIS) : LOGICAL_Y_POSITION(BACK_PROBE_BED_POSITION);
  3434. const bool left_out_l = left_probe_bed_position < LOGICAL_X_POSITION(MIN_PROBE_X),
  3435. left_out = left_out_l || left_probe_bed_position > right_probe_bed_position - (MIN_PROBE_EDGE),
  3436. right_out_r = right_probe_bed_position > LOGICAL_X_POSITION(MAX_PROBE_X),
  3437. right_out = right_out_r || right_probe_bed_position < left_probe_bed_position + MIN_PROBE_EDGE,
  3438. front_out_f = front_probe_bed_position < LOGICAL_Y_POSITION(MIN_PROBE_Y),
  3439. front_out = front_out_f || front_probe_bed_position > back_probe_bed_position - (MIN_PROBE_EDGE),
  3440. back_out_b = back_probe_bed_position > LOGICAL_Y_POSITION(MAX_PROBE_Y),
  3441. back_out = back_out_b || back_probe_bed_position < front_probe_bed_position + MIN_PROBE_EDGE;
  3442. if (left_out || right_out || front_out || back_out) {
  3443. if (left_out) {
  3444. out_of_range_error(PSTR("(L)eft"));
  3445. left_probe_bed_position = left_out_l ? LOGICAL_X_POSITION(MIN_PROBE_X) : right_probe_bed_position - (MIN_PROBE_EDGE);
  3446. }
  3447. if (right_out) {
  3448. out_of_range_error(PSTR("(R)ight"));
  3449. right_probe_bed_position = right_out_r ? LOGICAL_Y_POSITION(MAX_PROBE_X) : left_probe_bed_position + MIN_PROBE_EDGE;
  3450. }
  3451. if (front_out) {
  3452. out_of_range_error(PSTR("(F)ront"));
  3453. front_probe_bed_position = front_out_f ? LOGICAL_Y_POSITION(MIN_PROBE_Y) : back_probe_bed_position - (MIN_PROBE_EDGE);
  3454. }
  3455. if (back_out) {
  3456. out_of_range_error(PSTR("(B)ack"));
  3457. back_probe_bed_position = back_out_b ? LOGICAL_Y_POSITION(MAX_PROBE_Y) : front_probe_bed_position + MIN_PROBE_EDGE;
  3458. }
  3459. return;
  3460. }
  3461. #endif // ABL_GRID
  3462. stepper.synchronize();
  3463. // Disable auto bed leveling during G29
  3464. bool abl_should_enable = planner.abl_enabled;
  3465. planner.abl_enabled = false;
  3466. if (!dryrun) {
  3467. // Re-orient the current position without leveling
  3468. // based on where the steppers are positioned.
  3469. set_current_from_steppers_for_axis(ALL_AXES);
  3470. // Sync the planner to where the steppers stopped
  3471. SYNC_PLAN_POSITION_KINEMATIC();
  3472. }
  3473. setup_for_endstop_or_probe_move();
  3474. // Deploy the probe. Probe will raise if needed.
  3475. if (DEPLOY_PROBE()) {
  3476. planner.abl_enabled = abl_should_enable;
  3477. return;
  3478. }
  3479. float xProbe = 0, yProbe = 0, measured_z = 0;
  3480. #if ABL_GRID
  3481. // probe at the points of a lattice grid
  3482. const float xGridSpacing = (right_probe_bed_position - left_probe_bed_position) / (abl_grid_points_x - 1),
  3483. yGridSpacing = (back_probe_bed_position - front_probe_bed_position) / (abl_grid_points_y - 1);
  3484. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3485. float zoffset = zprobe_zoffset;
  3486. if (code_seen('Z')) zoffset += code_value_axis_units(Z_AXIS);
  3487. if ( xGridSpacing != bilinear_grid_spacing[X_AXIS]
  3488. || yGridSpacing != bilinear_grid_spacing[Y_AXIS]
  3489. || left_probe_bed_position != bilinear_start[X_AXIS]
  3490. || front_probe_bed_position != bilinear_start[Y_AXIS]
  3491. ) {
  3492. if (dryrun) {
  3493. // Before reset bed level, re-enable to correct the position
  3494. planner.abl_enabled = abl_should_enable;
  3495. }
  3496. // Reset grid to 0.0 or "not probed". (Also disables ABL)
  3497. reset_bed_level();
  3498. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  3499. bilinear_grid_spacing_virt[X_AXIS] = xGridSpacing / (BILINEAR_SUBDIVISIONS);
  3500. bilinear_grid_spacing_virt[Y_AXIS] = yGridSpacing / (BILINEAR_SUBDIVISIONS);
  3501. #endif
  3502. bilinear_grid_spacing[X_AXIS] = xGridSpacing;
  3503. bilinear_grid_spacing[Y_AXIS] = yGridSpacing;
  3504. bilinear_start[X_AXIS] = RAW_X_POSITION(left_probe_bed_position);
  3505. bilinear_start[Y_AXIS] = RAW_Y_POSITION(front_probe_bed_position);
  3506. // Can't re-enable (on error) until the new grid is written
  3507. abl_should_enable = false;
  3508. }
  3509. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  3510. /**
  3511. * solve the plane equation ax + by + d = z
  3512. * A is the matrix with rows [x y 1] for all the probed points
  3513. * B is the vector of the Z positions
  3514. * the normal vector to the plane is formed by the coefficients of the
  3515. * plane equation in the standard form, which is Vx*x+Vy*y+Vz*z+d = 0
  3516. * so Vx = -a Vy = -b Vz = 1 (we want the vector facing towards positive Z
  3517. */
  3518. const int abl2 = abl_grid_points_x * abl_grid_points_y;
  3519. int indexIntoAB[abl_grid_points_x][abl_grid_points_y],
  3520. probe_index = -1;
  3521. float eqnAMatrix[abl2 * 3], // "A" matrix of the linear system of equations
  3522. eqnBVector[abl2], // "B" vector of Z points
  3523. mean = 0.0;
  3524. #endif // AUTO_BED_LEVELING_LINEAR
  3525. #if ENABLED(PROBE_Y_FIRST)
  3526. #define PR_OUTER_VAR xCount
  3527. #define PR_OUTER_NUM abl_grid_points_x
  3528. #define PR_INNER_VAR yCount
  3529. #define PR_INNER_NUM abl_grid_points_y
  3530. #else
  3531. #define PR_OUTER_VAR yCount
  3532. #define PR_OUTER_NUM abl_grid_points_y
  3533. #define PR_INNER_VAR xCount
  3534. #define PR_INNER_NUM abl_grid_points_x
  3535. #endif
  3536. bool zig = PR_OUTER_NUM & 1; // Always end at RIGHT and BACK_PROBE_BED_POSITION
  3537. // Outer loop is Y with PROBE_Y_FIRST disabled
  3538. for (uint8_t PR_OUTER_VAR = 0; PR_OUTER_VAR < PR_OUTER_NUM; PR_OUTER_VAR++) {
  3539. int8_t inStart, inStop, inInc;
  3540. if (zig) { // away from origin
  3541. inStart = 0;
  3542. inStop = PR_INNER_NUM;
  3543. inInc = 1;
  3544. }
  3545. else { // towards origin
  3546. inStart = PR_INNER_NUM - 1;
  3547. inStop = -1;
  3548. inInc = -1;
  3549. }
  3550. zig = !zig; // zag
  3551. // Inner loop is Y with PROBE_Y_FIRST enabled
  3552. for (int8_t PR_INNER_VAR = inStart; PR_INNER_VAR != inStop; PR_INNER_VAR += inInc) {
  3553. float xBase = left_probe_bed_position + xGridSpacing * xCount,
  3554. yBase = front_probe_bed_position + yGridSpacing * yCount;
  3555. xProbe = floor(xBase + (xBase < 0 ? 0 : 0.5));
  3556. yProbe = floor(yBase + (yBase < 0 ? 0 : 0.5));
  3557. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3558. indexIntoAB[xCount][yCount] = ++probe_index;
  3559. #endif
  3560. #if IS_KINEMATIC
  3561. // Avoid probing outside the round or hexagonal area
  3562. float pos[XYZ] = { xProbe, yProbe, 0 };
  3563. if (!position_is_reachable(pos, true)) continue;
  3564. #endif
  3565. measured_z = probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
  3566. if (measured_z == NAN) {
  3567. planner.abl_enabled = abl_should_enable;
  3568. return;
  3569. }
  3570. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3571. mean += measured_z;
  3572. eqnBVector[probe_index] = measured_z;
  3573. eqnAMatrix[probe_index + 0 * abl2] = xProbe;
  3574. eqnAMatrix[probe_index + 1 * abl2] = yProbe;
  3575. eqnAMatrix[probe_index + 2 * abl2] = 1;
  3576. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3577. bed_level_grid[xCount][yCount] = measured_z + zoffset;
  3578. #endif
  3579. idle();
  3580. } // inner
  3581. } // outer
  3582. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  3583. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3584. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> 3-point Leveling");
  3585. #endif
  3586. // Probe at 3 arbitrary points
  3587. vector_3 points[3] = {
  3588. vector_3(ABL_PROBE_PT_1_X, ABL_PROBE_PT_1_Y, 0),
  3589. vector_3(ABL_PROBE_PT_2_X, ABL_PROBE_PT_2_Y, 0),
  3590. vector_3(ABL_PROBE_PT_3_X, ABL_PROBE_PT_3_Y, 0)
  3591. };
  3592. for (uint8_t i = 0; i < 3; ++i) {
  3593. // Retain the last probe position
  3594. xProbe = LOGICAL_X_POSITION(points[i].x);
  3595. yProbe = LOGICAL_Y_POSITION(points[i].y);
  3596. measured_z = points[i].z = probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
  3597. }
  3598. if (measured_z == NAN) {
  3599. planner.abl_enabled = abl_should_enable;
  3600. return;
  3601. }
  3602. if (!dryrun) {
  3603. vector_3 planeNormal = vector_3::cross(points[0] - points[1], points[2] - points[1]).get_normal();
  3604. if (planeNormal.z < 0) {
  3605. planeNormal.x *= -1;
  3606. planeNormal.y *= -1;
  3607. planeNormal.z *= -1;
  3608. }
  3609. planner.bed_level_matrix = matrix_3x3::create_look_at(planeNormal);
  3610. // Can't re-enable (on error) until the new grid is written
  3611. abl_should_enable = false;
  3612. }
  3613. #endif // AUTO_BED_LEVELING_3POINT
  3614. // Raise to _Z_CLEARANCE_DEPLOY_PROBE. Stow the probe.
  3615. if (STOW_PROBE()) {
  3616. planner.abl_enabled = abl_should_enable;
  3617. return;
  3618. }
  3619. //
  3620. // Unless this is a dry run, auto bed leveling will
  3621. // definitely be enabled after this point
  3622. //
  3623. // Restore state after probing
  3624. clean_up_after_endstop_or_probe_move();
  3625. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3626. if (DEBUGGING(LEVELING)) DEBUG_POS("> probing complete", current_position);
  3627. #endif
  3628. // Calculate leveling, print reports, correct the position
  3629. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3630. if (!dryrun) extrapolate_unprobed_bed_level();
  3631. print_bilinear_leveling_grid();
  3632. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  3633. bed_level_virt_interpolate();
  3634. bed_level_virt_print();
  3635. #endif
  3636. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  3637. // For LINEAR leveling calculate matrix, print reports, correct the position
  3638. // solve lsq problem
  3639. float plane_equation_coefficients[3];
  3640. qr_solve(plane_equation_coefficients, abl2, 3, eqnAMatrix, eqnBVector);
  3641. mean /= abl2;
  3642. if (verbose_level) {
  3643. SERIAL_PROTOCOLPGM("Eqn coefficients: a: ");
  3644. SERIAL_PROTOCOL_F(plane_equation_coefficients[0], 8);
  3645. SERIAL_PROTOCOLPGM(" b: ");
  3646. SERIAL_PROTOCOL_F(plane_equation_coefficients[1], 8);
  3647. SERIAL_PROTOCOLPGM(" d: ");
  3648. SERIAL_PROTOCOL_F(plane_equation_coefficients[2], 8);
  3649. SERIAL_EOL;
  3650. if (verbose_level > 2) {
  3651. SERIAL_PROTOCOLPGM("Mean of sampled points: ");
  3652. SERIAL_PROTOCOL_F(mean, 8);
  3653. SERIAL_EOL;
  3654. }
  3655. }
  3656. // Create the matrix but don't correct the position yet
  3657. if (!dryrun) {
  3658. planner.bed_level_matrix = matrix_3x3::create_look_at(
  3659. vector_3(-plane_equation_coefficients[0], -plane_equation_coefficients[1], 1)
  3660. );
  3661. }
  3662. // Show the Topography map if enabled
  3663. if (do_topography_map) {
  3664. SERIAL_PROTOCOLLNPGM("\nBed Height Topography:\n"
  3665. " +--- BACK --+\n"
  3666. " | |\n"
  3667. " L | (+) | R\n"
  3668. " E | | I\n"
  3669. " F | (-) N (+) | G\n"
  3670. " T | | H\n"
  3671. " | (-) | T\n"
  3672. " | |\n"
  3673. " O-- FRONT --+\n"
  3674. " (0,0)");
  3675. float min_diff = 999;
  3676. for (int8_t yy = abl_grid_points_y - 1; yy >= 0; yy--) {
  3677. for (uint8_t xx = 0; xx < abl_grid_points_x; xx++) {
  3678. int ind = indexIntoAB[xx][yy];
  3679. float diff = eqnBVector[ind] - mean,
  3680. x_tmp = eqnAMatrix[ind + 0 * abl2],
  3681. y_tmp = eqnAMatrix[ind + 1 * abl2],
  3682. z_tmp = 0;
  3683. apply_rotation_xyz(planner.bed_level_matrix, x_tmp, y_tmp, z_tmp);
  3684. NOMORE(min_diff, eqnBVector[ind] - z_tmp);
  3685. if (diff >= 0.0)
  3686. SERIAL_PROTOCOLPGM(" +"); // Include + for column alignment
  3687. else
  3688. SERIAL_PROTOCOLCHAR(' ');
  3689. SERIAL_PROTOCOL_F(diff, 5);
  3690. } // xx
  3691. SERIAL_EOL;
  3692. } // yy
  3693. SERIAL_EOL;
  3694. if (verbose_level > 3) {
  3695. SERIAL_PROTOCOLLNPGM("\nCorrected Bed Height vs. Bed Topology:");
  3696. for (int8_t yy = abl_grid_points_y - 1; yy >= 0; yy--) {
  3697. for (uint8_t xx = 0; xx < abl_grid_points_x; xx++) {
  3698. int ind = indexIntoAB[xx][yy];
  3699. float x_tmp = eqnAMatrix[ind + 0 * abl2],
  3700. y_tmp = eqnAMatrix[ind + 1 * abl2],
  3701. z_tmp = 0;
  3702. apply_rotation_xyz(planner.bed_level_matrix, x_tmp, y_tmp, z_tmp);
  3703. float diff = eqnBVector[ind] - z_tmp - min_diff;
  3704. if (diff >= 0.0)
  3705. SERIAL_PROTOCOLPGM(" +");
  3706. // Include + for column alignment
  3707. else
  3708. SERIAL_PROTOCOLCHAR(' ');
  3709. SERIAL_PROTOCOL_F(diff, 5);
  3710. } // xx
  3711. SERIAL_EOL;
  3712. } // yy
  3713. SERIAL_EOL;
  3714. }
  3715. } //do_topography_map
  3716. #endif // AUTO_BED_LEVELING_LINEAR
  3717. #if ABL_PLANAR
  3718. // For LINEAR and 3POINT leveling correct the current position
  3719. if (verbose_level > 0)
  3720. planner.bed_level_matrix.debug("\n\nBed Level Correction Matrix:");
  3721. if (!dryrun) {
  3722. //
  3723. // Correct the current XYZ position based on the tilted plane.
  3724. //
  3725. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3726. if (DEBUGGING(LEVELING)) DEBUG_POS("G29 uncorrected XYZ", current_position);
  3727. #endif
  3728. float converted[XYZ];
  3729. COPY(converted, current_position);
  3730. planner.abl_enabled = true;
  3731. planner.unapply_leveling(converted); // use conversion machinery
  3732. planner.abl_enabled = false;
  3733. // Use the last measured distance to the bed, if possible
  3734. if ( NEAR(current_position[X_AXIS], xProbe - (X_PROBE_OFFSET_FROM_EXTRUDER))
  3735. && NEAR(current_position[Y_AXIS], yProbe - (Y_PROBE_OFFSET_FROM_EXTRUDER))
  3736. ) {
  3737. float simple_z = current_position[Z_AXIS] - (measured_z - (-zprobe_zoffset));
  3738. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3739. if (DEBUGGING(LEVELING)) {
  3740. SERIAL_ECHOPAIR("Z from Probe:", simple_z);
  3741. SERIAL_ECHOPAIR(" Matrix:", converted[Z_AXIS]);
  3742. SERIAL_ECHOLNPAIR(" Discrepancy:", simple_z - converted[Z_AXIS]);
  3743. }
  3744. #endif
  3745. converted[Z_AXIS] = simple_z;
  3746. }
  3747. // The rotated XY and corrected Z are now current_position
  3748. COPY(current_position, converted);
  3749. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3750. if (DEBUGGING(LEVELING)) DEBUG_POS("G29 corrected XYZ", current_position);
  3751. #endif
  3752. }
  3753. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3754. if (!dryrun) {
  3755. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3756. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("G29 uncorrected Z:", current_position[Z_AXIS]);
  3757. #endif
  3758. // Unapply the offset because it is going to be immediately applied
  3759. // and cause compensation movement in Z
  3760. current_position[Z_AXIS] -= bilinear_z_offset(current_position);
  3761. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3762. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR(" corrected Z:", current_position[Z_AXIS]);
  3763. #endif
  3764. }
  3765. #endif // ABL_PLANAR
  3766. #ifdef Z_PROBE_END_SCRIPT
  3767. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3768. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("Z Probe End Script: ", Z_PROBE_END_SCRIPT);
  3769. #endif
  3770. enqueue_and_echo_commands_P(PSTR(Z_PROBE_END_SCRIPT));
  3771. stepper.synchronize();
  3772. #endif
  3773. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3774. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G29");
  3775. #endif
  3776. report_current_position();
  3777. KEEPALIVE_STATE(IN_HANDLER);
  3778. // Auto Bed Leveling is complete! Enable if possible.
  3779. planner.abl_enabled = dryrun ? abl_should_enable : true;
  3780. if (planner.abl_enabled)
  3781. SYNC_PLAN_POSITION_KINEMATIC();
  3782. }
  3783. #endif // HAS_ABL && DISABLED(AUTO_BED_LEVELING_UBL)
  3784. #if HAS_BED_PROBE
  3785. /**
  3786. * G30: Do a single Z probe at the current XY
  3787. * Usage:
  3788. * G30 <X#> <Y#> <S#>
  3789. * X = Probe X position (default=current probe position)
  3790. * Y = Probe Y position (default=current probe position)
  3791. * S = Stows the probe if 1 (default=1)
  3792. */
  3793. inline void gcode_G30() {
  3794. float X_probe_location = code_seen('X') ? code_value_axis_units(X_AXIS) : current_position[X_AXIS] + X_PROBE_OFFSET_FROM_EXTRUDER,
  3795. Y_probe_location = code_seen('Y') ? code_value_axis_units(Y_AXIS) : current_position[Y_AXIS] + Y_PROBE_OFFSET_FROM_EXTRUDER;
  3796. float pos[XYZ] = { X_probe_location, Y_probe_location, LOGICAL_Z_POSITION(0) };
  3797. if (!position_is_reachable(pos, true)) return;
  3798. bool stow = code_seen('S') ? code_value_bool() : true;
  3799. // Disable leveling so the planner won't mess with us
  3800. #if PLANNER_LEVELING
  3801. set_bed_leveling_enabled(false);
  3802. #endif
  3803. setup_for_endstop_or_probe_move();
  3804. float measured_z = probe_pt(X_probe_location, Y_probe_location, stow, 1);
  3805. SERIAL_PROTOCOLPGM("Bed X: ");
  3806. SERIAL_PROTOCOL(X_probe_location + 0.0001);
  3807. SERIAL_PROTOCOLPGM(" Y: ");
  3808. SERIAL_PROTOCOL(Y_probe_location + 0.0001);
  3809. SERIAL_PROTOCOLPGM(" Z: ");
  3810. SERIAL_PROTOCOLLN(measured_z - -zprobe_zoffset + 0.0001);
  3811. clean_up_after_endstop_or_probe_move();
  3812. report_current_position();
  3813. }
  3814. #if ENABLED(Z_PROBE_SLED)
  3815. /**
  3816. * G31: Deploy the Z probe
  3817. */
  3818. inline void gcode_G31() { DEPLOY_PROBE(); }
  3819. /**
  3820. * G32: Stow the Z probe
  3821. */
  3822. inline void gcode_G32() { STOW_PROBE(); }
  3823. #endif // Z_PROBE_SLED
  3824. #endif // HAS_BED_PROBE
  3825. #if ENABLED(G38_PROBE_TARGET)
  3826. static bool G38_run_probe() {
  3827. bool G38_pass_fail = false;
  3828. // Get direction of move and retract
  3829. float retract_mm[XYZ];
  3830. LOOP_XYZ(i) {
  3831. float dist = destination[i] - current_position[i];
  3832. retract_mm[i] = fabs(dist) < G38_MINIMUM_MOVE ? 0 : home_bump_mm((AxisEnum)i) * (dist > 0 ? -1 : 1);
  3833. }
  3834. stepper.synchronize(); // wait until the machine is idle
  3835. // Move until destination reached or target hit
  3836. endstops.enable(true);
  3837. G38_move = true;
  3838. G38_endstop_hit = false;
  3839. prepare_move_to_destination();
  3840. stepper.synchronize();
  3841. G38_move = false;
  3842. endstops.hit_on_purpose();
  3843. set_current_from_steppers_for_axis(ALL_AXES);
  3844. SYNC_PLAN_POSITION_KINEMATIC();
  3845. // Only do remaining moves if target was hit
  3846. if (G38_endstop_hit) {
  3847. G38_pass_fail = true;
  3848. // Move away by the retract distance
  3849. set_destination_to_current();
  3850. LOOP_XYZ(i) destination[i] += retract_mm[i];
  3851. endstops.enable(false);
  3852. prepare_move_to_destination();
  3853. stepper.synchronize();
  3854. feedrate_mm_s /= 4;
  3855. // Bump the target more slowly
  3856. LOOP_XYZ(i) destination[i] -= retract_mm[i] * 2;
  3857. endstops.enable(true);
  3858. G38_move = true;
  3859. prepare_move_to_destination();
  3860. stepper.synchronize();
  3861. G38_move = false;
  3862. set_current_from_steppers_for_axis(ALL_AXES);
  3863. SYNC_PLAN_POSITION_KINEMATIC();
  3864. }
  3865. endstops.hit_on_purpose();
  3866. endstops.not_homing();
  3867. return G38_pass_fail;
  3868. }
  3869. /**
  3870. * G38.2 - probe toward workpiece, stop on contact, signal error if failure
  3871. * G38.3 - probe toward workpiece, stop on contact
  3872. *
  3873. * Like G28 except uses Z min endstop for all axes
  3874. */
  3875. inline void gcode_G38(bool is_38_2) {
  3876. // Get X Y Z E F
  3877. gcode_get_destination();
  3878. setup_for_endstop_or_probe_move();
  3879. // If any axis has enough movement, do the move
  3880. LOOP_XYZ(i)
  3881. if (fabs(destination[i] - current_position[i]) >= G38_MINIMUM_MOVE) {
  3882. if (!code_seen('F')) feedrate_mm_s = homing_feedrate_mm_s[i];
  3883. // If G38.2 fails throw an error
  3884. if (!G38_run_probe() && is_38_2) {
  3885. SERIAL_ERROR_START;
  3886. SERIAL_ERRORLNPGM("Failed to reach target");
  3887. }
  3888. break;
  3889. }
  3890. clean_up_after_endstop_or_probe_move();
  3891. }
  3892. #endif // G38_PROBE_TARGET
  3893. /**
  3894. * G92: Set current position to given X Y Z E
  3895. */
  3896. inline void gcode_G92() {
  3897. bool didXYZ = false,
  3898. didE = code_seen('E');
  3899. if (!didE) stepper.synchronize();
  3900. LOOP_XYZE(i) {
  3901. if (code_seen(axis_codes[i])) {
  3902. #if IS_SCARA
  3903. current_position[i] = code_value_axis_units(i);
  3904. if (i != E_AXIS) didXYZ = true;
  3905. #else
  3906. #if DISABLED(NO_WORKSPACE_OFFSETS)
  3907. float p = current_position[i];
  3908. #endif
  3909. float v = code_value_axis_units(i);
  3910. current_position[i] = v;
  3911. if (i != E_AXIS) {
  3912. didXYZ = true;
  3913. #if DISABLED(NO_WORKSPACE_OFFSETS)
  3914. position_shift[i] += v - p; // Offset the coordinate space
  3915. update_software_endstops((AxisEnum)i);
  3916. #endif
  3917. }
  3918. #endif
  3919. }
  3920. }
  3921. if (didXYZ)
  3922. SYNC_PLAN_POSITION_KINEMATIC();
  3923. else if (didE)
  3924. sync_plan_position_e();
  3925. report_current_position();
  3926. }
  3927. #if ENABLED(EMERGENCY_PARSER) || ENABLED(ULTIPANEL)
  3928. /**
  3929. * M0: Unconditional stop - Wait for user button press on LCD
  3930. * M1: Conditional stop - Wait for user button press on LCD
  3931. */
  3932. inline void gcode_M0_M1() {
  3933. char* args = current_command_args;
  3934. millis_t codenum = 0;
  3935. bool hasP = false, hasS = false;
  3936. if (code_seen('P')) {
  3937. codenum = code_value_millis(); // milliseconds to wait
  3938. hasP = codenum > 0;
  3939. }
  3940. if (code_seen('S')) {
  3941. codenum = code_value_millis_from_seconds(); // seconds to wait
  3942. hasS = codenum > 0;
  3943. }
  3944. #if ENABLED(ULTIPANEL)
  3945. if (!hasP && !hasS && *args != '\0')
  3946. lcd_setstatus(args, true);
  3947. else {
  3948. LCD_MESSAGEPGM(MSG_USERWAIT);
  3949. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  3950. dontExpireStatus();
  3951. #endif
  3952. }
  3953. #else
  3954. if (!hasP && !hasS && *args != '\0') {
  3955. SERIAL_ECHO_START;
  3956. SERIAL_ECHOLN(args);
  3957. }
  3958. #endif
  3959. wait_for_user = true;
  3960. KEEPALIVE_STATE(PAUSED_FOR_USER);
  3961. stepper.synchronize();
  3962. refresh_cmd_timeout();
  3963. if (codenum > 0) {
  3964. codenum += previous_cmd_ms; // wait until this time for a click
  3965. while (PENDING(millis(), codenum) && wait_for_user) idle();
  3966. }
  3967. else {
  3968. #if ENABLED(ULTIPANEL)
  3969. if (lcd_detected()) {
  3970. while (wait_for_user) idle();
  3971. IS_SD_PRINTING ? LCD_MESSAGEPGM(MSG_RESUMING) : LCD_MESSAGEPGM(WELCOME_MSG);
  3972. }
  3973. #else
  3974. while (wait_for_user) idle();
  3975. #endif
  3976. }
  3977. wait_for_user = false;
  3978. KEEPALIVE_STATE(IN_HANDLER);
  3979. }
  3980. #endif // EMERGENCY_PARSER || ULTIPANEL
  3981. /**
  3982. * M17: Enable power on all stepper motors
  3983. */
  3984. inline void gcode_M17() {
  3985. LCD_MESSAGEPGM(MSG_NO_MOVE);
  3986. enable_all_steppers();
  3987. }
  3988. #if IS_KINEMATIC
  3989. #define RUNPLAN(RATE_MM_S) planner.buffer_line_kinematic(destination, RATE_MM_S, active_extruder)
  3990. #else
  3991. #define RUNPLAN(RATE_MM_S) line_to_destination(RATE_MM_S)
  3992. #endif
  3993. #if ENABLED(PARK_HEAD_ON_PAUSE)
  3994. float resume_position[XYZE];
  3995. bool move_away_flag = false;
  3996. inline void move_back_on_resume() {
  3997. if (!move_away_flag) return;
  3998. move_away_flag = false;
  3999. // Set extruder to saved position
  4000. destination[E_AXIS] = current_position[E_AXIS] = resume_position[E_AXIS];
  4001. planner.set_e_position_mm(current_position[E_AXIS]);
  4002. #if IS_KINEMATIC
  4003. // Move XYZ to starting position
  4004. planner.buffer_line_kinematic(lastpos, FILAMENT_CHANGE_XY_FEEDRATE, active_extruder);
  4005. #else
  4006. // Move XY to starting position, then Z
  4007. destination[X_AXIS] = resume_position[X_AXIS];
  4008. destination[Y_AXIS] = resume_position[Y_AXIS];
  4009. RUNPLAN(FILAMENT_CHANGE_XY_FEEDRATE);
  4010. destination[Z_AXIS] = resume_position[Z_AXIS];
  4011. RUNPLAN(FILAMENT_CHANGE_Z_FEEDRATE);
  4012. #endif
  4013. stepper.synchronize();
  4014. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  4015. filament_ran_out = false;
  4016. #endif
  4017. set_current_to_destination();
  4018. }
  4019. #endif // PARK_HEAD_ON_PAUSE
  4020. #if ENABLED(SDSUPPORT)
  4021. /**
  4022. * M20: List SD card to serial output
  4023. */
  4024. inline void gcode_M20() {
  4025. SERIAL_PROTOCOLLNPGM(MSG_BEGIN_FILE_LIST);
  4026. card.ls();
  4027. SERIAL_PROTOCOLLNPGM(MSG_END_FILE_LIST);
  4028. }
  4029. /**
  4030. * M21: Init SD Card
  4031. */
  4032. inline void gcode_M21() { card.initsd(); }
  4033. /**
  4034. * M22: Release SD Card
  4035. */
  4036. inline void gcode_M22() { card.release(); }
  4037. /**
  4038. * M23: Open a file
  4039. */
  4040. inline void gcode_M23() { card.openFile(current_command_args, true); }
  4041. /**
  4042. * M24: Start or Resume SD Print
  4043. */
  4044. inline void gcode_M24() {
  4045. #if ENABLED(PARK_HEAD_ON_PAUSE)
  4046. move_back_on_resume();
  4047. #endif
  4048. card.startFileprint();
  4049. print_job_timer.start();
  4050. }
  4051. /**
  4052. * M25: Pause SD Print
  4053. */
  4054. inline void gcode_M25() {
  4055. card.pauseSDPrint();
  4056. print_job_timer.pause();
  4057. #if ENABLED(PARK_HEAD_ON_PAUSE)
  4058. enqueue_and_echo_commands_P(PSTR("M125")); // Must be enqueued with pauseSDPrint set to be last in the buffer
  4059. #endif
  4060. }
  4061. /**
  4062. * M26: Set SD Card file index
  4063. */
  4064. inline void gcode_M26() {
  4065. if (card.cardOK && code_seen('S'))
  4066. card.setIndex(code_value_long());
  4067. }
  4068. /**
  4069. * M27: Get SD Card status
  4070. */
  4071. inline void gcode_M27() { card.getStatus(); }
  4072. /**
  4073. * M28: Start SD Write
  4074. */
  4075. inline void gcode_M28() { card.openFile(current_command_args, false); }
  4076. /**
  4077. * M29: Stop SD Write
  4078. * Processed in write to file routine above
  4079. */
  4080. inline void gcode_M29() {
  4081. // card.saving = false;
  4082. }
  4083. /**
  4084. * M30 <filename>: Delete SD Card file
  4085. */
  4086. inline void gcode_M30() {
  4087. if (card.cardOK) {
  4088. card.closefile();
  4089. card.removeFile(current_command_args);
  4090. }
  4091. }
  4092. #endif // SDSUPPORT
  4093. /**
  4094. * M31: Get the time since the start of SD Print (or last M109)
  4095. */
  4096. inline void gcode_M31() {
  4097. char buffer[21];
  4098. duration_t elapsed = print_job_timer.duration();
  4099. elapsed.toString(buffer);
  4100. lcd_setstatus(buffer);
  4101. SERIAL_ECHO_START;
  4102. SERIAL_ECHOLNPAIR("Print time: ", buffer);
  4103. #if ENABLED(AUTOTEMP)
  4104. thermalManager.autotempShutdown();
  4105. #endif
  4106. }
  4107. #if ENABLED(SDSUPPORT)
  4108. /**
  4109. * M32: Select file and start SD Print
  4110. */
  4111. inline void gcode_M32() {
  4112. if (card.sdprinting)
  4113. stepper.synchronize();
  4114. char* namestartpos = strchr(current_command_args, '!'); // Find ! to indicate filename string start.
  4115. if (!namestartpos)
  4116. namestartpos = current_command_args; // Default name position, 4 letters after the M
  4117. else
  4118. namestartpos++; //to skip the '!'
  4119. bool call_procedure = code_seen('P') && (seen_pointer < namestartpos);
  4120. if (card.cardOK) {
  4121. card.openFile(namestartpos, true, call_procedure);
  4122. if (code_seen('S') && seen_pointer < namestartpos) // "S" (must occur _before_ the filename!)
  4123. card.setIndex(code_value_long());
  4124. card.startFileprint();
  4125. // Procedure calls count as normal print time.
  4126. if (!call_procedure) print_job_timer.start();
  4127. }
  4128. }
  4129. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  4130. /**
  4131. * M33: Get the long full path of a file or folder
  4132. *
  4133. * Parameters:
  4134. * <dospath> Case-insensitive DOS-style path to a file or folder
  4135. *
  4136. * Example:
  4137. * M33 miscel~1/armchair/armcha~1.gco
  4138. *
  4139. * Output:
  4140. * /Miscellaneous/Armchair/Armchair.gcode
  4141. */
  4142. inline void gcode_M33() {
  4143. card.printLongPath(current_command_args);
  4144. }
  4145. #endif
  4146. #if ENABLED(SDCARD_SORT_ALPHA) && ENABLED(SDSORT_GCODE)
  4147. /**
  4148. * M34: Set SD Card Sorting Options
  4149. */
  4150. inline void gcode_M34() {
  4151. if (code_seen('S')) card.setSortOn(code_value_bool());
  4152. if (code_seen('F')) {
  4153. int v = code_value_long();
  4154. card.setSortFolders(v < 0 ? -1 : v > 0 ? 1 : 0);
  4155. }
  4156. //if (code_seen('R')) card.setSortReverse(code_value_bool());
  4157. }
  4158. #endif // SDCARD_SORT_ALPHA && SDSORT_GCODE
  4159. /**
  4160. * M928: Start SD Write
  4161. */
  4162. inline void gcode_M928() {
  4163. card.openLogFile(current_command_args);
  4164. }
  4165. #endif // SDSUPPORT
  4166. /**
  4167. * Sensitive pin test for M42, M226
  4168. */
  4169. static bool pin_is_protected(uint8_t pin) {
  4170. static const int sensitive_pins[] = SENSITIVE_PINS;
  4171. for (uint8_t i = 0; i < COUNT(sensitive_pins); i++)
  4172. if (sensitive_pins[i] == pin) return true;
  4173. return false;
  4174. }
  4175. /**
  4176. * M42: Change pin status via GCode
  4177. *
  4178. * P<pin> Pin number (LED if omitted)
  4179. * S<byte> Pin status from 0 - 255
  4180. */
  4181. inline void gcode_M42() {
  4182. if (!code_seen('S')) return;
  4183. int pin_status = code_value_int();
  4184. if (pin_status < 0 || pin_status > 255) return;
  4185. int pin_number = code_seen('P') ? code_value_int() : LED_PIN;
  4186. if (pin_number < 0) return;
  4187. if (pin_is_protected(pin_number)) {
  4188. SERIAL_ERROR_START;
  4189. SERIAL_ERRORLNPGM(MSG_ERR_PROTECTED_PIN);
  4190. return;
  4191. }
  4192. pinMode(pin_number, OUTPUT);
  4193. digitalWrite(pin_number, pin_status);
  4194. analogWrite(pin_number, pin_status);
  4195. #if FAN_COUNT > 0
  4196. switch (pin_number) {
  4197. #if HAS_FAN0
  4198. case FAN_PIN: fanSpeeds[0] = pin_status; break;
  4199. #endif
  4200. #if HAS_FAN1
  4201. case FAN1_PIN: fanSpeeds[1] = pin_status; break;
  4202. #endif
  4203. #if HAS_FAN2
  4204. case FAN2_PIN: fanSpeeds[2] = pin_status; break;
  4205. #endif
  4206. }
  4207. #endif
  4208. }
  4209. #if ENABLED(PINS_DEBUGGING)
  4210. #include "pinsDebug.h"
  4211. /**
  4212. * M43: Pin report and debug
  4213. *
  4214. * E<bool> Enable / disable background endstop monitoring
  4215. * - Machine continues to operate
  4216. * - Reports changes to endstops
  4217. * - Toggles LED when an endstop changes
  4218. *
  4219. * or
  4220. *
  4221. * P<pin> Pin to read or watch. If omitted, read/watch all pins.
  4222. * W<bool> Watch pins -reporting changes- until reset, click, or M108.
  4223. * I<bool> Flag to ignore Marlin's pin protection.
  4224. *
  4225. */
  4226. inline void gcode_M43() {
  4227. // Enable or disable endstop monitoring
  4228. if (code_seen('E')) {
  4229. endstop_monitor_flag = code_value_bool();
  4230. SERIAL_PROTOCOLPGM("endstop monitor ");
  4231. SERIAL_PROTOCOL(endstop_monitor_flag ? "en" : "dis");
  4232. SERIAL_PROTOCOLLNPGM("abled");
  4233. return;
  4234. }
  4235. // Get the range of pins to test or watch
  4236. int first_pin = 0, last_pin = NUM_DIGITAL_PINS - 1;
  4237. if (code_seen('P')) {
  4238. first_pin = last_pin = code_value_byte();
  4239. if (first_pin > NUM_DIGITAL_PINS - 1) return;
  4240. }
  4241. bool ignore_protection = code_seen('I') ? code_value_bool() : false;
  4242. // Watch until click, M108, or reset
  4243. if (code_seen('W') && code_value_bool()) { // watch digital pins
  4244. byte pin_state[last_pin - first_pin + 1];
  4245. for (int8_t pin = first_pin; pin <= last_pin; pin++) {
  4246. if (pin_is_protected(pin) && !ignore_protection) continue;
  4247. pinMode(pin, INPUT_PULLUP);
  4248. // if (IS_ANALOG(pin))
  4249. // pin_state[pin - first_pin] = analogRead(pin - analogInputToDigitalPin(0)); // int16_t pin_state[...]
  4250. // else
  4251. pin_state[pin - first_pin] = digitalRead(pin);
  4252. }
  4253. #if ENABLED(EMERGENCY_PARSER) || ENABLED(ULTIPANEL)
  4254. wait_for_user = true;
  4255. #endif
  4256. for(;;) {
  4257. for (int8_t pin = first_pin; pin <= last_pin; pin++) {
  4258. if (pin_is_protected(pin)) continue;
  4259. byte val;
  4260. // if (IS_ANALOG(pin))
  4261. // val = analogRead(pin - analogInputToDigitalPin(0)); // int16_t val
  4262. // else
  4263. val = digitalRead(pin);
  4264. if (val != pin_state[pin - first_pin]) {
  4265. report_pin_state(pin);
  4266. pin_state[pin - first_pin] = val;
  4267. }
  4268. }
  4269. #if ENABLED(EMERGENCY_PARSER) || ENABLED(ULTIPANEL)
  4270. if (!wait_for_user) break;
  4271. #endif
  4272. safe_delay(500);
  4273. }
  4274. return;
  4275. }
  4276. // Report current state of selected pin(s)
  4277. for (uint8_t pin = first_pin; pin <= last_pin; pin++)
  4278. report_pin_state_extended(pin, ignore_protection);
  4279. }
  4280. #endif // PINS_DEBUGGING
  4281. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  4282. /**
  4283. * M48: Z probe repeatability measurement function.
  4284. *
  4285. * Usage:
  4286. * M48 <P#> <X#> <Y#> <V#> <E> <L#>
  4287. * P = Number of sampled points (4-50, default 10)
  4288. * X = Sample X position
  4289. * Y = Sample Y position
  4290. * V = Verbose level (0-4, default=1)
  4291. * E = Engage Z probe for each reading
  4292. * L = Number of legs of movement before probe
  4293. * S = Schizoid (Or Star if you prefer)
  4294. *
  4295. * This function assumes the bed has been homed. Specifically, that a G28 command
  4296. * as been issued prior to invoking the M48 Z probe repeatability measurement function.
  4297. * Any information generated by a prior G29 Bed leveling command will be lost and need to be
  4298. * regenerated.
  4299. */
  4300. inline void gcode_M48() {
  4301. #if ENABLED(AUTO_BED_LEVELING_UBL)
  4302. bool bed_leveling_state_at_entry=0;
  4303. bed_leveling_state_at_entry = ubl.state.active;
  4304. #endif
  4305. if (axis_unhomed_error(true, true, true)) return;
  4306. int8_t verbose_level = code_seen('V') ? code_value_byte() : 1;
  4307. if (verbose_level < 0 || verbose_level > 4) {
  4308. SERIAL_PROTOCOLLNPGM("?Verbose Level not plausible (0-4).");
  4309. return;
  4310. }
  4311. if (verbose_level > 0)
  4312. SERIAL_PROTOCOLLNPGM("M48 Z-Probe Repeatability Test");
  4313. int8_t n_samples = code_seen('P') ? code_value_byte() : 10;
  4314. if (n_samples < 4 || n_samples > 50) {
  4315. SERIAL_PROTOCOLLNPGM("?Sample size not plausible (4-50).");
  4316. return;
  4317. }
  4318. float X_current = current_position[X_AXIS],
  4319. Y_current = current_position[Y_AXIS];
  4320. bool stow_probe_after_each = code_seen('E');
  4321. float X_probe_location = code_seen('X') ? code_value_axis_units(X_AXIS) : X_current + X_PROBE_OFFSET_FROM_EXTRUDER;
  4322. #if DISABLED(DELTA)
  4323. if (X_probe_location < LOGICAL_X_POSITION(MIN_PROBE_X) || X_probe_location > LOGICAL_X_POSITION(MAX_PROBE_X)) {
  4324. out_of_range_error(PSTR("X"));
  4325. return;
  4326. }
  4327. #endif
  4328. float Y_probe_location = code_seen('Y') ? code_value_axis_units(Y_AXIS) : Y_current + Y_PROBE_OFFSET_FROM_EXTRUDER;
  4329. #if DISABLED(DELTA)
  4330. if (Y_probe_location < LOGICAL_Y_POSITION(MIN_PROBE_Y) || Y_probe_location > LOGICAL_Y_POSITION(MAX_PROBE_Y)) {
  4331. out_of_range_error(PSTR("Y"));
  4332. return;
  4333. }
  4334. #else
  4335. float pos[XYZ] = { X_probe_location, Y_probe_location, 0 };
  4336. if (!position_is_reachable(pos, true)) {
  4337. SERIAL_PROTOCOLLNPGM("? (X,Y) location outside of probeable radius.");
  4338. return;
  4339. }
  4340. #endif
  4341. bool seen_L = code_seen('L');
  4342. uint8_t n_legs = seen_L ? code_value_byte() : 0;
  4343. if (n_legs > 15) {
  4344. SERIAL_PROTOCOLLNPGM("?Number of legs in movement not plausible (0-15).");
  4345. return;
  4346. }
  4347. if (n_legs == 1) n_legs = 2;
  4348. bool schizoid_flag = code_seen('S');
  4349. if (schizoid_flag && !seen_L) n_legs = 7;
  4350. /**
  4351. * Now get everything to the specified probe point So we can safely do a
  4352. * probe to get us close to the bed. If the Z-Axis is far from the bed,
  4353. * we don't want to use that as a starting point for each probe.
  4354. */
  4355. if (verbose_level > 2)
  4356. SERIAL_PROTOCOLLNPGM("Positioning the probe...");
  4357. // Disable bed level correction in M48 because we want the raw data when we probe
  4358. #if HAS_ABL
  4359. const bool abl_was_enabled = planner.abl_enabled;
  4360. set_bed_leveling_enabled(false);
  4361. #endif
  4362. setup_for_endstop_or_probe_move();
  4363. // Move to the first point, deploy, and probe
  4364. probe_pt(X_probe_location, Y_probe_location, stow_probe_after_each, verbose_level);
  4365. randomSeed(millis());
  4366. double mean = 0.0, sigma = 0.0, min = 99999.9, max = -99999.9, sample_set[n_samples];
  4367. for (uint8_t n = 0; n < n_samples; n++) {
  4368. if (n_legs) {
  4369. int dir = (random(0, 10) > 5.0) ? -1 : 1; // clockwise or counter clockwise
  4370. float angle = random(0.0, 360.0),
  4371. radius = random(
  4372. #if ENABLED(DELTA)
  4373. DELTA_PROBEABLE_RADIUS / 8, DELTA_PROBEABLE_RADIUS / 3
  4374. #else
  4375. 5, X_MAX_LENGTH / 8
  4376. #endif
  4377. );
  4378. if (verbose_level > 3) {
  4379. SERIAL_ECHOPAIR("Starting radius: ", radius);
  4380. SERIAL_ECHOPAIR(" angle: ", angle);
  4381. SERIAL_ECHOPGM(" Direction: ");
  4382. if (dir > 0) SERIAL_ECHOPGM("Counter-");
  4383. SERIAL_ECHOLNPGM("Clockwise");
  4384. }
  4385. for (uint8_t l = 0; l < n_legs - 1; l++) {
  4386. double delta_angle;
  4387. if (schizoid_flag)
  4388. // The points of a 5 point star are 72 degrees apart. We need to
  4389. // skip a point and go to the next one on the star.
  4390. delta_angle = dir * 2.0 * 72.0;
  4391. else
  4392. // If we do this line, we are just trying to move further
  4393. // around the circle.
  4394. delta_angle = dir * (float) random(25, 45);
  4395. angle += delta_angle;
  4396. while (angle > 360.0) // We probably do not need to keep the angle between 0 and 2*PI, but the
  4397. angle -= 360.0; // Arduino documentation says the trig functions should not be given values
  4398. while (angle < 0.0) // outside of this range. It looks like they behave correctly with
  4399. angle += 360.0; // numbers outside of the range, but just to be safe we clamp them.
  4400. X_current = X_probe_location - (X_PROBE_OFFSET_FROM_EXTRUDER) + cos(RADIANS(angle)) * radius;
  4401. Y_current = Y_probe_location - (Y_PROBE_OFFSET_FROM_EXTRUDER) + sin(RADIANS(angle)) * radius;
  4402. #if DISABLED(DELTA)
  4403. X_current = constrain(X_current, X_MIN_POS, X_MAX_POS);
  4404. Y_current = constrain(Y_current, Y_MIN_POS, Y_MAX_POS);
  4405. #else
  4406. // If we have gone out too far, we can do a simple fix and scale the numbers
  4407. // back in closer to the origin.
  4408. while (HYPOT(X_current, Y_current) > DELTA_PROBEABLE_RADIUS) {
  4409. X_current /= 1.25;
  4410. Y_current /= 1.25;
  4411. if (verbose_level > 3) {
  4412. SERIAL_ECHOPAIR("Pulling point towards center:", X_current);
  4413. SERIAL_ECHOLNPAIR(", ", Y_current);
  4414. }
  4415. }
  4416. #endif
  4417. if (verbose_level > 3) {
  4418. SERIAL_PROTOCOLPGM("Going to:");
  4419. SERIAL_ECHOPAIR(" X", X_current);
  4420. SERIAL_ECHOPAIR(" Y", Y_current);
  4421. SERIAL_ECHOLNPAIR(" Z", current_position[Z_AXIS]);
  4422. }
  4423. do_blocking_move_to_xy(X_current, Y_current);
  4424. } // n_legs loop
  4425. } // n_legs
  4426. // Probe a single point
  4427. sample_set[n] = probe_pt(X_probe_location, Y_probe_location, stow_probe_after_each, 0);
  4428. /**
  4429. * Get the current mean for the data points we have so far
  4430. */
  4431. double sum = 0.0;
  4432. for (uint8_t j = 0; j <= n; j++) sum += sample_set[j];
  4433. mean = sum / (n + 1);
  4434. NOMORE(min, sample_set[n]);
  4435. NOLESS(max, sample_set[n]);
  4436. /**
  4437. * Now, use that mean to calculate the standard deviation for the
  4438. * data points we have so far
  4439. */
  4440. sum = 0.0;
  4441. for (uint8_t j = 0; j <= n; j++)
  4442. sum += sq(sample_set[j] - mean);
  4443. sigma = sqrt(sum / (n + 1));
  4444. if (verbose_level > 0) {
  4445. if (verbose_level > 1) {
  4446. SERIAL_PROTOCOL(n + 1);
  4447. SERIAL_PROTOCOLPGM(" of ");
  4448. SERIAL_PROTOCOL((int)n_samples);
  4449. SERIAL_PROTOCOLPGM(": z: ");
  4450. SERIAL_PROTOCOL_F(sample_set[n], 3);
  4451. if (verbose_level > 2) {
  4452. SERIAL_PROTOCOLPGM(" mean: ");
  4453. SERIAL_PROTOCOL_F(mean, 4);
  4454. SERIAL_PROTOCOLPGM(" sigma: ");
  4455. SERIAL_PROTOCOL_F(sigma, 6);
  4456. SERIAL_PROTOCOLPGM(" min: ");
  4457. SERIAL_PROTOCOL_F(min, 3);
  4458. SERIAL_PROTOCOLPGM(" max: ");
  4459. SERIAL_PROTOCOL_F(max, 3);
  4460. SERIAL_PROTOCOLPGM(" range: ");
  4461. SERIAL_PROTOCOL_F(max-min, 3);
  4462. }
  4463. SERIAL_EOL;
  4464. }
  4465. }
  4466. } // End of probe loop
  4467. if (STOW_PROBE()) return;
  4468. SERIAL_PROTOCOLPGM("Finished!");
  4469. SERIAL_EOL;
  4470. if (verbose_level > 0) {
  4471. SERIAL_PROTOCOLPGM("Mean: ");
  4472. SERIAL_PROTOCOL_F(mean, 6);
  4473. SERIAL_PROTOCOLPGM(" Min: ");
  4474. SERIAL_PROTOCOL_F(min, 3);
  4475. SERIAL_PROTOCOLPGM(" Max: ");
  4476. SERIAL_PROTOCOL_F(max, 3);
  4477. SERIAL_PROTOCOLPGM(" Range: ");
  4478. SERIAL_PROTOCOL_F(max-min, 3);
  4479. SERIAL_EOL;
  4480. }
  4481. SERIAL_PROTOCOLPGM("Standard Deviation: ");
  4482. SERIAL_PROTOCOL_F(sigma, 6);
  4483. SERIAL_EOL;
  4484. SERIAL_EOL;
  4485. clean_up_after_endstop_or_probe_move();
  4486. // Re-enable bed level correction if it has been on
  4487. #if HAS_ABL
  4488. set_bed_leveling_enabled(abl_was_enabled);
  4489. #endif
  4490. #if ENABLED(AUTO_BED_LEVELING_UBL)
  4491. set_bed_leveling_enabled(bed_leveling_state_at_entry);
  4492. ubl.state.active = bed_leveling_state_at_entry;
  4493. #endif
  4494. report_current_position();
  4495. }
  4496. #endif // Z_MIN_PROBE_REPEATABILITY_TEST
  4497. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
  4498. inline void gcode_M49() {
  4499. SERIAL_PROTOCOLPGM("UBL Debug Flag turned ");
  4500. if ((g26_debug_flag = !g26_debug_flag))
  4501. SERIAL_PROTOCOLLNPGM("on.");
  4502. else
  4503. SERIAL_PROTOCOLLNPGM("off.");
  4504. }
  4505. #endif // AUTO_BED_LEVELING_UBL && UBL_MESH_EDIT_ENABLED
  4506. /**
  4507. * M75: Start print timer
  4508. */
  4509. inline void gcode_M75() { print_job_timer.start(); }
  4510. /**
  4511. * M76: Pause print timer
  4512. */
  4513. inline void gcode_M76() { print_job_timer.pause(); }
  4514. /**
  4515. * M77: Stop print timer
  4516. */
  4517. inline void gcode_M77() { print_job_timer.stop(); }
  4518. #if ENABLED(PRINTCOUNTER)
  4519. /**
  4520. * M78: Show print statistics
  4521. */
  4522. inline void gcode_M78() {
  4523. // "M78 S78" will reset the statistics
  4524. if (code_seen('S') && code_value_int() == 78)
  4525. print_job_timer.initStats();
  4526. else
  4527. print_job_timer.showStats();
  4528. }
  4529. #endif
  4530. /**
  4531. * M104: Set hot end temperature
  4532. */
  4533. inline void gcode_M104() {
  4534. if (get_target_extruder_from_command(104)) return;
  4535. if (DEBUGGING(DRYRUN)) return;
  4536. #if ENABLED(SINGLENOZZLE)
  4537. if (target_extruder != active_extruder) return;
  4538. #endif
  4539. if (code_seen('S')) {
  4540. thermalManager.setTargetHotend(code_value_temp_abs(), target_extruder);
  4541. #if ENABLED(DUAL_X_CARRIAGE)
  4542. if (dual_x_carriage_mode == DXC_DUPLICATION_MODE && target_extruder == 0)
  4543. thermalManager.setTargetHotend(code_value_temp_abs() == 0.0 ? 0.0 : code_value_temp_abs() + duplicate_extruder_temp_offset, 1);
  4544. #endif
  4545. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  4546. /**
  4547. * Stop the timer at the end of print, starting is managed by
  4548. * 'heat and wait' M109.
  4549. * We use half EXTRUDE_MINTEMP here to allow nozzles to be put into hot
  4550. * stand by mode, for instance in a dual extruder setup, without affecting
  4551. * the running print timer.
  4552. */
  4553. if (code_value_temp_abs() <= (EXTRUDE_MINTEMP)/2) {
  4554. print_job_timer.stop();
  4555. LCD_MESSAGEPGM(WELCOME_MSG);
  4556. }
  4557. #endif
  4558. if (code_value_temp_abs() > thermalManager.degHotend(target_extruder)) status_printf(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
  4559. }
  4560. #if ENABLED(AUTOTEMP)
  4561. planner.autotemp_M104_M109();
  4562. #endif
  4563. }
  4564. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  4565. void print_heaterstates() {
  4566. #if HAS_TEMP_HOTEND
  4567. SERIAL_PROTOCOLPGM(" T:");
  4568. SERIAL_PROTOCOL_F(thermalManager.degHotend(target_extruder), 1);
  4569. SERIAL_PROTOCOLPGM(" /");
  4570. SERIAL_PROTOCOL_F(thermalManager.degTargetHotend(target_extruder), 1);
  4571. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  4572. SERIAL_PROTOCOLPAIR(" (", thermalManager.current_temperature_raw[target_extruder] / OVERSAMPLENR);
  4573. SERIAL_PROTOCOLCHAR(')');
  4574. #endif
  4575. #endif
  4576. #if HAS_TEMP_BED
  4577. SERIAL_PROTOCOLPGM(" B:");
  4578. SERIAL_PROTOCOL_F(thermalManager.degBed(), 1);
  4579. SERIAL_PROTOCOLPGM(" /");
  4580. SERIAL_PROTOCOL_F(thermalManager.degTargetBed(), 1);
  4581. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  4582. SERIAL_PROTOCOLPAIR(" (", thermalManager.current_temperature_bed_raw / OVERSAMPLENR);
  4583. SERIAL_PROTOCOLCHAR(')');
  4584. #endif
  4585. #endif
  4586. #if HOTENDS > 1
  4587. HOTEND_LOOP() {
  4588. SERIAL_PROTOCOLPAIR(" T", e);
  4589. SERIAL_PROTOCOLCHAR(':');
  4590. SERIAL_PROTOCOL_F(thermalManager.degHotend(e), 1);
  4591. SERIAL_PROTOCOLPGM(" /");
  4592. SERIAL_PROTOCOL_F(thermalManager.degTargetHotend(e), 1);
  4593. #if ENABLED(SHOW_TEMP_ADC_VALUES)
  4594. SERIAL_PROTOCOLPAIR(" (", thermalManager.current_temperature_raw[e] / OVERSAMPLENR);
  4595. SERIAL_PROTOCOLCHAR(')');
  4596. #endif
  4597. }
  4598. #endif
  4599. SERIAL_PROTOCOLPGM(" @:");
  4600. SERIAL_PROTOCOL(thermalManager.getHeaterPower(target_extruder));
  4601. #if HAS_TEMP_BED
  4602. SERIAL_PROTOCOLPGM(" B@:");
  4603. SERIAL_PROTOCOL(thermalManager.getHeaterPower(-1));
  4604. #endif
  4605. #if HOTENDS > 1
  4606. HOTEND_LOOP() {
  4607. SERIAL_PROTOCOLPAIR(" @", e);
  4608. SERIAL_PROTOCOLCHAR(':');
  4609. SERIAL_PROTOCOL(thermalManager.getHeaterPower(e));
  4610. }
  4611. #endif
  4612. }
  4613. #endif
  4614. /**
  4615. * M105: Read hot end and bed temperature
  4616. */
  4617. inline void gcode_M105() {
  4618. if (get_target_extruder_from_command(105)) return;
  4619. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  4620. SERIAL_PROTOCOLPGM(MSG_OK);
  4621. print_heaterstates();
  4622. #else // !HAS_TEMP_HOTEND && !HAS_TEMP_BED
  4623. SERIAL_ERROR_START;
  4624. SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
  4625. #endif
  4626. SERIAL_EOL;
  4627. }
  4628. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  4629. static uint8_t auto_report_temp_interval;
  4630. static millis_t next_temp_report_ms;
  4631. /**
  4632. * M155: Set temperature auto-report interval. M155 S<seconds>
  4633. */
  4634. inline void gcode_M155() {
  4635. if (code_seen('S')) {
  4636. auto_report_temp_interval = code_value_byte();
  4637. NOMORE(auto_report_temp_interval, 60);
  4638. next_temp_report_ms = millis() + 1000UL * auto_report_temp_interval;
  4639. }
  4640. }
  4641. inline void auto_report_temperatures() {
  4642. if (auto_report_temp_interval && ELAPSED(millis(), next_temp_report_ms)) {
  4643. next_temp_report_ms = millis() + 1000UL * auto_report_temp_interval;
  4644. print_heaterstates();
  4645. SERIAL_EOL;
  4646. }
  4647. }
  4648. #endif // AUTO_REPORT_TEMPERATURES
  4649. #if FAN_COUNT > 0
  4650. /**
  4651. * M106: Set Fan Speed
  4652. *
  4653. * S<int> Speed between 0-255
  4654. * P<index> Fan index, if more than one fan
  4655. */
  4656. inline void gcode_M106() {
  4657. uint16_t s = code_seen('S') ? code_value_ushort() : 255,
  4658. p = code_seen('P') ? code_value_ushort() : 0;
  4659. NOMORE(s, 255);
  4660. if (p < FAN_COUNT) fanSpeeds[p] = s;
  4661. }
  4662. /**
  4663. * M107: Fan Off
  4664. */
  4665. inline void gcode_M107() {
  4666. uint16_t p = code_seen('P') ? code_value_ushort() : 0;
  4667. if (p < FAN_COUNT) fanSpeeds[p] = 0;
  4668. }
  4669. #endif // FAN_COUNT > 0
  4670. #if DISABLED(EMERGENCY_PARSER)
  4671. /**
  4672. * M108: Stop the waiting for heaters in M109, M190, M303. Does not affect the target temperature.
  4673. */
  4674. inline void gcode_M108() { wait_for_heatup = false; }
  4675. /**
  4676. * M112: Emergency Stop
  4677. */
  4678. inline void gcode_M112() { kill(PSTR(MSG_KILLED)); }
  4679. /**
  4680. * M410: Quickstop - Abort all planned moves
  4681. *
  4682. * This will stop the carriages mid-move, so most likely they
  4683. * will be out of sync with the stepper position after this.
  4684. */
  4685. inline void gcode_M410() { quickstop_stepper(); }
  4686. #endif
  4687. #ifndef MIN_COOLING_SLOPE_DEG
  4688. #define MIN_COOLING_SLOPE_DEG 1.50
  4689. #endif
  4690. #ifndef MIN_COOLING_SLOPE_TIME
  4691. #define MIN_COOLING_SLOPE_TIME 60
  4692. #endif
  4693. /**
  4694. * M109: Sxxx Wait for extruder(s) to reach temperature. Waits only when heating.
  4695. * Rxxx Wait for extruder(s) to reach temperature. Waits when heating and cooling.
  4696. */
  4697. inline void gcode_M109() {
  4698. if (get_target_extruder_from_command(109)) return;
  4699. if (DEBUGGING(DRYRUN)) return;
  4700. #if ENABLED(SINGLENOZZLE)
  4701. if (target_extruder != active_extruder) return;
  4702. #endif
  4703. bool no_wait_for_cooling = code_seen('S');
  4704. if (no_wait_for_cooling || code_seen('R')) {
  4705. thermalManager.setTargetHotend(code_value_temp_abs(), target_extruder);
  4706. #if ENABLED(DUAL_X_CARRIAGE)
  4707. if (dual_x_carriage_mode == DXC_DUPLICATION_MODE && target_extruder == 0)
  4708. thermalManager.setTargetHotend(code_value_temp_abs() == 0.0 ? 0.0 : code_value_temp_abs() + duplicate_extruder_temp_offset, 1);
  4709. #endif
  4710. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  4711. /**
  4712. * We use half EXTRUDE_MINTEMP here to allow nozzles to be put into hot
  4713. * stand by mode, for instance in a dual extruder setup, without affecting
  4714. * the running print timer.
  4715. */
  4716. if (code_value_temp_abs() <= (EXTRUDE_MINTEMP)/2) {
  4717. print_job_timer.stop();
  4718. LCD_MESSAGEPGM(WELCOME_MSG);
  4719. }
  4720. /**
  4721. * We do not check if the timer is already running because this check will
  4722. * be done for us inside the Stopwatch::start() method thus a running timer
  4723. * will not restart.
  4724. */
  4725. else print_job_timer.start();
  4726. #endif
  4727. if (thermalManager.isHeatingHotend(target_extruder)) status_printf(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
  4728. }
  4729. #if ENABLED(AUTOTEMP)
  4730. planner.autotemp_M104_M109();
  4731. #endif
  4732. #if TEMP_RESIDENCY_TIME > 0
  4733. millis_t residency_start_ms = 0;
  4734. // Loop until the temperature has stabilized
  4735. #define TEMP_CONDITIONS (!residency_start_ms || PENDING(now, residency_start_ms + (TEMP_RESIDENCY_TIME) * 1000UL))
  4736. #else
  4737. // Loop until the temperature is very close target
  4738. #define TEMP_CONDITIONS (wants_to_cool ? thermalManager.isCoolingHotend(target_extruder) : thermalManager.isHeatingHotend(target_extruder))
  4739. #endif //TEMP_RESIDENCY_TIME > 0
  4740. float theTarget = -1.0, old_temp = 9999.0;
  4741. bool wants_to_cool = false;
  4742. wait_for_heatup = true;
  4743. millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
  4744. KEEPALIVE_STATE(NOT_BUSY);
  4745. do {
  4746. // Target temperature might be changed during the loop
  4747. if (theTarget != thermalManager.degTargetHotend(target_extruder)) {
  4748. wants_to_cool = thermalManager.isCoolingHotend(target_extruder);
  4749. theTarget = thermalManager.degTargetHotend(target_extruder);
  4750. // Exit if S<lower>, continue if S<higher>, R<lower>, or R<higher>
  4751. if (no_wait_for_cooling && wants_to_cool) break;
  4752. }
  4753. now = millis();
  4754. if (ELAPSED(now, next_temp_ms)) { //Print temp & remaining time every 1s while waiting
  4755. next_temp_ms = now + 1000UL;
  4756. print_heaterstates();
  4757. #if TEMP_RESIDENCY_TIME > 0
  4758. SERIAL_PROTOCOLPGM(" W:");
  4759. if (residency_start_ms) {
  4760. long rem = (((TEMP_RESIDENCY_TIME) * 1000UL) - (now - residency_start_ms)) / 1000UL;
  4761. SERIAL_PROTOCOLLN(rem);
  4762. }
  4763. else {
  4764. SERIAL_PROTOCOLLNPGM("?");
  4765. }
  4766. #else
  4767. SERIAL_EOL;
  4768. #endif
  4769. }
  4770. idle();
  4771. refresh_cmd_timeout(); // to prevent stepper_inactive_time from running out
  4772. float temp = thermalManager.degHotend(target_extruder);
  4773. #if TEMP_RESIDENCY_TIME > 0
  4774. float temp_diff = fabs(theTarget - temp);
  4775. if (!residency_start_ms) {
  4776. // Start the TEMP_RESIDENCY_TIME timer when we reach target temp for the first time.
  4777. if (temp_diff < TEMP_WINDOW) residency_start_ms = now;
  4778. }
  4779. else if (temp_diff > TEMP_HYSTERESIS) {
  4780. // Restart the timer whenever the temperature falls outside the hysteresis.
  4781. residency_start_ms = now;
  4782. }
  4783. #endif //TEMP_RESIDENCY_TIME > 0
  4784. // Prevent a wait-forever situation if R is misused i.e. M109 R0
  4785. if (wants_to_cool) {
  4786. // break after MIN_COOLING_SLOPE_TIME seconds
  4787. // if the temperature did not drop at least MIN_COOLING_SLOPE_DEG
  4788. if (!next_cool_check_ms || ELAPSED(now, next_cool_check_ms)) {
  4789. if (old_temp - temp < MIN_COOLING_SLOPE_DEG) break;
  4790. next_cool_check_ms = now + 1000UL * MIN_COOLING_SLOPE_TIME;
  4791. old_temp = temp;
  4792. }
  4793. }
  4794. } while (wait_for_heatup && TEMP_CONDITIONS);
  4795. if (wait_for_heatup) LCD_MESSAGEPGM(MSG_HEATING_COMPLETE);
  4796. KEEPALIVE_STATE(IN_HANDLER);
  4797. }
  4798. #if HAS_TEMP_BED
  4799. #ifndef MIN_COOLING_SLOPE_DEG_BED
  4800. #define MIN_COOLING_SLOPE_DEG_BED 1.50
  4801. #endif
  4802. #ifndef MIN_COOLING_SLOPE_TIME_BED
  4803. #define MIN_COOLING_SLOPE_TIME_BED 60
  4804. #endif
  4805. /**
  4806. * M190: Sxxx Wait for bed current temp to reach target temp. Waits only when heating
  4807. * Rxxx Wait for bed current temp to reach target temp. Waits when heating and cooling
  4808. */
  4809. inline void gcode_M190() {
  4810. if (DEBUGGING(DRYRUN)) return;
  4811. LCD_MESSAGEPGM(MSG_BED_HEATING);
  4812. bool no_wait_for_cooling = code_seen('S');
  4813. if (no_wait_for_cooling || code_seen('R')) {
  4814. thermalManager.setTargetBed(code_value_temp_abs());
  4815. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  4816. if (code_value_temp_abs() > BED_MINTEMP) {
  4817. /**
  4818. * We start the timer when 'heating and waiting' command arrives, LCD
  4819. * functions never wait. Cooling down managed by extruders.
  4820. *
  4821. * We do not check if the timer is already running because this check will
  4822. * be done for us inside the Stopwatch::start() method thus a running timer
  4823. * will not restart.
  4824. */
  4825. print_job_timer.start();
  4826. }
  4827. #endif
  4828. }
  4829. #if TEMP_BED_RESIDENCY_TIME > 0
  4830. millis_t residency_start_ms = 0;
  4831. // Loop until the temperature has stabilized
  4832. #define TEMP_BED_CONDITIONS (!residency_start_ms || PENDING(now, residency_start_ms + (TEMP_BED_RESIDENCY_TIME) * 1000UL))
  4833. #else
  4834. // Loop until the temperature is very close target
  4835. #define TEMP_BED_CONDITIONS (wants_to_cool ? thermalManager.isCoolingBed() : thermalManager.isHeatingBed())
  4836. #endif //TEMP_BED_RESIDENCY_TIME > 0
  4837. float theTarget = -1.0, old_temp = 9999.0;
  4838. bool wants_to_cool = false;
  4839. wait_for_heatup = true;
  4840. millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
  4841. KEEPALIVE_STATE(NOT_BUSY);
  4842. target_extruder = active_extruder; // for print_heaterstates
  4843. do {
  4844. // Target temperature might be changed during the loop
  4845. if (theTarget != thermalManager.degTargetBed()) {
  4846. wants_to_cool = thermalManager.isCoolingBed();
  4847. theTarget = thermalManager.degTargetBed();
  4848. // Exit if S<lower>, continue if S<higher>, R<lower>, or R<higher>
  4849. if (no_wait_for_cooling && wants_to_cool) break;
  4850. }
  4851. now = millis();
  4852. if (ELAPSED(now, next_temp_ms)) { //Print Temp Reading every 1 second while heating up.
  4853. next_temp_ms = now + 1000UL;
  4854. print_heaterstates();
  4855. #if TEMP_BED_RESIDENCY_TIME > 0
  4856. SERIAL_PROTOCOLPGM(" W:");
  4857. if (residency_start_ms) {
  4858. long rem = (((TEMP_BED_RESIDENCY_TIME) * 1000UL) - (now - residency_start_ms)) / 1000UL;
  4859. SERIAL_PROTOCOLLN(rem);
  4860. }
  4861. else {
  4862. SERIAL_PROTOCOLLNPGM("?");
  4863. }
  4864. #else
  4865. SERIAL_EOL;
  4866. #endif
  4867. }
  4868. idle();
  4869. refresh_cmd_timeout(); // to prevent stepper_inactive_time from running out
  4870. float temp = thermalManager.degBed();
  4871. #if TEMP_BED_RESIDENCY_TIME > 0
  4872. float temp_diff = fabs(theTarget - temp);
  4873. if (!residency_start_ms) {
  4874. // Start the TEMP_BED_RESIDENCY_TIME timer when we reach target temp for the first time.
  4875. if (temp_diff < TEMP_BED_WINDOW) residency_start_ms = now;
  4876. }
  4877. else if (temp_diff > TEMP_BED_HYSTERESIS) {
  4878. // Restart the timer whenever the temperature falls outside the hysteresis.
  4879. residency_start_ms = now;
  4880. }
  4881. #endif //TEMP_BED_RESIDENCY_TIME > 0
  4882. // Prevent a wait-forever situation if R is misused i.e. M190 R0
  4883. if (wants_to_cool) {
  4884. // break after MIN_COOLING_SLOPE_TIME_BED seconds
  4885. // if the temperature did not drop at least MIN_COOLING_SLOPE_DEG_BED
  4886. if (!next_cool_check_ms || ELAPSED(now, next_cool_check_ms)) {
  4887. if (old_temp - temp < MIN_COOLING_SLOPE_DEG_BED) break;
  4888. next_cool_check_ms = now + 1000UL * MIN_COOLING_SLOPE_TIME_BED;
  4889. old_temp = temp;
  4890. }
  4891. }
  4892. } while (wait_for_heatup && TEMP_BED_CONDITIONS);
  4893. if (wait_for_heatup) LCD_MESSAGEPGM(MSG_BED_DONE);
  4894. KEEPALIVE_STATE(IN_HANDLER);
  4895. }
  4896. #endif // HAS_TEMP_BED
  4897. /**
  4898. * M110: Set Current Line Number
  4899. */
  4900. inline void gcode_M110() {
  4901. if (code_seen('N')) gcode_LastN = code_value_long();
  4902. }
  4903. /**
  4904. * M111: Set the debug level
  4905. */
  4906. inline void gcode_M111() {
  4907. marlin_debug_flags = code_seen('S') ? code_value_byte() : (uint8_t) DEBUG_NONE;
  4908. const static char str_debug_1[] PROGMEM = MSG_DEBUG_ECHO;
  4909. const static char str_debug_2[] PROGMEM = MSG_DEBUG_INFO;
  4910. const static char str_debug_4[] PROGMEM = MSG_DEBUG_ERRORS;
  4911. const static char str_debug_8[] PROGMEM = MSG_DEBUG_DRYRUN;
  4912. const static char str_debug_16[] PROGMEM = MSG_DEBUG_COMMUNICATION;
  4913. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4914. const static char str_debug_32[] PROGMEM = MSG_DEBUG_LEVELING;
  4915. #endif
  4916. const static char* const debug_strings[] PROGMEM = {
  4917. str_debug_1, str_debug_2, str_debug_4, str_debug_8, str_debug_16,
  4918. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4919. str_debug_32
  4920. #endif
  4921. };
  4922. SERIAL_ECHO_START;
  4923. SERIAL_ECHOPGM(MSG_DEBUG_PREFIX);
  4924. if (marlin_debug_flags) {
  4925. uint8_t comma = 0;
  4926. for (uint8_t i = 0; i < COUNT(debug_strings); i++) {
  4927. if (TEST(marlin_debug_flags, i)) {
  4928. if (comma++) SERIAL_CHAR(',');
  4929. serialprintPGM((char*)pgm_read_word(&(debug_strings[i])));
  4930. }
  4931. }
  4932. }
  4933. else {
  4934. SERIAL_ECHOPGM(MSG_DEBUG_OFF);
  4935. }
  4936. SERIAL_EOL;
  4937. }
  4938. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  4939. /**
  4940. * M113: Get or set Host Keepalive interval (0 to disable)
  4941. *
  4942. * S<seconds> Optional. Set the keepalive interval.
  4943. */
  4944. inline void gcode_M113() {
  4945. if (code_seen('S')) {
  4946. host_keepalive_interval = code_value_byte();
  4947. NOMORE(host_keepalive_interval, 60);
  4948. }
  4949. else {
  4950. SERIAL_ECHO_START;
  4951. SERIAL_ECHOLNPAIR("M113 S", (unsigned long)host_keepalive_interval);
  4952. }
  4953. }
  4954. #endif
  4955. #if ENABLED(BARICUDA)
  4956. #if HAS_HEATER_1
  4957. /**
  4958. * M126: Heater 1 valve open
  4959. */
  4960. inline void gcode_M126() { baricuda_valve_pressure = code_seen('S') ? code_value_byte() : 255; }
  4961. /**
  4962. * M127: Heater 1 valve close
  4963. */
  4964. inline void gcode_M127() { baricuda_valve_pressure = 0; }
  4965. #endif
  4966. #if HAS_HEATER_2
  4967. /**
  4968. * M128: Heater 2 valve open
  4969. */
  4970. inline void gcode_M128() { baricuda_e_to_p_pressure = code_seen('S') ? code_value_byte() : 255; }
  4971. /**
  4972. * M129: Heater 2 valve close
  4973. */
  4974. inline void gcode_M129() { baricuda_e_to_p_pressure = 0; }
  4975. #endif
  4976. #endif //BARICUDA
  4977. /**
  4978. * M140: Set bed temperature
  4979. */
  4980. inline void gcode_M140() {
  4981. if (DEBUGGING(DRYRUN)) return;
  4982. if (code_seen('S')) thermalManager.setTargetBed(code_value_temp_abs());
  4983. }
  4984. #if ENABLED(ULTIPANEL)
  4985. /**
  4986. * M145: Set the heatup state for a material in the LCD menu
  4987. * S<material> (0=PLA, 1=ABS)
  4988. * H<hotend temp>
  4989. * B<bed temp>
  4990. * F<fan speed>
  4991. */
  4992. inline void gcode_M145() {
  4993. uint8_t material = code_seen('S') ? (uint8_t)code_value_int() : 0;
  4994. if (material >= COUNT(lcd_preheat_hotend_temp)) {
  4995. SERIAL_ERROR_START;
  4996. SERIAL_ERRORLNPGM(MSG_ERR_MATERIAL_INDEX);
  4997. }
  4998. else {
  4999. int v;
  5000. if (code_seen('H')) {
  5001. v = code_value_int();
  5002. lcd_preheat_hotend_temp[material] = constrain(v, EXTRUDE_MINTEMP, HEATER_0_MAXTEMP - 15);
  5003. }
  5004. if (code_seen('F')) {
  5005. v = code_value_int();
  5006. lcd_preheat_fan_speed[material] = constrain(v, 0, 255);
  5007. }
  5008. #if TEMP_SENSOR_BED != 0
  5009. if (code_seen('B')) {
  5010. v = code_value_int();
  5011. lcd_preheat_bed_temp[material] = constrain(v, BED_MINTEMP, BED_MAXTEMP - 15);
  5012. }
  5013. #endif
  5014. }
  5015. }
  5016. #endif // ULTIPANEL
  5017. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  5018. /**
  5019. * M149: Set temperature units
  5020. */
  5021. inline void gcode_M149() {
  5022. if (code_seen('C')) set_input_temp_units(TEMPUNIT_C);
  5023. else if (code_seen('K')) set_input_temp_units(TEMPUNIT_K);
  5024. else if (code_seen('F')) set_input_temp_units(TEMPUNIT_F);
  5025. }
  5026. #endif
  5027. #if HAS_POWER_SWITCH
  5028. /**
  5029. * M80: Turn on Power Supply
  5030. */
  5031. inline void gcode_M80() {
  5032. OUT_WRITE(PS_ON_PIN, PS_ON_AWAKE); //GND
  5033. /**
  5034. * If you have a switch on suicide pin, this is useful
  5035. * if you want to start another print with suicide feature after
  5036. * a print without suicide...
  5037. */
  5038. #if HAS_SUICIDE
  5039. OUT_WRITE(SUICIDE_PIN, HIGH);
  5040. #endif
  5041. #if ENABLED(ULTIPANEL)
  5042. powersupply = true;
  5043. LCD_MESSAGEPGM(WELCOME_MSG);
  5044. lcd_update();
  5045. #endif
  5046. }
  5047. #endif // HAS_POWER_SWITCH
  5048. /**
  5049. * M81: Turn off Power, including Power Supply, if there is one.
  5050. *
  5051. * This code should ALWAYS be available for EMERGENCY SHUTDOWN!
  5052. */
  5053. inline void gcode_M81() {
  5054. thermalManager.disable_all_heaters();
  5055. stepper.finish_and_disable();
  5056. #if FAN_COUNT > 0
  5057. #if FAN_COUNT > 1
  5058. for (uint8_t i = 0; i < FAN_COUNT; i++) fanSpeeds[i] = 0;
  5059. #else
  5060. fanSpeeds[0] = 0;
  5061. #endif
  5062. #endif
  5063. safe_delay(1000); // Wait 1 second before switching off
  5064. #if HAS_SUICIDE
  5065. stepper.synchronize();
  5066. suicide();
  5067. #elif HAS_POWER_SWITCH
  5068. OUT_WRITE(PS_ON_PIN, PS_ON_ASLEEP);
  5069. #endif
  5070. #if ENABLED(ULTIPANEL)
  5071. #if HAS_POWER_SWITCH
  5072. powersupply = false;
  5073. #endif
  5074. LCD_MESSAGEPGM(MACHINE_NAME " " MSG_OFF ".");
  5075. lcd_update();
  5076. #endif
  5077. }
  5078. /**
  5079. * M82: Set E codes absolute (default)
  5080. */
  5081. inline void gcode_M82() { axis_relative_modes[E_AXIS] = false; }
  5082. /**
  5083. * M83: Set E codes relative while in Absolute Coordinates (G90) mode
  5084. */
  5085. inline void gcode_M83() { axis_relative_modes[E_AXIS] = true; }
  5086. /**
  5087. * M18, M84: Disable all stepper motors
  5088. */
  5089. inline void gcode_M18_M84() {
  5090. if (code_seen('S')) {
  5091. stepper_inactive_time = code_value_millis_from_seconds();
  5092. }
  5093. else {
  5094. bool all_axis = !((code_seen('X')) || (code_seen('Y')) || (code_seen('Z')) || (code_seen('E')));
  5095. if (all_axis) {
  5096. stepper.finish_and_disable();
  5097. }
  5098. else {
  5099. stepper.synchronize();
  5100. if (code_seen('X')) disable_x();
  5101. if (code_seen('Y')) disable_y();
  5102. if (code_seen('Z')) disable_z();
  5103. #if ((E0_ENABLE_PIN != X_ENABLE_PIN) && (E1_ENABLE_PIN != Y_ENABLE_PIN)) // Only enable on boards that have seperate ENABLE_PINS
  5104. if (code_seen('E')) disable_e_steppers();
  5105. #endif
  5106. }
  5107. }
  5108. }
  5109. /**
  5110. * M85: Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
  5111. */
  5112. inline void gcode_M85() {
  5113. if (code_seen('S')) max_inactive_time = code_value_millis_from_seconds();
  5114. }
  5115. /**
  5116. * Multi-stepper support for M92, M201, M203
  5117. */
  5118. #if ENABLED(DISTINCT_E_FACTORS)
  5119. #define GET_TARGET_EXTRUDER(CMD) if (get_target_extruder_from_command(CMD)) return
  5120. #define TARGET_EXTRUDER target_extruder
  5121. #else
  5122. #define GET_TARGET_EXTRUDER(CMD) NOOP
  5123. #define TARGET_EXTRUDER 0
  5124. #endif
  5125. /**
  5126. * M92: Set axis steps-per-unit for one or more axes, X, Y, Z, and E.
  5127. * (Follows the same syntax as G92)
  5128. *
  5129. * With multiple extruders use T to specify which one.
  5130. */
  5131. inline void gcode_M92() {
  5132. GET_TARGET_EXTRUDER(92);
  5133. LOOP_XYZE(i) {
  5134. if (code_seen(axis_codes[i])) {
  5135. if (i == E_AXIS) {
  5136. float value = code_value_per_axis_unit(E_AXIS + TARGET_EXTRUDER);
  5137. if (value < 20.0) {
  5138. float factor = planner.axis_steps_per_mm[E_AXIS + TARGET_EXTRUDER] / value; // increase e constants if M92 E14 is given for netfab.
  5139. planner.max_jerk[E_AXIS] *= factor;
  5140. planner.max_feedrate_mm_s[E_AXIS + TARGET_EXTRUDER] *= factor;
  5141. planner.max_acceleration_steps_per_s2[E_AXIS + TARGET_EXTRUDER] *= factor;
  5142. }
  5143. planner.axis_steps_per_mm[E_AXIS + TARGET_EXTRUDER] = value;
  5144. }
  5145. else {
  5146. planner.axis_steps_per_mm[i] = code_value_per_axis_unit(i);
  5147. }
  5148. }
  5149. }
  5150. planner.refresh_positioning();
  5151. }
  5152. /**
  5153. * Output the current position to serial
  5154. */
  5155. static void report_current_position() {
  5156. SERIAL_PROTOCOLPGM("X:");
  5157. SERIAL_PROTOCOL(current_position[X_AXIS]);
  5158. SERIAL_PROTOCOLPGM(" Y:");
  5159. SERIAL_PROTOCOL(current_position[Y_AXIS]);
  5160. SERIAL_PROTOCOLPGM(" Z:");
  5161. SERIAL_PROTOCOL(current_position[Z_AXIS]);
  5162. SERIAL_PROTOCOLPGM(" E:");
  5163. SERIAL_PROTOCOL(current_position[E_AXIS]);
  5164. stepper.report_positions();
  5165. #if IS_SCARA
  5166. SERIAL_PROTOCOLPAIR("SCARA Theta:", stepper.get_axis_position_degrees(A_AXIS));
  5167. SERIAL_PROTOCOLLNPAIR(" Psi+Theta:", stepper.get_axis_position_degrees(B_AXIS));
  5168. SERIAL_EOL;
  5169. #endif
  5170. }
  5171. /**
  5172. * M114: Output current position to serial port
  5173. */
  5174. inline void gcode_M114() { stepper.synchronize(); report_current_position(); }
  5175. /**
  5176. * M115: Capabilities string
  5177. */
  5178. inline void gcode_M115() {
  5179. SERIAL_PROTOCOLLNPGM(MSG_M115_REPORT);
  5180. #if ENABLED(EXTENDED_CAPABILITIES_REPORT)
  5181. // EEPROM (M500, M501)
  5182. #if ENABLED(EEPROM_SETTINGS)
  5183. SERIAL_PROTOCOLLNPGM("Cap:EEPROM:1");
  5184. #else
  5185. SERIAL_PROTOCOLLNPGM("Cap:EEPROM:0");
  5186. #endif
  5187. // AUTOREPORT_TEMP (M155)
  5188. #if ENABLED(AUTO_REPORT_TEMPERATURES)
  5189. SERIAL_PROTOCOLLNPGM("Cap:AUTOREPORT_TEMP:1");
  5190. #else
  5191. SERIAL_PROTOCOLLNPGM("Cap:AUTOREPORT_TEMP:0");
  5192. #endif
  5193. // PROGRESS (M530 S L, M531 <file>, M532 X L)
  5194. SERIAL_PROTOCOLLNPGM("Cap:PROGRESS:0");
  5195. // AUTOLEVEL (G29)
  5196. #if HAS_ABL
  5197. SERIAL_PROTOCOLLNPGM("Cap:AUTOLEVEL:1");
  5198. #else
  5199. SERIAL_PROTOCOLLNPGM("Cap:AUTOLEVEL:0");
  5200. #endif
  5201. // Z_PROBE (G30)
  5202. #if HAS_BED_PROBE
  5203. SERIAL_PROTOCOLLNPGM("Cap:Z_PROBE:1");
  5204. #else
  5205. SERIAL_PROTOCOLLNPGM("Cap:Z_PROBE:0");
  5206. #endif
  5207. // SOFTWARE_POWER (G30)
  5208. #if HAS_POWER_SWITCH
  5209. SERIAL_PROTOCOLLNPGM("Cap:SOFTWARE_POWER:1");
  5210. #else
  5211. SERIAL_PROTOCOLLNPGM("Cap:SOFTWARE_POWER:0");
  5212. #endif
  5213. // TOGGLE_LIGHTS (M355)
  5214. #if HAS_CASE_LIGHT
  5215. SERIAL_PROTOCOLLNPGM("Cap:TOGGLE_LIGHTS:1");
  5216. #else
  5217. SERIAL_PROTOCOLLNPGM("Cap:TOGGLE_LIGHTS:0");
  5218. #endif
  5219. // EMERGENCY_PARSER (M108, M112, M410)
  5220. #if ENABLED(EMERGENCY_PARSER)
  5221. SERIAL_PROTOCOLLNPGM("Cap:EMERGENCY_PARSER:1");
  5222. #else
  5223. SERIAL_PROTOCOLLNPGM("Cap:EMERGENCY_PARSER:0");
  5224. #endif
  5225. #endif // EXTENDED_CAPABILITIES_REPORT
  5226. }
  5227. /**
  5228. * M117: Set LCD Status Message
  5229. */
  5230. inline void gcode_M117() {
  5231. lcd_setstatus(current_command_args);
  5232. }
  5233. /**
  5234. * M119: Output endstop states to serial output
  5235. */
  5236. inline void gcode_M119() { endstops.M119(); }
  5237. /**
  5238. * M120: Enable endstops and set non-homing endstop state to "enabled"
  5239. */
  5240. inline void gcode_M120() { endstops.enable_globally(true); }
  5241. /**
  5242. * M121: Disable endstops and set non-homing endstop state to "disabled"
  5243. */
  5244. inline void gcode_M121() { endstops.enable_globally(false); }
  5245. #if ENABLED(PARK_HEAD_ON_PAUSE)
  5246. /**
  5247. * M125: Store current position and move to filament change position.
  5248. * Called on pause (by M25) to prevent material leaking onto the
  5249. * object. On resume (M24) the head will be moved back and the
  5250. * print will resume.
  5251. *
  5252. * If Marlin is compiled without SD Card support, M125 can be
  5253. * used directly to pause the print and move to park position,
  5254. * resuming with a button click or M108.
  5255. *
  5256. * L = override retract length
  5257. * X = override X
  5258. * Y = override Y
  5259. * Z = override Z raise
  5260. */
  5261. inline void gcode_M125() {
  5262. if (move_away_flag) return; // already paused
  5263. const bool job_running = print_job_timer.isRunning();
  5264. // there are blocks after this one, or sd printing
  5265. move_away_flag = job_running || planner.blocks_queued()
  5266. #if ENABLED(SDSUPPORT)
  5267. || card.sdprinting
  5268. #endif
  5269. ;
  5270. if (!move_away_flag) return; // nothing to pause
  5271. // M125 can be used to pause a print too
  5272. #if ENABLED(SDSUPPORT)
  5273. card.pauseSDPrint();
  5274. #endif
  5275. print_job_timer.pause();
  5276. // Save current position
  5277. COPY(resume_position, current_position);
  5278. set_destination_to_current();
  5279. // Initial retract before move to filament change position
  5280. destination[E_AXIS] += code_seen('L') ? code_value_axis_units(E_AXIS) : 0
  5281. #if defined(FILAMENT_CHANGE_RETRACT_LENGTH) && FILAMENT_CHANGE_RETRACT_LENGTH > 0
  5282. - (FILAMENT_CHANGE_RETRACT_LENGTH)
  5283. #endif
  5284. ;
  5285. RUNPLAN(FILAMENT_CHANGE_RETRACT_FEEDRATE);
  5286. // Lift Z axis
  5287. const float z_lift = code_seen('Z') ? code_value_axis_units(Z_AXIS) :
  5288. #if defined(FILAMENT_CHANGE_Z_ADD) && FILAMENT_CHANGE_Z_ADD > 0
  5289. FILAMENT_CHANGE_Z_ADD
  5290. #else
  5291. 0
  5292. #endif
  5293. ;
  5294. if (z_lift > 0) {
  5295. destination[Z_AXIS] += z_lift;
  5296. NOMORE(destination[Z_AXIS], Z_MAX_POS);
  5297. RUNPLAN(FILAMENT_CHANGE_Z_FEEDRATE);
  5298. }
  5299. // Move XY axes to filament change position or given position
  5300. destination[X_AXIS] = code_seen('X') ? code_value_axis_units(X_AXIS) : 0
  5301. #ifdef FILAMENT_CHANGE_X_POS
  5302. + FILAMENT_CHANGE_X_POS
  5303. #endif
  5304. ;
  5305. destination[Y_AXIS] = code_seen('Y') ? code_value_axis_units(Y_AXIS) : 0
  5306. #ifdef FILAMENT_CHANGE_Y_POS
  5307. + FILAMENT_CHANGE_Y_POS
  5308. #endif
  5309. ;
  5310. #if HOTENDS > 1 && DISABLED(DUAL_X_CARRIAGE)
  5311. if (active_extruder > 0) {
  5312. if (!code_seen('X')) destination[X_AXIS] += hotend_offset[X_AXIS][active_extruder];
  5313. if (!code_seen('Y')) destination[Y_AXIS] += hotend_offset[Y_AXIS][active_extruder];
  5314. }
  5315. #endif
  5316. clamp_to_software_endstops(destination);
  5317. RUNPLAN(FILAMENT_CHANGE_XY_FEEDRATE);
  5318. set_current_to_destination();
  5319. stepper.synchronize();
  5320. disable_e_steppers();
  5321. #if DISABLED(SDSUPPORT)
  5322. // Wait for lcd click or M108
  5323. wait_for_user = true;
  5324. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5325. while (wait_for_user) idle();
  5326. KEEPALIVE_STATE(IN_HANDLER);
  5327. // Return to print position and continue
  5328. move_back_on_resume();
  5329. if (job_running) print_job_timer.start();
  5330. move_away_flag = false;
  5331. #endif
  5332. }
  5333. #endif // PARK_HEAD_ON_PAUSE
  5334. #if ENABLED(BLINKM) || ENABLED(RGB_LED)
  5335. void set_led_color(const uint8_t r, const uint8_t g, const uint8_t b) {
  5336. #if ENABLED(BLINKM)
  5337. // This variant uses i2c to send the RGB components to the device.
  5338. SendColors(r, g, b);
  5339. #else
  5340. // This variant uses 3 separate pins for the RGB components.
  5341. // If the pins can do PWM then their intensity will be set.
  5342. digitalWrite(RGB_LED_R_PIN, r ? HIGH : LOW);
  5343. digitalWrite(RGB_LED_G_PIN, g ? HIGH : LOW);
  5344. digitalWrite(RGB_LED_B_PIN, b ? HIGH : LOW);
  5345. analogWrite(RGB_LED_R_PIN, r);
  5346. analogWrite(RGB_LED_G_PIN, g);
  5347. analogWrite(RGB_LED_B_PIN, b);
  5348. #endif
  5349. }
  5350. /**
  5351. * M150: Set Status LED Color - Use R-U-B for R-G-B
  5352. *
  5353. * Always sets all 3 components. If a component is left out, set to 0.
  5354. *
  5355. * Examples:
  5356. *
  5357. * M150 R255 ; Turn LED red
  5358. * M150 R255 U127 ; Turn LED orange (PWM only)
  5359. * M150 ; Turn LED off
  5360. * M150 R U B ; Turn LED white
  5361. *
  5362. */
  5363. inline void gcode_M150() {
  5364. set_led_color(
  5365. code_seen('R') ? (code_has_value() ? code_value_byte() : 255) : 0,
  5366. code_seen('U') ? (code_has_value() ? code_value_byte() : 255) : 0,
  5367. code_seen('B') ? (code_has_value() ? code_value_byte() : 255) : 0
  5368. );
  5369. }
  5370. #endif // BLINKM || RGB_LED
  5371. /**
  5372. * M200: Set filament diameter and set E axis units to cubic units
  5373. *
  5374. * T<extruder> - Optional extruder number. Current extruder if omitted.
  5375. * D<linear> - Diameter of the filament. Use "D0" to switch back to linear units on the E axis.
  5376. */
  5377. inline void gcode_M200() {
  5378. if (get_target_extruder_from_command(200)) return;
  5379. if (code_seen('D')) {
  5380. // setting any extruder filament size disables volumetric on the assumption that
  5381. // slicers either generate in extruder values as cubic mm or as as filament feeds
  5382. // for all extruders
  5383. volumetric_enabled = (code_value_linear_units() != 0.0);
  5384. if (volumetric_enabled) {
  5385. filament_size[target_extruder] = code_value_linear_units();
  5386. // make sure all extruders have some sane value for the filament size
  5387. for (uint8_t i = 0; i < COUNT(filament_size); i++)
  5388. if (! filament_size[i]) filament_size[i] = DEFAULT_NOMINAL_FILAMENT_DIA;
  5389. }
  5390. }
  5391. else {
  5392. //reserved for setting filament diameter via UFID or filament measuring device
  5393. return;
  5394. }
  5395. calculate_volumetric_multipliers();
  5396. }
  5397. /**
  5398. * M201: Set max acceleration in units/s^2 for print moves (M201 X1000 Y1000)
  5399. *
  5400. * With multiple extruders use T to specify which one.
  5401. */
  5402. inline void gcode_M201() {
  5403. GET_TARGET_EXTRUDER(201);
  5404. LOOP_XYZE(i) {
  5405. if (code_seen(axis_codes[i])) {
  5406. const uint8_t a = i + (i == E_AXIS ? TARGET_EXTRUDER : 0);
  5407. planner.max_acceleration_mm_per_s2[a] = code_value_axis_units(a);
  5408. }
  5409. }
  5410. // 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)
  5411. planner.reset_acceleration_rates();
  5412. }
  5413. #if 0 // Not used for Sprinter/grbl gen6
  5414. inline void gcode_M202() {
  5415. LOOP_XYZE(i) {
  5416. if (code_seen(axis_codes[i])) axis_travel_steps_per_sqr_second[i] = code_value_axis_units(i) * planner.axis_steps_per_mm[i];
  5417. }
  5418. }
  5419. #endif
  5420. /**
  5421. * M203: Set maximum feedrate that your machine can sustain (M203 X200 Y200 Z300 E10000) in units/sec
  5422. *
  5423. * With multiple extruders use T to specify which one.
  5424. */
  5425. inline void gcode_M203() {
  5426. GET_TARGET_EXTRUDER(203);
  5427. LOOP_XYZE(i)
  5428. if (code_seen(axis_codes[i])) {
  5429. const uint8_t a = i + (i == E_AXIS ? TARGET_EXTRUDER : 0);
  5430. planner.max_feedrate_mm_s[a] = code_value_axis_units(a);
  5431. }
  5432. }
  5433. /**
  5434. * M204: Set Accelerations in units/sec^2 (M204 P1200 R3000 T3000)
  5435. *
  5436. * P = Printing moves
  5437. * R = Retract only (no X, Y, Z) moves
  5438. * T = Travel (non printing) moves
  5439. *
  5440. * Also sets minimum segment time in ms (B20000) to prevent buffer under-runs and M20 minimum feedrate
  5441. */
  5442. inline void gcode_M204() {
  5443. if (code_seen('S')) { // Kept for legacy compatibility. Should NOT BE USED for new developments.
  5444. planner.travel_acceleration = planner.acceleration = code_value_linear_units();
  5445. SERIAL_ECHOLNPAIR("Setting Print and Travel Acceleration: ", planner.acceleration);
  5446. }
  5447. if (code_seen('P')) {
  5448. planner.acceleration = code_value_linear_units();
  5449. SERIAL_ECHOLNPAIR("Setting Print Acceleration: ", planner.acceleration);
  5450. }
  5451. if (code_seen('R')) {
  5452. planner.retract_acceleration = code_value_linear_units();
  5453. SERIAL_ECHOLNPAIR("Setting Retract Acceleration: ", planner.retract_acceleration);
  5454. }
  5455. if (code_seen('T')) {
  5456. planner.travel_acceleration = code_value_linear_units();
  5457. SERIAL_ECHOLNPAIR("Setting Travel Acceleration: ", planner.travel_acceleration);
  5458. }
  5459. }
  5460. /**
  5461. * M205: Set Advanced Settings
  5462. *
  5463. * S = Min Feed Rate (units/s)
  5464. * T = Min Travel Feed Rate (units/s)
  5465. * B = Min Segment Time (µs)
  5466. * X = Max X Jerk (units/sec^2)
  5467. * Y = Max Y Jerk (units/sec^2)
  5468. * Z = Max Z Jerk (units/sec^2)
  5469. * E = Max E Jerk (units/sec^2)
  5470. */
  5471. inline void gcode_M205() {
  5472. if (code_seen('S')) planner.min_feedrate_mm_s = code_value_linear_units();
  5473. if (code_seen('T')) planner.min_travel_feedrate_mm_s = code_value_linear_units();
  5474. if (code_seen('B')) planner.min_segment_time = code_value_millis();
  5475. if (code_seen('X')) planner.max_jerk[X_AXIS] = code_value_axis_units(X_AXIS);
  5476. if (code_seen('Y')) planner.max_jerk[Y_AXIS] = code_value_axis_units(Y_AXIS);
  5477. if (code_seen('Z')) planner.max_jerk[Z_AXIS] = code_value_axis_units(Z_AXIS);
  5478. if (code_seen('E')) planner.max_jerk[E_AXIS] = code_value_axis_units(E_AXIS);
  5479. }
  5480. #if DISABLED(NO_WORKSPACE_OFFSETS)
  5481. /**
  5482. * M206: Set Additional Homing Offset (X Y Z). SCARA aliases T=X, P=Y
  5483. */
  5484. inline void gcode_M206() {
  5485. LOOP_XYZ(i)
  5486. if (code_seen(axis_codes[i]))
  5487. set_home_offset((AxisEnum)i, code_value_axis_units(i));
  5488. #if ENABLED(MORGAN_SCARA)
  5489. if (code_seen('T')) set_home_offset(A_AXIS, code_value_axis_units(A_AXIS)); // Theta
  5490. if (code_seen('P')) set_home_offset(B_AXIS, code_value_axis_units(B_AXIS)); // Psi
  5491. #endif
  5492. SYNC_PLAN_POSITION_KINEMATIC();
  5493. report_current_position();
  5494. }
  5495. #endif // NO_WORKSPACE_OFFSETS
  5496. #if ENABLED(DELTA)
  5497. /**
  5498. * M665: Set delta configurations
  5499. *
  5500. * L = diagonal rod
  5501. * R = delta radius
  5502. * S = segments per second
  5503. * A = Alpha (Tower 1) diagonal rod trim
  5504. * B = Beta (Tower 2) diagonal rod trim
  5505. * C = Gamma (Tower 3) diagonal rod trim
  5506. */
  5507. inline void gcode_M665() {
  5508. if (code_seen('L')) delta_diagonal_rod = code_value_linear_units();
  5509. if (code_seen('R')) delta_radius = code_value_linear_units();
  5510. if (code_seen('S')) delta_segments_per_second = code_value_float();
  5511. if (code_seen('A')) delta_diagonal_rod_trim[A_AXIS] = code_value_linear_units();
  5512. if (code_seen('B')) delta_diagonal_rod_trim[B_AXIS] = code_value_linear_units();
  5513. if (code_seen('C')) delta_diagonal_rod_trim[C_AXIS] = code_value_linear_units();
  5514. if (code_seen('I')) delta_tower_angle_trim[A_AXIS] = code_value_linear_units();
  5515. if (code_seen('J')) delta_tower_angle_trim[B_AXIS] = code_value_linear_units();
  5516. if (code_seen('K')) delta_tower_angle_trim[C_AXIS] = code_value_linear_units();
  5517. recalc_delta_settings(delta_radius, delta_diagonal_rod);
  5518. }
  5519. /**
  5520. * M666: Set delta endstop adjustment
  5521. */
  5522. inline void gcode_M666() {
  5523. #if ENABLED(DEBUG_LEVELING_FEATURE)
  5524. if (DEBUGGING(LEVELING)) {
  5525. SERIAL_ECHOLNPGM(">>> gcode_M666");
  5526. }
  5527. #endif
  5528. LOOP_XYZ(i) {
  5529. if (code_seen(axis_codes[i])) {
  5530. endstop_adj[i] = code_value_axis_units(i);
  5531. #if ENABLED(DEBUG_LEVELING_FEATURE)
  5532. if (DEBUGGING(LEVELING)) {
  5533. SERIAL_ECHOPAIR("endstop_adj[", axis_codes[i]);
  5534. SERIAL_ECHOLNPAIR("] = ", endstop_adj[i]);
  5535. }
  5536. #endif
  5537. }
  5538. }
  5539. #if ENABLED(DEBUG_LEVELING_FEATURE)
  5540. if (DEBUGGING(LEVELING)) {
  5541. SERIAL_ECHOLNPGM("<<< gcode_M666");
  5542. }
  5543. #endif
  5544. }
  5545. #elif ENABLED(Z_DUAL_ENDSTOPS) // !DELTA && ENABLED(Z_DUAL_ENDSTOPS)
  5546. /**
  5547. * M666: For Z Dual Endstop setup, set z axis offset to the z2 axis.
  5548. */
  5549. inline void gcode_M666() {
  5550. if (code_seen('Z')) z_endstop_adj = code_value_axis_units(Z_AXIS);
  5551. SERIAL_ECHOLNPAIR("Z Endstop Adjustment set to (mm):", z_endstop_adj);
  5552. }
  5553. #endif // !DELTA && Z_DUAL_ENDSTOPS
  5554. #if ENABLED(FWRETRACT)
  5555. /**
  5556. * M207: Set firmware retraction values
  5557. *
  5558. * S[+units] retract_length
  5559. * W[+units] retract_length_swap (multi-extruder)
  5560. * F[units/min] retract_feedrate_mm_s
  5561. * Z[units] retract_zlift
  5562. */
  5563. inline void gcode_M207() {
  5564. if (code_seen('S')) retract_length = code_value_axis_units(E_AXIS);
  5565. if (code_seen('F')) retract_feedrate_mm_s = MMM_TO_MMS(code_value_axis_units(E_AXIS));
  5566. if (code_seen('Z')) retract_zlift = code_value_axis_units(Z_AXIS);
  5567. #if EXTRUDERS > 1
  5568. if (code_seen('W')) retract_length_swap = code_value_axis_units(E_AXIS);
  5569. #endif
  5570. }
  5571. /**
  5572. * M208: Set firmware un-retraction values
  5573. *
  5574. * S[+units] retract_recover_length (in addition to M207 S*)
  5575. * W[+units] retract_recover_length_swap (multi-extruder)
  5576. * F[units/min] retract_recover_feedrate_mm_s
  5577. */
  5578. inline void gcode_M208() {
  5579. if (code_seen('S')) retract_recover_length = code_value_axis_units(E_AXIS);
  5580. if (code_seen('F')) retract_recover_feedrate_mm_s = MMM_TO_MMS(code_value_axis_units(E_AXIS));
  5581. #if EXTRUDERS > 1
  5582. if (code_seen('W')) retract_recover_length_swap = code_value_axis_units(E_AXIS);
  5583. #endif
  5584. }
  5585. /**
  5586. * M209: Enable automatic retract (M209 S1)
  5587. * For slicers that don't support G10/11, reversed extrude-only
  5588. * moves will be classified as retraction.
  5589. */
  5590. inline void gcode_M209() {
  5591. if (code_seen('S')) {
  5592. autoretract_enabled = code_value_bool();
  5593. for (int i = 0; i < EXTRUDERS; i++) retracted[i] = false;
  5594. }
  5595. }
  5596. #endif // FWRETRACT
  5597. /**
  5598. * M211: Enable, Disable, and/or Report software endstops
  5599. *
  5600. * Usage: M211 S1 to enable, M211 S0 to disable, M211 alone for report
  5601. */
  5602. inline void gcode_M211() {
  5603. SERIAL_ECHO_START;
  5604. #if HAS_SOFTWARE_ENDSTOPS
  5605. if (code_seen('S')) soft_endstops_enabled = code_value_bool();
  5606. SERIAL_ECHOPGM(MSG_SOFT_ENDSTOPS);
  5607. serialprintPGM(soft_endstops_enabled ? PSTR(MSG_ON) : PSTR(MSG_OFF));
  5608. #else
  5609. SERIAL_ECHOPGM(MSG_SOFT_ENDSTOPS);
  5610. SERIAL_ECHOPGM(MSG_OFF);
  5611. #endif
  5612. SERIAL_ECHOPGM(MSG_SOFT_MIN);
  5613. SERIAL_ECHOPAIR( MSG_X, soft_endstop_min[X_AXIS]);
  5614. SERIAL_ECHOPAIR(" " MSG_Y, soft_endstop_min[Y_AXIS]);
  5615. SERIAL_ECHOPAIR(" " MSG_Z, soft_endstop_min[Z_AXIS]);
  5616. SERIAL_ECHOPGM(MSG_SOFT_MAX);
  5617. SERIAL_ECHOPAIR( MSG_X, soft_endstop_max[X_AXIS]);
  5618. SERIAL_ECHOPAIR(" " MSG_Y, soft_endstop_max[Y_AXIS]);
  5619. SERIAL_ECHOLNPAIR(" " MSG_Z, soft_endstop_max[Z_AXIS]);
  5620. }
  5621. #if HOTENDS > 1
  5622. /**
  5623. * M218 - set hotend offset (in linear units)
  5624. *
  5625. * T<tool>
  5626. * X<xoffset>
  5627. * Y<yoffset>
  5628. * Z<zoffset> - Available with DUAL_X_CARRIAGE and SWITCHING_EXTRUDER
  5629. */
  5630. inline void gcode_M218() {
  5631. if (get_target_extruder_from_command(218) || target_extruder == 0) return;
  5632. if (code_seen('X')) hotend_offset[X_AXIS][target_extruder] = code_value_axis_units(X_AXIS);
  5633. if (code_seen('Y')) hotend_offset[Y_AXIS][target_extruder] = code_value_axis_units(Y_AXIS);
  5634. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_EXTRUDER)
  5635. if (code_seen('Z')) hotend_offset[Z_AXIS][target_extruder] = code_value_axis_units(Z_AXIS);
  5636. #endif
  5637. SERIAL_ECHO_START;
  5638. SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
  5639. HOTEND_LOOP() {
  5640. SERIAL_CHAR(' ');
  5641. SERIAL_ECHO(hotend_offset[X_AXIS][e]);
  5642. SERIAL_CHAR(',');
  5643. SERIAL_ECHO(hotend_offset[Y_AXIS][e]);
  5644. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_EXTRUDER)
  5645. SERIAL_CHAR(',');
  5646. SERIAL_ECHO(hotend_offset[Z_AXIS][e]);
  5647. #endif
  5648. }
  5649. SERIAL_EOL;
  5650. }
  5651. #endif // HOTENDS > 1
  5652. /**
  5653. * M220: Set speed percentage factor, aka "Feed Rate" (M220 S95)
  5654. */
  5655. inline void gcode_M220() {
  5656. if (code_seen('S')) feedrate_percentage = code_value_int();
  5657. }
  5658. /**
  5659. * M221: Set extrusion percentage (M221 T0 S95)
  5660. */
  5661. inline void gcode_M221() {
  5662. if (get_target_extruder_from_command(221)) return;
  5663. if (code_seen('S'))
  5664. flow_percentage[target_extruder] = code_value_int();
  5665. }
  5666. /**
  5667. * M226: Wait until the specified pin reaches the state required (M226 P<pin> S<state>)
  5668. */
  5669. inline void gcode_M226() {
  5670. if (code_seen('P')) {
  5671. int pin_number = code_value_int(),
  5672. pin_state = code_seen('S') ? code_value_int() : -1; // required pin state - default is inverted
  5673. if (pin_state >= -1 && pin_state <= 1 && pin_number > -1 && !pin_is_protected(pin_number)) {
  5674. int target = LOW;
  5675. stepper.synchronize();
  5676. pinMode(pin_number, INPUT);
  5677. switch (pin_state) {
  5678. case 1:
  5679. target = HIGH;
  5680. break;
  5681. case 0:
  5682. target = LOW;
  5683. break;
  5684. case -1:
  5685. target = !digitalRead(pin_number);
  5686. break;
  5687. }
  5688. while (digitalRead(pin_number) != target) idle();
  5689. } // pin_state -1 0 1 && pin_number > -1
  5690. } // code_seen('P')
  5691. }
  5692. #if ENABLED(EXPERIMENTAL_I2CBUS)
  5693. /**
  5694. * M260: Send data to a I2C slave device
  5695. *
  5696. * This is a PoC, the formating and arguments for the GCODE will
  5697. * change to be more compatible, the current proposal is:
  5698. *
  5699. * M260 A<slave device address base 10> ; Sets the I2C slave address the data will be sent to
  5700. *
  5701. * M260 B<byte-1 value in base 10>
  5702. * M260 B<byte-2 value in base 10>
  5703. * M260 B<byte-3 value in base 10>
  5704. *
  5705. * M260 S1 ; Send the buffered data and reset the buffer
  5706. * M260 R1 ; Reset the buffer without sending data
  5707. *
  5708. */
  5709. inline void gcode_M260() {
  5710. // Set the target address
  5711. if (code_seen('A')) i2c.address(code_value_byte());
  5712. // Add a new byte to the buffer
  5713. if (code_seen('B')) i2c.addbyte(code_value_byte());
  5714. // Flush the buffer to the bus
  5715. if (code_seen('S')) i2c.send();
  5716. // Reset and rewind the buffer
  5717. else if (code_seen('R')) i2c.reset();
  5718. }
  5719. /**
  5720. * M261: Request X bytes from I2C slave device
  5721. *
  5722. * Usage: M261 A<slave device address base 10> B<number of bytes>
  5723. */
  5724. inline void gcode_M261() {
  5725. if (code_seen('A')) i2c.address(code_value_byte());
  5726. uint8_t bytes = code_seen('B') ? code_value_byte() : 1;
  5727. if (i2c.addr && bytes && bytes <= TWIBUS_BUFFER_SIZE) {
  5728. i2c.relay(bytes);
  5729. }
  5730. else {
  5731. SERIAL_ERROR_START;
  5732. SERIAL_ERRORLN("Bad i2c request");
  5733. }
  5734. }
  5735. #endif // EXPERIMENTAL_I2CBUS
  5736. #if HAS_SERVOS
  5737. /**
  5738. * M280: Get or set servo position. P<index> [S<angle>]
  5739. */
  5740. inline void gcode_M280() {
  5741. if (!code_seen('P')) return;
  5742. int servo_index = code_value_int();
  5743. if (servo_index >= 0 && servo_index < NUM_SERVOS) {
  5744. if (code_seen('S'))
  5745. MOVE_SERVO(servo_index, code_value_int());
  5746. else {
  5747. SERIAL_ECHO_START;
  5748. SERIAL_ECHOPAIR(" Servo ", servo_index);
  5749. SERIAL_ECHOLNPAIR(": ", servo[servo_index].read());
  5750. }
  5751. }
  5752. else {
  5753. SERIAL_ERROR_START;
  5754. SERIAL_ECHOPAIR("Servo ", servo_index);
  5755. SERIAL_ECHOLNPGM(" out of range");
  5756. }
  5757. }
  5758. #endif // HAS_SERVOS
  5759. #if HAS_BUZZER
  5760. /**
  5761. * M300: Play beep sound S<frequency Hz> P<duration ms>
  5762. */
  5763. inline void gcode_M300() {
  5764. uint16_t const frequency = code_seen('S') ? code_value_ushort() : 260;
  5765. uint16_t duration = code_seen('P') ? code_value_ushort() : 1000;
  5766. // Limits the tone duration to 0-5 seconds.
  5767. NOMORE(duration, 5000);
  5768. BUZZ(duration, frequency);
  5769. }
  5770. #endif // HAS_BUZZER
  5771. #if ENABLED(PIDTEMP)
  5772. /**
  5773. * M301: Set PID parameters P I D (and optionally C, L)
  5774. *
  5775. * P[float] Kp term
  5776. * I[float] Ki term (unscaled)
  5777. * D[float] Kd term (unscaled)
  5778. *
  5779. * With PID_EXTRUSION_SCALING:
  5780. *
  5781. * C[float] Kc term
  5782. * L[float] LPQ length
  5783. */
  5784. inline void gcode_M301() {
  5785. // multi-extruder PID patch: M301 updates or prints a single extruder's PID values
  5786. // default behaviour (omitting E parameter) is to update for extruder 0 only
  5787. int e = code_seen('E') ? code_value_int() : 0; // extruder being updated
  5788. if (e < HOTENDS) { // catch bad input value
  5789. if (code_seen('P')) PID_PARAM(Kp, e) = code_value_float();
  5790. if (code_seen('I')) PID_PARAM(Ki, e) = scalePID_i(code_value_float());
  5791. if (code_seen('D')) PID_PARAM(Kd, e) = scalePID_d(code_value_float());
  5792. #if ENABLED(PID_EXTRUSION_SCALING)
  5793. if (code_seen('C')) PID_PARAM(Kc, e) = code_value_float();
  5794. if (code_seen('L')) lpq_len = code_value_float();
  5795. NOMORE(lpq_len, LPQ_MAX_LEN);
  5796. #endif
  5797. thermalManager.updatePID();
  5798. SERIAL_ECHO_START;
  5799. #if ENABLED(PID_PARAMS_PER_HOTEND)
  5800. SERIAL_ECHOPAIR(" e:", e); // specify extruder in serial output
  5801. #endif // PID_PARAMS_PER_HOTEND
  5802. SERIAL_ECHOPAIR(" p:", PID_PARAM(Kp, e));
  5803. SERIAL_ECHOPAIR(" i:", unscalePID_i(PID_PARAM(Ki, e)));
  5804. SERIAL_ECHOPAIR(" d:", unscalePID_d(PID_PARAM(Kd, e)));
  5805. #if ENABLED(PID_EXTRUSION_SCALING)
  5806. //Kc does not have scaling applied above, or in resetting defaults
  5807. SERIAL_ECHOPAIR(" c:", PID_PARAM(Kc, e));
  5808. #endif
  5809. SERIAL_EOL;
  5810. }
  5811. else {
  5812. SERIAL_ERROR_START;
  5813. SERIAL_ERRORLN(MSG_INVALID_EXTRUDER);
  5814. }
  5815. }
  5816. #endif // PIDTEMP
  5817. #if ENABLED(PIDTEMPBED)
  5818. inline void gcode_M304() {
  5819. if (code_seen('P')) thermalManager.bedKp = code_value_float();
  5820. if (code_seen('I')) thermalManager.bedKi = scalePID_i(code_value_float());
  5821. if (code_seen('D')) thermalManager.bedKd = scalePID_d(code_value_float());
  5822. thermalManager.updatePID();
  5823. SERIAL_ECHO_START;
  5824. SERIAL_ECHOPAIR(" p:", thermalManager.bedKp);
  5825. SERIAL_ECHOPAIR(" i:", unscalePID_i(thermalManager.bedKi));
  5826. SERIAL_ECHOLNPAIR(" d:", unscalePID_d(thermalManager.bedKd));
  5827. }
  5828. #endif // PIDTEMPBED
  5829. #if defined(CHDK) || HAS_PHOTOGRAPH
  5830. /**
  5831. * M240: Trigger a camera by emulating a Canon RC-1
  5832. * See http://www.doc-diy.net/photo/rc-1_hacked/
  5833. */
  5834. inline void gcode_M240() {
  5835. #ifdef CHDK
  5836. OUT_WRITE(CHDK, HIGH);
  5837. chdkHigh = millis();
  5838. chdkActive = true;
  5839. #elif HAS_PHOTOGRAPH
  5840. const uint8_t NUM_PULSES = 16;
  5841. const float PULSE_LENGTH = 0.01524;
  5842. for (int i = 0; i < NUM_PULSES; i++) {
  5843. WRITE(PHOTOGRAPH_PIN, HIGH);
  5844. _delay_ms(PULSE_LENGTH);
  5845. WRITE(PHOTOGRAPH_PIN, LOW);
  5846. _delay_ms(PULSE_LENGTH);
  5847. }
  5848. delay(7.33);
  5849. for (int i = 0; i < NUM_PULSES; i++) {
  5850. WRITE(PHOTOGRAPH_PIN, HIGH);
  5851. _delay_ms(PULSE_LENGTH);
  5852. WRITE(PHOTOGRAPH_PIN, LOW);
  5853. _delay_ms(PULSE_LENGTH);
  5854. }
  5855. #endif // !CHDK && HAS_PHOTOGRAPH
  5856. }
  5857. #endif // CHDK || PHOTOGRAPH_PIN
  5858. #if HAS_LCD_CONTRAST
  5859. /**
  5860. * M250: Read and optionally set the LCD contrast
  5861. */
  5862. inline void gcode_M250() {
  5863. if (code_seen('C')) set_lcd_contrast(code_value_int());
  5864. SERIAL_PROTOCOLPGM("lcd contrast value: ");
  5865. SERIAL_PROTOCOL(lcd_contrast);
  5866. SERIAL_EOL;
  5867. }
  5868. #endif // HAS_LCD_CONTRAST
  5869. #if ENABLED(PREVENT_COLD_EXTRUSION)
  5870. /**
  5871. * M302: Allow cold extrudes, or set the minimum extrude temperature
  5872. *
  5873. * S<temperature> sets the minimum extrude temperature
  5874. * P<bool> enables (1) or disables (0) cold extrusion
  5875. *
  5876. * Examples:
  5877. *
  5878. * M302 ; report current cold extrusion state
  5879. * M302 P0 ; enable cold extrusion checking
  5880. * M302 P1 ; disables cold extrusion checking
  5881. * M302 S0 ; always allow extrusion (disables checking)
  5882. * M302 S170 ; only allow extrusion above 170
  5883. * M302 S170 P1 ; set min extrude temp to 170 but leave disabled
  5884. */
  5885. inline void gcode_M302() {
  5886. bool seen_S = code_seen('S');
  5887. if (seen_S) {
  5888. thermalManager.extrude_min_temp = code_value_temp_abs();
  5889. thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0);
  5890. }
  5891. if (code_seen('P'))
  5892. thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0) || code_value_bool();
  5893. else if (!seen_S) {
  5894. // Report current state
  5895. SERIAL_ECHO_START;
  5896. SERIAL_ECHOPAIR("Cold extrudes are ", (thermalManager.allow_cold_extrude ? "en" : "dis"));
  5897. SERIAL_ECHOPAIR("abled (min temp ", int(thermalManager.extrude_min_temp + 0.5));
  5898. SERIAL_ECHOLNPGM("C)");
  5899. }
  5900. }
  5901. #endif // PREVENT_COLD_EXTRUSION
  5902. /**
  5903. * M303: PID relay autotune
  5904. *
  5905. * S<temperature> sets the target temperature. (default 150C)
  5906. * E<extruder> (-1 for the bed) (default 0)
  5907. * C<cycles>
  5908. * U<bool> with a non-zero value will apply the result to current settings
  5909. */
  5910. inline void gcode_M303() {
  5911. #if HAS_PID_HEATING
  5912. int e = code_seen('E') ? code_value_int() : 0;
  5913. int c = code_seen('C') ? code_value_int() : 5;
  5914. bool u = code_seen('U') && code_value_bool();
  5915. float temp = code_seen('S') ? code_value_temp_abs() : (e < 0 ? 70.0 : 150.0);
  5916. if (e >= 0 && e < HOTENDS)
  5917. target_extruder = e;
  5918. KEEPALIVE_STATE(NOT_BUSY); // don't send "busy: processing" messages during autotune output
  5919. thermalManager.PID_autotune(temp, e, c, u);
  5920. KEEPALIVE_STATE(IN_HANDLER);
  5921. #else
  5922. SERIAL_ERROR_START;
  5923. SERIAL_ERRORLNPGM(MSG_ERR_M303_DISABLED);
  5924. #endif
  5925. }
  5926. #if ENABLED(MORGAN_SCARA)
  5927. bool SCARA_move_to_cal(uint8_t delta_a, uint8_t delta_b) {
  5928. if (IsRunning()) {
  5929. forward_kinematics_SCARA(delta_a, delta_b);
  5930. destination[X_AXIS] = LOGICAL_X_POSITION(cartes[X_AXIS]);
  5931. destination[Y_AXIS] = LOGICAL_Y_POSITION(cartes[Y_AXIS]);
  5932. destination[Z_AXIS] = current_position[Z_AXIS];
  5933. prepare_move_to_destination();
  5934. return true;
  5935. }
  5936. return false;
  5937. }
  5938. /**
  5939. * M360: SCARA calibration: Move to cal-position ThetaA (0 deg calibration)
  5940. */
  5941. inline bool gcode_M360() {
  5942. SERIAL_ECHOLNPGM(" Cal: Theta 0");
  5943. return SCARA_move_to_cal(0, 120);
  5944. }
  5945. /**
  5946. * M361: SCARA calibration: Move to cal-position ThetaB (90 deg calibration - steps per degree)
  5947. */
  5948. inline bool gcode_M361() {
  5949. SERIAL_ECHOLNPGM(" Cal: Theta 90");
  5950. return SCARA_move_to_cal(90, 130);
  5951. }
  5952. /**
  5953. * M362: SCARA calibration: Move to cal-position PsiA (0 deg calibration)
  5954. */
  5955. inline bool gcode_M362() {
  5956. SERIAL_ECHOLNPGM(" Cal: Psi 0");
  5957. return SCARA_move_to_cal(60, 180);
  5958. }
  5959. /**
  5960. * M363: SCARA calibration: Move to cal-position PsiB (90 deg calibration - steps per degree)
  5961. */
  5962. inline bool gcode_M363() {
  5963. SERIAL_ECHOLNPGM(" Cal: Psi 90");
  5964. return SCARA_move_to_cal(50, 90);
  5965. }
  5966. /**
  5967. * M364: SCARA calibration: Move to cal-position PSIC (90 deg to Theta calibration position)
  5968. */
  5969. inline bool gcode_M364() {
  5970. SERIAL_ECHOLNPGM(" Cal: Theta-Psi 90");
  5971. return SCARA_move_to_cal(45, 135);
  5972. }
  5973. #endif // SCARA
  5974. #if ENABLED(EXT_SOLENOID)
  5975. void enable_solenoid(uint8_t num) {
  5976. switch (num) {
  5977. case 0:
  5978. OUT_WRITE(SOL0_PIN, HIGH);
  5979. break;
  5980. #if HAS_SOLENOID_1
  5981. case 1:
  5982. OUT_WRITE(SOL1_PIN, HIGH);
  5983. break;
  5984. #endif
  5985. #if HAS_SOLENOID_2
  5986. case 2:
  5987. OUT_WRITE(SOL2_PIN, HIGH);
  5988. break;
  5989. #endif
  5990. #if HAS_SOLENOID_3
  5991. case 3:
  5992. OUT_WRITE(SOL3_PIN, HIGH);
  5993. break;
  5994. #endif
  5995. default:
  5996. SERIAL_ECHO_START;
  5997. SERIAL_ECHOLNPGM(MSG_INVALID_SOLENOID);
  5998. break;
  5999. }
  6000. }
  6001. void enable_solenoid_on_active_extruder() { enable_solenoid(active_extruder); }
  6002. void disable_all_solenoids() {
  6003. OUT_WRITE(SOL0_PIN, LOW);
  6004. OUT_WRITE(SOL1_PIN, LOW);
  6005. OUT_WRITE(SOL2_PIN, LOW);
  6006. OUT_WRITE(SOL3_PIN, LOW);
  6007. }
  6008. /**
  6009. * M380: Enable solenoid on the active extruder
  6010. */
  6011. inline void gcode_M380() { enable_solenoid_on_active_extruder(); }
  6012. /**
  6013. * M381: Disable all solenoids
  6014. */
  6015. inline void gcode_M381() { disable_all_solenoids(); }
  6016. #endif // EXT_SOLENOID
  6017. /**
  6018. * M400: Finish all moves
  6019. */
  6020. inline void gcode_M400() { stepper.synchronize(); }
  6021. #if HAS_BED_PROBE
  6022. /**
  6023. * M401: Engage Z Servo endstop if available
  6024. */
  6025. inline void gcode_M401() { DEPLOY_PROBE(); }
  6026. /**
  6027. * M402: Retract Z Servo endstop if enabled
  6028. */
  6029. inline void gcode_M402() { STOW_PROBE(); }
  6030. #endif // HAS_BED_PROBE
  6031. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  6032. /**
  6033. * M404: Display or set (in current units) the nominal filament width (3mm, 1.75mm ) W<3.0>
  6034. */
  6035. inline void gcode_M404() {
  6036. if (code_seen('W')) {
  6037. filament_width_nominal = code_value_linear_units();
  6038. }
  6039. else {
  6040. SERIAL_PROTOCOLPGM("Filament dia (nominal mm):");
  6041. SERIAL_PROTOCOLLN(filament_width_nominal);
  6042. }
  6043. }
  6044. /**
  6045. * M405: Turn on filament sensor for control
  6046. */
  6047. inline void gcode_M405() {
  6048. // This is technically a linear measurement, but since it's quantized to centimeters and is a different unit than
  6049. // everything else, it uses code_value_int() instead of code_value_linear_units().
  6050. if (code_seen('D')) meas_delay_cm = code_value_int();
  6051. NOMORE(meas_delay_cm, MAX_MEASUREMENT_DELAY);
  6052. if (filwidth_delay_index[1] == -1) { // Initialize the ring buffer if not done since startup
  6053. int temp_ratio = thermalManager.widthFil_to_size_ratio();
  6054. for (uint8_t i = 0; i < COUNT(measurement_delay); ++i)
  6055. measurement_delay[i] = temp_ratio - 100; // Subtract 100 to scale within a signed byte
  6056. filwidth_delay_index[0] = filwidth_delay_index[1] = 0;
  6057. }
  6058. filament_sensor = true;
  6059. //SERIAL_PROTOCOLPGM("Filament dia (measured mm):");
  6060. //SERIAL_PROTOCOL(filament_width_meas);
  6061. //SERIAL_PROTOCOLPGM("Extrusion ratio(%):");
  6062. //SERIAL_PROTOCOL(flow_percentage[active_extruder]);
  6063. }
  6064. /**
  6065. * M406: Turn off filament sensor for control
  6066. */
  6067. inline void gcode_M406() { filament_sensor = false; }
  6068. /**
  6069. * M407: Get measured filament diameter on serial output
  6070. */
  6071. inline void gcode_M407() {
  6072. SERIAL_PROTOCOLPGM("Filament dia (measured mm):");
  6073. SERIAL_PROTOCOLLN(filament_width_meas);
  6074. }
  6075. #endif // FILAMENT_WIDTH_SENSOR
  6076. void quickstop_stepper() {
  6077. stepper.quick_stop();
  6078. stepper.synchronize();
  6079. set_current_from_steppers_for_axis(ALL_AXES);
  6080. SYNC_PLAN_POSITION_KINEMATIC();
  6081. }
  6082. #if PLANNER_LEVELING
  6083. /**
  6084. * M420: Enable/Disable Bed Leveling and/or set the Z fade height.
  6085. *
  6086. * S[bool] Turns leveling on or off
  6087. * Z[height] Sets the Z fade height (0 or none to disable)
  6088. * V[bool] Verbose - Print the leveling grid
  6089. */
  6090. inline void gcode_M420() {
  6091. bool to_enable = false;
  6092. if (code_seen('S')) {
  6093. to_enable = code_value_bool();
  6094. set_bed_leveling_enabled(to_enable);
  6095. }
  6096. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  6097. if (code_seen('Z')) set_z_fade_height(code_value_linear_units());
  6098. #endif
  6099. const bool new_status =
  6100. #if ENABLED(MESH_BED_LEVELING)
  6101. mbl.active()
  6102. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  6103. ubl.state.active
  6104. #else
  6105. planner.abl_enabled
  6106. #endif
  6107. ;
  6108. if (to_enable && !new_status) {
  6109. SERIAL_ERROR_START;
  6110. SERIAL_ERRORLNPGM(MSG_ERR_M420_FAILED);
  6111. }
  6112. SERIAL_ECHO_START;
  6113. SERIAL_ECHOLNPAIR("Bed Leveling ", new_status ? MSG_ON : MSG_OFF);
  6114. // V to print the matrix or mesh
  6115. if (code_seen('V')) {
  6116. #if ABL_PLANAR
  6117. planner.bed_level_matrix.debug("Bed Level Correction Matrix:");
  6118. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  6119. if (bilinear_grid_spacing[X_AXIS]) {
  6120. print_bilinear_leveling_grid();
  6121. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  6122. bed_level_virt_print();
  6123. #endif
  6124. }
  6125. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  6126. ubl.display_map(0); // Right now, we only support one type of map
  6127. #elif ENABLED(MESH_BED_LEVELING)
  6128. if (mbl.has_mesh()) {
  6129. SERIAL_ECHOLNPGM("Mesh Bed Level data:");
  6130. mbl_mesh_report();
  6131. }
  6132. #endif
  6133. }
  6134. }
  6135. #endif
  6136. #if ENABLED(MESH_BED_LEVELING)
  6137. /**
  6138. * M421: Set a single Mesh Bed Leveling Z coordinate
  6139. * Use either 'M421 X<linear> Y<linear> Z<linear>' or 'M421 I<xindex> J<yindex> Z<linear>'
  6140. */
  6141. inline void gcode_M421() {
  6142. int8_t px = 0, py = 0;
  6143. float z = 0;
  6144. bool hasX, hasY, hasZ, hasI, hasJ;
  6145. if ((hasX = code_seen('X'))) px = mbl.probe_index_x(code_value_axis_units(X_AXIS));
  6146. if ((hasY = code_seen('Y'))) py = mbl.probe_index_y(code_value_axis_units(Y_AXIS));
  6147. if ((hasI = code_seen('I'))) px = code_value_axis_units(X_AXIS);
  6148. if ((hasJ = code_seen('J'))) py = code_value_axis_units(Y_AXIS);
  6149. if ((hasZ = code_seen('Z'))) z = code_value_axis_units(Z_AXIS);
  6150. if (hasX && hasY && hasZ) {
  6151. if (px >= 0 && py >= 0)
  6152. mbl.set_z(px, py, z);
  6153. else {
  6154. SERIAL_ERROR_START;
  6155. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  6156. }
  6157. }
  6158. else if (hasI && hasJ && hasZ) {
  6159. if (px >= 0 && px < MESH_NUM_X_POINTS && py >= 0 && py < MESH_NUM_Y_POINTS)
  6160. mbl.set_z(px, py, z);
  6161. else {
  6162. SERIAL_ERROR_START;
  6163. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  6164. }
  6165. }
  6166. else {
  6167. SERIAL_ERROR_START;
  6168. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  6169. }
  6170. }
  6171. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  6172. /**
  6173. * M421: Set a single Mesh Bed Leveling Z coordinate
  6174. *
  6175. * M421 I<xindex> J<yindex> Z<linear>
  6176. */
  6177. inline void gcode_M421() {
  6178. int8_t px = 0, py = 0;
  6179. float z = 0;
  6180. bool hasI, hasJ, hasZ;
  6181. if ((hasI = code_seen('I'))) px = code_value_axis_units(X_AXIS);
  6182. if ((hasJ = code_seen('J'))) py = code_value_axis_units(Y_AXIS);
  6183. if ((hasZ = code_seen('Z'))) z = code_value_axis_units(Z_AXIS);
  6184. if (hasI && hasJ && hasZ) {
  6185. if (px >= 0 && px < ABL_GRID_MAX_POINTS_X && py >= 0 && py < ABL_GRID_MAX_POINTS_X) {
  6186. bed_level_grid[px][py] = z;
  6187. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  6188. bed_level_virt_interpolate();
  6189. #endif
  6190. }
  6191. else {
  6192. SERIAL_ERROR_START;
  6193. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  6194. }
  6195. }
  6196. else {
  6197. SERIAL_ERROR_START;
  6198. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  6199. }
  6200. }
  6201. #endif
  6202. #if DISABLED(NO_WORKSPACE_OFFSETS)
  6203. /**
  6204. * M428: Set home_offset based on the distance between the
  6205. * current_position and the nearest "reference point."
  6206. * If an axis is past center its endstop position
  6207. * is the reference-point. Otherwise it uses 0. This allows
  6208. * the Z offset to be set near the bed when using a max endstop.
  6209. *
  6210. * M428 can't be used more than 2cm away from 0 or an endstop.
  6211. *
  6212. * Use M206 to set these values directly.
  6213. */
  6214. inline void gcode_M428() {
  6215. bool err = false;
  6216. LOOP_XYZ(i) {
  6217. if (axis_homed[i]) {
  6218. float base = (current_position[i] > (soft_endstop_min[i] + soft_endstop_max[i]) * 0.5) ? base_home_pos((AxisEnum)i) : 0,
  6219. diff = current_position[i] - LOGICAL_POSITION(base, i);
  6220. if (diff > -20 && diff < 20) {
  6221. set_home_offset((AxisEnum)i, home_offset[i] - diff);
  6222. }
  6223. else {
  6224. SERIAL_ERROR_START;
  6225. SERIAL_ERRORLNPGM(MSG_ERR_M428_TOO_FAR);
  6226. LCD_ALERTMESSAGEPGM("Err: Too far!");
  6227. BUZZ(200, 40);
  6228. err = true;
  6229. break;
  6230. }
  6231. }
  6232. }
  6233. if (!err) {
  6234. SYNC_PLAN_POSITION_KINEMATIC();
  6235. report_current_position();
  6236. LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
  6237. BUZZ(100, 659);
  6238. BUZZ(100, 698);
  6239. }
  6240. }
  6241. #endif // NO_WORKSPACE_OFFSETS
  6242. /**
  6243. * M500: Store settings in EEPROM
  6244. */
  6245. inline void gcode_M500() {
  6246. (void)Config_StoreSettings();
  6247. }
  6248. /**
  6249. * M501: Read settings from EEPROM
  6250. */
  6251. inline void gcode_M501() {
  6252. (void)Config_RetrieveSettings();
  6253. }
  6254. /**
  6255. * M502: Revert to default settings
  6256. */
  6257. inline void gcode_M502() {
  6258. (void)Config_ResetDefault();
  6259. }
  6260. /**
  6261. * M503: print settings currently in memory
  6262. */
  6263. inline void gcode_M503() {
  6264. (void)Config_PrintSettings(code_seen('S') && !code_value_bool());
  6265. }
  6266. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  6267. /**
  6268. * M540: Set whether SD card print should abort on endstop hit (M540 S<0|1>)
  6269. */
  6270. inline void gcode_M540() {
  6271. if (code_seen('S')) stepper.abort_on_endstop_hit = code_value_bool();
  6272. }
  6273. #endif // ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
  6274. #if HAS_BED_PROBE
  6275. inline void gcode_M851() {
  6276. SERIAL_ECHO_START;
  6277. SERIAL_ECHOPGM(MSG_ZPROBE_ZOFFSET);
  6278. SERIAL_CHAR(' ');
  6279. if (code_seen('Z')) {
  6280. float value = code_value_axis_units(Z_AXIS);
  6281. if (Z_PROBE_OFFSET_RANGE_MIN <= value && value <= Z_PROBE_OFFSET_RANGE_MAX) {
  6282. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  6283. // Correct bilinear grid for new probe offset
  6284. const float diff = value - zprobe_zoffset;
  6285. if (diff) {
  6286. for (uint8_t x = 0; x < ABL_GRID_MAX_POINTS_X; x++)
  6287. for (uint8_t y = 0; y < ABL_GRID_MAX_POINTS_Y; y++)
  6288. bed_level_grid[x][y] += diff;
  6289. }
  6290. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  6291. bed_level_virt_interpolate();
  6292. #endif
  6293. #endif
  6294. zprobe_zoffset = value;
  6295. SERIAL_ECHO(zprobe_zoffset);
  6296. }
  6297. else {
  6298. SERIAL_ECHOPAIR(MSG_Z_MIN, Z_PROBE_OFFSET_RANGE_MIN);
  6299. SERIAL_CHAR(' ');
  6300. SERIAL_ECHOPAIR(MSG_Z_MAX, Z_PROBE_OFFSET_RANGE_MAX);
  6301. }
  6302. }
  6303. else {
  6304. SERIAL_ECHOPAIR(": ", zprobe_zoffset);
  6305. }
  6306. SERIAL_EOL;
  6307. }
  6308. #endif // HAS_BED_PROBE
  6309. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  6310. void filament_change_beep(const bool init=false) {
  6311. static millis_t next_buzz = 0;
  6312. static uint16_t runout_beep = 0;
  6313. if (init) next_buzz = runout_beep = 0;
  6314. const millis_t ms = millis();
  6315. if (ELAPSED(ms, next_buzz)) {
  6316. if (runout_beep <= FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS + 5) { // Only beep as long as we're supposed to
  6317. next_buzz = ms + (runout_beep <= FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS ? 2500 : 400);
  6318. BUZZ(300, 2000);
  6319. runout_beep++;
  6320. }
  6321. }
  6322. }
  6323. static bool busy_doing_M600 = false;
  6324. /**
  6325. * M600: Pause for filament change
  6326. *
  6327. * E[distance] - Retract the filament this far (negative value)
  6328. * Z[distance] - Move the Z axis by this distance
  6329. * X[position] - Move to this X position, with Y
  6330. * Y[position] - Move to this Y position, with X
  6331. * L[distance] - Retract distance for removal (manual reload)
  6332. *
  6333. * Default values are used for omitted arguments.
  6334. *
  6335. */
  6336. inline void gcode_M600() {
  6337. if (!DEBUGGING(DRYRUN) && thermalManager.tooColdToExtrude(active_extruder)) {
  6338. SERIAL_ERROR_START;
  6339. SERIAL_ERRORLNPGM(MSG_TOO_COLD_FOR_M600);
  6340. return;
  6341. }
  6342. busy_doing_M600 = true; // Stepper Motors can't timeout when this is set
  6343. // Pause the print job timer
  6344. const bool job_running = print_job_timer.isRunning();
  6345. print_job_timer.pause();
  6346. // Show initial message and wait for synchronize steppers
  6347. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_INIT);
  6348. stepper.synchronize();
  6349. // Save current position of all axes
  6350. float lastpos[XYZE];
  6351. COPY(lastpos, current_position);
  6352. set_destination_to_current();
  6353. // Initial retract before move to filament change position
  6354. destination[E_AXIS] += code_seen('E') ? code_value_axis_units(E_AXIS) : 0
  6355. #if defined(FILAMENT_CHANGE_RETRACT_LENGTH) && FILAMENT_CHANGE_RETRACT_LENGTH > 0
  6356. - (FILAMENT_CHANGE_RETRACT_LENGTH)
  6357. #endif
  6358. ;
  6359. RUNPLAN(FILAMENT_CHANGE_RETRACT_FEEDRATE);
  6360. // Lift Z axis
  6361. float z_lift = code_seen('Z') ? code_value_axis_units(Z_AXIS) :
  6362. #if defined(FILAMENT_CHANGE_Z_ADD) && FILAMENT_CHANGE_Z_ADD > 0
  6363. FILAMENT_CHANGE_Z_ADD
  6364. #else
  6365. 0
  6366. #endif
  6367. ;
  6368. if (z_lift > 0) {
  6369. destination[Z_AXIS] += z_lift;
  6370. NOMORE(destination[Z_AXIS], Z_MAX_POS);
  6371. RUNPLAN(FILAMENT_CHANGE_Z_FEEDRATE);
  6372. }
  6373. // Move XY axes to filament exchange position
  6374. if (code_seen('X')) destination[X_AXIS] = code_value_axis_units(X_AXIS);
  6375. #ifdef FILAMENT_CHANGE_X_POS
  6376. else destination[X_AXIS] = FILAMENT_CHANGE_X_POS;
  6377. #endif
  6378. if (code_seen('Y')) destination[Y_AXIS] = code_value_axis_units(Y_AXIS);
  6379. #ifdef FILAMENT_CHANGE_Y_POS
  6380. else destination[Y_AXIS] = FILAMENT_CHANGE_Y_POS;
  6381. #endif
  6382. RUNPLAN(FILAMENT_CHANGE_XY_FEEDRATE);
  6383. stepper.synchronize();
  6384. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_UNLOAD);
  6385. idle();
  6386. // Unload filament
  6387. destination[E_AXIS] += code_seen('L') ? code_value_axis_units(E_AXIS) : 0
  6388. #if FILAMENT_CHANGE_UNLOAD_LENGTH > 0
  6389. - (FILAMENT_CHANGE_UNLOAD_LENGTH)
  6390. #endif
  6391. ;
  6392. RUNPLAN(FILAMENT_CHANGE_UNLOAD_FEEDRATE);
  6393. // Synchronize steppers and then disable extruders steppers for manual filament changing
  6394. stepper.synchronize();
  6395. disable_e_steppers();
  6396. safe_delay(100);
  6397. millis_t nozzle_timeout = millis() + (millis_t)(FILAMENT_CHANGE_NOZZLE_TIMEOUT) * 1000L;
  6398. bool nozzle_timed_out = false;
  6399. float temps[4];
  6400. // Wait for filament insert by user and press button
  6401. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_INSERT);
  6402. #if HAS_BUZZER
  6403. filament_change_beep(true);
  6404. #endif
  6405. idle();
  6406. HOTEND_LOOP() temps[e] = thermalManager.target_temperature[e]; // Save nozzle temps
  6407. wait_for_user = true; // LCD click or M108 will clear this
  6408. while (wait_for_user) {
  6409. millis_t current_ms = millis();
  6410. if (nozzle_timed_out)
  6411. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_CLICK_TO_HEAT_NOZZLE);
  6412. #if HAS_BUZZER
  6413. filament_change_beep();
  6414. #endif
  6415. if (current_ms >= nozzle_timeout) {
  6416. if (!nozzle_timed_out) {
  6417. nozzle_timed_out = true; // on nozzle timeout remember the nozzles need to be reheated
  6418. HOTEND_LOOP() thermalManager.setTargetHotend(0, e); // Turn off all the nozzles
  6419. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_CLICK_TO_HEAT_NOZZLE);
  6420. }
  6421. }
  6422. idle(true);
  6423. }
  6424. if (nozzle_timed_out) // Turn nozzles back on if they were turned off
  6425. HOTEND_LOOP() thermalManager.setTargetHotend(temps[e], e);
  6426. // Show "wait for heating"
  6427. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_WAIT_FOR_NOZZLES_TO_HEAT);
  6428. wait_for_heatup = true;
  6429. while (wait_for_heatup) {
  6430. idle();
  6431. wait_for_heatup = false;
  6432. HOTEND_LOOP() {
  6433. if (abs(thermalManager.degHotend(e) - temps[e]) > 3) {
  6434. wait_for_heatup = true;
  6435. break;
  6436. }
  6437. }
  6438. }
  6439. // Show "insert filament"
  6440. if (nozzle_timed_out)
  6441. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_INSERT);
  6442. #if HAS_BUZZER
  6443. filament_change_beep(true);
  6444. #endif
  6445. wait_for_user = true; // LCD click or M108 will clear this
  6446. while (wait_for_user && nozzle_timed_out) {
  6447. #if HAS_BUZZER
  6448. filament_change_beep();
  6449. #endif
  6450. idle(true);
  6451. }
  6452. // Show "load" message
  6453. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_LOAD);
  6454. // Load filament
  6455. destination[E_AXIS] += code_seen('L') ? -code_value_axis_units(E_AXIS) : 0
  6456. #if FILAMENT_CHANGE_LOAD_LENGTH > 0
  6457. + FILAMENT_CHANGE_LOAD_LENGTH
  6458. #endif
  6459. ;
  6460. RUNPLAN(FILAMENT_CHANGE_LOAD_FEEDRATE);
  6461. stepper.synchronize();
  6462. #if defined(FILAMENT_CHANGE_EXTRUDE_LENGTH) && FILAMENT_CHANGE_EXTRUDE_LENGTH > 0
  6463. do {
  6464. // "Wait for filament extrude"
  6465. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_EXTRUDE);
  6466. // Extrude filament to get into hotend
  6467. destination[E_AXIS] += FILAMENT_CHANGE_EXTRUDE_LENGTH;
  6468. RUNPLAN(FILAMENT_CHANGE_EXTRUDE_FEEDRATE);
  6469. stepper.synchronize();
  6470. // Show "Extrude More" / "Resume" menu and wait for reply
  6471. KEEPALIVE_STATE(PAUSED_FOR_USER);
  6472. wait_for_user = false;
  6473. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_OPTION);
  6474. while (filament_change_menu_response == FILAMENT_CHANGE_RESPONSE_WAIT_FOR) idle(true);
  6475. KEEPALIVE_STATE(IN_HANDLER);
  6476. // Keep looping if "Extrude More" was selected
  6477. } while (filament_change_menu_response == FILAMENT_CHANGE_RESPONSE_EXTRUDE_MORE);
  6478. #endif
  6479. // "Wait for print to resume"
  6480. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_RESUME);
  6481. // Set extruder to saved position
  6482. destination[E_AXIS] = current_position[E_AXIS] = lastpos[E_AXIS];
  6483. planner.set_e_position_mm(current_position[E_AXIS]);
  6484. #if IS_KINEMATIC
  6485. // Move XYZ to starting position
  6486. planner.buffer_line_kinematic(lastpos, FILAMENT_CHANGE_XY_FEEDRATE, active_extruder);
  6487. #else
  6488. // Move XY to starting position, then Z
  6489. destination[X_AXIS] = lastpos[X_AXIS];
  6490. destination[Y_AXIS] = lastpos[Y_AXIS];
  6491. RUNPLAN(FILAMENT_CHANGE_XY_FEEDRATE);
  6492. destination[Z_AXIS] = lastpos[Z_AXIS];
  6493. RUNPLAN(FILAMENT_CHANGE_Z_FEEDRATE);
  6494. #endif
  6495. stepper.synchronize();
  6496. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  6497. filament_ran_out = false;
  6498. #endif
  6499. // Show status screen
  6500. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_STATUS);
  6501. // Resume the print job timer if it was running
  6502. if (job_running) print_job_timer.start();
  6503. busy_doing_M600 = false; // Allow Stepper Motors to be turned off during inactivity
  6504. }
  6505. #endif // FILAMENT_CHANGE_FEATURE
  6506. #if ENABLED(DUAL_X_CARRIAGE)
  6507. /**
  6508. * M605: Set dual x-carriage movement mode
  6509. *
  6510. * M605 S0: Full control mode. The slicer has full control over x-carriage movement
  6511. * M605 S1: Auto-park mode. The inactive head will auto park/unpark without slicer involvement
  6512. * M605 S2 [Xnnn] [Rmmm]: Duplication mode. The second extruder will duplicate the first with nnn
  6513. * units x-offset and an optional differential hotend temperature of
  6514. * mmm degrees. E.g., with "M605 S2 X100 R2" the second extruder will duplicate
  6515. * the first with a spacing of 100mm in the x direction and 2 degrees hotter.
  6516. *
  6517. * Note: the X axis should be homed after changing dual x-carriage mode.
  6518. */
  6519. inline void gcode_M605() {
  6520. stepper.synchronize();
  6521. if (code_seen('S')) dual_x_carriage_mode = (DualXMode)code_value_byte();
  6522. switch (dual_x_carriage_mode) {
  6523. case DXC_FULL_CONTROL_MODE:
  6524. case DXC_AUTO_PARK_MODE:
  6525. break;
  6526. case DXC_DUPLICATION_MODE:
  6527. if (code_seen('X')) duplicate_extruder_x_offset = max(code_value_axis_units(X_AXIS), X2_MIN_POS - x_home_pos(0));
  6528. if (code_seen('R')) duplicate_extruder_temp_offset = code_value_temp_diff();
  6529. SERIAL_ECHO_START;
  6530. SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
  6531. SERIAL_CHAR(' ');
  6532. SERIAL_ECHO(hotend_offset[X_AXIS][0]);
  6533. SERIAL_CHAR(',');
  6534. SERIAL_ECHO(hotend_offset[Y_AXIS][0]);
  6535. SERIAL_CHAR(' ');
  6536. SERIAL_ECHO(duplicate_extruder_x_offset);
  6537. SERIAL_CHAR(',');
  6538. SERIAL_ECHOLN(hotend_offset[Y_AXIS][1]);
  6539. break;
  6540. default:
  6541. dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
  6542. break;
  6543. }
  6544. active_extruder_parked = false;
  6545. extruder_duplication_enabled = false;
  6546. delayed_move_time = 0;
  6547. }
  6548. #elif ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  6549. inline void gcode_M605() {
  6550. stepper.synchronize();
  6551. extruder_duplication_enabled = code_seen('S') && code_value_int() == 2;
  6552. SERIAL_ECHO_START;
  6553. SERIAL_ECHOLNPAIR(MSG_DUPLICATION_MODE, extruder_duplication_enabled ? MSG_ON : MSG_OFF);
  6554. }
  6555. #endif // DUAL_NOZZLE_DUPLICATION_MODE
  6556. #if ENABLED(LIN_ADVANCE)
  6557. /**
  6558. * M905: Set advance factor
  6559. */
  6560. inline void gcode_M905() {
  6561. stepper.synchronize();
  6562. const float newK = code_seen('K') ? code_value_float() : -1,
  6563. newD = code_seen('D') ? code_value_float() : -1,
  6564. newW = code_seen('W') ? code_value_float() : -1,
  6565. newH = code_seen('H') ? code_value_float() : -1;
  6566. if (newK >= 0.0) planner.set_extruder_advance_k(newK);
  6567. SERIAL_ECHO_START;
  6568. SERIAL_ECHOLNPAIR("Advance factor: ", planner.get_extruder_advance_k());
  6569. if (newD >= 0 || newW >= 0 || newH >= 0) {
  6570. const float ratio = (!newD || !newW || !newH) ? 0 : (newW * newH) / (sq(newD * 0.5) * M_PI);
  6571. planner.set_advance_ed_ratio(ratio);
  6572. SERIAL_ECHO_START;
  6573. SERIAL_ECHOPGM("E/D ratio: ");
  6574. if (ratio) SERIAL_ECHOLN(ratio); else SERIAL_ECHOLNPGM("Automatic");
  6575. }
  6576. }
  6577. #endif // LIN_ADVANCE
  6578. #if ENABLED(HAVE_TMC2130)
  6579. static void tmc2130_print_current(const int mA, const char name) {
  6580. SERIAL_CHAR(name);
  6581. SERIAL_ECHOPGM(" axis driver current: ");
  6582. SERIAL_ECHOLN(mA);
  6583. }
  6584. static void tmc2130_set_current(const int mA, TMC2130Stepper &st, const char name) {
  6585. tmc2130_print_current(mA, name);
  6586. st.setCurrent(mA, 0.11, 0.5);
  6587. }
  6588. static void tmc2130_get_current(TMC2130Stepper &st, const char name) {
  6589. tmc2130_print_current(st.getCurrent(), name);
  6590. }
  6591. static void tmc2130_report_otpw(TMC2130Stepper &st, const char name) {
  6592. SERIAL_CHAR(name);
  6593. SERIAL_ECHOPGM(" axis temperature prewarn triggered: ");
  6594. serialprintPGM(st.getOTPW() ? PSTR("true") : PSTR("false"));
  6595. }
  6596. static void tmc2130_clear_otpw(TMC2130Stepper &st, const char name) {
  6597. st.clear_otpw();
  6598. SERIAL_CHAR(name);
  6599. SERIAL_ECHOLNPGM(" prewarn flag cleared");
  6600. }
  6601. /**
  6602. * M906: Set motor current in milliamps using axis codes X, Y, Z, E
  6603. *
  6604. * Report driver currents when no axis specified
  6605. */
  6606. inline void gcode_M906() {
  6607. uint16_t values[XYZE];
  6608. LOOP_XYZE(i)
  6609. values[i] = code_seen(axis_codes[i]) ? code_value_int() : 0;
  6610. #if ENABLED(X_IS_TMC2130)
  6611. if (values[X_AXIS]) tmc2130_set_current(values[X_AXIS], stepperX, 'X');
  6612. else tmc2130_get_current(stepperX, 'X');
  6613. #endif
  6614. #if ENABLED(Y_IS_TMC2130)
  6615. if (values[Y_AXIS]) tmc2130_set_current(values[Y_AXIS], stepperY, 'Y');
  6616. else tmc2130_get_current(stepperY, 'Y');
  6617. #endif
  6618. #if ENABLED(Z_IS_TMC2130)
  6619. if (values[Z_AXIS]) tmc2130_set_current(values[Z_AXIS], stepperZ, 'Z');
  6620. else tmc2130_get_current(stepperZ, 'Z');
  6621. #endif
  6622. #if ENABLED(E0_IS_TMC2130)
  6623. if (values[E_AXIS]) tmc2130_set_current(values[E_AXIS], stepperE0, 'E');
  6624. else tmc2130_get_current(stepperE0, 'E');
  6625. #endif
  6626. }
  6627. /**
  6628. * M911: Report TMC2130 stepper driver overtemperature pre-warn flag
  6629. * The flag is held by the library and persist until manually cleared by M912
  6630. */
  6631. inline void gcode_M911() {
  6632. #if ENABLED(X_IS_TMC2130)
  6633. tmc2130_report_otpw(stepperX, 'X');
  6634. #endif
  6635. #if ENABLED(Y_IS_TMC2130)
  6636. tmc2130_report_otpw(stepperY, 'Y');
  6637. #endif
  6638. #if ENABLED(Z_IS_TMC2130)
  6639. tmc2130_report_otpw(stepperZ, 'Z');
  6640. #endif
  6641. #if ENABLED(E0_IS_TMC2130)
  6642. tmc2130_report_otpw(stepperE0, 'E');
  6643. #endif
  6644. }
  6645. /**
  6646. * M912: Clear TMC2130 stepper driver overtemperature pre-warn flag held by the library
  6647. */
  6648. inline void gcode_M912() {
  6649. #if ENABLED(X_IS_TMC2130)
  6650. if (code_seen('X')) tmc2130_clear_otpw(stepperX, 'X');
  6651. #endif
  6652. #if ENABLED(Y_IS_TMC2130)
  6653. if (code_seen('Y')) tmc2130_clear_otpw(stepperY, 'Y');
  6654. #endif
  6655. #if ENABLED(Z_IS_TMC2130)
  6656. if (code_seen('Z')) tmc2130_clear_otpw(stepperZ, 'Z');
  6657. #endif
  6658. #if ENABLED(E0_IS_TMC2130)
  6659. if (code_seen('E')) tmc2130_clear_otpw(stepperE0, 'E');
  6660. #endif
  6661. }
  6662. #endif // HAVE_TMC2130
  6663. /**
  6664. * M907: Set digital trimpot motor current using axis codes X, Y, Z, E, B, S
  6665. */
  6666. inline void gcode_M907() {
  6667. #if HAS_DIGIPOTSS
  6668. LOOP_XYZE(i)
  6669. if (code_seen(axis_codes[i])) stepper.digipot_current(i, code_value_int());
  6670. if (code_seen('B')) stepper.digipot_current(4, code_value_int());
  6671. if (code_seen('S')) for (int i = 0; i <= 4; i++) stepper.digipot_current(i, code_value_int());
  6672. #elif HAS_MOTOR_CURRENT_PWM
  6673. #if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
  6674. if (code_seen('X')) stepper.digipot_current(0, code_value_int());
  6675. #endif
  6676. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
  6677. if (code_seen('Z')) stepper.digipot_current(1, code_value_int());
  6678. #endif
  6679. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
  6680. if (code_seen('E')) stepper.digipot_current(2, code_value_int());
  6681. #endif
  6682. #endif
  6683. #if ENABLED(DIGIPOT_I2C)
  6684. // this one uses actual amps in floating point
  6685. LOOP_XYZE(i) if (code_seen(axis_codes[i])) digipot_i2c_set_current(i, code_value_float());
  6686. // for each additional extruder (named B,C,D,E..., channels 4,5,6,7...)
  6687. for (int i = NUM_AXIS; i < DIGIPOT_I2C_NUM_CHANNELS; i++) if (code_seen('B' + i - (NUM_AXIS))) digipot_i2c_set_current(i, code_value_float());
  6688. #endif
  6689. #if ENABLED(DAC_STEPPER_CURRENT)
  6690. if (code_seen('S')) {
  6691. float dac_percent = code_value_float();
  6692. for (uint8_t i = 0; i <= 4; i++) dac_current_percent(i, dac_percent);
  6693. }
  6694. LOOP_XYZE(i) if (code_seen(axis_codes[i])) dac_current_percent(i, code_value_float());
  6695. #endif
  6696. }
  6697. #if HAS_DIGIPOTSS || ENABLED(DAC_STEPPER_CURRENT)
  6698. /**
  6699. * M908: Control digital trimpot directly (M908 P<pin> S<current>)
  6700. */
  6701. inline void gcode_M908() {
  6702. #if HAS_DIGIPOTSS
  6703. stepper.digitalPotWrite(
  6704. code_seen('P') ? code_value_int() : 0,
  6705. code_seen('S') ? code_value_int() : 0
  6706. );
  6707. #endif
  6708. #ifdef DAC_STEPPER_CURRENT
  6709. dac_current_raw(
  6710. code_seen('P') ? code_value_byte() : -1,
  6711. code_seen('S') ? code_value_ushort() : 0
  6712. );
  6713. #endif
  6714. }
  6715. #if ENABLED(DAC_STEPPER_CURRENT) // As with Printrbot RevF
  6716. inline void gcode_M909() { dac_print_values(); }
  6717. inline void gcode_M910() { dac_commit_eeprom(); }
  6718. #endif
  6719. #endif // HAS_DIGIPOTSS || DAC_STEPPER_CURRENT
  6720. #if HAS_MICROSTEPS
  6721. // M350 Set microstepping mode. Warning: Steps per unit remains unchanged. S code sets stepping mode for all drivers.
  6722. inline void gcode_M350() {
  6723. if (code_seen('S')) for (int i = 0; i <= 4; i++) stepper.microstep_mode(i, code_value_byte());
  6724. LOOP_XYZE(i) if (code_seen(axis_codes[i])) stepper.microstep_mode(i, code_value_byte());
  6725. if (code_seen('B')) stepper.microstep_mode(4, code_value_byte());
  6726. stepper.microstep_readings();
  6727. }
  6728. /**
  6729. * M351: Toggle MS1 MS2 pins directly with axis codes X Y Z E B
  6730. * S# determines MS1 or MS2, X# sets the pin high/low.
  6731. */
  6732. inline void gcode_M351() {
  6733. if (code_seen('S')) switch (code_value_byte()) {
  6734. case 1:
  6735. LOOP_XYZE(i) if (code_seen(axis_codes[i])) stepper.microstep_ms(i, code_value_byte(), -1);
  6736. if (code_seen('B')) stepper.microstep_ms(4, code_value_byte(), -1);
  6737. break;
  6738. case 2:
  6739. LOOP_XYZE(i) if (code_seen(axis_codes[i])) stepper.microstep_ms(i, -1, code_value_byte());
  6740. if (code_seen('B')) stepper.microstep_ms(4, -1, code_value_byte());
  6741. break;
  6742. }
  6743. stepper.microstep_readings();
  6744. }
  6745. #endif // HAS_MICROSTEPS
  6746. #if HAS_CASE_LIGHT
  6747. uint8_t case_light_brightness = 255;
  6748. void update_case_light() {
  6749. digitalWrite(CASE_LIGHT_PIN, case_light_on != INVERT_CASE_LIGHT ? HIGH : LOW);
  6750. analogWrite(CASE_LIGHT_PIN, case_light_on != INVERT_CASE_LIGHT ? case_light_brightness : 0);
  6751. }
  6752. #endif // HAS_CASE_LIGHT
  6753. /**
  6754. * M355: Turn case lights on/off and set brightness
  6755. *
  6756. * S<bool> Turn case light on or off
  6757. * P<byte> Set case light brightness (PWM pin required)
  6758. */
  6759. inline void gcode_M355() {
  6760. #if HAS_CASE_LIGHT
  6761. if (code_seen('P')) case_light_brightness = code_value_byte();
  6762. if (code_seen('S')) case_light_on = code_value_bool();
  6763. update_case_light();
  6764. SERIAL_ECHO_START;
  6765. SERIAL_ECHOPGM("Case lights ");
  6766. case_light_on ? SERIAL_ECHOLNPGM("on") : SERIAL_ECHOLNPGM("off");
  6767. #else
  6768. SERIAL_ERROR_START;
  6769. SERIAL_ERRORLNPGM(MSG_ERR_M355_NONE);
  6770. #endif // HAS_CASE_LIGHT
  6771. }
  6772. #if ENABLED(MIXING_EXTRUDER)
  6773. /**
  6774. * M163: Set a single mix factor for a mixing extruder
  6775. * This is called "weight" by some systems.
  6776. *
  6777. * S[index] The channel index to set
  6778. * P[float] The mix value
  6779. *
  6780. */
  6781. inline void gcode_M163() {
  6782. int mix_index = code_seen('S') ? code_value_int() : 0;
  6783. if (mix_index < MIXING_STEPPERS) {
  6784. float mix_value = code_seen('P') ? code_value_float() : 0.0;
  6785. NOLESS(mix_value, 0.0);
  6786. mixing_factor[mix_index] = RECIPROCAL(mix_value);
  6787. }
  6788. }
  6789. #if MIXING_VIRTUAL_TOOLS > 1
  6790. /**
  6791. * M164: Store the current mix factors as a virtual tool.
  6792. *
  6793. * S[index] The virtual tool to store
  6794. *
  6795. */
  6796. inline void gcode_M164() {
  6797. int tool_index = code_seen('S') ? code_value_int() : 0;
  6798. if (tool_index < MIXING_VIRTUAL_TOOLS) {
  6799. normalize_mix();
  6800. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  6801. mixing_virtual_tool_mix[tool_index][i] = mixing_factor[i];
  6802. }
  6803. }
  6804. #endif
  6805. #if ENABLED(DIRECT_MIXING_IN_G1)
  6806. /**
  6807. * M165: Set multiple mix factors for a mixing extruder.
  6808. * Factors that are left out will be set to 0.
  6809. * All factors together must add up to 1.0.
  6810. *
  6811. * A[factor] Mix factor for extruder stepper 1
  6812. * B[factor] Mix factor for extruder stepper 2
  6813. * C[factor] Mix factor for extruder stepper 3
  6814. * D[factor] Mix factor for extruder stepper 4
  6815. * H[factor] Mix factor for extruder stepper 5
  6816. * I[factor] Mix factor for extruder stepper 6
  6817. *
  6818. */
  6819. inline void gcode_M165() { gcode_get_mix(); }
  6820. #endif
  6821. #endif // MIXING_EXTRUDER
  6822. /**
  6823. * M999: Restart after being stopped
  6824. *
  6825. * Default behaviour is to flush the serial buffer and request
  6826. * a resend to the host starting on the last N line received.
  6827. *
  6828. * Sending "M999 S1" will resume printing without flushing the
  6829. * existing command buffer.
  6830. *
  6831. */
  6832. inline void gcode_M999() {
  6833. Running = true;
  6834. lcd_reset_alert_level();
  6835. if (code_seen('S') && code_value_bool()) return;
  6836. // gcode_LastN = Stopped_gcode_LastN;
  6837. FlushSerialRequestResend();
  6838. }
  6839. #if ENABLED(SWITCHING_EXTRUDER)
  6840. inline void move_extruder_servo(uint8_t e) {
  6841. const int angles[2] = SWITCHING_EXTRUDER_SERVO_ANGLES;
  6842. MOVE_SERVO(SWITCHING_EXTRUDER_SERVO_NR, angles[e]);
  6843. safe_delay(500);
  6844. }
  6845. #endif
  6846. inline void invalid_extruder_error(const uint8_t &e) {
  6847. SERIAL_ECHO_START;
  6848. SERIAL_CHAR('T');
  6849. SERIAL_ECHO_F(e, DEC);
  6850. SERIAL_ECHOLN(MSG_INVALID_EXTRUDER);
  6851. }
  6852. /**
  6853. * Perform a tool-change, which may result in moving the
  6854. * previous tool out of the way and the new tool into place.
  6855. */
  6856. void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool no_move/*=false*/) {
  6857. #if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
  6858. if (tmp_extruder >= MIXING_VIRTUAL_TOOLS)
  6859. return invalid_extruder_error(tmp_extruder);
  6860. // T0-Tnnn: Switch virtual tool by changing the mix
  6861. for (uint8_t j = 0; j < MIXING_STEPPERS; j++)
  6862. mixing_factor[j] = mixing_virtual_tool_mix[tmp_extruder][j];
  6863. #else //!MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
  6864. #if HOTENDS > 1
  6865. if (tmp_extruder >= EXTRUDERS)
  6866. return invalid_extruder_error(tmp_extruder);
  6867. const float old_feedrate_mm_s = fr_mm_s > 0.0 ? fr_mm_s : feedrate_mm_s;
  6868. feedrate_mm_s = fr_mm_s > 0.0 ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  6869. if (tmp_extruder != active_extruder) {
  6870. if (!no_move && axis_unhomed_error(true, true, true)) {
  6871. SERIAL_ECHOLNPGM("No move on toolchange");
  6872. no_move = true;
  6873. }
  6874. // Save current position to destination, for use later
  6875. set_destination_to_current();
  6876. #if ENABLED(DUAL_X_CARRIAGE)
  6877. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6878. if (DEBUGGING(LEVELING)) {
  6879. SERIAL_ECHOPGM("Dual X Carriage Mode ");
  6880. switch (dual_x_carriage_mode) {
  6881. case DXC_FULL_CONTROL_MODE: SERIAL_ECHOLNPGM("DXC_FULL_CONTROL_MODE"); break;
  6882. case DXC_AUTO_PARK_MODE: SERIAL_ECHOLNPGM("DXC_AUTO_PARK_MODE"); break;
  6883. case DXC_DUPLICATION_MODE: SERIAL_ECHOLNPGM("DXC_DUPLICATION_MODE"); break;
  6884. }
  6885. }
  6886. #endif
  6887. const float xhome = x_home_pos(active_extruder);
  6888. if (dual_x_carriage_mode == DXC_AUTO_PARK_MODE
  6889. && IsRunning()
  6890. && (delayed_move_time || current_position[X_AXIS] != xhome)
  6891. ) {
  6892. float raised_z = current_position[Z_AXIS] + TOOLCHANGE_PARK_ZLIFT;
  6893. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  6894. NOMORE(raised_z, soft_endstop_max[Z_AXIS]);
  6895. #endif
  6896. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6897. if (DEBUGGING(LEVELING)) {
  6898. SERIAL_ECHOLNPAIR("Raise to ", raised_z);
  6899. SERIAL_ECHOLNPAIR("MoveX to ", xhome);
  6900. SERIAL_ECHOLNPAIR("Lower to ", current_position[Z_AXIS]);
  6901. }
  6902. #endif
  6903. // Park old head: 1) raise 2) move to park position 3) lower
  6904. for (uint8_t i = 0; i < 3; i++)
  6905. planner.buffer_line(
  6906. i == 0 ? current_position[X_AXIS] : xhome,
  6907. current_position[Y_AXIS],
  6908. i == 2 ? current_position[Z_AXIS] : raised_z,
  6909. current_position[E_AXIS],
  6910. planner.max_feedrate_mm_s[i == 1 ? X_AXIS : Z_AXIS],
  6911. active_extruder
  6912. );
  6913. stepper.synchronize();
  6914. }
  6915. // Apply Y & Z extruder offset (X offset is used as home pos with Dual X)
  6916. current_position[Y_AXIS] -= hotend_offset[Y_AXIS][active_extruder] - hotend_offset[Y_AXIS][tmp_extruder];
  6917. current_position[Z_AXIS] -= hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder];
  6918. // Activate the new extruder
  6919. active_extruder = tmp_extruder;
  6920. // This function resets the max/min values - the current position may be overwritten below.
  6921. set_axis_is_at_home(X_AXIS);
  6922. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6923. if (DEBUGGING(LEVELING)) DEBUG_POS("New Extruder", current_position);
  6924. #endif
  6925. // Only when auto-parking are carriages safe to move
  6926. if (dual_x_carriage_mode != DXC_AUTO_PARK_MODE) no_move = true;
  6927. switch (dual_x_carriage_mode) {
  6928. case DXC_FULL_CONTROL_MODE:
  6929. // New current position is the position of the activated extruder
  6930. current_position[X_AXIS] = LOGICAL_X_POSITION(inactive_extruder_x_pos);
  6931. // Save the inactive extruder's position (from the old current_position)
  6932. inactive_extruder_x_pos = RAW_X_POSITION(destination[X_AXIS]);
  6933. break;
  6934. case DXC_AUTO_PARK_MODE:
  6935. // record raised toolhead position for use by unpark
  6936. COPY(raised_parked_position, current_position);
  6937. raised_parked_position[Z_AXIS] += TOOLCHANGE_UNPARK_ZLIFT;
  6938. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  6939. NOMORE(raised_parked_position[Z_AXIS], soft_endstop_max[Z_AXIS]);
  6940. #endif
  6941. active_extruder_parked = true;
  6942. delayed_move_time = 0;
  6943. break;
  6944. case DXC_DUPLICATION_MODE:
  6945. // If the new extruder is the left one, set it "parked"
  6946. // This triggers the second extruder to move into the duplication position
  6947. active_extruder_parked = (active_extruder == 0);
  6948. if (active_extruder_parked)
  6949. current_position[X_AXIS] = LOGICAL_X_POSITION(inactive_extruder_x_pos);
  6950. else
  6951. current_position[X_AXIS] = destination[X_AXIS] + duplicate_extruder_x_offset;
  6952. inactive_extruder_x_pos = RAW_X_POSITION(destination[X_AXIS]);
  6953. extruder_duplication_enabled = false;
  6954. break;
  6955. }
  6956. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6957. if (DEBUGGING(LEVELING)) {
  6958. SERIAL_ECHOLNPAIR("Active extruder parked: ", active_extruder_parked ? "yes" : "no");
  6959. DEBUG_POS("New extruder (parked)", current_position);
  6960. }
  6961. #endif
  6962. // No extra case for HAS_ABL in DUAL_X_CARRIAGE. Does that mean they don't work together?
  6963. #else // !DUAL_X_CARRIAGE
  6964. #if ENABLED(SWITCHING_EXTRUDER)
  6965. // <0 if the new nozzle is higher, >0 if lower. A bigger raise when lower.
  6966. const float z_diff = hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder],
  6967. z_raise = 0.3 + (z_diff > 0.0 ? z_diff : 0.0);
  6968. // Always raise by some amount (destination copied from current_position earlier)
  6969. current_position[Z_AXIS] += z_raise;
  6970. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
  6971. stepper.synchronize();
  6972. move_extruder_servo(active_extruder);
  6973. #endif
  6974. /**
  6975. * Set current_position to the position of the new nozzle.
  6976. * Offsets are based on linear distance, so we need to get
  6977. * the resulting position in coordinate space.
  6978. *
  6979. * - With grid or 3-point leveling, offset XYZ by a tilted vector
  6980. * - With mesh leveling, update Z for the new position
  6981. * - Otherwise, just use the raw linear distance
  6982. *
  6983. * Software endstops are altered here too. Consider a case where:
  6984. * E0 at X=0 ... E1 at X=10
  6985. * When we switch to E1 now X=10, but E1 can't move left.
  6986. * To express this we apply the change in XY to the software endstops.
  6987. * E1 can move farther right than E0, so the right limit is extended.
  6988. *
  6989. * Note that we don't adjust the Z software endstops. Why not?
  6990. * Consider a case where Z=0 (here) and switching to E1 makes Z=1
  6991. * because the bed is 1mm lower at the new position. As long as
  6992. * the first nozzle is out of the way, the carriage should be
  6993. * allowed to move 1mm lower. This technically "breaks" the
  6994. * Z software endstop. But this is technically correct (and
  6995. * there is no viable alternative).
  6996. */
  6997. #if ABL_PLANAR
  6998. // Offset extruder, make sure to apply the bed level rotation matrix
  6999. vector_3 tmp_offset_vec = vector_3(hotend_offset[X_AXIS][tmp_extruder],
  7000. hotend_offset[Y_AXIS][tmp_extruder],
  7001. 0),
  7002. act_offset_vec = vector_3(hotend_offset[X_AXIS][active_extruder],
  7003. hotend_offset[Y_AXIS][active_extruder],
  7004. 0),
  7005. offset_vec = tmp_offset_vec - act_offset_vec;
  7006. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7007. if (DEBUGGING(LEVELING)) {
  7008. tmp_offset_vec.debug("tmp_offset_vec");
  7009. act_offset_vec.debug("act_offset_vec");
  7010. offset_vec.debug("offset_vec (BEFORE)");
  7011. }
  7012. #endif
  7013. offset_vec.apply_rotation(planner.bed_level_matrix.transpose(planner.bed_level_matrix));
  7014. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7015. if (DEBUGGING(LEVELING)) offset_vec.debug("offset_vec (AFTER)");
  7016. #endif
  7017. // Adjustments to the current position
  7018. const float xydiff[2] = { offset_vec.x, offset_vec.y };
  7019. current_position[Z_AXIS] += offset_vec.z;
  7020. #else // !ABL_PLANAR
  7021. const float xydiff[2] = {
  7022. hotend_offset[X_AXIS][tmp_extruder] - hotend_offset[X_AXIS][active_extruder],
  7023. hotend_offset[Y_AXIS][tmp_extruder] - hotend_offset[Y_AXIS][active_extruder]
  7024. };
  7025. #if ENABLED(MESH_BED_LEVELING)
  7026. if (mbl.active()) {
  7027. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7028. if (DEBUGGING(LEVELING)) SERIAL_ECHOPAIR("Z before MBL: ", current_position[Z_AXIS]);
  7029. #endif
  7030. float x2 = current_position[X_AXIS] + xydiff[X_AXIS],
  7031. y2 = current_position[Y_AXIS] + xydiff[Y_AXIS],
  7032. z1 = current_position[Z_AXIS], z2 = z1;
  7033. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], z1);
  7034. planner.apply_leveling(x2, y2, z2);
  7035. current_position[Z_AXIS] += z2 - z1;
  7036. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7037. if (DEBUGGING(LEVELING))
  7038. SERIAL_ECHOLNPAIR(" after: ", current_position[Z_AXIS]);
  7039. #endif
  7040. }
  7041. #endif // MESH_BED_LEVELING
  7042. #endif // !HAS_ABL
  7043. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7044. if (DEBUGGING(LEVELING)) {
  7045. SERIAL_ECHOPAIR("Offset Tool XY by { ", xydiff[X_AXIS]);
  7046. SERIAL_ECHOPAIR(", ", xydiff[Y_AXIS]);
  7047. SERIAL_ECHOLNPGM(" }");
  7048. }
  7049. #endif
  7050. // The newly-selected extruder XY is actually at...
  7051. current_position[X_AXIS] += xydiff[X_AXIS];
  7052. current_position[Y_AXIS] += xydiff[Y_AXIS];
  7053. #if DISABLED(NO_WORKSPACE_OFFSETS) || ENABLED(DUAL_X_CARRIAGE)
  7054. for (uint8_t i = X_AXIS; i <= Y_AXIS; i++) {
  7055. #if DISABLED(NO_WORKSPACE_OFFSETS)
  7056. position_shift[i] += xydiff[i];
  7057. #endif
  7058. update_software_endstops((AxisEnum)i);
  7059. }
  7060. #endif
  7061. // Set the new active extruder
  7062. active_extruder = tmp_extruder;
  7063. #endif // !DUAL_X_CARRIAGE
  7064. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7065. if (DEBUGGING(LEVELING)) DEBUG_POS("Sync After Toolchange", current_position);
  7066. #endif
  7067. // Tell the planner the new "current position"
  7068. SYNC_PLAN_POSITION_KINEMATIC();
  7069. // Move to the "old position" (move the extruder into place)
  7070. if (!no_move && IsRunning()) {
  7071. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7072. if (DEBUGGING(LEVELING)) DEBUG_POS("Move back", destination);
  7073. #endif
  7074. prepare_move_to_destination();
  7075. }
  7076. #if ENABLED(SWITCHING_EXTRUDER)
  7077. // Move back down, if needed. (Including when the new tool is higher.)
  7078. if (z_raise != z_diff) {
  7079. destination[Z_AXIS] += z_diff;
  7080. feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS];
  7081. prepare_move_to_destination();
  7082. }
  7083. #endif
  7084. } // (tmp_extruder != active_extruder)
  7085. stepper.synchronize();
  7086. #if ENABLED(EXT_SOLENOID)
  7087. disable_all_solenoids();
  7088. enable_solenoid_on_active_extruder();
  7089. #endif // EXT_SOLENOID
  7090. feedrate_mm_s = old_feedrate_mm_s;
  7091. #else // HOTENDS <= 1
  7092. // Set the new active extruder
  7093. active_extruder = tmp_extruder;
  7094. UNUSED(fr_mm_s);
  7095. UNUSED(no_move);
  7096. #endif // HOTENDS <= 1
  7097. SERIAL_ECHO_START;
  7098. SERIAL_ECHOLNPAIR(MSG_ACTIVE_EXTRUDER, (int)active_extruder);
  7099. #endif //!MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
  7100. }
  7101. /**
  7102. * T0-T3: Switch tool, usually switching extruders
  7103. *
  7104. * F[units/min] Set the movement feedrate
  7105. * S1 Don't move the tool in XY after change
  7106. */
  7107. inline void gcode_T(uint8_t tmp_extruder) {
  7108. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7109. if (DEBUGGING(LEVELING)) {
  7110. SERIAL_ECHOPAIR(">>> gcode_T(", tmp_extruder);
  7111. SERIAL_CHAR(')');
  7112. SERIAL_EOL;
  7113. DEBUG_POS("BEFORE", current_position);
  7114. }
  7115. #endif
  7116. #if HOTENDS == 1 || (ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1)
  7117. tool_change(tmp_extruder);
  7118. #elif HOTENDS > 1
  7119. tool_change(
  7120. tmp_extruder,
  7121. code_seen('F') ? MMM_TO_MMS(code_value_axis_units(X_AXIS)) : 0.0,
  7122. (tmp_extruder == active_extruder) || (code_seen('S') && code_value_bool())
  7123. );
  7124. #endif
  7125. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7126. if (DEBUGGING(LEVELING)) {
  7127. DEBUG_POS("AFTER", current_position);
  7128. SERIAL_ECHOLNPGM("<<< gcode_T");
  7129. }
  7130. #endif
  7131. }
  7132. /**
  7133. * Process a single command and dispatch it to its handler
  7134. * This is called from the main loop()
  7135. */
  7136. void process_next_command() {
  7137. current_command = command_queue[cmd_queue_index_r];
  7138. if (DEBUGGING(ECHO)) {
  7139. SERIAL_ECHO_START;
  7140. SERIAL_ECHOLN(current_command);
  7141. }
  7142. // Sanitize the current command:
  7143. // - Skip leading spaces
  7144. // - Bypass N[-0-9][0-9]*[ ]*
  7145. // - Overwrite * with nul to mark the end
  7146. while (*current_command == ' ') ++current_command;
  7147. if (*current_command == 'N' && NUMERIC_SIGNED(current_command[1])) {
  7148. current_command += 2; // skip N[-0-9]
  7149. while (NUMERIC(*current_command)) ++current_command; // skip [0-9]*
  7150. while (*current_command == ' ') ++current_command; // skip [ ]*
  7151. }
  7152. char* starpos = strchr(current_command, '*'); // * should always be the last parameter
  7153. if (starpos) while (*starpos == ' ' || *starpos == '*') *starpos-- = '\0'; // nullify '*' and ' '
  7154. char *cmd_ptr = current_command;
  7155. // Get the command code, which must be G, M, or T
  7156. char command_code = *cmd_ptr++;
  7157. // Skip spaces to get the numeric part
  7158. while (*cmd_ptr == ' ') cmd_ptr++;
  7159. // Allow for decimal point in command
  7160. #if ENABLED(G38_PROBE_TARGET)
  7161. uint8_t subcode = 0;
  7162. #endif
  7163. uint16_t codenum = 0; // define ahead of goto
  7164. // Bail early if there's no code
  7165. bool code_is_good = NUMERIC(*cmd_ptr);
  7166. if (!code_is_good) goto ExitUnknownCommand;
  7167. // Get and skip the code number
  7168. do {
  7169. codenum = (codenum * 10) + (*cmd_ptr - '0');
  7170. cmd_ptr++;
  7171. } while (NUMERIC(*cmd_ptr));
  7172. // Allow for decimal point in command
  7173. #if ENABLED(G38_PROBE_TARGET)
  7174. if (*cmd_ptr == '.') {
  7175. cmd_ptr++;
  7176. while (NUMERIC(*cmd_ptr))
  7177. subcode = (subcode * 10) + (*cmd_ptr++ - '0');
  7178. }
  7179. #endif
  7180. // Skip all spaces to get to the first argument, or nul
  7181. while (*cmd_ptr == ' ') cmd_ptr++;
  7182. // The command's arguments (if any) start here, for sure!
  7183. current_command_args = cmd_ptr;
  7184. KEEPALIVE_STATE(IN_HANDLER);
  7185. // Handle a known G, M, or T
  7186. switch (command_code) {
  7187. case 'G': switch (codenum) {
  7188. // G0, G1
  7189. case 0:
  7190. case 1:
  7191. #if IS_SCARA
  7192. gcode_G0_G1(codenum == 0);
  7193. #else
  7194. gcode_G0_G1();
  7195. #endif
  7196. break;
  7197. // G2, G3
  7198. #if ENABLED(ARC_SUPPORT) && DISABLED(SCARA)
  7199. case 2: // G2 - CW ARC
  7200. case 3: // G3 - CCW ARC
  7201. gcode_G2_G3(codenum == 2);
  7202. break;
  7203. #endif
  7204. // G4 Dwell
  7205. case 4:
  7206. gcode_G4();
  7207. break;
  7208. #if ENABLED(BEZIER_CURVE_SUPPORT)
  7209. // G5
  7210. case 5: // G5 - Cubic B_spline
  7211. gcode_G5();
  7212. break;
  7213. #endif // BEZIER_CURVE_SUPPORT
  7214. #if ENABLED(FWRETRACT)
  7215. case 10: // G10: retract
  7216. case 11: // G11: retract_recover
  7217. gcode_G10_G11(codenum == 10);
  7218. break;
  7219. #endif // FWRETRACT
  7220. #if ENABLED(NOZZLE_CLEAN_FEATURE)
  7221. case 12:
  7222. gcode_G12(); // G12: Nozzle Clean
  7223. break;
  7224. #endif // NOZZLE_CLEAN_FEATURE
  7225. #if ENABLED(INCH_MODE_SUPPORT)
  7226. case 20: //G20: Inch Mode
  7227. gcode_G20();
  7228. break;
  7229. case 21: //G21: MM Mode
  7230. gcode_G21();
  7231. break;
  7232. #endif // INCH_MODE_SUPPORT
  7233. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
  7234. case 26: // G26: Mesh Validation Pattern generation
  7235. gcode_G26();
  7236. break;
  7237. #endif // AUTO_BED_LEVELING_UBL
  7238. #if ENABLED(NOZZLE_PARK_FEATURE)
  7239. case 27: // G27: Nozzle Park
  7240. gcode_G27();
  7241. break;
  7242. #endif // NOZZLE_PARK_FEATURE
  7243. case 28: // G28: Home all axes, one at a time
  7244. gcode_G28();
  7245. break;
  7246. #if PLANNER_LEVELING
  7247. case 29: // G29 Detailed Z probe, probes the bed at 3 or more points,
  7248. // or provides access to the UBL System if enabled.
  7249. gcode_G29();
  7250. break;
  7251. #endif // PLANNER_LEVELING
  7252. #if HAS_BED_PROBE
  7253. case 30: // G30 Single Z probe
  7254. gcode_G30();
  7255. break;
  7256. #if ENABLED(Z_PROBE_SLED)
  7257. case 31: // G31: dock the sled
  7258. gcode_G31();
  7259. break;
  7260. case 32: // G32: undock the sled
  7261. gcode_G32();
  7262. break;
  7263. #endif // Z_PROBE_SLED
  7264. #endif // HAS_BED_PROBE
  7265. #if ENABLED(G38_PROBE_TARGET)
  7266. case 38: // G38.2 & G38.3
  7267. if (subcode == 2 || subcode == 3)
  7268. gcode_G38(subcode == 2);
  7269. break;
  7270. #endif
  7271. case 90: // G90
  7272. relative_mode = false;
  7273. break;
  7274. case 91: // G91
  7275. relative_mode = true;
  7276. break;
  7277. case 92: // G92
  7278. gcode_G92();
  7279. break;
  7280. }
  7281. break;
  7282. case 'M': switch (codenum) {
  7283. #if ENABLED(ULTIPANEL) || ENABLED(EMERGENCY_PARSER)
  7284. case 0: // M0: Unconditional stop - Wait for user button press on LCD
  7285. case 1: // M1: Conditional stop - Wait for user button press on LCD
  7286. gcode_M0_M1();
  7287. break;
  7288. #endif // ULTIPANEL
  7289. case 17: // M17: Enable all stepper motors
  7290. gcode_M17();
  7291. break;
  7292. #if ENABLED(SDSUPPORT)
  7293. case 20: // M20: list SD card
  7294. gcode_M20(); break;
  7295. case 21: // M21: init SD card
  7296. gcode_M21(); break;
  7297. case 22: // M22: release SD card
  7298. gcode_M22(); break;
  7299. case 23: // M23: Select file
  7300. gcode_M23(); break;
  7301. case 24: // M24: Start SD print
  7302. gcode_M24(); break;
  7303. case 25: // M25: Pause SD print
  7304. gcode_M25(); break;
  7305. case 26: // M26: Set SD index
  7306. gcode_M26(); break;
  7307. case 27: // M27: Get SD status
  7308. gcode_M27(); break;
  7309. case 28: // M28: Start SD write
  7310. gcode_M28(); break;
  7311. case 29: // M29: Stop SD write
  7312. gcode_M29(); break;
  7313. case 30: // M30 <filename> Delete File
  7314. gcode_M30(); break;
  7315. case 32: // M32: Select file and start SD print
  7316. gcode_M32(); break;
  7317. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  7318. case 33: // M33: Get the long full path to a file or folder
  7319. gcode_M33(); break;
  7320. #endif
  7321. #if ENABLED(SDCARD_SORT_ALPHA) && ENABLED(SDSORT_GCODE)
  7322. case 34: //M34 - Set SD card sorting options
  7323. gcode_M34(); break;
  7324. #endif // SDCARD_SORT_ALPHA && SDSORT_GCODE
  7325. case 928: // M928: Start SD write
  7326. gcode_M928(); break;
  7327. #endif //SDSUPPORT
  7328. case 31: // M31: Report time since the start of SD print or last M109
  7329. gcode_M31(); break;
  7330. case 42: // M42: Change pin state
  7331. gcode_M42(); break;
  7332. #if ENABLED(PINS_DEBUGGING)
  7333. case 43: // M43: Read pin state
  7334. gcode_M43(); break;
  7335. #endif
  7336. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  7337. case 48: // M48: Z probe repeatability test
  7338. gcode_M48();
  7339. break;
  7340. #endif // Z_MIN_PROBE_REPEATABILITY_TEST
  7341. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
  7342. case 49: // M49: Turn on or off g26_debug_flag for verbose output
  7343. gcode_M49();
  7344. break;
  7345. #endif // AUTO_BED_LEVELING_UBL && UBL_MESH_EDIT_ENABLED
  7346. case 75: // M75: Start print timer
  7347. gcode_M75(); break;
  7348. case 76: // M76: Pause print timer
  7349. gcode_M76(); break;
  7350. case 77: // M77: Stop print timer
  7351. gcode_M77(); break;
  7352. #if ENABLED(PRINTCOUNTER)
  7353. case 78: // M78: Show print statistics
  7354. gcode_M78(); break;
  7355. #endif
  7356. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  7357. case 100: // M100: Free Memory Report
  7358. gcode_M100();
  7359. break;
  7360. #endif
  7361. case 104: // M104: Set hot end temperature
  7362. gcode_M104();
  7363. break;
  7364. case 110: // M110: Set Current Line Number
  7365. gcode_M110();
  7366. break;
  7367. case 111: // M111: Set debug level
  7368. gcode_M111();
  7369. break;
  7370. #if DISABLED(EMERGENCY_PARSER)
  7371. case 108: // M108: Cancel Waiting
  7372. gcode_M108();
  7373. break;
  7374. case 112: // M112: Emergency Stop
  7375. gcode_M112();
  7376. break;
  7377. case 410: // M410 quickstop - Abort all the planned moves.
  7378. gcode_M410();
  7379. break;
  7380. #endif
  7381. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  7382. case 113: // M113: Set Host Keepalive interval
  7383. gcode_M113();
  7384. break;
  7385. #endif
  7386. case 140: // M140: Set bed temperature
  7387. gcode_M140();
  7388. break;
  7389. case 105: // M105: Report current temperature
  7390. gcode_M105();
  7391. KEEPALIVE_STATE(NOT_BUSY);
  7392. return; // "ok" already printed
  7393. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  7394. case 155: // M155: Set temperature auto-report interval
  7395. gcode_M155();
  7396. break;
  7397. #endif
  7398. case 109: // M109: Wait for hotend temperature to reach target
  7399. gcode_M109();
  7400. break;
  7401. #if HAS_TEMP_BED
  7402. case 190: // M190: Wait for bed temperature to reach target
  7403. gcode_M190();
  7404. break;
  7405. #endif // HAS_TEMP_BED
  7406. #if FAN_COUNT > 0
  7407. case 106: // M106: Fan On
  7408. gcode_M106();
  7409. break;
  7410. case 107: // M107: Fan Off
  7411. gcode_M107();
  7412. break;
  7413. #endif // FAN_COUNT > 0
  7414. #if ENABLED(PARK_HEAD_ON_PAUSE)
  7415. case 125: // M125: Store current position and move to filament change position
  7416. gcode_M125(); break;
  7417. #endif
  7418. #if ENABLED(BARICUDA)
  7419. // PWM for HEATER_1_PIN
  7420. #if HAS_HEATER_1
  7421. case 126: // M126: valve open
  7422. gcode_M126();
  7423. break;
  7424. case 127: // M127: valve closed
  7425. gcode_M127();
  7426. break;
  7427. #endif // HAS_HEATER_1
  7428. // PWM for HEATER_2_PIN
  7429. #if HAS_HEATER_2
  7430. case 128: // M128: valve open
  7431. gcode_M128();
  7432. break;
  7433. case 129: // M129: valve closed
  7434. gcode_M129();
  7435. break;
  7436. #endif // HAS_HEATER_2
  7437. #endif // BARICUDA
  7438. #if HAS_POWER_SWITCH
  7439. case 80: // M80: Turn on Power Supply
  7440. gcode_M80();
  7441. break;
  7442. #endif // HAS_POWER_SWITCH
  7443. case 81: // M81: Turn off Power, including Power Supply, if possible
  7444. gcode_M81();
  7445. break;
  7446. case 82: // M83: Set E axis normal mode (same as other axes)
  7447. gcode_M82();
  7448. break;
  7449. case 83: // M83: Set E axis relative mode
  7450. gcode_M83();
  7451. break;
  7452. case 18: // M18 => M84
  7453. case 84: // M84: Disable all steppers or set timeout
  7454. gcode_M18_M84();
  7455. break;
  7456. case 85: // M85: Set inactivity stepper shutdown timeout
  7457. gcode_M85();
  7458. break;
  7459. case 92: // M92: Set the steps-per-unit for one or more axes
  7460. gcode_M92();
  7461. break;
  7462. case 114: // M114: Report current position
  7463. gcode_M114();
  7464. break;
  7465. case 115: // M115: Report capabilities
  7466. gcode_M115();
  7467. break;
  7468. case 117: // M117: Set LCD message text, if possible
  7469. gcode_M117();
  7470. break;
  7471. case 119: // M119: Report endstop states
  7472. gcode_M119();
  7473. break;
  7474. case 120: // M120: Enable endstops
  7475. gcode_M120();
  7476. break;
  7477. case 121: // M121: Disable endstops
  7478. gcode_M121();
  7479. break;
  7480. #if ENABLED(ULTIPANEL)
  7481. case 145: // M145: Set material heatup parameters
  7482. gcode_M145();
  7483. break;
  7484. #endif
  7485. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  7486. case 149: // M149: Set temperature units
  7487. gcode_M149();
  7488. break;
  7489. #endif
  7490. #if ENABLED(BLINKM) || ENABLED(RGB_LED)
  7491. case 150: // M150: Set Status LED Color
  7492. gcode_M150();
  7493. break;
  7494. #endif // BLINKM
  7495. #if ENABLED(MIXING_EXTRUDER)
  7496. case 163: // M163: Set a component weight for mixing extruder
  7497. gcode_M163();
  7498. break;
  7499. #if MIXING_VIRTUAL_TOOLS > 1
  7500. case 164: // M164: Save current mix as a virtual extruder
  7501. gcode_M164();
  7502. break;
  7503. #endif
  7504. #if ENABLED(DIRECT_MIXING_IN_G1)
  7505. case 165: // M165: Set multiple mix weights
  7506. gcode_M165();
  7507. break;
  7508. #endif
  7509. #endif
  7510. case 200: // M200: Set filament diameter, E to cubic units
  7511. gcode_M200();
  7512. break;
  7513. case 201: // M201: Set max acceleration for print moves (units/s^2)
  7514. gcode_M201();
  7515. break;
  7516. #if 0 // Not used for Sprinter/grbl gen6
  7517. case 202: // M202
  7518. gcode_M202();
  7519. break;
  7520. #endif
  7521. case 203: // M203: Set max feedrate (units/sec)
  7522. gcode_M203();
  7523. break;
  7524. case 204: // M204: Set acceleration
  7525. gcode_M204();
  7526. break;
  7527. case 205: //M205: Set advanced settings
  7528. gcode_M205();
  7529. break;
  7530. #if DISABLED(NO_WORKSPACE_OFFSETS)
  7531. case 206: // M206: Set home offsets
  7532. gcode_M206();
  7533. break;
  7534. #endif
  7535. #if ENABLED(DELTA)
  7536. case 665: // M665: Set delta configurations
  7537. gcode_M665();
  7538. break;
  7539. #endif
  7540. #if ENABLED(DELTA) || ENABLED(Z_DUAL_ENDSTOPS)
  7541. case 666: // M666: Set delta or dual endstop adjustment
  7542. gcode_M666();
  7543. break;
  7544. #endif
  7545. #if ENABLED(FWRETRACT)
  7546. case 207: // M207: Set Retract Length, Feedrate, and Z lift
  7547. gcode_M207();
  7548. break;
  7549. case 208: // M208: Set Recover (unretract) Additional Length and Feedrate
  7550. gcode_M208();
  7551. break;
  7552. case 209: // M209: Turn Automatic Retract Detection on/off
  7553. gcode_M209();
  7554. break;
  7555. #endif // FWRETRACT
  7556. case 211: // M211: Enable, Disable, and/or Report software endstops
  7557. gcode_M211();
  7558. break;
  7559. #if HOTENDS > 1
  7560. case 218: // M218: Set a tool offset
  7561. gcode_M218();
  7562. break;
  7563. #endif
  7564. case 220: // M220: Set Feedrate Percentage: S<percent> ("FR" on your LCD)
  7565. gcode_M220();
  7566. break;
  7567. case 221: // M221: Set Flow Percentage
  7568. gcode_M221();
  7569. break;
  7570. case 226: // M226: Wait until a pin reaches a state
  7571. gcode_M226();
  7572. break;
  7573. #if HAS_SERVOS
  7574. case 280: // M280: Set servo position absolute
  7575. gcode_M280();
  7576. break;
  7577. #endif // HAS_SERVOS
  7578. #if HAS_BUZZER
  7579. case 300: // M300: Play beep tone
  7580. gcode_M300();
  7581. break;
  7582. #endif // HAS_BUZZER
  7583. #if ENABLED(PIDTEMP)
  7584. case 301: // M301: Set hotend PID parameters
  7585. gcode_M301();
  7586. break;
  7587. #endif // PIDTEMP
  7588. #if ENABLED(PIDTEMPBED)
  7589. case 304: // M304: Set bed PID parameters
  7590. gcode_M304();
  7591. break;
  7592. #endif // PIDTEMPBED
  7593. #if defined(CHDK) || HAS_PHOTOGRAPH
  7594. case 240: // M240: Trigger a camera by emulating a Canon RC-1 : http://www.doc-diy.net/photo/rc-1_hacked/
  7595. gcode_M240();
  7596. break;
  7597. #endif // CHDK || PHOTOGRAPH_PIN
  7598. #if HAS_LCD_CONTRAST
  7599. case 250: // M250: Set LCD contrast
  7600. gcode_M250();
  7601. break;
  7602. #endif // HAS_LCD_CONTRAST
  7603. #if ENABLED(EXPERIMENTAL_I2CBUS)
  7604. case 260: // M260: Send data to an i2c slave
  7605. gcode_M260();
  7606. break;
  7607. case 261: // M261: Request data from an i2c slave
  7608. gcode_M261();
  7609. break;
  7610. #endif // EXPERIMENTAL_I2CBUS
  7611. #if ENABLED(PREVENT_COLD_EXTRUSION)
  7612. case 302: // M302: Allow cold extrudes (set the minimum extrude temperature)
  7613. gcode_M302();
  7614. break;
  7615. #endif // PREVENT_COLD_EXTRUSION
  7616. case 303: // M303: PID autotune
  7617. gcode_M303();
  7618. break;
  7619. #if ENABLED(MORGAN_SCARA)
  7620. case 360: // M360: SCARA Theta pos1
  7621. if (gcode_M360()) return;
  7622. break;
  7623. case 361: // M361: SCARA Theta pos2
  7624. if (gcode_M361()) return;
  7625. break;
  7626. case 362: // M362: SCARA Psi pos1
  7627. if (gcode_M362()) return;
  7628. break;
  7629. case 363: // M363: SCARA Psi pos2
  7630. if (gcode_M363()) return;
  7631. break;
  7632. case 364: // M364: SCARA Psi pos3 (90 deg to Theta)
  7633. if (gcode_M364()) return;
  7634. break;
  7635. #endif // SCARA
  7636. case 400: // M400: Finish all moves
  7637. gcode_M400();
  7638. break;
  7639. #if HAS_BED_PROBE
  7640. case 401: // M401: Deploy probe
  7641. gcode_M401();
  7642. break;
  7643. case 402: // M402: Stow probe
  7644. gcode_M402();
  7645. break;
  7646. #endif // HAS_BED_PROBE
  7647. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  7648. case 404: // M404: Enter the nominal filament width (3mm, 1.75mm ) N<3.0> or display nominal filament width
  7649. gcode_M404();
  7650. break;
  7651. case 405: // M405: Turn on filament sensor for control
  7652. gcode_M405();
  7653. break;
  7654. case 406: // M406: Turn off filament sensor for control
  7655. gcode_M406();
  7656. break;
  7657. case 407: // M407: Display measured filament diameter
  7658. gcode_M407();
  7659. break;
  7660. #endif // ENABLED(FILAMENT_WIDTH_SENSOR)
  7661. #if PLANNER_LEVELING
  7662. case 420: // M420: Enable/Disable Bed Leveling
  7663. gcode_M420();
  7664. break;
  7665. #endif
  7666. #if ENABLED(MESH_BED_LEVELING)
  7667. case 421: // M421: Set a Mesh Bed Leveling Z coordinate
  7668. gcode_M421();
  7669. break;
  7670. #endif
  7671. #if DISABLED(NO_WORKSPACE_OFFSETS)
  7672. case 428: // M428: Apply current_position to home_offset
  7673. gcode_M428();
  7674. break;
  7675. #endif
  7676. case 500: // M500: Store settings in EEPROM
  7677. gcode_M500();
  7678. break;
  7679. case 501: // M501: Read settings from EEPROM
  7680. gcode_M501();
  7681. break;
  7682. case 502: // M502: Revert to default settings
  7683. gcode_M502();
  7684. break;
  7685. case 503: // M503: print settings currently in memory
  7686. gcode_M503();
  7687. break;
  7688. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  7689. case 540: // M540: Set abort on endstop hit for SD printing
  7690. gcode_M540();
  7691. break;
  7692. #endif
  7693. #if HAS_BED_PROBE
  7694. case 851: // M851: Set Z Probe Z Offset
  7695. gcode_M851();
  7696. break;
  7697. #endif // HAS_BED_PROBE
  7698. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  7699. case 600: // M600: Pause for filament change
  7700. gcode_M600();
  7701. break;
  7702. #endif // FILAMENT_CHANGE_FEATURE
  7703. #if ENABLED(DUAL_X_CARRIAGE)
  7704. case 605: // M605: Set Dual X Carriage movement mode
  7705. gcode_M605();
  7706. break;
  7707. #endif // DUAL_X_CARRIAGE
  7708. #if ENABLED(LIN_ADVANCE)
  7709. case 905: // M905: Set advance K factor.
  7710. gcode_M905();
  7711. break;
  7712. #endif
  7713. #if ENABLED(HAVE_TMC2130)
  7714. case 906: // M906: Set motor current in milliamps using axis codes X, Y, Z, E
  7715. gcode_M906();
  7716. break;
  7717. #endif
  7718. case 907: // M907: Set digital trimpot motor current using axis codes.
  7719. gcode_M907();
  7720. break;
  7721. #if HAS_DIGIPOTSS || ENABLED(DAC_STEPPER_CURRENT)
  7722. case 908: // M908: Control digital trimpot directly.
  7723. gcode_M908();
  7724. break;
  7725. #if ENABLED(DAC_STEPPER_CURRENT) // As with Printrbot RevF
  7726. case 909: // M909: Print digipot/DAC current value
  7727. gcode_M909();
  7728. break;
  7729. case 910: // M910: Commit digipot/DAC value to external EEPROM
  7730. gcode_M910();
  7731. break;
  7732. #endif
  7733. #endif // HAS_DIGIPOTSS || DAC_STEPPER_CURRENT
  7734. #if ENABLED(HAVE_TMC2130)
  7735. case 911: // M911: Report TMC2130 prewarn triggered flags
  7736. gcode_M911();
  7737. break;
  7738. case 912: // M911: Clear TMC2130 prewarn triggered flags
  7739. gcode_M912();
  7740. break;
  7741. #endif
  7742. #if HAS_MICROSTEPS
  7743. case 350: // M350: Set microstepping mode. Warning: Steps per unit remains unchanged. S code sets stepping mode for all drivers.
  7744. gcode_M350();
  7745. break;
  7746. case 351: // M351: Toggle MS1 MS2 pins directly, S# determines MS1 or MS2, X# sets the pin high/low.
  7747. gcode_M351();
  7748. break;
  7749. #endif // HAS_MICROSTEPS
  7750. case 355: // M355 Turn case lights on/off
  7751. gcode_M355();
  7752. break;
  7753. case 999: // M999: Restart after being Stopped
  7754. gcode_M999();
  7755. break;
  7756. }
  7757. break;
  7758. case 'T':
  7759. gcode_T(codenum);
  7760. break;
  7761. default: code_is_good = false;
  7762. }
  7763. KEEPALIVE_STATE(NOT_BUSY);
  7764. ExitUnknownCommand:
  7765. // Still unknown command? Throw an error
  7766. if (!code_is_good) unknown_command_error();
  7767. ok_to_send();
  7768. }
  7769. /**
  7770. * Send a "Resend: nnn" message to the host to
  7771. * indicate that a command needs to be re-sent.
  7772. */
  7773. void FlushSerialRequestResend() {
  7774. //char command_queue[cmd_queue_index_r][100]="Resend:";
  7775. MYSERIAL.flush();
  7776. SERIAL_PROTOCOLPGM(MSG_RESEND);
  7777. SERIAL_PROTOCOLLN(gcode_LastN + 1);
  7778. ok_to_send();
  7779. }
  7780. /**
  7781. * Send an "ok" message to the host, indicating
  7782. * that a command was successfully processed.
  7783. *
  7784. * If ADVANCED_OK is enabled also include:
  7785. * N<int> Line number of the command, if any
  7786. * P<int> Planner space remaining
  7787. * B<int> Block queue space remaining
  7788. */
  7789. void ok_to_send() {
  7790. refresh_cmd_timeout();
  7791. if (!send_ok[cmd_queue_index_r]) return;
  7792. SERIAL_PROTOCOLPGM(MSG_OK);
  7793. #if ENABLED(ADVANCED_OK)
  7794. char* p = command_queue[cmd_queue_index_r];
  7795. if (*p == 'N') {
  7796. SERIAL_PROTOCOL(' ');
  7797. SERIAL_ECHO(*p++);
  7798. while (NUMERIC_SIGNED(*p))
  7799. SERIAL_ECHO(*p++);
  7800. }
  7801. SERIAL_PROTOCOLPGM(" P"); SERIAL_PROTOCOL(int(BLOCK_BUFFER_SIZE - planner.movesplanned() - 1));
  7802. SERIAL_PROTOCOLPGM(" B"); SERIAL_PROTOCOL(BUFSIZE - commands_in_queue);
  7803. #endif
  7804. SERIAL_EOL;
  7805. }
  7806. #if HAS_SOFTWARE_ENDSTOPS
  7807. /**
  7808. * Constrain the given coordinates to the software endstops.
  7809. */
  7810. void clamp_to_software_endstops(float target[XYZ]) {
  7811. if (!soft_endstops_enabled) return;
  7812. #if ENABLED(MIN_SOFTWARE_ENDSTOPS)
  7813. NOLESS(target[X_AXIS], soft_endstop_min[X_AXIS]);
  7814. NOLESS(target[Y_AXIS], soft_endstop_min[Y_AXIS]);
  7815. NOLESS(target[Z_AXIS], soft_endstop_min[Z_AXIS]);
  7816. #endif
  7817. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  7818. NOMORE(target[X_AXIS], soft_endstop_max[X_AXIS]);
  7819. NOMORE(target[Y_AXIS], soft_endstop_max[Y_AXIS]);
  7820. NOMORE(target[Z_AXIS], soft_endstop_max[Z_AXIS]);
  7821. #endif
  7822. }
  7823. #endif
  7824. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  7825. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  7826. #define ABL_BG_SPACING(A) bilinear_grid_spacing_virt[A]
  7827. #define ABL_BG_POINTS_X ABL_GRID_POINTS_VIRT_X
  7828. #define ABL_BG_POINTS_Y ABL_GRID_POINTS_VIRT_Y
  7829. #define ABL_BG_GRID(X,Y) bed_level_grid_virt[X][Y]
  7830. #else
  7831. #define ABL_BG_SPACING(A) bilinear_grid_spacing[A]
  7832. #define ABL_BG_POINTS_X ABL_GRID_MAX_POINTS_X
  7833. #define ABL_BG_POINTS_Y ABL_GRID_MAX_POINTS_Y
  7834. #define ABL_BG_GRID(X,Y) bed_level_grid[X][Y]
  7835. #endif
  7836. // Get the Z adjustment for non-linear bed leveling
  7837. float bilinear_z_offset(float cartesian[XYZ]) {
  7838. // XY relative to the probed area
  7839. const float x = RAW_X_POSITION(cartesian[X_AXIS]) - bilinear_start[X_AXIS],
  7840. y = RAW_Y_POSITION(cartesian[Y_AXIS]) - bilinear_start[Y_AXIS];
  7841. // Convert to grid box units
  7842. float ratio_x = x / ABL_BG_SPACING(X_AXIS),
  7843. ratio_y = y / ABL_BG_SPACING(Y_AXIS);
  7844. // Whole units for the grid line indices. Constrained within bounds.
  7845. const int gridx = constrain(floor(ratio_x), 0, ABL_BG_POINTS_X - 1),
  7846. gridy = constrain(floor(ratio_y), 0, ABL_BG_POINTS_Y - 1),
  7847. nextx = min(gridx + 1, ABL_BG_POINTS_X - 1),
  7848. nexty = min(gridy + 1, ABL_BG_POINTS_Y - 1);
  7849. // Subtract whole to get the ratio within the grid box
  7850. ratio_x -= gridx; ratio_y -= gridy;
  7851. // Never less than 0.0. (Over 1.0 is fine due to previous contraints.)
  7852. NOLESS(ratio_x, 0); NOLESS(ratio_y, 0);
  7853. // Z at the box corners
  7854. const float z1 = ABL_BG_GRID(gridx, gridy), // left-front
  7855. z2 = ABL_BG_GRID(gridx, nexty), // left-back
  7856. z3 = ABL_BG_GRID(nextx, gridy), // right-front
  7857. z4 = ABL_BG_GRID(nextx, nexty), // right-back
  7858. // Bilinear interpolate
  7859. L = z1 + (z2 - z1) * ratio_y, // Linear interp. LF -> LB
  7860. R = z3 + (z4 - z3) * ratio_y, // Linear interp. RF -> RB
  7861. offset = L + ratio_x * (R - L);
  7862. /*
  7863. static float last_offset = 0;
  7864. if (fabs(last_offset - offset) > 0.2) {
  7865. SERIAL_ECHOPGM("Sudden Shift at ");
  7866. SERIAL_ECHOPAIR("x=", x);
  7867. SERIAL_ECHOPAIR(" / ", bilinear_grid_spacing[X_AXIS]);
  7868. SERIAL_ECHOLNPAIR(" -> gridx=", gridx);
  7869. SERIAL_ECHOPAIR(" y=", y);
  7870. SERIAL_ECHOPAIR(" / ", bilinear_grid_spacing[Y_AXIS]);
  7871. SERIAL_ECHOLNPAIR(" -> gridy=", gridy);
  7872. SERIAL_ECHOPAIR(" ratio_x=", ratio_x);
  7873. SERIAL_ECHOLNPAIR(" ratio_y=", ratio_y);
  7874. SERIAL_ECHOPAIR(" z1=", z1);
  7875. SERIAL_ECHOPAIR(" z2=", z2);
  7876. SERIAL_ECHOPAIR(" z3=", z3);
  7877. SERIAL_ECHOLNPAIR(" z4=", z4);
  7878. SERIAL_ECHOPAIR(" L=", L);
  7879. SERIAL_ECHOPAIR(" R=", R);
  7880. SERIAL_ECHOLNPAIR(" offset=", offset);
  7881. }
  7882. last_offset = offset;
  7883. */
  7884. return offset;
  7885. }
  7886. #endif // AUTO_BED_LEVELING_BILINEAR
  7887. #if ENABLED(DELTA)
  7888. /**
  7889. * Recalculate factors used for delta kinematics whenever
  7890. * settings have been changed (e.g., by M665).
  7891. */
  7892. void recalc_delta_settings(float radius, float diagonal_rod) {
  7893. delta_tower[A_AXIS][X_AXIS] = -sin(RADIANS(60 - delta_tower_angle_trim[A_AXIS])) * (delta_radius + DELTA_RADIUS_TRIM_TOWER_1), // front left tower
  7894. delta_tower[A_AXIS][Y_AXIS] = -cos(RADIANS(60 - delta_tower_angle_trim[A_AXIS])) * (delta_radius + DELTA_RADIUS_TRIM_TOWER_1),
  7895. delta_tower[B_AXIS][X_AXIS] = sin(RADIANS(60 + delta_tower_angle_trim[B_AXIS])) * (delta_radius + DELTA_RADIUS_TRIM_TOWER_2), // front right tower
  7896. delta_tower[B_AXIS][Y_AXIS] = -cos(RADIANS(60 + delta_tower_angle_trim[B_AXIS])) * (delta_radius + DELTA_RADIUS_TRIM_TOWER_2),
  7897. delta_tower[C_AXIS][X_AXIS] = -sin(RADIANS( delta_tower_angle_trim[C_AXIS])) * (delta_radius + DELTA_RADIUS_TRIM_TOWER_3), // back middle tower
  7898. delta_tower[C_AXIS][Y_AXIS] = cos(RADIANS( delta_tower_angle_trim[C_AXIS])) * (delta_radius + DELTA_RADIUS_TRIM_TOWER_3),
  7899. delta_diagonal_rod_2_tower[A_AXIS] = sq(diagonal_rod + delta_diagonal_rod_trim[A_AXIS]);
  7900. delta_diagonal_rod_2_tower[B_AXIS] = sq(diagonal_rod + delta_diagonal_rod_trim[B_AXIS]);
  7901. delta_diagonal_rod_2_tower[C_AXIS] = sq(diagonal_rod + delta_diagonal_rod_trim[C_AXIS]);
  7902. }
  7903. #if ENABLED(DELTA_FAST_SQRT)
  7904. /**
  7905. * Fast inverse sqrt from Quake III Arena
  7906. * See: https://en.wikipedia.org/wiki/Fast_inverse_square_root
  7907. */
  7908. float Q_rsqrt(float number) {
  7909. long i;
  7910. float x2, y;
  7911. const float threehalfs = 1.5f;
  7912. x2 = number * 0.5f;
  7913. y = number;
  7914. i = * ( long * ) &y; // evil floating point bit level hacking
  7915. i = 0x5f3759df - ( i >> 1 ); // what the f***?
  7916. y = * ( float * ) &i;
  7917. y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
  7918. // y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
  7919. return y;
  7920. }
  7921. #define _SQRT(n) (1.0f / Q_rsqrt(n))
  7922. #else
  7923. #define _SQRT(n) sqrt(n)
  7924. #endif
  7925. /**
  7926. * Delta Inverse Kinematics
  7927. *
  7928. * Calculate the tower positions for a given logical
  7929. * position, storing the result in the delta[] array.
  7930. *
  7931. * This is an expensive calculation, requiring 3 square
  7932. * roots per segmented linear move, and strains the limits
  7933. * of a Mega2560 with a Graphical Display.
  7934. *
  7935. * Suggested optimizations include:
  7936. *
  7937. * - Disable the home_offset (M206) and/or position_shift (G92)
  7938. * features to remove up to 12 float additions.
  7939. *
  7940. * - Use a fast-inverse-sqrt function and add the reciprocal.
  7941. * (see above)
  7942. */
  7943. // Macro to obtain the Z position of an individual tower
  7944. #define DELTA_Z(T) raw[Z_AXIS] + _SQRT( \
  7945. delta_diagonal_rod_2_tower[T] - HYPOT2( \
  7946. delta_tower[T][X_AXIS] - raw[X_AXIS], \
  7947. delta_tower[T][Y_AXIS] - raw[Y_AXIS] \
  7948. ) \
  7949. )
  7950. #define DELTA_RAW_IK() do { \
  7951. delta[A_AXIS] = DELTA_Z(A_AXIS); \
  7952. delta[B_AXIS] = DELTA_Z(B_AXIS); \
  7953. delta[C_AXIS] = DELTA_Z(C_AXIS); \
  7954. } while(0)
  7955. #define DELTA_LOGICAL_IK() do { \
  7956. const float raw[XYZ] = { \
  7957. RAW_X_POSITION(logical[X_AXIS]), \
  7958. RAW_Y_POSITION(logical[Y_AXIS]), \
  7959. RAW_Z_POSITION(logical[Z_AXIS]) \
  7960. }; \
  7961. DELTA_RAW_IK(); \
  7962. } while(0)
  7963. #define DELTA_DEBUG() do { \
  7964. SERIAL_ECHOPAIR("cartesian X:", raw[X_AXIS]); \
  7965. SERIAL_ECHOPAIR(" Y:", raw[Y_AXIS]); \
  7966. SERIAL_ECHOLNPAIR(" Z:", raw[Z_AXIS]); \
  7967. SERIAL_ECHOPAIR("delta A:", delta[A_AXIS]); \
  7968. SERIAL_ECHOPAIR(" B:", delta[B_AXIS]); \
  7969. SERIAL_ECHOLNPAIR(" C:", delta[C_AXIS]); \
  7970. } while(0)
  7971. void inverse_kinematics(const float logical[XYZ]) {
  7972. DELTA_LOGICAL_IK();
  7973. // DELTA_DEBUG();
  7974. }
  7975. /**
  7976. * Calculate the highest Z position where the
  7977. * effector has the full range of XY motion.
  7978. */
  7979. float delta_safe_distance_from_top() {
  7980. float cartesian[XYZ] = {
  7981. LOGICAL_X_POSITION(0),
  7982. LOGICAL_Y_POSITION(0),
  7983. LOGICAL_Z_POSITION(0)
  7984. };
  7985. inverse_kinematics(cartesian);
  7986. float distance = delta[A_AXIS];
  7987. cartesian[Y_AXIS] = LOGICAL_Y_POSITION(DELTA_PRINTABLE_RADIUS);
  7988. inverse_kinematics(cartesian);
  7989. return abs(distance - delta[A_AXIS]);
  7990. }
  7991. /**
  7992. * Delta Forward Kinematics
  7993. *
  7994. * See the Wikipedia article "Trilateration"
  7995. * https://en.wikipedia.org/wiki/Trilateration
  7996. *
  7997. * Establish a new coordinate system in the plane of the
  7998. * three carriage points. This system has its origin at
  7999. * tower1, with tower2 on the X axis. Tower3 is in the X-Y
  8000. * plane with a Z component of zero.
  8001. * We will define unit vectors in this coordinate system
  8002. * in our original coordinate system. Then when we calculate
  8003. * the Xnew, Ynew and Znew values, we can translate back into
  8004. * the original system by moving along those unit vectors
  8005. * by the corresponding values.
  8006. *
  8007. * Variable names matched to Marlin, c-version, and avoid the
  8008. * use of any vector library.
  8009. *
  8010. * by Andreas Hardtung 2016-06-07
  8011. * based on a Java function from "Delta Robot Kinematics V3"
  8012. * by Steve Graves
  8013. *
  8014. * The result is stored in the cartes[] array.
  8015. */
  8016. void forward_kinematics_DELTA(float z1, float z2, float z3) {
  8017. // Create a vector in old coordinates along x axis of new coordinate
  8018. 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 };
  8019. // Get the Magnitude of vector.
  8020. float d = sqrt( sq(p12[0]) + sq(p12[1]) + sq(p12[2]) );
  8021. // Create unit vector by dividing by magnitude.
  8022. float ex[3] = { p12[0] / d, p12[1] / d, p12[2] / d };
  8023. // Get the vector from the origin of the new system to the third point.
  8024. 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 };
  8025. // Use the dot product to find the component of this vector on the X axis.
  8026. float i = ex[0] * p13[0] + ex[1] * p13[1] + ex[2] * p13[2];
  8027. // Create a vector along the x axis that represents the x component of p13.
  8028. float iex[3] = { ex[0] * i, ex[1] * i, ex[2] * i };
  8029. // Subtract the X component from the original vector leaving only Y. We use the
  8030. // variable that will be the unit vector after we scale it.
  8031. float ey[3] = { p13[0] - iex[0], p13[1] - iex[1], p13[2] - iex[2] };
  8032. // The magnitude of Y component
  8033. float j = sqrt( sq(ey[0]) + sq(ey[1]) + sq(ey[2]) );
  8034. // Convert to a unit vector
  8035. ey[0] /= j; ey[1] /= j; ey[2] /= j;
  8036. // The cross product of the unit x and y is the unit z
  8037. // float[] ez = vectorCrossProd(ex, ey);
  8038. float ez[3] = {
  8039. ex[1] * ey[2] - ex[2] * ey[1],
  8040. ex[2] * ey[0] - ex[0] * ey[2],
  8041. ex[0] * ey[1] - ex[1] * ey[0]
  8042. };
  8043. // We now have the d, i and j values defined in Wikipedia.
  8044. // Plug them into the equations defined in Wikipedia for Xnew, Ynew and Znew
  8045. float Xnew = (delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[B_AXIS] + sq(d)) / (d * 2),
  8046. Ynew = ((delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[C_AXIS] + HYPOT2(i, j)) / 2 - i * Xnew) / j,
  8047. Znew = sqrt(delta_diagonal_rod_2_tower[A_AXIS] - HYPOT2(Xnew, Ynew));
  8048. // Start from the origin of the old coordinates and add vectors in the
  8049. // old coords that represent the Xnew, Ynew and Znew to find the point
  8050. // in the old system.
  8051. cartes[X_AXIS] = delta_tower[A_AXIS][X_AXIS] + ex[0] * Xnew + ey[0] * Ynew - ez[0] * Znew;
  8052. cartes[Y_AXIS] = delta_tower[A_AXIS][Y_AXIS] + ex[1] * Xnew + ey[1] * Ynew - ez[1] * Znew;
  8053. cartes[Z_AXIS] = z1 + ex[2] * Xnew + ey[2] * Ynew - ez[2] * Znew;
  8054. }
  8055. void forward_kinematics_DELTA(float point[ABC]) {
  8056. forward_kinematics_DELTA(point[A_AXIS], point[B_AXIS], point[C_AXIS]);
  8057. }
  8058. #endif // DELTA
  8059. /**
  8060. * Get the stepper positions in the cartes[] array.
  8061. * Forward kinematics are applied for DELTA and SCARA.
  8062. *
  8063. * The result is in the current coordinate space with
  8064. * leveling applied. The coordinates need to be run through
  8065. * unapply_leveling to obtain the "ideal" coordinates
  8066. * suitable for current_position, etc.
  8067. */
  8068. void get_cartesian_from_steppers() {
  8069. #if ENABLED(DELTA)
  8070. forward_kinematics_DELTA(
  8071. stepper.get_axis_position_mm(A_AXIS),
  8072. stepper.get_axis_position_mm(B_AXIS),
  8073. stepper.get_axis_position_mm(C_AXIS)
  8074. );
  8075. cartes[X_AXIS] += LOGICAL_X_POSITION(0);
  8076. cartes[Y_AXIS] += LOGICAL_Y_POSITION(0);
  8077. cartes[Z_AXIS] += LOGICAL_Z_POSITION(0);
  8078. #elif IS_SCARA
  8079. forward_kinematics_SCARA(
  8080. stepper.get_axis_position_degrees(A_AXIS),
  8081. stepper.get_axis_position_degrees(B_AXIS)
  8082. );
  8083. cartes[X_AXIS] += LOGICAL_X_POSITION(0);
  8084. cartes[Y_AXIS] += LOGICAL_Y_POSITION(0);
  8085. cartes[Z_AXIS] = stepper.get_axis_position_mm(Z_AXIS);
  8086. #else
  8087. cartes[X_AXIS] = stepper.get_axis_position_mm(X_AXIS);
  8088. cartes[Y_AXIS] = stepper.get_axis_position_mm(Y_AXIS);
  8089. cartes[Z_AXIS] = stepper.get_axis_position_mm(Z_AXIS);
  8090. #endif
  8091. }
  8092. /**
  8093. * Set the current_position for an axis based on
  8094. * the stepper positions, removing any leveling that
  8095. * may have been applied.
  8096. */
  8097. void set_current_from_steppers_for_axis(const AxisEnum axis) {
  8098. get_cartesian_from_steppers();
  8099. #if PLANNER_LEVELING && DISABLED(AUTO_BED_LEVELING_UBL)
  8100. planner.unapply_leveling(cartes);
  8101. #endif
  8102. if (axis == ALL_AXES)
  8103. COPY(current_position, cartes);
  8104. else
  8105. current_position[axis] = cartes[axis];
  8106. }
  8107. #if ENABLED(MESH_BED_LEVELING)
  8108. /**
  8109. * Prepare a mesh-leveled linear move in a Cartesian setup,
  8110. * splitting the move where it crosses mesh borders.
  8111. */
  8112. void mesh_line_to_destination(float fr_mm_s, uint8_t x_splits = 0xff, uint8_t y_splits = 0xff) {
  8113. int cx1 = mbl.cell_index_x(RAW_CURRENT_POSITION(X_AXIS)),
  8114. cy1 = mbl.cell_index_y(RAW_CURRENT_POSITION(Y_AXIS)),
  8115. cx2 = mbl.cell_index_x(RAW_X_POSITION(destination[X_AXIS])),
  8116. cy2 = mbl.cell_index_y(RAW_Y_POSITION(destination[Y_AXIS]));
  8117. NOMORE(cx1, MESH_NUM_X_POINTS - 2);
  8118. NOMORE(cy1, MESH_NUM_Y_POINTS - 2);
  8119. NOMORE(cx2, MESH_NUM_X_POINTS - 2);
  8120. NOMORE(cy2, MESH_NUM_Y_POINTS - 2);
  8121. if (cx1 == cx2 && cy1 == cy2) {
  8122. // Start and end on same mesh square
  8123. line_to_destination(fr_mm_s);
  8124. set_current_to_destination();
  8125. return;
  8126. }
  8127. #define MBL_SEGMENT_END(A) (current_position[A ##_AXIS] + (destination[A ##_AXIS] - current_position[A ##_AXIS]) * normalized_dist)
  8128. float normalized_dist, end[XYZE];
  8129. // Split at the left/front border of the right/top square
  8130. const int8_t gcx = max(cx1, cx2), gcy = max(cy1, cy2);
  8131. if (cx2 != cx1 && TEST(x_splits, gcx)) {
  8132. COPY(end, destination);
  8133. destination[X_AXIS] = LOGICAL_X_POSITION(mbl.get_probe_x(gcx));
  8134. normalized_dist = (destination[X_AXIS] - current_position[X_AXIS]) / (end[X_AXIS] - current_position[X_AXIS]);
  8135. destination[Y_AXIS] = MBL_SEGMENT_END(Y);
  8136. CBI(x_splits, gcx);
  8137. }
  8138. else if (cy2 != cy1 && TEST(y_splits, gcy)) {
  8139. COPY(end, destination);
  8140. destination[Y_AXIS] = LOGICAL_Y_POSITION(mbl.get_probe_y(gcy));
  8141. normalized_dist = (destination[Y_AXIS] - current_position[Y_AXIS]) / (end[Y_AXIS] - current_position[Y_AXIS]);
  8142. destination[X_AXIS] = MBL_SEGMENT_END(X);
  8143. CBI(y_splits, gcy);
  8144. }
  8145. else {
  8146. // Already split on a border
  8147. line_to_destination(fr_mm_s);
  8148. set_current_to_destination();
  8149. return;
  8150. }
  8151. destination[Z_AXIS] = MBL_SEGMENT_END(Z);
  8152. destination[E_AXIS] = MBL_SEGMENT_END(E);
  8153. // Do the split and look for more borders
  8154. mesh_line_to_destination(fr_mm_s, x_splits, y_splits);
  8155. // Restore destination from stack
  8156. COPY(destination, end);
  8157. mesh_line_to_destination(fr_mm_s, x_splits, y_splits);
  8158. }
  8159. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR) && !IS_KINEMATIC
  8160. #define CELL_INDEX(A,V) ((RAW_##A##_POSITION(V) - bilinear_start[A##_AXIS]) / ABL_BG_SPACING(A##_AXIS))
  8161. /**
  8162. * Prepare a bilinear-leveled linear move on Cartesian,
  8163. * splitting the move where it crosses grid borders.
  8164. */
  8165. void bilinear_line_to_destination(float fr_mm_s, uint16_t x_splits = 0xFFFF, uint16_t y_splits = 0xFFFF) {
  8166. int cx1 = CELL_INDEX(X, current_position[X_AXIS]),
  8167. cy1 = CELL_INDEX(Y, current_position[Y_AXIS]),
  8168. cx2 = CELL_INDEX(X, destination[X_AXIS]),
  8169. cy2 = CELL_INDEX(Y, destination[Y_AXIS]);
  8170. cx1 = constrain(cx1, 0, ABL_BG_POINTS_X - 2);
  8171. cy1 = constrain(cy1, 0, ABL_BG_POINTS_Y - 2);
  8172. cx2 = constrain(cx2, 0, ABL_BG_POINTS_X - 2);
  8173. cy2 = constrain(cy2, 0, ABL_BG_POINTS_Y - 2);
  8174. if (cx1 == cx2 && cy1 == cy2) {
  8175. // Start and end on same mesh square
  8176. line_to_destination(fr_mm_s);
  8177. set_current_to_destination();
  8178. return;
  8179. }
  8180. #define LINE_SEGMENT_END(A) (current_position[A ##_AXIS] + (destination[A ##_AXIS] - current_position[A ##_AXIS]) * normalized_dist)
  8181. float normalized_dist, end[XYZE];
  8182. // Split at the left/front border of the right/top square
  8183. const int8_t gcx = max(cx1, cx2), gcy = max(cy1, cy2);
  8184. if (cx2 != cx1 && TEST(x_splits, gcx)) {
  8185. COPY(end, destination);
  8186. destination[X_AXIS] = LOGICAL_X_POSITION(bilinear_start[X_AXIS] + ABL_BG_SPACING(X_AXIS) * gcx);
  8187. normalized_dist = (destination[X_AXIS] - current_position[X_AXIS]) / (end[X_AXIS] - current_position[X_AXIS]);
  8188. destination[Y_AXIS] = LINE_SEGMENT_END(Y);
  8189. CBI(x_splits, gcx);
  8190. }
  8191. else if (cy2 != cy1 && TEST(y_splits, gcy)) {
  8192. COPY(end, destination);
  8193. destination[Y_AXIS] = LOGICAL_Y_POSITION(bilinear_start[Y_AXIS] + ABL_BG_SPACING(Y_AXIS) * gcy);
  8194. normalized_dist = (destination[Y_AXIS] - current_position[Y_AXIS]) / (end[Y_AXIS] - current_position[Y_AXIS]);
  8195. destination[X_AXIS] = LINE_SEGMENT_END(X);
  8196. CBI(y_splits, gcy);
  8197. }
  8198. else {
  8199. // Already split on a border
  8200. line_to_destination(fr_mm_s);
  8201. set_current_to_destination();
  8202. return;
  8203. }
  8204. destination[Z_AXIS] = LINE_SEGMENT_END(Z);
  8205. destination[E_AXIS] = LINE_SEGMENT_END(E);
  8206. // Do the split and look for more borders
  8207. bilinear_line_to_destination(fr_mm_s, x_splits, y_splits);
  8208. // Restore destination from stack
  8209. COPY(destination, end);
  8210. bilinear_line_to_destination(fr_mm_s, x_splits, y_splits);
  8211. }
  8212. #endif // AUTO_BED_LEVELING_BILINEAR
  8213. #if IS_KINEMATIC
  8214. /**
  8215. * Prepare a linear move in a DELTA or SCARA setup.
  8216. *
  8217. * This calls planner.buffer_line several times, adding
  8218. * small incremental moves for DELTA or SCARA.
  8219. */
  8220. inline bool prepare_kinematic_move_to(float ltarget[XYZE]) {
  8221. // Get the top feedrate of the move in the XY plane
  8222. float _feedrate_mm_s = MMS_SCALED(feedrate_mm_s);
  8223. // If the move is only in Z/E don't split up the move
  8224. if (ltarget[X_AXIS] == current_position[X_AXIS] && ltarget[Y_AXIS] == current_position[Y_AXIS]) {
  8225. planner.buffer_line_kinematic(ltarget, _feedrate_mm_s, active_extruder);
  8226. return true;
  8227. }
  8228. // Get the cartesian distances moved in XYZE
  8229. float difference[XYZE];
  8230. LOOP_XYZE(i) difference[i] = ltarget[i] - current_position[i];
  8231. // Get the linear distance in XYZ
  8232. float cartesian_mm = sqrt(sq(difference[X_AXIS]) + sq(difference[Y_AXIS]) + sq(difference[Z_AXIS]));
  8233. // If the move is very short, check the E move distance
  8234. if (UNEAR_ZERO(cartesian_mm)) cartesian_mm = abs(difference[E_AXIS]);
  8235. // No E move either? Game over.
  8236. if (UNEAR_ZERO(cartesian_mm)) return false;
  8237. // Minimum number of seconds to move the given distance
  8238. float seconds = cartesian_mm / _feedrate_mm_s;
  8239. // The number of segments-per-second times the duration
  8240. // gives the number of segments
  8241. uint16_t segments = delta_segments_per_second * seconds;
  8242. // For SCARA minimum segment size is 0.5mm
  8243. #if IS_SCARA
  8244. NOMORE(segments, cartesian_mm * 2);
  8245. #endif
  8246. // At least one segment is required
  8247. NOLESS(segments, 1);
  8248. // The approximate length of each segment
  8249. float segment_distance[XYZE] = {
  8250. difference[X_AXIS] / segments,
  8251. difference[Y_AXIS] / segments,
  8252. difference[Z_AXIS] / segments,
  8253. difference[E_AXIS] / segments
  8254. };
  8255. // SERIAL_ECHOPAIR("mm=", cartesian_mm);
  8256. // SERIAL_ECHOPAIR(" seconds=", seconds);
  8257. // SERIAL_ECHOLNPAIR(" segments=", segments);
  8258. // Drop one segment so the last move is to the exact target.
  8259. // If there's only 1 segment, loops will be skipped entirely.
  8260. --segments;
  8261. // Get the logical current position as starting point
  8262. float logical[XYZE];
  8263. COPY(logical, current_position);
  8264. // Calculate and execute the segments
  8265. for (uint16_t s = segments + 1; --s;) {
  8266. LOOP_XYZE(i) logical[i] += segment_distance[i];
  8267. #if ENABLED(DELTA)
  8268. DELTA_LOGICAL_IK(); // Delta can inline its kinematics
  8269. #else
  8270. inverse_kinematics(logical);
  8271. #endif
  8272. ADJUST_DELTA(logical); // Adjust Z if bed leveling is enabled
  8273. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], logical[E_AXIS], _feedrate_mm_s, active_extruder);
  8274. }
  8275. // Since segment_distance is only approximate,
  8276. // the final move must be to the exact destination.
  8277. planner.buffer_line_kinematic(ltarget, _feedrate_mm_s, active_extruder);
  8278. return true;
  8279. }
  8280. #else // !IS_KINEMATIC
  8281. /**
  8282. * Prepare a linear move in a Cartesian setup.
  8283. * If Mesh Bed Leveling is enabled, perform a mesh move.
  8284. */
  8285. inline bool prepare_move_to_destination_cartesian() {
  8286. // Do not use feedrate_percentage for E or Z only moves
  8287. if (current_position[X_AXIS] == destination[X_AXIS] && current_position[Y_AXIS] == destination[Y_AXIS]) {
  8288. line_to_destination();
  8289. }
  8290. else {
  8291. #if ENABLED(MESH_BED_LEVELING)
  8292. if (mbl.active()) {
  8293. mesh_line_to_destination(MMS_SCALED(feedrate_mm_s));
  8294. return false;
  8295. }
  8296. else
  8297. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  8298. if (ubl.state.active) {
  8299. // ubl_line_to_destination(MMS_SCALED(feedrate_mm_s));
  8300. ubl_line_to_destination(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS],
  8301. // (feedrate*(1.0/60.0))*(feedrate_percentage*(1.0/100.0) ), active_extruder);
  8302. MMS_SCALED(feedrate_mm_s), active_extruder);
  8303. return false;
  8304. }
  8305. else
  8306. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  8307. if (planner.abl_enabled) {
  8308. bilinear_line_to_destination(MMS_SCALED(feedrate_mm_s));
  8309. return false;
  8310. }
  8311. else
  8312. #endif
  8313. line_to_destination(MMS_SCALED(feedrate_mm_s));
  8314. }
  8315. return true;
  8316. }
  8317. #endif // !IS_KINEMATIC
  8318. #if ENABLED(DUAL_X_CARRIAGE)
  8319. /**
  8320. * Prepare a linear move in a dual X axis setup
  8321. */
  8322. inline bool prepare_move_to_destination_dualx() {
  8323. if (active_extruder_parked) {
  8324. switch (dual_x_carriage_mode) {
  8325. case DXC_FULL_CONTROL_MODE:
  8326. break;
  8327. case DXC_AUTO_PARK_MODE:
  8328. if (current_position[E_AXIS] == destination[E_AXIS]) {
  8329. // This is a travel move (with no extrusion)
  8330. // Skip it, but keep track of the current position
  8331. // (so it can be used as the start of the next non-travel move)
  8332. if (delayed_move_time != 0xFFFFFFFFUL) {
  8333. set_current_to_destination();
  8334. NOLESS(raised_parked_position[Z_AXIS], destination[Z_AXIS]);
  8335. delayed_move_time = millis();
  8336. return false;
  8337. }
  8338. }
  8339. // unpark extruder: 1) raise, 2) move into starting XY position, 3) lower
  8340. for (uint8_t i = 0; i < 3; i++)
  8341. planner.buffer_line(
  8342. i == 0 ? raised_parked_position[X_AXIS] : current_position[X_AXIS],
  8343. i == 0 ? raised_parked_position[Y_AXIS] : current_position[Y_AXIS],
  8344. i == 2 ? current_position[Z_AXIS] : raised_parked_position[Z_AXIS],
  8345. current_position[E_AXIS],
  8346. i == 1 ? PLANNER_XY_FEEDRATE() : planner.max_feedrate_mm_s[Z_AXIS],
  8347. active_extruder
  8348. );
  8349. delayed_move_time = 0;
  8350. active_extruder_parked = false;
  8351. break;
  8352. case DXC_DUPLICATION_MODE:
  8353. if (active_extruder == 0) {
  8354. // move duplicate extruder into correct duplication position.
  8355. planner.set_position_mm(
  8356. LOGICAL_X_POSITION(inactive_extruder_x_pos),
  8357. current_position[Y_AXIS],
  8358. current_position[Z_AXIS],
  8359. current_position[E_AXIS]
  8360. );
  8361. planner.buffer_line(
  8362. current_position[X_AXIS] + duplicate_extruder_x_offset,
  8363. current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS],
  8364. planner.max_feedrate_mm_s[X_AXIS], 1
  8365. );
  8366. SYNC_PLAN_POSITION_KINEMATIC();
  8367. stepper.synchronize();
  8368. extruder_duplication_enabled = true;
  8369. active_extruder_parked = false;
  8370. }
  8371. break;
  8372. }
  8373. }
  8374. return true;
  8375. }
  8376. #endif // DUAL_X_CARRIAGE
  8377. /**
  8378. * Prepare a single move and get ready for the next one
  8379. *
  8380. * This may result in several calls to planner.buffer_line to
  8381. * do smaller moves for DELTA, SCARA, mesh moves, etc.
  8382. */
  8383. void prepare_move_to_destination() {
  8384. clamp_to_software_endstops(destination);
  8385. refresh_cmd_timeout();
  8386. #if ENABLED(PREVENT_COLD_EXTRUSION)
  8387. if (!DEBUGGING(DRYRUN)) {
  8388. if (destination[E_AXIS] != current_position[E_AXIS]) {
  8389. if (thermalManager.tooColdToExtrude(active_extruder)) {
  8390. current_position[E_AXIS] = destination[E_AXIS]; // Behave as if the move really took place, but ignore E part
  8391. SERIAL_ECHO_START;
  8392. SERIAL_ECHOLNPGM(MSG_ERR_COLD_EXTRUDE_STOP);
  8393. }
  8394. #if ENABLED(PREVENT_LENGTHY_EXTRUDE)
  8395. if (labs(destination[E_AXIS] - current_position[E_AXIS]) > EXTRUDE_MAXLENGTH) {
  8396. current_position[E_AXIS] = destination[E_AXIS]; // Behave as if the move really took place, but ignore E part
  8397. SERIAL_ECHO_START;
  8398. SERIAL_ECHOLNPGM(MSG_ERR_LONG_EXTRUDE_STOP);
  8399. }
  8400. #endif
  8401. }
  8402. }
  8403. #endif
  8404. #if IS_KINEMATIC
  8405. if (!prepare_kinematic_move_to(destination)) return;
  8406. #else
  8407. #if ENABLED(DUAL_X_CARRIAGE)
  8408. if (!prepare_move_to_destination_dualx()) return;
  8409. #endif
  8410. if (!prepare_move_to_destination_cartesian()) return;
  8411. #endif
  8412. set_current_to_destination();
  8413. }
  8414. #if ENABLED(ARC_SUPPORT)
  8415. /**
  8416. * Plan an arc in 2 dimensions
  8417. *
  8418. * The arc is approximated by generating many small linear segments.
  8419. * The length of each segment is configured in MM_PER_ARC_SEGMENT (Default 1mm)
  8420. * Arcs should only be made relatively large (over 5mm), as larger arcs with
  8421. * larger segments will tend to be more efficient. Your slicer should have
  8422. * options for G2/G3 arc generation. In future these options may be GCode tunable.
  8423. */
  8424. void plan_arc(
  8425. float logical[XYZE], // Destination position
  8426. float* offset, // Center of rotation relative to current_position
  8427. uint8_t clockwise // Clockwise?
  8428. ) {
  8429. float radius = HYPOT(offset[X_AXIS], offset[Y_AXIS]),
  8430. center_X = current_position[X_AXIS] + offset[X_AXIS],
  8431. center_Y = current_position[Y_AXIS] + offset[Y_AXIS],
  8432. linear_travel = logical[Z_AXIS] - current_position[Z_AXIS],
  8433. extruder_travel = logical[E_AXIS] - current_position[E_AXIS],
  8434. r_X = -offset[X_AXIS], // Radius vector from center to current location
  8435. r_Y = -offset[Y_AXIS],
  8436. rt_X = logical[X_AXIS] - center_X,
  8437. rt_Y = logical[Y_AXIS] - center_Y;
  8438. // CCW angle of rotation between position and target from the circle center. Only one atan2() trig computation required.
  8439. float angular_travel = atan2(r_X * rt_Y - r_Y * rt_X, r_X * rt_X + r_Y * rt_Y);
  8440. if (angular_travel < 0) angular_travel += RADIANS(360);
  8441. if (clockwise) angular_travel -= RADIANS(360);
  8442. // Make a circle if the angular rotation is 0
  8443. if (angular_travel == 0 && current_position[X_AXIS] == logical[X_AXIS] && current_position[Y_AXIS] == logical[Y_AXIS])
  8444. angular_travel += RADIANS(360);
  8445. float mm_of_travel = HYPOT(angular_travel * radius, fabs(linear_travel));
  8446. if (mm_of_travel < 0.001) return;
  8447. uint16_t segments = floor(mm_of_travel / (MM_PER_ARC_SEGMENT));
  8448. if (segments == 0) segments = 1;
  8449. /**
  8450. * Vector rotation by transformation matrix: r is the original vector, r_T is the rotated vector,
  8451. * and phi is the angle of rotation. Based on the solution approach by Jens Geisler.
  8452. * r_T = [cos(phi) -sin(phi);
  8453. * sin(phi) cos(phi)] * r ;
  8454. *
  8455. * For arc generation, the center of the circle is the axis of rotation and the radius vector is
  8456. * defined from the circle center to the initial position. Each line segment is formed by successive
  8457. * vector rotations. This requires only two cos() and sin() computations to form the rotation
  8458. * matrix for the duration of the entire arc. Error may accumulate from numerical round-off, since
  8459. * all double numbers are single precision on the Arduino. (True double precision will not have
  8460. * round off issues for CNC applications.) Single precision error can accumulate to be greater than
  8461. * tool precision in some cases. Therefore, arc path correction is implemented.
  8462. *
  8463. * Small angle approximation may be used to reduce computation overhead further. This approximation
  8464. * holds for everything, but very small circles and large MM_PER_ARC_SEGMENT values. In other words,
  8465. * theta_per_segment would need to be greater than 0.1 rad and N_ARC_CORRECTION would need to be large
  8466. * to cause an appreciable drift error. N_ARC_CORRECTION~=25 is more than small enough to correct for
  8467. * numerical drift error. N_ARC_CORRECTION may be on the order a hundred(s) before error becomes an
  8468. * issue for CNC machines with the single precision Arduino calculations.
  8469. *
  8470. * This approximation also allows plan_arc to immediately insert a line segment into the planner
  8471. * without the initial overhead of computing cos() or sin(). By the time the arc needs to be applied
  8472. * a correction, the planner should have caught up to the lag caused by the initial plan_arc overhead.
  8473. * This is important when there are successive arc motions.
  8474. */
  8475. // Vector rotation matrix values
  8476. float arc_target[XYZE],
  8477. theta_per_segment = angular_travel / segments,
  8478. linear_per_segment = linear_travel / segments,
  8479. extruder_per_segment = extruder_travel / segments,
  8480. sin_T = theta_per_segment,
  8481. cos_T = 1 - 0.5 * sq(theta_per_segment); // Small angle approximation
  8482. // Initialize the linear axis
  8483. arc_target[Z_AXIS] = current_position[Z_AXIS];
  8484. // Initialize the extruder axis
  8485. arc_target[E_AXIS] = current_position[E_AXIS];
  8486. float fr_mm_s = MMS_SCALED(feedrate_mm_s);
  8487. millis_t next_idle_ms = millis() + 200UL;
  8488. int8_t count = 0;
  8489. for (uint16_t i = 1; i < segments; i++) { // Iterate (segments-1) times
  8490. thermalManager.manage_heater();
  8491. if (ELAPSED(millis(), next_idle_ms)) {
  8492. next_idle_ms = millis() + 200UL;
  8493. idle();
  8494. }
  8495. if (++count < N_ARC_CORRECTION) {
  8496. // Apply vector rotation matrix to previous r_X / 1
  8497. float r_new_Y = r_X * sin_T + r_Y * cos_T;
  8498. r_X = r_X * cos_T - r_Y * sin_T;
  8499. r_Y = r_new_Y;
  8500. }
  8501. else {
  8502. // Arc correction to radius vector. Computed only every N_ARC_CORRECTION increments.
  8503. // Compute exact location by applying transformation matrix from initial radius vector(=-offset).
  8504. // To reduce stuttering, the sin and cos could be computed at different times.
  8505. // For now, compute both at the same time.
  8506. float cos_Ti = cos(i * theta_per_segment),
  8507. sin_Ti = sin(i * theta_per_segment);
  8508. r_X = -offset[X_AXIS] * cos_Ti + offset[Y_AXIS] * sin_Ti;
  8509. r_Y = -offset[X_AXIS] * sin_Ti - offset[Y_AXIS] * cos_Ti;
  8510. count = 0;
  8511. }
  8512. // Update arc_target location
  8513. arc_target[X_AXIS] = center_X + r_X;
  8514. arc_target[Y_AXIS] = center_Y + r_Y;
  8515. arc_target[Z_AXIS] += linear_per_segment;
  8516. arc_target[E_AXIS] += extruder_per_segment;
  8517. clamp_to_software_endstops(arc_target);
  8518. planner.buffer_line_kinematic(arc_target, fr_mm_s, active_extruder);
  8519. }
  8520. // Ensure last segment arrives at target location.
  8521. planner.buffer_line_kinematic(logical, fr_mm_s, active_extruder);
  8522. // As far as the parser is concerned, the position is now == target. In reality the
  8523. // motion control system might still be processing the action and the real tool position
  8524. // in any intermediate location.
  8525. set_current_to_destination();
  8526. }
  8527. #endif
  8528. #if ENABLED(BEZIER_CURVE_SUPPORT)
  8529. void plan_cubic_move(const float offset[4]) {
  8530. cubic_b_spline(current_position, destination, offset, MMS_SCALED(feedrate_mm_s), active_extruder);
  8531. // As far as the parser is concerned, the position is now == destination. In reality the
  8532. // motion control system might still be processing the action and the real tool position
  8533. // in any intermediate location.
  8534. set_current_to_destination();
  8535. }
  8536. #endif // BEZIER_CURVE_SUPPORT
  8537. #if HAS_CONTROLLERFAN
  8538. void controllerFan() {
  8539. static millis_t lastMotorOn = 0; // Last time a motor was turned on
  8540. static millis_t nextMotorCheck = 0; // Last time the state was checked
  8541. millis_t ms = millis();
  8542. if (ELAPSED(ms, nextMotorCheck)) {
  8543. nextMotorCheck = ms + 2500UL; // Not a time critical function, so only check every 2.5s
  8544. if (X_ENABLE_READ == X_ENABLE_ON || Y_ENABLE_READ == Y_ENABLE_ON || Z_ENABLE_READ == Z_ENABLE_ON || thermalManager.soft_pwm_bed > 0
  8545. || E0_ENABLE_READ == E_ENABLE_ON // If any of the drivers are enabled...
  8546. #if E_STEPPERS > 1
  8547. || E1_ENABLE_READ == E_ENABLE_ON
  8548. #if HAS_X2_ENABLE
  8549. || X2_ENABLE_READ == X_ENABLE_ON
  8550. #endif
  8551. #if E_STEPPERS > 2
  8552. || E2_ENABLE_READ == E_ENABLE_ON
  8553. #if E_STEPPERS > 3
  8554. || E3_ENABLE_READ == E_ENABLE_ON
  8555. #endif
  8556. #endif
  8557. #endif
  8558. ) {
  8559. lastMotorOn = ms; //... set time to NOW so the fan will turn on
  8560. }
  8561. // Fan off if no steppers have been enabled for CONTROLLERFAN_SECS seconds
  8562. uint8_t speed = (!lastMotorOn || ELAPSED(ms, lastMotorOn + (CONTROLLERFAN_SECS) * 1000UL)) ? 0 : CONTROLLERFAN_SPEED;
  8563. // allows digital or PWM fan output to be used (see M42 handling)
  8564. digitalWrite(CONTROLLERFAN_PIN, speed);
  8565. analogWrite(CONTROLLERFAN_PIN, speed);
  8566. }
  8567. }
  8568. #endif // HAS_CONTROLLERFAN
  8569. #if ENABLED(MORGAN_SCARA)
  8570. /**
  8571. * Morgan SCARA Forward Kinematics. Results in cartes[].
  8572. * Maths and first version by QHARLEY.
  8573. * Integrated into Marlin and slightly restructured by Joachim Cerny.
  8574. */
  8575. void forward_kinematics_SCARA(const float &a, const float &b) {
  8576. float a_sin = sin(RADIANS(a)) * L1,
  8577. a_cos = cos(RADIANS(a)) * L1,
  8578. b_sin = sin(RADIANS(b)) * L2,
  8579. b_cos = cos(RADIANS(b)) * L2;
  8580. cartes[X_AXIS] = a_cos + b_cos + SCARA_OFFSET_X; //theta
  8581. cartes[Y_AXIS] = a_sin + b_sin + SCARA_OFFSET_Y; //theta+phi
  8582. /*
  8583. SERIAL_ECHOPAIR("SCARA FK Angle a=", a);
  8584. SERIAL_ECHOPAIR(" b=", b);
  8585. SERIAL_ECHOPAIR(" a_sin=", a_sin);
  8586. SERIAL_ECHOPAIR(" a_cos=", a_cos);
  8587. SERIAL_ECHOPAIR(" b_sin=", b_sin);
  8588. SERIAL_ECHOLNPAIR(" b_cos=", b_cos);
  8589. SERIAL_ECHOPAIR(" cartes[X_AXIS]=", cartes[X_AXIS]);
  8590. SERIAL_ECHOLNPAIR(" cartes[Y_AXIS]=", cartes[Y_AXIS]);
  8591. //*/
  8592. }
  8593. /**
  8594. * Morgan SCARA Inverse Kinematics. Results in delta[].
  8595. *
  8596. * See http://forums.reprap.org/read.php?185,283327
  8597. *
  8598. * Maths and first version by QHARLEY.
  8599. * Integrated into Marlin and slightly restructured by Joachim Cerny.
  8600. */
  8601. void inverse_kinematics(const float logical[XYZ]) {
  8602. static float C2, S2, SK1, SK2, THETA, PSI;
  8603. float sx = RAW_X_POSITION(logical[X_AXIS]) - SCARA_OFFSET_X, // Translate SCARA to standard X Y
  8604. sy = RAW_Y_POSITION(logical[Y_AXIS]) - SCARA_OFFSET_Y; // With scaling factor.
  8605. if (L1 == L2)
  8606. C2 = HYPOT2(sx, sy) / L1_2_2 - 1;
  8607. else
  8608. C2 = (HYPOT2(sx, sy) - (L1_2 + L2_2)) / (2.0 * L1 * L2);
  8609. S2 = sqrt(sq(C2) - 1);
  8610. // Unrotated Arm1 plus rotated Arm2 gives the distance from Center to End
  8611. SK1 = L1 + L2 * C2;
  8612. // Rotated Arm2 gives the distance from Arm1 to Arm2
  8613. SK2 = L2 * S2;
  8614. // Angle of Arm1 is the difference between Center-to-End angle and the Center-to-Elbow
  8615. THETA = atan2(SK1, SK2) - atan2(sx, sy);
  8616. // Angle of Arm2
  8617. PSI = atan2(S2, C2);
  8618. delta[A_AXIS] = DEGREES(THETA); // theta is support arm angle
  8619. delta[B_AXIS] = DEGREES(THETA + PSI); // equal to sub arm angle (inverted motor)
  8620. delta[C_AXIS] = logical[Z_AXIS];
  8621. /*
  8622. DEBUG_POS("SCARA IK", logical);
  8623. DEBUG_POS("SCARA IK", delta);
  8624. SERIAL_ECHOPAIR(" SCARA (x,y) ", sx);
  8625. SERIAL_ECHOPAIR(",", sy);
  8626. SERIAL_ECHOPAIR(" C2=", C2);
  8627. SERIAL_ECHOPAIR(" S2=", S2);
  8628. SERIAL_ECHOPAIR(" Theta=", THETA);
  8629. SERIAL_ECHOLNPAIR(" Phi=", PHI);
  8630. //*/
  8631. }
  8632. #endif // MORGAN_SCARA
  8633. #if ENABLED(TEMP_STAT_LEDS)
  8634. static bool red_led = false;
  8635. static millis_t next_status_led_update_ms = 0;
  8636. void handle_status_leds(void) {
  8637. if (ELAPSED(millis(), next_status_led_update_ms)) {
  8638. next_status_led_update_ms += 500; // Update every 0.5s
  8639. float max_temp = 0.0;
  8640. #if HAS_TEMP_BED
  8641. max_temp = MAX3(max_temp, thermalManager.degTargetBed(), thermalManager.degBed());
  8642. #endif
  8643. HOTEND_LOOP() {
  8644. max_temp = MAX3(max_temp, thermalManager.degHotend(e), thermalManager.degTargetHotend(e));
  8645. }
  8646. bool new_led = (max_temp > 55.0) ? true : (max_temp < 54.0) ? false : red_led;
  8647. if (new_led != red_led) {
  8648. red_led = new_led;
  8649. #if PIN_EXISTS(STAT_LED_RED)
  8650. WRITE(STAT_LED_RED_PIN, new_led ? HIGH : LOW);
  8651. #if PIN_EXISTS(STAT_LED_BLUE)
  8652. WRITE(STAT_LED_BLUE_PIN, new_led ? LOW : HIGH);
  8653. #endif
  8654. #else
  8655. WRITE(STAT_LED_BLUE_PIN, new_led ? HIGH : LOW);
  8656. #endif
  8657. }
  8658. }
  8659. }
  8660. #endif
  8661. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  8662. void handle_filament_runout() {
  8663. if (!filament_ran_out) {
  8664. filament_ran_out = true;
  8665. enqueue_and_echo_commands_P(PSTR(FILAMENT_RUNOUT_SCRIPT));
  8666. stepper.synchronize();
  8667. }
  8668. }
  8669. #endif // FILAMENT_RUNOUT_SENSOR
  8670. #if ENABLED(FAST_PWM_FAN)
  8671. void setPwmFrequency(uint8_t pin, int val) {
  8672. val &= 0x07;
  8673. switch (digitalPinToTimer(pin)) {
  8674. #ifdef TCCR0A
  8675. case TIMER0A:
  8676. case TIMER0B:
  8677. // TCCR0B &= ~(_BV(CS00) | _BV(CS01) | _BV(CS02));
  8678. // TCCR0B |= val;
  8679. break;
  8680. #endif
  8681. #ifdef TCCR1A
  8682. case TIMER1A:
  8683. case TIMER1B:
  8684. // TCCR1B &= ~(_BV(CS10) | _BV(CS11) | _BV(CS12));
  8685. // TCCR1B |= val;
  8686. break;
  8687. #endif
  8688. #ifdef TCCR2
  8689. case TIMER2:
  8690. case TIMER2:
  8691. TCCR2 &= ~(_BV(CS10) | _BV(CS11) | _BV(CS12));
  8692. TCCR2 |= val;
  8693. break;
  8694. #endif
  8695. #ifdef TCCR2A
  8696. case TIMER2A:
  8697. case TIMER2B:
  8698. TCCR2B &= ~(_BV(CS20) | _BV(CS21) | _BV(CS22));
  8699. TCCR2B |= val;
  8700. break;
  8701. #endif
  8702. #ifdef TCCR3A
  8703. case TIMER3A:
  8704. case TIMER3B:
  8705. case TIMER3C:
  8706. TCCR3B &= ~(_BV(CS30) | _BV(CS31) | _BV(CS32));
  8707. TCCR3B |= val;
  8708. break;
  8709. #endif
  8710. #ifdef TCCR4A
  8711. case TIMER4A:
  8712. case TIMER4B:
  8713. case TIMER4C:
  8714. TCCR4B &= ~(_BV(CS40) | _BV(CS41) | _BV(CS42));
  8715. TCCR4B |= val;
  8716. break;
  8717. #endif
  8718. #ifdef TCCR5A
  8719. case TIMER5A:
  8720. case TIMER5B:
  8721. case TIMER5C:
  8722. TCCR5B &= ~(_BV(CS50) | _BV(CS51) | _BV(CS52));
  8723. TCCR5B |= val;
  8724. break;
  8725. #endif
  8726. }
  8727. }
  8728. #endif // FAST_PWM_FAN
  8729. float calculate_volumetric_multiplier(float diameter) {
  8730. if (!volumetric_enabled || diameter == 0) return 1.0;
  8731. return 1.0 / (M_PI * sq(diameter * 0.5));
  8732. }
  8733. void calculate_volumetric_multipliers() {
  8734. for (uint8_t i = 0; i < COUNT(filament_size); i++)
  8735. volumetric_multiplier[i] = calculate_volumetric_multiplier(filament_size[i]);
  8736. }
  8737. void enable_all_steppers() {
  8738. enable_x();
  8739. enable_y();
  8740. enable_z();
  8741. enable_e0();
  8742. enable_e1();
  8743. enable_e2();
  8744. enable_e3();
  8745. }
  8746. void disable_e_steppers() {
  8747. disable_e0();
  8748. disable_e1();
  8749. disable_e2();
  8750. disable_e3();
  8751. }
  8752. void disable_all_steppers() {
  8753. disable_x();
  8754. disable_y();
  8755. disable_z();
  8756. disable_e_steppers();
  8757. }
  8758. #if ENABLED(AUTOMATIC_CURRENT_CONTROL)
  8759. void automatic_current_control(const TMC2130Stepper &st) {
  8760. #if CURRENT_STEP > 0
  8761. const bool is_otpw = st.checkOT(), // Check otpw even if we don't adjust. Allows for flag inspection.
  8762. is_otpw_triggered = st.getOTPW();
  8763. if (!is_otpw && !is_otpw_triggered) {
  8764. // OTPW bit not triggered yet -> Increase current
  8765. const uint16_t current = st.getCurrent() + CURRENT_STEP;
  8766. if (current <= AUTO_ADJUST_MAX) st.SilentStepStick2130(current);
  8767. }
  8768. else if (is_otpw && is_otpw_triggered) {
  8769. // OTPW bit triggered, triggered flag raised -> Decrease current
  8770. st.SilentStepStick2130((float)st.getCurrent() - CURRENT_STEP);
  8771. }
  8772. // OTPW bit cleared (we've cooled down), triggered flag still raised until manually cleared -> Do nothing, we're good
  8773. #endif
  8774. }
  8775. void checkOverTemp() {
  8776. static millis_t next_cOT = 0;
  8777. if (ELAPSED(millis(), next_cOT)) {
  8778. next_cOT = millis() + 5000;
  8779. #if ENABLED(X_IS_TMC2130)
  8780. automatic_current_control(stepperX);
  8781. #endif
  8782. #if ENABLED(Y_IS_TMC2130)
  8783. automatic_current_control(stepperY);
  8784. #endif
  8785. #if ENABLED(Z_IS_TMC2130)
  8786. automatic_current_control(stepperZ);
  8787. #endif
  8788. #if ENABLED(X2_IS_TMC2130)
  8789. automatic_current_control(stepperX2);
  8790. #endif
  8791. #if ENABLED(Y2_IS_TMC2130)
  8792. automatic_current_control(stepperY2);
  8793. #endif
  8794. #if ENABLED(Z2_IS_TMC2130)
  8795. automatic_current_control(stepperZ2);
  8796. #endif
  8797. #if ENABLED(E0_IS_TMC2130)
  8798. automatic_current_control(stepperE0);
  8799. #endif
  8800. #if ENABLED(E1_IS_TMC2130)
  8801. automatic_current_control(stepperE1);
  8802. #endif
  8803. #if ENABLED(E2_IS_TMC2130)
  8804. automatic_current_control(stepperE2);
  8805. #endif
  8806. #if ENABLED(E3_IS_TMC2130)
  8807. automatic_current_control(stepperE3);
  8808. #endif
  8809. }
  8810. }
  8811. #endif // AUTOMATIC_CURRENT_CONTROL
  8812. /**
  8813. * Manage several activities:
  8814. * - Check for Filament Runout
  8815. * - Keep the command buffer full
  8816. * - Check for maximum inactive time between commands
  8817. * - Check for maximum inactive time between stepper commands
  8818. * - Check if pin CHDK needs to go LOW
  8819. * - Check for KILL button held down
  8820. * - Check for HOME button held down
  8821. * - Check if cooling fan needs to be switched on
  8822. * - Check if an idle but hot extruder needs filament extruded (EXTRUDER_RUNOUT_PREVENT)
  8823. */
  8824. void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
  8825. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  8826. if ((IS_SD_PRINTING || print_job_timer.isRunning()) && (READ(FIL_RUNOUT_PIN) == FIL_RUNOUT_INVERTING))
  8827. handle_filament_runout();
  8828. #endif
  8829. if (commands_in_queue < BUFSIZE) get_available_commands();
  8830. millis_t ms = millis();
  8831. if (max_inactive_time && ELAPSED(ms, previous_cmd_ms + max_inactive_time)) {
  8832. SERIAL_ERROR_START;
  8833. SERIAL_ECHOLNPAIR(MSG_KILL_INACTIVE_TIME, current_command);
  8834. kill(PSTR(MSG_KILLED));
  8835. }
  8836. // Prevent steppers timing-out in the middle of M600
  8837. #if ENABLED(FILAMENT_CHANGE_FEATURE) && ENABLED(FILAMENT_CHANGE_NO_STEPPER_TIMEOUT)
  8838. #define M600_TEST !busy_doing_M600
  8839. #else
  8840. #define M600_TEST true
  8841. #endif
  8842. if (M600_TEST && stepper_inactive_time && ELAPSED(ms, previous_cmd_ms + stepper_inactive_time)
  8843. && !ignore_stepper_queue && !planner.blocks_queued()) {
  8844. #if ENABLED(DISABLE_INACTIVE_X)
  8845. disable_x();
  8846. #endif
  8847. #if ENABLED(DISABLE_INACTIVE_Y)
  8848. disable_y();
  8849. #endif
  8850. #if ENABLED(DISABLE_INACTIVE_Z)
  8851. disable_z();
  8852. #endif
  8853. #if ENABLED(DISABLE_INACTIVE_E)
  8854. disable_e_steppers();
  8855. #endif
  8856. }
  8857. #ifdef CHDK // Check if pin should be set to LOW after M240 set it to HIGH
  8858. if (chdkActive && ELAPSED(ms, chdkHigh + CHDK_DELAY)) {
  8859. chdkActive = false;
  8860. WRITE(CHDK, LOW);
  8861. }
  8862. #endif
  8863. #if HAS_KILL
  8864. // Check if the kill button was pressed and wait just in case it was an accidental
  8865. // key kill key press
  8866. // -------------------------------------------------------------------------------
  8867. static int killCount = 0; // make the inactivity button a bit less responsive
  8868. const int KILL_DELAY = 750;
  8869. if (!READ(KILL_PIN))
  8870. killCount++;
  8871. else if (killCount > 0)
  8872. killCount--;
  8873. // Exceeded threshold and we can confirm that it was not accidental
  8874. // KILL the machine
  8875. // ----------------------------------------------------------------
  8876. if (killCount >= KILL_DELAY) {
  8877. SERIAL_ERROR_START;
  8878. SERIAL_ERRORLNPGM(MSG_KILL_BUTTON);
  8879. kill(PSTR(MSG_KILLED));
  8880. }
  8881. #endif
  8882. #if HAS_HOME
  8883. // Check to see if we have to home, use poor man's debouncer
  8884. // ---------------------------------------------------------
  8885. static int homeDebounceCount = 0; // poor man's debouncing count
  8886. const int HOME_DEBOUNCE_DELAY = 2500;
  8887. if (!IS_SD_PRINTING && !READ(HOME_PIN)) {
  8888. if (!homeDebounceCount) {
  8889. enqueue_and_echo_commands_P(PSTR("G28"));
  8890. LCD_MESSAGEPGM(MSG_AUTO_HOME);
  8891. }
  8892. if (homeDebounceCount < HOME_DEBOUNCE_DELAY)
  8893. homeDebounceCount++;
  8894. else
  8895. homeDebounceCount = 0;
  8896. }
  8897. #endif
  8898. #if HAS_CONTROLLERFAN
  8899. controllerFan(); // Check if fan should be turned on to cool stepper drivers down
  8900. #endif
  8901. #if ENABLED(EXTRUDER_RUNOUT_PREVENT)
  8902. if (ELAPSED(ms, previous_cmd_ms + (EXTRUDER_RUNOUT_SECONDS) * 1000UL)
  8903. && thermalManager.degHotend(active_extruder) > EXTRUDER_RUNOUT_MINTEMP) {
  8904. bool oldstatus;
  8905. #if ENABLED(SWITCHING_EXTRUDER)
  8906. oldstatus = E0_ENABLE_READ;
  8907. enable_e0();
  8908. #else // !SWITCHING_EXTRUDER
  8909. switch (active_extruder) {
  8910. case 0:
  8911. oldstatus = E0_ENABLE_READ;
  8912. enable_e0();
  8913. break;
  8914. #if E_STEPPERS > 1
  8915. case 1:
  8916. oldstatus = E1_ENABLE_READ;
  8917. enable_e1();
  8918. break;
  8919. #if E_STEPPERS > 2
  8920. case 2:
  8921. oldstatus = E2_ENABLE_READ;
  8922. enable_e2();
  8923. break;
  8924. #if E_STEPPERS > 3
  8925. case 3:
  8926. oldstatus = E3_ENABLE_READ;
  8927. enable_e3();
  8928. break;
  8929. #endif
  8930. #endif
  8931. #endif
  8932. }
  8933. #endif // !SWITCHING_EXTRUDER
  8934. previous_cmd_ms = ms; // refresh_cmd_timeout()
  8935. const float olde = current_position[E_AXIS];
  8936. current_position[E_AXIS] += EXTRUDER_RUNOUT_EXTRUDE;
  8937. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(EXTRUDER_RUNOUT_SPEED), active_extruder);
  8938. current_position[E_AXIS] = olde;
  8939. planner.set_e_position_mm(olde);
  8940. stepper.synchronize();
  8941. #if ENABLED(SWITCHING_EXTRUDER)
  8942. E0_ENABLE_WRITE(oldstatus);
  8943. #else
  8944. switch (active_extruder) {
  8945. case 0:
  8946. E0_ENABLE_WRITE(oldstatus);
  8947. break;
  8948. #if E_STEPPERS > 1
  8949. case 1:
  8950. E1_ENABLE_WRITE(oldstatus);
  8951. break;
  8952. #if E_STEPPERS > 2
  8953. case 2:
  8954. E2_ENABLE_WRITE(oldstatus);
  8955. break;
  8956. #if E_STEPPERS > 3
  8957. case 3:
  8958. E3_ENABLE_WRITE(oldstatus);
  8959. break;
  8960. #endif
  8961. #endif
  8962. #endif
  8963. }
  8964. #endif // !SWITCHING_EXTRUDER
  8965. }
  8966. #endif // EXTRUDER_RUNOUT_PREVENT
  8967. #if ENABLED(DUAL_X_CARRIAGE)
  8968. // handle delayed move timeout
  8969. if (delayed_move_time && ELAPSED(ms, delayed_move_time + 1000UL) && IsRunning()) {
  8970. // travel moves have been received so enact them
  8971. delayed_move_time = 0xFFFFFFFFUL; // force moves to be done
  8972. set_destination_to_current();
  8973. prepare_move_to_destination();
  8974. }
  8975. #endif
  8976. #if ENABLED(TEMP_STAT_LEDS)
  8977. handle_status_leds();
  8978. #endif
  8979. #if ENABLED(AUTOMATIC_CURRENT_CONTROL)
  8980. checkOverTemp();
  8981. #endif
  8982. planner.check_axes_activity();
  8983. }
  8984. /**
  8985. * Standard idle routine keeps the machine alive
  8986. */
  8987. void idle(
  8988. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  8989. bool no_stepper_sleep/*=false*/
  8990. #endif
  8991. ) {
  8992. lcd_update();
  8993. host_keepalive();
  8994. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  8995. auto_report_temperatures();
  8996. #endif
  8997. manage_inactivity(
  8998. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  8999. no_stepper_sleep
  9000. #endif
  9001. );
  9002. thermalManager.manage_heater();
  9003. #if ENABLED(PRINTCOUNTER)
  9004. print_job_timer.tick();
  9005. #endif
  9006. #if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
  9007. buzzer.tick();
  9008. #endif
  9009. }
  9010. /**
  9011. * Kill all activity and lock the machine.
  9012. * After this the machine will need to be reset.
  9013. */
  9014. void kill(const char* lcd_msg) {
  9015. SERIAL_ERROR_START;
  9016. SERIAL_ERRORLNPGM(MSG_ERR_KILLED);
  9017. thermalManager.disable_all_heaters();
  9018. disable_all_steppers();
  9019. #if ENABLED(ULTRA_LCD)
  9020. kill_screen(lcd_msg);
  9021. #else
  9022. UNUSED(lcd_msg);
  9023. #endif
  9024. _delay_ms(250); // Wait a short time
  9025. cli(); // Stop interrupts
  9026. _delay_ms(250); //Wait to ensure all interrupts routines stopped
  9027. thermalManager.disable_all_heaters(); //turn off heaters again
  9028. #if HAS_POWER_SWITCH
  9029. SET_INPUT(PS_ON_PIN);
  9030. #endif
  9031. suicide();
  9032. while (1) {
  9033. #if ENABLED(USE_WATCHDOG)
  9034. watchdog_reset();
  9035. #endif
  9036. } // Wait for reset
  9037. }
  9038. /**
  9039. * Turn off heaters and stop the print in progress
  9040. * After a stop the machine may be resumed with M999
  9041. */
  9042. void stop() {
  9043. thermalManager.disable_all_heaters();
  9044. if (IsRunning()) {
  9045. Running = false;
  9046. Stopped_gcode_LastN = gcode_LastN; // Save last g_code for restart
  9047. SERIAL_ERROR_START;
  9048. SERIAL_ERRORLNPGM(MSG_ERR_STOPPED);
  9049. LCD_MESSAGEPGM(MSG_STOPPED);
  9050. }
  9051. }
  9052. /**
  9053. * Marlin entry-point: Set up before the program loop
  9054. * - Set up the kill pin, filament runout, power hold
  9055. * - Start the serial port
  9056. * - Print startup messages and diagnostics
  9057. * - Get EEPROM or default settings
  9058. * - Initialize managers for:
  9059. * • temperature
  9060. * • planner
  9061. * • watchdog
  9062. * • stepper
  9063. * • photo pin
  9064. * • servos
  9065. * • LCD controller
  9066. * • Digipot I2C
  9067. * • Z probe sled
  9068. * • status LEDs
  9069. */
  9070. void setup() {
  9071. #ifdef DISABLE_JTAG
  9072. // Disable JTAG on AT90USB chips to free up pins for IO
  9073. MCUCR = 0x80;
  9074. MCUCR = 0x80;
  9075. #endif
  9076. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  9077. setup_filrunoutpin();
  9078. #endif
  9079. setup_killpin();
  9080. setup_powerhold();
  9081. #if HAS_STEPPER_RESET
  9082. disableStepperDrivers();
  9083. #endif
  9084. MYSERIAL.begin(BAUDRATE);
  9085. SERIAL_PROTOCOLLNPGM("start");
  9086. SERIAL_ECHO_START;
  9087. // Check startup - does nothing if bootloader sets MCUSR to 0
  9088. byte mcu = MCUSR;
  9089. if (mcu & 1) SERIAL_ECHOLNPGM(MSG_POWERUP);
  9090. if (mcu & 2) SERIAL_ECHOLNPGM(MSG_EXTERNAL_RESET);
  9091. if (mcu & 4) SERIAL_ECHOLNPGM(MSG_BROWNOUT_RESET);
  9092. if (mcu & 8) SERIAL_ECHOLNPGM(MSG_WATCHDOG_RESET);
  9093. if (mcu & 32) SERIAL_ECHOLNPGM(MSG_SOFTWARE_RESET);
  9094. MCUSR = 0;
  9095. SERIAL_ECHOPGM(MSG_MARLIN);
  9096. SERIAL_CHAR(' ');
  9097. SERIAL_ECHOLNPGM(SHORT_BUILD_VERSION);
  9098. SERIAL_EOL;
  9099. #if defined(STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
  9100. SERIAL_ECHO_START;
  9101. SERIAL_ECHOPGM(MSG_CONFIGURATION_VER);
  9102. SERIAL_ECHOPGM(STRING_DISTRIBUTION_DATE);
  9103. SERIAL_ECHOLNPGM(MSG_AUTHOR STRING_CONFIG_H_AUTHOR);
  9104. SERIAL_ECHOLNPGM("Compiled: " __DATE__);
  9105. #endif
  9106. SERIAL_ECHO_START;
  9107. SERIAL_ECHOPAIR(MSG_FREE_MEMORY, freeMemory());
  9108. SERIAL_ECHOLNPAIR(MSG_PLANNER_BUFFER_BYTES, (int)sizeof(block_t)*BLOCK_BUFFER_SIZE);
  9109. // Send "ok" after commands by default
  9110. for (int8_t i = 0; i < BUFSIZE; i++) send_ok[i] = true;
  9111. // Load data from EEPROM if available (or use defaults)
  9112. // This also updates variables in the planner, elsewhere
  9113. (void)Config_RetrieveSettings();
  9114. #if DISABLED(NO_WORKSPACE_OFFSETS)
  9115. // Initialize current position based on home_offset
  9116. COPY(current_position, home_offset);
  9117. #else
  9118. ZERO(current_position);
  9119. #endif
  9120. // Vital to init stepper/planner equivalent for current_position
  9121. SYNC_PLAN_POSITION_KINEMATIC();
  9122. thermalManager.init(); // Initialize temperature loop
  9123. #if ENABLED(USE_WATCHDOG)
  9124. watchdog_init();
  9125. #endif
  9126. stepper.init(); // Initialize stepper, this enables interrupts!
  9127. servo_init();
  9128. #if HAS_PHOTOGRAPH
  9129. OUT_WRITE(PHOTOGRAPH_PIN, LOW);
  9130. #endif
  9131. #if HAS_CASE_LIGHT
  9132. update_case_light();
  9133. #endif
  9134. #if HAS_BED_PROBE
  9135. endstops.enable_z_probe(false);
  9136. #endif
  9137. #if HAS_CONTROLLERFAN
  9138. SET_OUTPUT(CONTROLLERFAN_PIN); //Set pin used for driver cooling fan
  9139. #endif
  9140. #if HAS_STEPPER_RESET
  9141. enableStepperDrivers();
  9142. #endif
  9143. #if ENABLED(DIGIPOT_I2C)
  9144. digipot_i2c_init();
  9145. #endif
  9146. #if ENABLED(DAC_STEPPER_CURRENT)
  9147. dac_init();
  9148. #endif
  9149. #if ENABLED(Z_PROBE_SLED) && PIN_EXISTS(SLED)
  9150. OUT_WRITE(SLED_PIN, LOW); // turn it off
  9151. #endif // Z_PROBE_SLED
  9152. setup_homepin();
  9153. #if PIN_EXISTS(STAT_LED_RED)
  9154. OUT_WRITE(STAT_LED_RED_PIN, LOW); // turn it off
  9155. #endif
  9156. #if PIN_EXISTS(STAT_LED_BLUE)
  9157. OUT_WRITE(STAT_LED_BLUE_PIN, LOW); // turn it off
  9158. #endif
  9159. #if ENABLED(RGB_LED)
  9160. SET_OUTPUT(RGB_LED_R_PIN);
  9161. SET_OUTPUT(RGB_LED_G_PIN);
  9162. SET_OUTPUT(RGB_LED_B_PIN);
  9163. #endif
  9164. lcd_init();
  9165. #if ENABLED(SHOW_BOOTSCREEN)
  9166. #if ENABLED(DOGLCD)
  9167. safe_delay(BOOTSCREEN_TIMEOUT);
  9168. #elif ENABLED(ULTRA_LCD)
  9169. bootscreen();
  9170. #if DISABLED(SDSUPPORT)
  9171. lcd_init();
  9172. #endif
  9173. #endif
  9174. #endif
  9175. #if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
  9176. // Initialize mixing to 100% color 1
  9177. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  9178. mixing_factor[i] = (i == 0) ? 1.0 : 0.0;
  9179. for (uint8_t t = 0; t < MIXING_VIRTUAL_TOOLS; t++)
  9180. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  9181. mixing_virtual_tool_mix[t][i] = mixing_factor[i];
  9182. #endif
  9183. #if ENABLED(BLTOUCH)
  9184. bltouch_command(BLTOUCH_RESET); // Just in case the BLTouch is in the error state, try to
  9185. set_bltouch_deployed(true); // reset it. Also needs to deploy and stow to clear the
  9186. set_bltouch_deployed(false); // error condition.
  9187. #endif
  9188. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  9189. i2c.onReceive(i2c_on_receive);
  9190. i2c.onRequest(i2c_on_request);
  9191. #endif
  9192. #if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
  9193. setup_endstop_interrupts();
  9194. #endif
  9195. }
  9196. /**
  9197. * The main Marlin program loop
  9198. *
  9199. * - Save or log commands to SD
  9200. * - Process available commands (if not saving)
  9201. * - Call heater manager
  9202. * - Call inactivity manager
  9203. * - Call endstop manager
  9204. * - Call LCD update
  9205. */
  9206. void loop() {
  9207. if (commands_in_queue < BUFSIZE) get_available_commands();
  9208. #if ENABLED(SDSUPPORT)
  9209. card.checkautostart(false);
  9210. #endif
  9211. if (commands_in_queue) {
  9212. #if ENABLED(SDSUPPORT)
  9213. if (card.saving) {
  9214. char* command = command_queue[cmd_queue_index_r];
  9215. if (strstr_P(command, PSTR("M29"))) {
  9216. // M29 closes the file
  9217. card.closefile();
  9218. SERIAL_PROTOCOLLNPGM(MSG_FILE_SAVED);
  9219. ok_to_send();
  9220. }
  9221. else {
  9222. // Write the string from the read buffer to SD
  9223. card.write_command(command);
  9224. if (card.logging)
  9225. process_next_command(); // The card is saving because it's logging
  9226. else
  9227. ok_to_send();
  9228. }
  9229. }
  9230. else
  9231. process_next_command();
  9232. #else
  9233. process_next_command();
  9234. #endif // SDSUPPORT
  9235. // The queue may be reset by a command handler or by code invoked by idle() within a handler
  9236. if (commands_in_queue) {
  9237. --commands_in_queue;
  9238. cmd_queue_index_r = (cmd_queue_index_r + 1) % BUFSIZE;
  9239. }
  9240. }
  9241. endstops.report_state();
  9242. idle();
  9243. }