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

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