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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016, 2017 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * About Marlin
  24. *
  25. * This firmware is a mashup between Sprinter and grbl.
  26. * - https://github.com/kliment/Sprinter
  27. * - https://github.com/simen/grbl/tree
  28. */
  29. /**
  30. * -----------------
  31. * G-Codes in Marlin
  32. * -----------------
  33. *
  34. * Helpful G-code references:
  35. * - http://linuxcnc.org/handbook/gcode/g-code.html
  36. * - http://objects.reprap.org/wiki/Mendel_User_Manual:_RepRapGCodes
  37. *
  38. * Help to document Marlin's G-codes online:
  39. * - http://reprap.org/wiki/G-code
  40. * - https://github.com/MarlinFirmware/MarlinDocumentation
  41. *
  42. * -----------------
  43. *
  44. * "G" Codes
  45. *
  46. * G0 -> G1
  47. * G1 - Coordinated Movement X Y Z E
  48. * G2 - CW ARC
  49. * G3 - CCW ARC
  50. * G4 - Dwell S<seconds> or P<milliseconds>
  51. * G5 - Cubic B-spline with XYZE destination and IJPQ offsets
  52. * G10 - Retract filament according to settings of M207 (Requires FWRETRACT)
  53. * G11 - Retract recover filament according to settings of M208 (Requires FWRETRACT)
  54. * G12 - Clean tool (Requires NOZZLE_CLEAN_FEATURE)
  55. * G17 - Select Plane XY (Requires CNC_WORKSPACE_PLANES)
  56. * G18 - Select Plane ZX (Requires CNC_WORKSPACE_PLANES)
  57. * G19 - Select Plane YZ (Requires CNC_WORKSPACE_PLANES)
  58. * G20 - Set input units to inches (Requires INCH_MODE_SUPPORT)
  59. * G21 - Set input units to millimeters (Requires INCH_MODE_SUPPORT)
  60. * G26 - Mesh Validation Pattern (Requires G26_MESH_VALIDATION)
  61. * G27 - Park Nozzle (Requires NOZZLE_PARK_FEATURE)
  62. * G28 - Home one or more axes
  63. * G29 - Start or continue the bed leveling probe procedure (Requires bed leveling)
  64. * G30 - Single Z probe, probes bed at X Y location (defaults to current XY location)
  65. * G31 - Dock sled (Z_PROBE_SLED only)
  66. * G32 - Undock sled (Z_PROBE_SLED only)
  67. * G33 - Delta Auto-Calibration (Requires DELTA_AUTO_CALIBRATION)
  68. * G38 - Probe in any direction using the Z_MIN_PROBE (Requires G38_PROBE_TARGET)
  69. * G42 - Coordinated move to a mesh point (Requires MESH_BED_LEVELING, AUTO_BED_LEVELING_BLINEAR, or AUTO_BED_LEVELING_UBL)
  70. * G90 - Use Absolute Coordinates
  71. * G91 - Use Relative Coordinates
  72. * G92 - Set current position to coordinates given
  73. *
  74. * "M" Codes
  75. *
  76. * M0 - Unconditional stop - Wait for user to press a button on the LCD (Only if ULTRA_LCD is enabled)
  77. * M1 -> M0
  78. * M3 - Turn laser/spindle on, set spindle/laser speed/power, set rotation to clockwise
  79. * M4 - Turn laser/spindle on, set spindle/laser speed/power, set rotation to counter-clockwise
  80. * M5 - Turn laser/spindle off
  81. * M17 - Enable/Power all stepper motors
  82. * M18 - Disable all stepper motors; same as M84
  83. * M20 - List SD card. (Requires SDSUPPORT)
  84. * M21 - Init SD card. (Requires SDSUPPORT)
  85. * M22 - Release SD card. (Requires SDSUPPORT)
  86. * M23 - Select SD file: "M23 /path/file.gco". (Requires SDSUPPORT)
  87. * M24 - Start/resume SD print. (Requires SDSUPPORT)
  88. * M25 - Pause SD print. (Requires SDSUPPORT)
  89. * M26 - Set SD position in bytes: "M26 S12345". (Requires SDSUPPORT)
  90. * M27 - Report SD print status. (Requires SDSUPPORT)
  91. * M28 - Start SD write: "M28 /path/file.gco". (Requires SDSUPPORT)
  92. * M29 - Stop SD write. (Requires SDSUPPORT)
  93. * M30 - Delete file from SD: "M30 /path/file.gco"
  94. * M31 - Report time since last M109 or SD card start to serial.
  95. * M32 - Select file and start SD print: "M32 [S<bytepos>] !/path/file.gco#". (Requires SDSUPPORT)
  96. * Use P to run other files as sub-programs: "M32 P !filename#"
  97. * The '#' is necessary when calling from within sd files, as it stops buffer prereading
  98. * M33 - Get the longname version of a path. (Requires LONG_FILENAME_HOST_SUPPORT)
  99. * M34 - Set SD Card sorting options. (Requires SDCARD_SORT_ALPHA)
  100. * M42 - Change pin status via gcode: M42 P<pin> S<value>. LED pin assumed if P is omitted.
  101. * M43 - Display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
  102. * M48 - Measure Z Probe repeatability: M48 P<points> X<pos> Y<pos> V<level> E<engage> L<legs>. (Requires Z_MIN_PROBE_REPEATABILITY_TEST)
  103. * M75 - Start the print job timer.
  104. * M76 - Pause the print job timer.
  105. * M77 - Stop the print job timer.
  106. * M78 - Show statistical information about the print jobs. (Requires PRINTCOUNTER)
  107. * M80 - Turn on Power Supply. (Requires POWER_SUPPLY > 0)
  108. * M81 - Turn off Power Supply. (Requires POWER_SUPPLY > 0)
  109. * M82 - Set E codes absolute (default).
  110. * M83 - Set E codes relative while in Absolute (G90) mode.
  111. * M84 - Disable steppers until next move, or use S<seconds> to specify an idle
  112. * duration after which steppers should turn off. S0 disables the timeout.
  113. * M85 - Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
  114. * M92 - Set planner.axis_steps_per_mm for one or more axes.
  115. * M100 - Watch Free Memory (for debugging) (Requires M100_FREE_MEMORY_WATCHER)
  116. * M104 - Set extruder target temp.
  117. * M105 - Report current temperatures.
  118. * M106 - Set print fan speed.
  119. * M107 - Print fan off.
  120. * M108 - Break out of heating loops (M109, M190, M303). With no controller, breaks out of M0/M1. (Requires EMERGENCY_PARSER)
  121. * M109 - Sxxx Wait for extruder current temp to reach target temp. Waits only when heating
  122. * Rxxx Wait for extruder current temp to reach target temp. Waits when heating and cooling
  123. * If AUTOTEMP is enabled, S<mintemp> B<maxtemp> F<factor>. Exit autotemp by any M109 without F
  124. * M110 - Set the current line number. (Used by host printing)
  125. * M111 - Set debug flags: "M111 S<flagbits>". See flag bits defined in enum.h.
  126. * M112 - Emergency stop.
  127. * M113 - Get or set the timeout interval for Host Keepalive "busy" messages. (Requires HOST_KEEPALIVE_FEATURE)
  128. * M114 - Report current position.
  129. * M115 - Report capabilities. (Extended capabilities requires EXTENDED_CAPABILITIES_REPORT)
  130. * M117 - Display a message on the controller screen. (Requires an LCD)
  131. * M118 - Display a message in the host console.
  132. * M119 - Report endstops status.
  133. * M120 - Enable endstops detection.
  134. * M121 - Disable endstops detection.
  135. * M122 - Debug stepper (Requires HAVE_TMC2130)
  136. * M125 - Save current position and move to filament change position. (Requires PARK_HEAD_ON_PAUSE)
  137. * M126 - Solenoid Air Valve Open. (Requires BARICUDA)
  138. * M127 - Solenoid Air Valve Closed. (Requires BARICUDA)
  139. * M128 - EtoP Open. (Requires BARICUDA)
  140. * M129 - EtoP Closed. (Requires BARICUDA)
  141. * M140 - Set bed target temp. S<temp>
  142. * M145 - Set heatup values for materials on the LCD. H<hotend> B<bed> F<fan speed> for S<material> (0=PLA, 1=ABS)
  143. * M149 - Set temperature units. (Requires TEMPERATURE_UNITS_SUPPORT)
  144. * M150 - Set Status LED Color as R<red> U<green> B<blue> P<bright>. Values 0-255. (Requires BLINKM, RGB_LED, RGBW_LED, NEOPIXEL_LED, or PCA9632).
  145. * M155 - Auto-report temperatures with interval of S<seconds>. (Requires AUTO_REPORT_TEMPERATURES)
  146. * M163 - Set a single proportion for a mixing extruder. (Requires MIXING_EXTRUDER)
  147. * M164 - Save the mix as a virtual extruder. (Requires MIXING_EXTRUDER and MIXING_VIRTUAL_TOOLS)
  148. * M165 - Set the proportions for a mixing extruder. Use parameters ABCDHI to set the mixing factors. (Requires MIXING_EXTRUDER)
  149. * M190 - Sxxx Wait for bed current temp to reach target temp. ** Waits only when heating! **
  150. * Rxxx Wait for bed current temp to reach target temp. ** Waits for heating or cooling. **
  151. * M200 - Set filament diameter, D<diameter>, setting E axis units to cubic. (Use S0 to revert to linear units.)
  152. * M201 - Set max acceleration in units/s^2 for print moves: "M201 X<accel> Y<accel> Z<accel> E<accel>"
  153. * M202 - Set max acceleration in units/s^2 for travel moves: "M202 X<accel> Y<accel> Z<accel> E<accel>" ** UNUSED IN MARLIN! **
  154. * M203 - Set maximum feedrate: "M203 X<fr> Y<fr> Z<fr> E<fr>" in units/sec.
  155. * M204 - Set default acceleration in units/sec^2: P<printing> R<extruder_only> T<travel>
  156. * M205 - Set advanced settings. Current units apply:
  157. S<print> T<travel> minimum speeds
  158. B<minimum segment time>
  159. X<max X jerk>, Y<max Y jerk>, Z<max Z jerk>, E<max E jerk>
  160. * M206 - Set additional homing offset. (Disabled by NO_WORKSPACE_OFFSETS or DELTA)
  161. * M207 - Set Retract Length: S<length>, Feedrate: F<units/min>, and Z lift: Z<distance>. (Requires FWRETRACT)
  162. * M208 - Set Recover (unretract) Additional (!) Length: S<length> and Feedrate: F<units/min>. (Requires FWRETRACT)
  163. * M209 - Turn Automatic Retract Detection on/off: S<0|1> (For slicers that don't support G10/11). (Requires FWRETRACT)
  164. Every normal extrude-only move will be classified as retract depending on the direction.
  165. * M211 - Enable, Disable, and/or Report software endstops: S<0|1> (Requires MIN_SOFTWARE_ENDSTOPS or MAX_SOFTWARE_ENDSTOPS)
  166. * M218 - Set a tool offset: "M218 T<index> X<offset> Y<offset>". (Requires 2 or more extruders)
  167. * M220 - Set Feedrate Percentage: "M220 S<percent>" (i.e., "FR" on the LCD)
  168. * M221 - Set Flow Percentage: "M221 S<percent>"
  169. * M226 - Wait until a pin is in a given state: "M226 P<pin> S<state>"
  170. * M240 - Trigger a camera to take a photograph. (Requires CHDK or PHOTOGRAPH_PIN)
  171. * M250 - Set LCD contrast: "M250 C<contrast>" (0-63). (Requires LCD support)
  172. * M260 - i2c Send Data (Requires EXPERIMENTAL_I2CBUS)
  173. * M261 - i2c Request Data (Requires EXPERIMENTAL_I2CBUS)
  174. * M280 - Set servo position absolute: "M280 P<index> S<angle|µs>". (Requires servos)
  175. * M290 - Babystepping (Requires BABYSTEPPING)
  176. * M300 - Play beep sound S<frequency Hz> P<duration ms>
  177. * M301 - Set PID parameters P I and D. (Requires PIDTEMP)
  178. * M302 - Allow cold extrudes, or set the minimum extrude S<temperature>. (Requires PREVENT_COLD_EXTRUSION)
  179. * M303 - PID relay autotune S<temperature> sets the target temperature. Default 150C. (Requires PIDTEMP)
  180. * M304 - Set bed PID parameters P I and D. (Requires PIDTEMPBED)
  181. * M350 - Set microstepping mode. (Requires digital microstepping pins.)
  182. * M351 - Toggle MS1 MS2 pins directly. (Requires digital microstepping pins.)
  183. * M355 - Set Case Light on/off and set brightness. (Requires CASE_LIGHT_PIN)
  184. * M380 - Activate solenoid on active extruder. (Requires EXT_SOLENOID)
  185. * M381 - Disable all solenoids. (Requires EXT_SOLENOID)
  186. * M400 - Finish all moves.
  187. * M401 - Lower Z probe. (Requires a probe)
  188. * M402 - Raise Z probe. (Requires a probe)
  189. * M404 - Display or set the Nominal Filament Width: "W<diameter>". (Requires FILAMENT_WIDTH_SENSOR)
  190. * M405 - Enable Filament Sensor flow control. "M405 D<delay_cm>". (Requires FILAMENT_WIDTH_SENSOR)
  191. * M406 - Disable Filament Sensor flow control. (Requires FILAMENT_WIDTH_SENSOR)
  192. * M407 - Display measured filament diameter in millimeters. (Requires FILAMENT_WIDTH_SENSOR)
  193. * M410 - Quickstop. Abort all planned moves.
  194. * M420 - Enable/Disable Leveling (with current values) S1=enable S0=disable (Requires MESH_BED_LEVELING or ABL)
  195. * 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)
  196. * M428 - Set the home_offset based on the current_position. Nearest edge applies. (Disabled by NO_WORKSPACE_OFFSETS or DELTA)
  197. * M500 - Store parameters in EEPROM. (Requires EEPROM_SETTINGS)
  198. * M501 - Restore parameters from EEPROM. (Requires EEPROM_SETTINGS)
  199. * M502 - Revert to the default "factory settings". ** Does not write them to EEPROM! **
  200. * M503 - Print the current settings (in memory): "M503 S<verbose>". S0 specifies compact output.
  201. * M540 - Enable/disable SD card abort on endstop hit: "M540 S<state>". (Requires ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  202. * M600 - Pause for filament change: "M600 X<pos> Y<pos> Z<raise> E<first_retract> L<later_retract>". (Requires ADVANCED_PAUSE_FEATURE)
  203. * 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)
  204. * M666 - Set delta endstop adjustment. (Requires DELTA)
  205. * M605 - Set dual x-carriage movement mode: "M605 S<mode> [X<x_offset>] [R<temp_offset>]". (Requires DUAL_X_CARRIAGE)
  206. * M851 - Set Z probe's Z offset in current units. (Negative = below the nozzle.)
  207. * M852 - Set skew factors: "M852 [I<xy>] [J<xz>] [K<yz>]". (Requires SKEW_CORRECTION_GCODE, and SKEW_CORRECTION_FOR_Z for IJ)
  208. * M860 - Report the position of position encoder modules.
  209. * M861 - Report the status of position encoder modules.
  210. * M862 - Perform an axis continuity test for position encoder modules.
  211. * M863 - Perform steps-per-mm calibration for position encoder modules.
  212. * M864 - Change position encoder module I2C address.
  213. * M865 - Check position encoder module firmware version.
  214. * M866 - Report or reset position encoder module error count.
  215. * M867 - Enable/disable or toggle error correction for position encoder modules.
  216. * M868 - Report or set position encoder module error correction threshold.
  217. * M869 - Report position encoder module error.
  218. * M900 - Get and/or Set advance K factor and WH/D ratio. (Requires LIN_ADVANCE)
  219. * 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 or HAVE_TMC2208)
  220. * M907 - Set digital trimpot motor current using axis codes. (Requires a board with digital trimpots)
  221. * M908 - Control digital trimpot directly. (Requires DAC_STEPPER_CURRENT or DIGIPOTSS_PIN)
  222. * M909 - Print digipot/DAC current value. (Requires DAC_STEPPER_CURRENT)
  223. * M910 - Commit digipot/DAC value to external EEPROM via I2C. (Requires DAC_STEPPER_CURRENT)
  224. * M911 - Report stepper driver overtemperature pre-warn condition. (Requires HAVE_TMC2130 or HAVE_TMC2208)
  225. * M912 - Clear stepper driver overtemperature pre-warn condition flag. (Requires HAVE_TMC2130 or HAVE_TMC2208)
  226. * M913 - Set HYBRID_THRESHOLD speed. (Requires HYBRID_THRESHOLD)
  227. * M914 - Set SENSORLESS_HOMING sensitivity. (Requires SENSORLESS_HOMING)
  228. *
  229. * M360 - SCARA calibration: Move to cal-position ThetaA (0 deg calibration)
  230. * M361 - SCARA calibration: Move to cal-position ThetaB (90 deg calibration - steps per degree)
  231. * M362 - SCARA calibration: Move to cal-position PsiA (0 deg calibration)
  232. * M363 - SCARA calibration: Move to cal-position PsiB (90 deg calibration - steps per degree)
  233. * M364 - SCARA calibration: Move to cal-position PSIC (90 deg to Theta calibration position)
  234. *
  235. * ************ Custom codes - This can change to suit future G-code regulations
  236. * M928 - Start SD logging: "M928 filename.gco". Stop with M29. (Requires SDSUPPORT)
  237. * M999 - Restart after being stopped by error
  238. *
  239. * "T" Codes
  240. *
  241. * T0-T3 - Select an extruder (tool) by index: "T<n> F<units/min>"
  242. *
  243. */
  244. #include "Marlin.h"
  245. #include "ultralcd.h"
  246. #include "planner.h"
  247. #include "stepper.h"
  248. #include "endstops.h"
  249. #include "temperature.h"
  250. #include "cardreader.h"
  251. #include "configuration_store.h"
  252. #include "language.h"
  253. #include "pins_arduino.h"
  254. #include "math.h"
  255. #include "nozzle.h"
  256. #include "duration_t.h"
  257. #include "types.h"
  258. #include "gcode.h"
  259. #if HAS_ABL
  260. #include "vector_3.h"
  261. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  262. #include "least_squares_fit.h"
  263. #endif
  264. #elif ENABLED(MESH_BED_LEVELING)
  265. #include "mesh_bed_leveling.h"
  266. #endif
  267. #if ENABLED(BEZIER_CURVE_SUPPORT)
  268. #include "planner_bezier.h"
  269. #endif
  270. #if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
  271. #include "buzzer.h"
  272. #endif
  273. #if ENABLED(USE_WATCHDOG)
  274. #include "watchdog.h"
  275. #endif
  276. #if ENABLED(MAX7219_DEBUG)
  277. #include "Max7219_Debug_LEDs.h"
  278. #endif
  279. #if HAS_COLOR_LEDS
  280. #include "leds.h"
  281. #endif
  282. #if HAS_SERVOS
  283. #include "servo.h"
  284. #endif
  285. #if HAS_DIGIPOTSS
  286. #include <SPI.h>
  287. #endif
  288. #if ENABLED(DAC_STEPPER_CURRENT)
  289. #include "stepper_dac.h"
  290. #endif
  291. #if ENABLED(EXPERIMENTAL_I2CBUS)
  292. #include "twibus.h"
  293. #endif
  294. #if ENABLED(I2C_POSITION_ENCODERS)
  295. #include "I2CPositionEncoder.h"
  296. #endif
  297. #if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
  298. #include "endstop_interrupts.h"
  299. #endif
  300. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  301. void gcode_M100();
  302. void M100_dump_routine(const char * const title, const char *start, const char *end);
  303. #endif
  304. #if ENABLED(G26_MESH_VALIDATION)
  305. bool g26_debug_flag; // =false
  306. void gcode_G26();
  307. #endif
  308. #if ENABLED(SDSUPPORT)
  309. CardReader card;
  310. #endif
  311. #if ENABLED(EXPERIMENTAL_I2CBUS)
  312. TWIBus i2c;
  313. #endif
  314. #if ENABLED(G38_PROBE_TARGET)
  315. bool G38_move = false,
  316. G38_endstop_hit = false;
  317. #endif
  318. #if ENABLED(AUTO_BED_LEVELING_UBL)
  319. #include "ubl.h"
  320. extern bool defer_return_to_status;
  321. unified_bed_leveling ubl;
  322. #endif
  323. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  324. int8_t active_coordinate_system = -1; // machine space
  325. float coordinate_system[MAX_COORDINATE_SYSTEMS][XYZ];
  326. #endif
  327. bool Running = true;
  328. uint8_t marlin_debug_flags = DEBUG_NONE;
  329. /**
  330. * Cartesian Current Position
  331. * Used to track the native machine position as moves are queued.
  332. * Used by 'buffer_line_to_current_position' to do a move after changing it.
  333. * Used by 'SYNC_PLAN_POSITION_KINEMATIC' to update 'planner.position'.
  334. */
  335. float current_position[XYZE] = { 0.0 };
  336. /**
  337. * Cartesian Destination
  338. * The destination for a move, filled in by G-code movement commands,
  339. * and expected by functions like 'prepare_move_to_destination'.
  340. * Set with 'gcode_get_destination' or 'set_destination_from_current'.
  341. */
  342. float destination[XYZE] = { 0.0 };
  343. /**
  344. * axis_homed
  345. * Flags that each linear axis was homed.
  346. * XYZ on cartesian, ABC on delta, ABZ on SCARA.
  347. *
  348. * axis_known_position
  349. * Flags that the position is known in each linear axis. Set when homed.
  350. * Cleared whenever a stepper powers off, potentially losing its position.
  351. */
  352. bool axis_homed[XYZ] = { false }, axis_known_position[XYZ] = { false };
  353. /**
  354. * GCode line number handling. Hosts may opt to include line numbers when
  355. * sending commands to Marlin, and lines will be checked for sequentiality.
  356. * M110 N<int> sets the current line number.
  357. */
  358. static long gcode_N, gcode_LastN, Stopped_gcode_LastN = 0;
  359. /**
  360. * GCode Command Queue
  361. * A simple ring buffer of BUFSIZE command strings.
  362. *
  363. * Commands are copied into this buffer by the command injectors
  364. * (immediate, serial, sd card) and they are processed sequentially by
  365. * the main loop. The process_next_command function parses the next
  366. * command and hands off execution to individual handler functions.
  367. */
  368. uint8_t commands_in_queue = 0; // Count of commands in the queue
  369. static uint8_t cmd_queue_index_r = 0, // Ring buffer read position
  370. cmd_queue_index_w = 0; // Ring buffer write position
  371. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  372. char command_queue[BUFSIZE][MAX_CMD_SIZE]; // Necessary so M100 Free Memory Dumper can show us the commands and any corruption
  373. #else // This can be collapsed back to the way it was soon.
  374. static char command_queue[BUFSIZE][MAX_CMD_SIZE];
  375. #endif
  376. /**
  377. * Next Injected Command pointer. NULL if no commands are being injected.
  378. * Used by Marlin internally to ensure that commands initiated from within
  379. * are enqueued ahead of any pending serial or sd card commands.
  380. */
  381. static const char *injected_commands_P = NULL;
  382. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  383. TempUnit input_temp_units = TEMPUNIT_C;
  384. #endif
  385. /**
  386. * Feed rates are often configured with mm/m
  387. * but the planner and stepper like mm/s units.
  388. */
  389. static const float homing_feedrate_mm_s[] PROGMEM = {
  390. #if ENABLED(DELTA)
  391. MMM_TO_MMS(HOMING_FEEDRATE_Z), MMM_TO_MMS(HOMING_FEEDRATE_Z),
  392. #else
  393. MMM_TO_MMS(HOMING_FEEDRATE_XY), MMM_TO_MMS(HOMING_FEEDRATE_XY),
  394. #endif
  395. MMM_TO_MMS(HOMING_FEEDRATE_Z), 0
  396. };
  397. FORCE_INLINE float homing_feedrate(const AxisEnum a) { return pgm_read_float(&homing_feedrate_mm_s[a]); }
  398. float feedrate_mm_s = MMM_TO_MMS(1500.0);
  399. static float saved_feedrate_mm_s;
  400. int16_t feedrate_percentage = 100, saved_feedrate_percentage;
  401. // Initialized by settings.load()
  402. bool axis_relative_modes[] = AXIS_RELATIVE_MODES;
  403. #if HAS_WORKSPACE_OFFSET
  404. #if HAS_POSITION_SHIFT
  405. // The distance that XYZ has been offset by G92. Reset by G28.
  406. float position_shift[XYZ] = { 0 };
  407. #endif
  408. #if HAS_HOME_OFFSET
  409. // This offset is added to the configured home position.
  410. // Set by M206, M428, or menu item. Saved to EEPROM.
  411. float home_offset[XYZ] = { 0 };
  412. #endif
  413. #if HAS_HOME_OFFSET && HAS_POSITION_SHIFT
  414. // The above two are combined to save on computes
  415. float workspace_offset[XYZ] = { 0 };
  416. #endif
  417. #endif
  418. // Software Endstops are based on the configured limits.
  419. float soft_endstop_min[XYZ] = { X_MIN_BED, Y_MIN_BED, Z_MIN_POS },
  420. soft_endstop_max[XYZ] = { X_MAX_BED, Y_MAX_BED, Z_MAX_POS };
  421. #if HAS_SOFTWARE_ENDSTOPS
  422. bool soft_endstops_enabled = true;
  423. #if IS_KINEMATIC
  424. float soft_endstop_radius, soft_endstop_radius_2;
  425. #endif
  426. #endif
  427. #if FAN_COUNT > 0
  428. int16_t fanSpeeds[FAN_COUNT] = { 0 };
  429. #if ENABLED(EXTRA_FAN_SPEED)
  430. int16_t old_fanSpeeds[FAN_COUNT],
  431. new_fanSpeeds[FAN_COUNT];
  432. #endif
  433. #if ENABLED(PROBING_FANS_OFF)
  434. bool fans_paused = false;
  435. int16_t paused_fanSpeeds[FAN_COUNT] = { 0 };
  436. #endif
  437. #endif
  438. // The active extruder (tool). Set with T<extruder> command.
  439. uint8_t active_extruder = 0;
  440. // Relative Mode. Enable with G91, disable with G90.
  441. static bool relative_mode = false;
  442. // For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
  443. volatile bool wait_for_heatup = true;
  444. // For M0/M1, this flag may be cleared (by M108) to exit the wait-for-user loop
  445. #if HAS_RESUME_CONTINUE
  446. volatile bool wait_for_user = false;
  447. #endif
  448. const char axis_codes[XYZE] = { 'X', 'Y', 'Z', 'E' };
  449. // Number of characters read in the current line of serial input
  450. static int serial_count = 0;
  451. // Inactivity shutdown
  452. millis_t previous_cmd_ms = 0;
  453. static millis_t max_inactive_time = 0;
  454. static millis_t stepper_inactive_time = (DEFAULT_STEPPER_DEACTIVE_TIME) * 1000UL;
  455. // Print Job Timer
  456. #if ENABLED(PRINTCOUNTER)
  457. PrintCounter print_job_timer = PrintCounter();
  458. #else
  459. Stopwatch print_job_timer = Stopwatch();
  460. #endif
  461. // Buzzer - I2C on the LCD or a BEEPER_PIN
  462. #if ENABLED(LCD_USE_I2C_BUZZER)
  463. #define BUZZ(d,f) lcd_buzz(d, f)
  464. #elif PIN_EXISTS(BEEPER)
  465. Buzzer buzzer;
  466. #define BUZZ(d,f) buzzer.tone(d, f)
  467. #else
  468. #define BUZZ(d,f) NOOP
  469. #endif
  470. uint8_t target_extruder;
  471. #if HAS_BED_PROBE
  472. float zprobe_zoffset; // Initialized by settings.load()
  473. #endif
  474. #if HAS_ABL
  475. float xy_probe_feedrate_mm_s = MMM_TO_MMS(XY_PROBE_SPEED);
  476. #define XY_PROBE_FEEDRATE_MM_S xy_probe_feedrate_mm_s
  477. #elif defined(XY_PROBE_SPEED)
  478. #define XY_PROBE_FEEDRATE_MM_S MMM_TO_MMS(XY_PROBE_SPEED)
  479. #else
  480. #define XY_PROBE_FEEDRATE_MM_S PLANNER_XY_FEEDRATE()
  481. #endif
  482. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  483. #if ENABLED(DELTA)
  484. #define ADJUST_DELTA(V) \
  485. if (planner.leveling_active) { \
  486. const float zadj = bilinear_z_offset(V); \
  487. delta[A_AXIS] += zadj; \
  488. delta[B_AXIS] += zadj; \
  489. delta[C_AXIS] += zadj; \
  490. }
  491. #else
  492. #define ADJUST_DELTA(V) if (planner.leveling_active) { delta[Z_AXIS] += bilinear_z_offset(V); }
  493. #endif
  494. #elif IS_KINEMATIC
  495. #define ADJUST_DELTA(V) NOOP
  496. #endif
  497. #if ENABLED(X_DUAL_ENDSTOPS)
  498. float x_endstop_adj; // Initialized by settings.load()
  499. #endif
  500. #if ENABLED(Y_DUAL_ENDSTOPS)
  501. float y_endstop_adj; // Initialized by settings.load()
  502. #endif
  503. #if ENABLED(Z_DUAL_ENDSTOPS)
  504. float z_endstop_adj; // Initialized by settings.load()
  505. #endif
  506. // Extruder offsets
  507. #if HOTENDS > 1
  508. float hotend_offset[XYZ][HOTENDS]; // Initialized by settings.load()
  509. #endif
  510. #if HAS_Z_SERVO_ENDSTOP
  511. const int z_servo_angle[2] = Z_SERVO_ANGLES;
  512. #endif
  513. #if ENABLED(BARICUDA)
  514. uint8_t baricuda_valve_pressure = 0,
  515. baricuda_e_to_p_pressure = 0;
  516. #endif
  517. #if ENABLED(FWRETRACT) // Initialized by settings.load()...
  518. bool autoretract_enabled, // M209 S - Autoretract switch
  519. retracted[EXTRUDERS] = { false }; // Which extruders are currently retracted
  520. float retract_length, // M207 S - G10 Retract length
  521. retract_feedrate_mm_s, // M207 F - G10 Retract feedrate
  522. retract_zlift, // M207 Z - G10 Retract hop size
  523. retract_recover_length, // M208 S - G11 Recover length
  524. retract_recover_feedrate_mm_s, // M208 F - G11 Recover feedrate
  525. swap_retract_length, // M207 W - G10 Swap Retract length
  526. swap_retract_recover_length, // M208 W - G11 Swap Recover length
  527. swap_retract_recover_feedrate_mm_s; // M208 R - G11 Swap Recover feedrate
  528. #if EXTRUDERS > 1
  529. bool retracted_swap[EXTRUDERS] = { false }; // Which extruders are swap-retracted
  530. #else
  531. constexpr bool retracted_swap[1] = { false };
  532. #endif
  533. #endif // FWRETRACT
  534. #if HAS_POWER_SWITCH
  535. bool powersupply_on =
  536. #if ENABLED(PS_DEFAULT_OFF)
  537. false
  538. #else
  539. true
  540. #endif
  541. ;
  542. #endif
  543. #if ENABLED(DELTA)
  544. float delta[ABC];
  545. // Initialized by settings.load()
  546. float delta_height,
  547. delta_endstop_adj[ABC] = { 0 },
  548. delta_radius,
  549. delta_tower_angle_trim[ABC],
  550. delta_tower[ABC][2],
  551. delta_diagonal_rod,
  552. delta_calibration_radius,
  553. delta_diagonal_rod_2_tower[ABC],
  554. delta_segments_per_second,
  555. delta_clip_start_height = Z_MAX_POS;
  556. float delta_safe_distance_from_top();
  557. #endif
  558. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  559. int bilinear_grid_spacing[2], bilinear_start[2];
  560. float bilinear_grid_factor[2],
  561. z_values[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
  562. #endif
  563. #if IS_SCARA
  564. // Float constants for SCARA calculations
  565. const float L1 = SCARA_LINKAGE_1, L2 = SCARA_LINKAGE_2,
  566. L1_2 = sq(float(L1)), L1_2_2 = 2.0 * L1_2,
  567. L2_2 = sq(float(L2));
  568. float delta_segments_per_second = SCARA_SEGMENTS_PER_SECOND,
  569. delta[ABC];
  570. #endif
  571. float cartes[XYZ] = { 0 };
  572. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  573. bool filament_sensor = false; // M405 turns on filament sensor control. M406 turns it off.
  574. float filament_width_nominal = DEFAULT_NOMINAL_FILAMENT_DIA, // Nominal filament width. Change with M404.
  575. filament_width_meas = DEFAULT_MEASURED_FILAMENT_DIA; // Measured filament diameter
  576. uint8_t meas_delay_cm = MEASUREMENT_DELAY_CM, // Distance delay setting
  577. measurement_delay[MAX_MEASUREMENT_DELAY + 1]; // Ring buffer to delayed measurement. Store extruder factor after subtracting 100
  578. int8_t filwidth_delay_index[2] = { 0, -1 }; // Indexes into ring buffer
  579. #endif
  580. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  581. static bool filament_ran_out = false;
  582. #endif
  583. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  584. AdvancedPauseMenuResponse advanced_pause_menu_response;
  585. #endif
  586. #if ENABLED(MIXING_EXTRUDER)
  587. float mixing_factor[MIXING_STEPPERS]; // Reciprocal of mix proportion. 0.0 = off, otherwise >= 1.0.
  588. #if MIXING_VIRTUAL_TOOLS > 1
  589. float mixing_virtual_tool_mix[MIXING_VIRTUAL_TOOLS][MIXING_STEPPERS];
  590. #endif
  591. #endif
  592. static bool send_ok[BUFSIZE];
  593. #if HAS_SERVOS
  594. Servo servo[NUM_SERVOS];
  595. #define MOVE_SERVO(I, P) servo[I].move(P)
  596. #if HAS_Z_SERVO_ENDSTOP
  597. #define DEPLOY_Z_SERVO() MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[0])
  598. #define STOW_Z_SERVO() MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[1])
  599. #endif
  600. #endif
  601. #ifdef CHDK
  602. millis_t chdkHigh = 0;
  603. bool chdkActive = false;
  604. #endif
  605. #if ENABLED(PID_EXTRUSION_SCALING)
  606. int lpq_len = 20;
  607. #endif
  608. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  609. MarlinBusyState busy_state = NOT_BUSY;
  610. static millis_t next_busy_signal_ms = 0;
  611. uint8_t host_keepalive_interval = DEFAULT_KEEPALIVE_INTERVAL;
  612. #else
  613. #define host_keepalive() NOOP
  614. #endif
  615. #if ENABLED(I2C_POSITION_ENCODERS)
  616. I2CPositionEncodersMgr I2CPEM;
  617. uint8_t blockBufferIndexRef = 0;
  618. millis_t lastUpdateMillis;
  619. #endif
  620. #if ENABLED(CNC_WORKSPACE_PLANES)
  621. static WorkspacePlane workspace_plane = PLANE_XY;
  622. #endif
  623. FORCE_INLINE float pgm_read_any(const float *p) { return pgm_read_float_near(p); }
  624. FORCE_INLINE signed char pgm_read_any(const signed char *p) { return pgm_read_byte_near(p); }
  625. #define XYZ_CONSTS_FROM_CONFIG(type, array, CONFIG) \
  626. static const PROGMEM type array##_P[XYZ] = { X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
  627. static inline type array(const AxisEnum axis) { return pgm_read_any(&array##_P[axis]); } \
  628. typedef void __void_##CONFIG##__
  629. XYZ_CONSTS_FROM_CONFIG(float, base_min_pos, MIN_POS);
  630. XYZ_CONSTS_FROM_CONFIG(float, base_max_pos, MAX_POS);
  631. XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS);
  632. XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH);
  633. XYZ_CONSTS_FROM_CONFIG(float, home_bump_mm, HOME_BUMP_MM);
  634. XYZ_CONSTS_FROM_CONFIG(signed char, home_dir, HOME_DIR);
  635. /**
  636. * ***************************************************************************
  637. * ******************************** FUNCTIONS ********************************
  638. * ***************************************************************************
  639. */
  640. void stop();
  641. void get_available_commands();
  642. void process_next_command();
  643. void process_parsed_command();
  644. void prepare_move_to_destination();
  645. void get_cartesian_from_steppers();
  646. void set_current_from_steppers_for_axis(const AxisEnum axis);
  647. #if ENABLED(ARC_SUPPORT)
  648. void plan_arc(const float (&cart)[XYZE], const float (&offset)[2], const bool clockwise);
  649. #endif
  650. #if ENABLED(BEZIER_CURVE_SUPPORT)
  651. void plan_cubic_move(const float (&offset)[4]);
  652. #endif
  653. void tool_change(const uint8_t tmp_extruder, const float fr_mm_s=0.0, bool no_move=false);
  654. void report_current_position();
  655. void report_current_position_detail();
  656. #if ENABLED(DEBUG_LEVELING_FEATURE)
  657. void print_xyz(const char* prefix, const char* suffix, const float x, const float y, const float z) {
  658. serialprintPGM(prefix);
  659. SERIAL_CHAR('(');
  660. SERIAL_ECHO(x);
  661. SERIAL_ECHOPAIR(", ", y);
  662. SERIAL_ECHOPAIR(", ", z);
  663. SERIAL_CHAR(')');
  664. if (suffix) serialprintPGM(suffix); else SERIAL_EOL();
  665. }
  666. void print_xyz(const char* prefix, const char* suffix, const float xyz[]) {
  667. print_xyz(prefix, suffix, xyz[X_AXIS], xyz[Y_AXIS], xyz[Z_AXIS]);
  668. }
  669. #if HAS_ABL
  670. void print_xyz(const char* prefix, const char* suffix, const vector_3 &xyz) {
  671. print_xyz(prefix, suffix, xyz.x, xyz.y, xyz.z);
  672. }
  673. #endif
  674. #define DEBUG_POS(SUFFIX,VAR) do { \
  675. print_xyz(PSTR(" " STRINGIFY(VAR) "="), PSTR(" : " SUFFIX "\n"), VAR); }while(0)
  676. #endif
  677. /**
  678. * sync_plan_position
  679. *
  680. * Set the planner/stepper positions directly from current_position with
  681. * no kinematic translation. Used for homing axes and cartesian/core syncing.
  682. */
  683. void sync_plan_position() {
  684. #if ENABLED(DEBUG_LEVELING_FEATURE)
  685. if (DEBUGGING(LEVELING)) DEBUG_POS("sync_plan_position", current_position);
  686. #endif
  687. planner.set_position_mm(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
  688. }
  689. inline void sync_plan_position_e() { planner.set_e_position_mm(current_position[E_AXIS]); }
  690. #if IS_KINEMATIC
  691. inline void sync_plan_position_kinematic() {
  692. #if ENABLED(DEBUG_LEVELING_FEATURE)
  693. if (DEBUGGING(LEVELING)) DEBUG_POS("sync_plan_position_kinematic", current_position);
  694. #endif
  695. planner.set_position_mm_kinematic(current_position);
  696. }
  697. #define SYNC_PLAN_POSITION_KINEMATIC() sync_plan_position_kinematic()
  698. #else
  699. #define SYNC_PLAN_POSITION_KINEMATIC() sync_plan_position()
  700. #endif
  701. #if ENABLED(SDSUPPORT)
  702. #include "SdFatUtil.h"
  703. int freeMemory() { return SdFatUtil::FreeRam(); }
  704. #else
  705. extern "C" {
  706. extern char __bss_end;
  707. extern char __heap_start;
  708. extern void* __brkval;
  709. int freeMemory() {
  710. int free_memory;
  711. if ((int)__brkval == 0)
  712. free_memory = ((int)&free_memory) - ((int)&__bss_end);
  713. else
  714. free_memory = ((int)&free_memory) - ((int)__brkval);
  715. return free_memory;
  716. }
  717. }
  718. #endif // !SDSUPPORT
  719. #if ENABLED(DIGIPOT_I2C)
  720. extern void digipot_i2c_set_current(uint8_t channel, float current);
  721. extern void digipot_i2c_init();
  722. #endif
  723. /**
  724. * Inject the next "immediate" command, when possible, onto the front of the queue.
  725. * Return true if any immediate commands remain to inject.
  726. */
  727. static bool drain_injected_commands_P() {
  728. if (injected_commands_P != NULL) {
  729. size_t i = 0;
  730. char c, cmd[30];
  731. strncpy_P(cmd, injected_commands_P, sizeof(cmd) - 1);
  732. cmd[sizeof(cmd) - 1] = '\0';
  733. while ((c = cmd[i]) && c != '\n') i++; // find the end of this gcode command
  734. cmd[i] = '\0';
  735. if (enqueue_and_echo_command(cmd)) // success?
  736. injected_commands_P = c ? injected_commands_P + i + 1 : NULL; // next command or done
  737. }
  738. return (injected_commands_P != NULL); // return whether any more remain
  739. }
  740. /**
  741. * Record one or many commands to run from program memory.
  742. * Aborts the current queue, if any.
  743. * Note: drain_injected_commands_P() must be called repeatedly to drain the commands afterwards
  744. */
  745. void enqueue_and_echo_commands_P(const char * const pgcode) {
  746. injected_commands_P = pgcode;
  747. drain_injected_commands_P(); // first command executed asap (when possible)
  748. }
  749. /**
  750. * Clear the Marlin command queue
  751. */
  752. void clear_command_queue() {
  753. cmd_queue_index_r = cmd_queue_index_w;
  754. commands_in_queue = 0;
  755. }
  756. /**
  757. * Once a new command is in the ring buffer, call this to commit it
  758. */
  759. inline void _commit_command(bool say_ok) {
  760. send_ok[cmd_queue_index_w] = say_ok;
  761. if (++cmd_queue_index_w >= BUFSIZE) cmd_queue_index_w = 0;
  762. commands_in_queue++;
  763. }
  764. /**
  765. * Copy a command from RAM into the main command buffer.
  766. * Return true if the command was successfully added.
  767. * Return false for a full buffer, or if the 'command' is a comment.
  768. */
  769. inline bool _enqueuecommand(const char* cmd, bool say_ok=false) {
  770. if (*cmd == ';' || commands_in_queue >= BUFSIZE) return false;
  771. strcpy(command_queue[cmd_queue_index_w], cmd);
  772. _commit_command(say_ok);
  773. return true;
  774. }
  775. /**
  776. * Enqueue with Serial Echo
  777. */
  778. bool enqueue_and_echo_command(const char* cmd, bool say_ok/*=false*/) {
  779. if (_enqueuecommand(cmd, say_ok)) {
  780. SERIAL_ECHO_START();
  781. SERIAL_ECHOPAIR(MSG_ENQUEUEING, cmd);
  782. SERIAL_CHAR('"');
  783. SERIAL_EOL();
  784. return true;
  785. }
  786. return false;
  787. }
  788. void setup_killpin() {
  789. #if HAS_KILL
  790. SET_INPUT_PULLUP(KILL_PIN);
  791. #endif
  792. }
  793. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  794. void setup_filrunoutpin() {
  795. #if ENABLED(ENDSTOPPULLUP_FIL_RUNOUT)
  796. SET_INPUT_PULLUP(FIL_RUNOUT_PIN);
  797. #else
  798. SET_INPUT(FIL_RUNOUT_PIN);
  799. #endif
  800. }
  801. #endif
  802. void setup_powerhold() {
  803. #if HAS_SUICIDE
  804. OUT_WRITE(SUICIDE_PIN, HIGH);
  805. #endif
  806. #if HAS_POWER_SWITCH
  807. #if ENABLED(PS_DEFAULT_OFF)
  808. OUT_WRITE(PS_ON_PIN, PS_ON_ASLEEP);
  809. #else
  810. OUT_WRITE(PS_ON_PIN, PS_ON_AWAKE);
  811. #endif
  812. #endif
  813. }
  814. void suicide() {
  815. #if HAS_SUICIDE
  816. OUT_WRITE(SUICIDE_PIN, LOW);
  817. #endif
  818. }
  819. void servo_init() {
  820. #if NUM_SERVOS >= 1 && HAS_SERVO_0
  821. servo[0].attach(SERVO0_PIN);
  822. servo[0].detach(); // Just set up the pin. We don't have a position yet. Don't move to a random position.
  823. #endif
  824. #if NUM_SERVOS >= 2 && HAS_SERVO_1
  825. servo[1].attach(SERVO1_PIN);
  826. servo[1].detach();
  827. #endif
  828. #if NUM_SERVOS >= 3 && HAS_SERVO_2
  829. servo[2].attach(SERVO2_PIN);
  830. servo[2].detach();
  831. #endif
  832. #if NUM_SERVOS >= 4 && HAS_SERVO_3
  833. servo[3].attach(SERVO3_PIN);
  834. servo[3].detach();
  835. #endif
  836. #if HAS_Z_SERVO_ENDSTOP
  837. /**
  838. * Set position of Z Servo Endstop
  839. *
  840. * The servo might be deployed and positioned too low to stow
  841. * when starting up the machine or rebooting the board.
  842. * There's no way to know where the nozzle is positioned until
  843. * homing has been done - no homing with z-probe without init!
  844. *
  845. */
  846. STOW_Z_SERVO();
  847. #endif
  848. }
  849. /**
  850. * Stepper Reset (RigidBoard, et.al.)
  851. */
  852. #if HAS_STEPPER_RESET
  853. void disableStepperDrivers() {
  854. OUT_WRITE(STEPPER_RESET_PIN, LOW); // drive it down to hold in reset motor driver chips
  855. }
  856. void enableStepperDrivers() { SET_INPUT(STEPPER_RESET_PIN); } // set to input, which allows it to be pulled high by pullups
  857. #endif
  858. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  859. void i2c_on_receive(int bytes) { // just echo all bytes received to serial
  860. i2c.receive(bytes);
  861. }
  862. void i2c_on_request() { // just send dummy data for now
  863. i2c.reply("Hello World!\n");
  864. }
  865. #endif
  866. void gcode_line_error(const char* err, bool doFlush = true) {
  867. SERIAL_ERROR_START();
  868. serialprintPGM(err);
  869. SERIAL_ERRORLN(gcode_LastN);
  870. //Serial.println(gcode_N);
  871. if (doFlush) FlushSerialRequestResend();
  872. serial_count = 0;
  873. }
  874. /**
  875. * Get all commands waiting on the serial port and queue them.
  876. * Exit when the buffer is full or when no more characters are
  877. * left on the serial port.
  878. */
  879. inline void get_serial_commands() {
  880. static char serial_line_buffer[MAX_CMD_SIZE];
  881. static bool serial_comment_mode = false;
  882. // If the command buffer is empty for too long,
  883. // send "wait" to indicate Marlin is still waiting.
  884. #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
  885. static millis_t last_command_time = 0;
  886. const millis_t ms = millis();
  887. if (commands_in_queue == 0 && !MYSERIAL.available() && ELAPSED(ms, last_command_time + NO_TIMEOUTS)) {
  888. SERIAL_ECHOLNPGM(MSG_WAIT);
  889. last_command_time = ms;
  890. }
  891. #endif
  892. /**
  893. * Loop while serial characters are incoming and the queue is not full
  894. */
  895. int c;
  896. while (commands_in_queue < BUFSIZE && (c = MYSERIAL.read()) >= 0) {
  897. char serial_char = c;
  898. /**
  899. * If the character ends the line
  900. */
  901. if (serial_char == '\n' || serial_char == '\r') {
  902. serial_comment_mode = false; // end of line == end of comment
  903. if (!serial_count) continue; // Skip empty lines
  904. serial_line_buffer[serial_count] = 0; // Terminate string
  905. serial_count = 0; // Reset buffer
  906. char* command = serial_line_buffer;
  907. while (*command == ' ') command++; // Skip leading spaces
  908. char *npos = (*command == 'N') ? command : NULL; // Require the N parameter to start the line
  909. if (npos) {
  910. bool M110 = strstr_P(command, PSTR("M110")) != NULL;
  911. if (M110) {
  912. char* n2pos = strchr(command + 4, 'N');
  913. if (n2pos) npos = n2pos;
  914. }
  915. gcode_N = strtol(npos + 1, NULL, 10);
  916. if (gcode_N != gcode_LastN + 1 && !M110) {
  917. gcode_line_error(PSTR(MSG_ERR_LINE_NO));
  918. return;
  919. }
  920. char *apos = strrchr(command, '*');
  921. if (apos) {
  922. uint8_t checksum = 0, count = uint8_t(apos - command);
  923. while (count) checksum ^= command[--count];
  924. if (strtol(apos + 1, NULL, 10) != checksum) {
  925. gcode_line_error(PSTR(MSG_ERR_CHECKSUM_MISMATCH));
  926. return;
  927. }
  928. }
  929. else {
  930. gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM));
  931. return;
  932. }
  933. gcode_LastN = gcode_N;
  934. }
  935. // Movement commands alert when stopped
  936. if (IsStopped()) {
  937. char* gpos = strchr(command, 'G');
  938. if (gpos) {
  939. const int codenum = strtol(gpos + 1, NULL, 10);
  940. switch (codenum) {
  941. case 0:
  942. case 1:
  943. case 2:
  944. case 3:
  945. SERIAL_ERRORLNPGM(MSG_ERR_STOPPED);
  946. LCD_MESSAGEPGM(MSG_STOPPED);
  947. break;
  948. }
  949. }
  950. }
  951. #if DISABLED(EMERGENCY_PARSER)
  952. // If command was e-stop process now
  953. if (strcmp(command, "M108") == 0) {
  954. wait_for_heatup = false;
  955. #if ENABLED(ULTIPANEL)
  956. wait_for_user = false;
  957. #endif
  958. }
  959. if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
  960. if (strcmp(command, "M410") == 0) { quickstop_stepper(); }
  961. #endif
  962. #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
  963. last_command_time = ms;
  964. #endif
  965. // Add the command to the queue
  966. _enqueuecommand(serial_line_buffer, true);
  967. }
  968. else if (serial_count >= MAX_CMD_SIZE - 1) {
  969. // Keep fetching, but ignore normal characters beyond the max length
  970. // The command will be injected when EOL is reached
  971. }
  972. else if (serial_char == '\\') { // Handle escapes
  973. if ((c = MYSERIAL.read()) >= 0) {
  974. // if we have one more character, copy it over
  975. serial_char = c;
  976. if (!serial_comment_mode) serial_line_buffer[serial_count++] = serial_char;
  977. }
  978. // otherwise do nothing
  979. }
  980. else { // it's not a newline, carriage return or escape char
  981. if (serial_char == ';') serial_comment_mode = true;
  982. if (!serial_comment_mode) serial_line_buffer[serial_count++] = serial_char;
  983. }
  984. } // queue has space, serial has data
  985. }
  986. #if ENABLED(SDSUPPORT)
  987. /**
  988. * Get commands from the SD Card until the command buffer is full
  989. * or until the end of the file is reached. The special character '#'
  990. * can also interrupt buffering.
  991. */
  992. inline void get_sdcard_commands() {
  993. static bool stop_buffering = false,
  994. sd_comment_mode = false;
  995. if (!card.sdprinting) return;
  996. /**
  997. * '#' stops reading from SD to the buffer prematurely, so procedural
  998. * macro calls are possible. If it occurs, stop_buffering is triggered
  999. * and the buffer is run dry; this character _can_ occur in serial com
  1000. * due to checksums, however, no checksums are used in SD printing.
  1001. */
  1002. if (commands_in_queue == 0) stop_buffering = false;
  1003. uint16_t sd_count = 0;
  1004. bool card_eof = card.eof();
  1005. while (commands_in_queue < BUFSIZE && !card_eof && !stop_buffering) {
  1006. const int16_t n = card.get();
  1007. char sd_char = (char)n;
  1008. card_eof = card.eof();
  1009. if (card_eof || n == -1
  1010. || sd_char == '\n' || sd_char == '\r'
  1011. || ((sd_char == '#' || sd_char == ':') && !sd_comment_mode)
  1012. ) {
  1013. if (card_eof) {
  1014. card.printingHasFinished();
  1015. if (card.sdprinting)
  1016. sd_count = 0; // If a sub-file was printing, continue from call point
  1017. else {
  1018. SERIAL_PROTOCOLLNPGM(MSG_FILE_PRINTED);
  1019. #if ENABLED(PRINTER_EVENT_LEDS)
  1020. LCD_MESSAGEPGM(MSG_INFO_COMPLETED_PRINTS);
  1021. leds.set_green();
  1022. #if HAS_RESUME_CONTINUE
  1023. enqueue_and_echo_commands_P(PSTR("M0")); // end of the queue!
  1024. #else
  1025. safe_delay(1000);
  1026. #endif
  1027. leds.set_off();
  1028. #endif
  1029. card.checkautostart(true);
  1030. }
  1031. }
  1032. else if (n == -1) {
  1033. SERIAL_ERROR_START();
  1034. SERIAL_ECHOLNPGM(MSG_SD_ERR_READ);
  1035. }
  1036. if (sd_char == '#') stop_buffering = true;
  1037. sd_comment_mode = false; // for new command
  1038. if (!sd_count) continue; // skip empty lines (and comment lines)
  1039. command_queue[cmd_queue_index_w][sd_count] = '\0'; // terminate string
  1040. sd_count = 0; // clear sd line buffer
  1041. _commit_command(false);
  1042. }
  1043. else if (sd_count >= MAX_CMD_SIZE - 1) {
  1044. /**
  1045. * Keep fetching, but ignore normal characters beyond the max length
  1046. * The command will be injected when EOL is reached
  1047. */
  1048. }
  1049. else {
  1050. if (sd_char == ';') sd_comment_mode = true;
  1051. if (!sd_comment_mode) command_queue[cmd_queue_index_w][sd_count++] = sd_char;
  1052. }
  1053. }
  1054. }
  1055. #endif // SDSUPPORT
  1056. /**
  1057. * Add to the circular command queue the next command from:
  1058. * - The command-injection queue (injected_commands_P)
  1059. * - The active serial input (usually USB)
  1060. * - The SD card file being actively printed
  1061. */
  1062. void get_available_commands() {
  1063. // if any immediate commands remain, don't get other commands yet
  1064. if (drain_injected_commands_P()) return;
  1065. get_serial_commands();
  1066. #if ENABLED(SDSUPPORT)
  1067. get_sdcard_commands();
  1068. #endif
  1069. }
  1070. /**
  1071. * Set target_extruder from the T parameter or the active_extruder
  1072. *
  1073. * Returns TRUE if the target is invalid
  1074. */
  1075. bool get_target_extruder_from_command(const uint16_t code) {
  1076. if (parser.seenval('T')) {
  1077. const int8_t e = parser.value_byte();
  1078. if (e >= EXTRUDERS) {
  1079. SERIAL_ECHO_START();
  1080. SERIAL_CHAR('M');
  1081. SERIAL_ECHO(code);
  1082. SERIAL_ECHOLNPAIR(" " MSG_INVALID_EXTRUDER " ", e);
  1083. return true;
  1084. }
  1085. target_extruder = e;
  1086. }
  1087. else
  1088. target_extruder = active_extruder;
  1089. return false;
  1090. }
  1091. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  1092. bool extruder_duplication_enabled = false; // Used in Dual X mode 2
  1093. #endif
  1094. #if ENABLED(DUAL_X_CARRIAGE)
  1095. static DualXMode dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
  1096. static float x_home_pos(const int extruder) {
  1097. if (extruder == 0)
  1098. return base_home_pos(X_AXIS);
  1099. else
  1100. /**
  1101. * In dual carriage mode the extruder offset provides an override of the
  1102. * second X-carriage position when homed - otherwise X2_HOME_POS is used.
  1103. * This allows soft recalibration of the second extruder home position
  1104. * without firmware reflash (through the M218 command).
  1105. */
  1106. return hotend_offset[X_AXIS][1] > 0 ? hotend_offset[X_AXIS][1] : X2_HOME_POS;
  1107. }
  1108. static int x_home_dir(const int extruder) { return extruder ? X2_HOME_DIR : X_HOME_DIR; }
  1109. static float inactive_extruder_x_pos = X2_MAX_POS; // used in mode 0 & 1
  1110. static bool active_extruder_parked = false; // used in mode 1 & 2
  1111. static float raised_parked_position[XYZE]; // used in mode 1
  1112. static millis_t delayed_move_time = 0; // used in mode 1
  1113. static float duplicate_extruder_x_offset = DEFAULT_DUPLICATION_X_OFFSET; // used in mode 2
  1114. static int16_t duplicate_extruder_temp_offset = 0; // used in mode 2
  1115. #endif // DUAL_X_CARRIAGE
  1116. #if HAS_WORKSPACE_OFFSET || ENABLED(DUAL_X_CARRIAGE)
  1117. /**
  1118. * Software endstops can be used to monitor the open end of
  1119. * an axis that has a hardware endstop on the other end. Or
  1120. * they can prevent axes from moving past endstops and grinding.
  1121. *
  1122. * To keep doing their job as the coordinate system changes,
  1123. * the software endstop positions must be refreshed to remain
  1124. * at the same positions relative to the machine.
  1125. */
  1126. void update_software_endstops(const AxisEnum axis) {
  1127. #if HAS_HOME_OFFSET && HAS_POSITION_SHIFT
  1128. workspace_offset[axis] = home_offset[axis] + position_shift[axis];
  1129. #endif
  1130. #if ENABLED(DUAL_X_CARRIAGE)
  1131. if (axis == X_AXIS) {
  1132. // In Dual X mode hotend_offset[X] is T1's home position
  1133. float dual_max_x = max(hotend_offset[X_AXIS][1], X2_MAX_POS);
  1134. if (active_extruder != 0) {
  1135. // T1 can move from X2_MIN_POS to X2_MAX_POS or X2 home position (whichever is larger)
  1136. soft_endstop_min[X_AXIS] = X2_MIN_POS;
  1137. soft_endstop_max[X_AXIS] = dual_max_x;
  1138. }
  1139. else if (dual_x_carriage_mode == DXC_DUPLICATION_MODE) {
  1140. // In Duplication Mode, T0 can move as far left as X_MIN_POS
  1141. // but not so far to the right that T1 would move past the end
  1142. soft_endstop_min[X_AXIS] = base_min_pos(X_AXIS);
  1143. soft_endstop_max[X_AXIS] = min(base_max_pos(X_AXIS), dual_max_x - duplicate_extruder_x_offset);
  1144. }
  1145. else {
  1146. // In other modes, T0 can move from X_MIN_POS to X_MAX_POS
  1147. soft_endstop_min[axis] = base_min_pos(axis);
  1148. soft_endstop_max[axis] = base_max_pos(axis);
  1149. }
  1150. }
  1151. #elif ENABLED(DELTA)
  1152. soft_endstop_min[axis] = base_min_pos(axis);
  1153. soft_endstop_max[axis] = axis == Z_AXIS ? delta_height : base_max_pos(axis);
  1154. #else
  1155. soft_endstop_min[axis] = base_min_pos(axis);
  1156. soft_endstop_max[axis] = base_max_pos(axis);
  1157. #endif
  1158. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1159. if (DEBUGGING(LEVELING)) {
  1160. SERIAL_ECHOPAIR("For ", axis_codes[axis]);
  1161. #if HAS_HOME_OFFSET
  1162. SERIAL_ECHOPAIR(" axis:\n home_offset = ", home_offset[axis]);
  1163. #endif
  1164. #if HAS_POSITION_SHIFT
  1165. SERIAL_ECHOPAIR("\n position_shift = ", position_shift[axis]);
  1166. #endif
  1167. SERIAL_ECHOPAIR("\n soft_endstop_min = ", soft_endstop_min[axis]);
  1168. SERIAL_ECHOLNPAIR("\n soft_endstop_max = ", soft_endstop_max[axis]);
  1169. }
  1170. #endif
  1171. #if ENABLED(DELTA)
  1172. switch(axis) {
  1173. case X_AXIS:
  1174. case Y_AXIS:
  1175. // Get a minimum radius for clamping
  1176. soft_endstop_radius = MIN3(FABS(max(soft_endstop_min[X_AXIS], soft_endstop_min[Y_AXIS])), soft_endstop_max[X_AXIS], soft_endstop_max[Y_AXIS]);
  1177. soft_endstop_radius_2 = sq(soft_endstop_radius);
  1178. break;
  1179. case Z_AXIS:
  1180. delta_clip_start_height = soft_endstop_max[axis] - delta_safe_distance_from_top();
  1181. default: break;
  1182. }
  1183. #endif
  1184. }
  1185. #endif // HAS_WORKSPACE_OFFSET || DUAL_X_CARRIAGE
  1186. #if HAS_M206_COMMAND
  1187. /**
  1188. * Change the home offset for an axis, update the current
  1189. * position and the software endstops to retain the same
  1190. * relative distance to the new home.
  1191. *
  1192. * Since this changes the current_position, code should
  1193. * call sync_plan_position soon after this.
  1194. */
  1195. static void set_home_offset(const AxisEnum axis, const float v) {
  1196. home_offset[axis] = v;
  1197. update_software_endstops(axis);
  1198. }
  1199. #endif // HAS_M206_COMMAND
  1200. /**
  1201. * Set an axis' current position to its home position (after homing).
  1202. *
  1203. * For Core and Cartesian robots this applies one-to-one when an
  1204. * individual axis has been homed.
  1205. *
  1206. * DELTA should wait until all homing is done before setting the XYZ
  1207. * current_position to home, because homing is a single operation.
  1208. * In the case where the axis positions are already known and previously
  1209. * homed, DELTA could home to X or Y individually by moving either one
  1210. * to the center. However, homing Z always homes XY and Z.
  1211. *
  1212. * SCARA should wait until all XY homing is done before setting the XY
  1213. * current_position to home, because neither X nor Y is at home until
  1214. * both are at home. Z can however be homed individually.
  1215. *
  1216. * Callers must sync the planner position after calling this!
  1217. */
  1218. static void set_axis_is_at_home(const AxisEnum axis) {
  1219. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1220. if (DEBUGGING(LEVELING)) {
  1221. SERIAL_ECHOPAIR(">>> set_axis_is_at_home(", axis_codes[axis]);
  1222. SERIAL_CHAR(')');
  1223. SERIAL_EOL();
  1224. }
  1225. #endif
  1226. axis_known_position[axis] = axis_homed[axis] = true;
  1227. #if HAS_POSITION_SHIFT
  1228. position_shift[axis] = 0;
  1229. update_software_endstops(axis);
  1230. #endif
  1231. #if ENABLED(DUAL_X_CARRIAGE)
  1232. if (axis == X_AXIS && (active_extruder == 1 || dual_x_carriage_mode == DXC_DUPLICATION_MODE)) {
  1233. current_position[X_AXIS] = x_home_pos(active_extruder);
  1234. return;
  1235. }
  1236. #endif
  1237. #if ENABLED(MORGAN_SCARA)
  1238. /**
  1239. * Morgan SCARA homes XY at the same time
  1240. */
  1241. if (axis == X_AXIS || axis == Y_AXIS) {
  1242. float homeposition[XYZ] = {
  1243. base_home_pos(X_AXIS),
  1244. base_home_pos(Y_AXIS),
  1245. base_home_pos(Z_AXIS)
  1246. };
  1247. // SERIAL_ECHOPAIR("homeposition X:", homeposition[X_AXIS]);
  1248. // SERIAL_ECHOLNPAIR(" Y:", homeposition[Y_AXIS]);
  1249. /**
  1250. * Get Home position SCARA arm angles using inverse kinematics,
  1251. * and calculate homing offset using forward kinematics
  1252. */
  1253. inverse_kinematics(homeposition);
  1254. forward_kinematics_SCARA(delta[A_AXIS], delta[B_AXIS]);
  1255. // SERIAL_ECHOPAIR("Cartesian X:", cartes[X_AXIS]);
  1256. // SERIAL_ECHOLNPAIR(" Y:", cartes[Y_AXIS]);
  1257. current_position[axis] = cartes[axis];
  1258. /**
  1259. * SCARA home positions are based on configuration since the actual
  1260. * limits are determined by the inverse kinematic transform.
  1261. */
  1262. soft_endstop_min[axis] = base_min_pos(axis); // + (cartes[axis] - base_home_pos(axis));
  1263. soft_endstop_max[axis] = base_max_pos(axis); // + (cartes[axis] - base_home_pos(axis));
  1264. }
  1265. else
  1266. #elif ENABLED(DELTA)
  1267. if (axis == Z_AXIS)
  1268. current_position[axis] = delta_height;
  1269. else
  1270. #endif
  1271. {
  1272. current_position[axis] = base_home_pos(axis);
  1273. }
  1274. /**
  1275. * Z Probe Z Homing? Account for the probe's Z offset.
  1276. */
  1277. #if HAS_BED_PROBE && Z_HOME_DIR < 0
  1278. if (axis == Z_AXIS) {
  1279. #if HOMING_Z_WITH_PROBE
  1280. current_position[Z_AXIS] -= zprobe_zoffset;
  1281. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1282. if (DEBUGGING(LEVELING)) {
  1283. SERIAL_ECHOLNPGM("*** Z HOMED WITH PROBE (Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) ***");
  1284. SERIAL_ECHOLNPAIR("> zprobe_zoffset = ", zprobe_zoffset);
  1285. }
  1286. #endif
  1287. #elif ENABLED(DEBUG_LEVELING_FEATURE)
  1288. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("*** Z HOMED TO ENDSTOP (Z_MIN_PROBE_ENDSTOP) ***");
  1289. #endif
  1290. }
  1291. #endif
  1292. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1293. if (DEBUGGING(LEVELING)) {
  1294. #if HAS_HOME_OFFSET
  1295. SERIAL_ECHOPAIR("> home_offset[", axis_codes[axis]);
  1296. SERIAL_ECHOLNPAIR("] = ", home_offset[axis]);
  1297. #endif
  1298. DEBUG_POS("", current_position);
  1299. SERIAL_ECHOPAIR("<<< set_axis_is_at_home(", axis_codes[axis]);
  1300. SERIAL_CHAR(')');
  1301. SERIAL_EOL();
  1302. }
  1303. #endif
  1304. #if ENABLED(I2C_POSITION_ENCODERS)
  1305. I2CPEM.homed(axis);
  1306. #endif
  1307. }
  1308. /**
  1309. * Some planner shorthand inline functions
  1310. */
  1311. inline float get_homing_bump_feedrate(const AxisEnum axis) {
  1312. static const uint8_t homing_bump_divisor[] PROGMEM = HOMING_BUMP_DIVISOR;
  1313. uint8_t hbd = pgm_read_byte(&homing_bump_divisor[axis]);
  1314. if (hbd < 1) {
  1315. hbd = 10;
  1316. SERIAL_ECHO_START();
  1317. SERIAL_ECHOLNPGM("Warning: Homing Bump Divisor < 1");
  1318. }
  1319. return homing_feedrate(axis) / hbd;
  1320. }
  1321. /**
  1322. * Move the planner to the current position from wherever it last moved
  1323. * (or from wherever it has been told it is located).
  1324. */
  1325. inline void buffer_line_to_current_position() {
  1326. planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], feedrate_mm_s, active_extruder);
  1327. }
  1328. /**
  1329. * Move the planner to the position stored in the destination array, which is
  1330. * used by G0/G1/G2/G3/G5 and many other functions to set a destination.
  1331. */
  1332. inline void buffer_line_to_destination(const float fr_mm_s) {
  1333. planner.buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], fr_mm_s, active_extruder);
  1334. }
  1335. inline void set_current_from_destination() { COPY(current_position, destination); }
  1336. inline void set_destination_from_current() { COPY(destination, current_position); }
  1337. #if IS_KINEMATIC
  1338. /**
  1339. * Calculate delta, start a line, and set current_position to destination
  1340. */
  1341. void prepare_uninterpolated_move_to_destination(const float fr_mm_s=0.0) {
  1342. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1343. if (DEBUGGING(LEVELING)) DEBUG_POS("prepare_uninterpolated_move_to_destination", destination);
  1344. #endif
  1345. refresh_cmd_timeout();
  1346. #if UBL_SEGMENTED
  1347. // ubl segmented line will do z-only moves in single segment
  1348. ubl.prepare_segmented_line_to(destination, MMS_SCALED(fr_mm_s ? fr_mm_s : feedrate_mm_s));
  1349. #else
  1350. if ( current_position[X_AXIS] == destination[X_AXIS]
  1351. && current_position[Y_AXIS] == destination[Y_AXIS]
  1352. && current_position[Z_AXIS] == destination[Z_AXIS]
  1353. && current_position[E_AXIS] == destination[E_AXIS]
  1354. ) return;
  1355. planner.buffer_line_kinematic(destination, MMS_SCALED(fr_mm_s ? fr_mm_s : feedrate_mm_s), active_extruder);
  1356. #endif
  1357. set_current_from_destination();
  1358. }
  1359. #endif // IS_KINEMATIC
  1360. /**
  1361. * Plan a move to (X, Y, Z) and set the current_position
  1362. * The final current_position may not be the one that was requested
  1363. */
  1364. void do_blocking_move_to(const float &rx, const float &ry, const float &rz, const float &fr_mm_s/*=0.0*/) {
  1365. const float old_feedrate_mm_s = feedrate_mm_s;
  1366. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1367. if (DEBUGGING(LEVELING)) print_xyz(PSTR(">>> do_blocking_move_to"), NULL, LOGICAL_X_POSITION(rx), LOGICAL_Y_POSITION(ry), LOGICAL_Z_POSITION(rz));
  1368. #endif
  1369. const float z_feedrate = fr_mm_s ? fr_mm_s : homing_feedrate(Z_AXIS);
  1370. #if ENABLED(DELTA)
  1371. if (!position_is_reachable(rx, ry)) return;
  1372. feedrate_mm_s = fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  1373. set_destination_from_current(); // sync destination at the start
  1374. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1375. if (DEBUGGING(LEVELING)) DEBUG_POS("set_destination_from_current", destination);
  1376. #endif
  1377. // when in the danger zone
  1378. if (current_position[Z_AXIS] > delta_clip_start_height) {
  1379. if (rz > delta_clip_start_height) { // staying in the danger zone
  1380. destination[X_AXIS] = rx; // move directly (uninterpolated)
  1381. destination[Y_AXIS] = ry;
  1382. destination[Z_AXIS] = rz;
  1383. prepare_uninterpolated_move_to_destination(); // set_current_from_destination
  1384. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1385. if (DEBUGGING(LEVELING)) DEBUG_POS("danger zone move", current_position);
  1386. #endif
  1387. return;
  1388. }
  1389. destination[Z_AXIS] = delta_clip_start_height;
  1390. prepare_uninterpolated_move_to_destination(); // set_current_from_destination
  1391. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1392. if (DEBUGGING(LEVELING)) DEBUG_POS("zone border move", current_position);
  1393. #endif
  1394. }
  1395. if (rz > current_position[Z_AXIS]) { // raising?
  1396. destination[Z_AXIS] = rz;
  1397. prepare_uninterpolated_move_to_destination(z_feedrate); // set_current_from_destination
  1398. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1399. if (DEBUGGING(LEVELING)) DEBUG_POS("z raise move", current_position);
  1400. #endif
  1401. }
  1402. destination[X_AXIS] = rx;
  1403. destination[Y_AXIS] = ry;
  1404. prepare_move_to_destination(); // set_current_from_destination
  1405. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1406. if (DEBUGGING(LEVELING)) DEBUG_POS("xy move", current_position);
  1407. #endif
  1408. if (rz < current_position[Z_AXIS]) { // lowering?
  1409. destination[Z_AXIS] = rz;
  1410. prepare_uninterpolated_move_to_destination(z_feedrate); // set_current_from_destination
  1411. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1412. if (DEBUGGING(LEVELING)) DEBUG_POS("z lower move", current_position);
  1413. #endif
  1414. }
  1415. #elif IS_SCARA
  1416. if (!position_is_reachable(rx, ry)) return;
  1417. set_destination_from_current();
  1418. // If Z needs to raise, do it before moving XY
  1419. if (destination[Z_AXIS] < rz) {
  1420. destination[Z_AXIS] = rz;
  1421. prepare_uninterpolated_move_to_destination(z_feedrate);
  1422. }
  1423. destination[X_AXIS] = rx;
  1424. destination[Y_AXIS] = ry;
  1425. prepare_uninterpolated_move_to_destination(fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S);
  1426. // If Z needs to lower, do it after moving XY
  1427. if (destination[Z_AXIS] > rz) {
  1428. destination[Z_AXIS] = rz;
  1429. prepare_uninterpolated_move_to_destination(z_feedrate);
  1430. }
  1431. #else
  1432. // If Z needs to raise, do it before moving XY
  1433. if (current_position[Z_AXIS] < rz) {
  1434. feedrate_mm_s = z_feedrate;
  1435. current_position[Z_AXIS] = rz;
  1436. buffer_line_to_current_position();
  1437. }
  1438. feedrate_mm_s = fr_mm_s ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  1439. current_position[X_AXIS] = rx;
  1440. current_position[Y_AXIS] = ry;
  1441. buffer_line_to_current_position();
  1442. // If Z needs to lower, do it after moving XY
  1443. if (current_position[Z_AXIS] > rz) {
  1444. feedrate_mm_s = z_feedrate;
  1445. current_position[Z_AXIS] = rz;
  1446. buffer_line_to_current_position();
  1447. }
  1448. #endif
  1449. stepper.synchronize();
  1450. feedrate_mm_s = old_feedrate_mm_s;
  1451. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1452. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< do_blocking_move_to");
  1453. #endif
  1454. }
  1455. void do_blocking_move_to_x(const float &rx, const float &fr_mm_s/*=0.0*/) {
  1456. do_blocking_move_to(rx, current_position[Y_AXIS], current_position[Z_AXIS], fr_mm_s);
  1457. }
  1458. void do_blocking_move_to_z(const float &rz, const float &fr_mm_s/*=0.0*/) {
  1459. do_blocking_move_to(current_position[X_AXIS], current_position[Y_AXIS], rz, fr_mm_s);
  1460. }
  1461. void do_blocking_move_to_xy(const float &rx, const float &ry, const float &fr_mm_s/*=0.0*/) {
  1462. do_blocking_move_to(rx, ry, current_position[Z_AXIS], fr_mm_s);
  1463. }
  1464. //
  1465. // Prepare to do endstop or probe moves
  1466. // with custom feedrates.
  1467. //
  1468. // - Save current feedrates
  1469. // - Reset the rate multiplier
  1470. // - Reset the command timeout
  1471. // - Enable the endstops (for endstop moves)
  1472. //
  1473. static void setup_for_endstop_or_probe_move() {
  1474. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1475. if (DEBUGGING(LEVELING)) DEBUG_POS("setup_for_endstop_or_probe_move", current_position);
  1476. #endif
  1477. saved_feedrate_mm_s = feedrate_mm_s;
  1478. saved_feedrate_percentage = feedrate_percentage;
  1479. feedrate_percentage = 100;
  1480. refresh_cmd_timeout();
  1481. }
  1482. static void clean_up_after_endstop_or_probe_move() {
  1483. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1484. if (DEBUGGING(LEVELING)) DEBUG_POS("clean_up_after_endstop_or_probe_move", current_position);
  1485. #endif
  1486. feedrate_mm_s = saved_feedrate_mm_s;
  1487. feedrate_percentage = saved_feedrate_percentage;
  1488. refresh_cmd_timeout();
  1489. }
  1490. #if HAS_BED_PROBE
  1491. /**
  1492. * Raise Z to a minimum height to make room for a probe to move
  1493. */
  1494. inline void do_probe_raise(const float z_raise) {
  1495. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1496. if (DEBUGGING(LEVELING)) {
  1497. SERIAL_ECHOPAIR("do_probe_raise(", z_raise);
  1498. SERIAL_CHAR(')');
  1499. SERIAL_EOL();
  1500. }
  1501. #endif
  1502. float z_dest = z_raise;
  1503. if (zprobe_zoffset < 0) z_dest -= zprobe_zoffset;
  1504. if (z_dest > current_position[Z_AXIS])
  1505. do_blocking_move_to_z(z_dest);
  1506. }
  1507. #endif // HAS_BED_PROBE
  1508. #if HAS_AXIS_UNHOMED_ERR
  1509. bool axis_unhomed_error(const bool x/*=true*/, const bool y/*=true*/, const bool z/*=true*/) {
  1510. #if ENABLED(HOME_AFTER_DEACTIVATE)
  1511. const bool xx = x && !axis_known_position[X_AXIS],
  1512. yy = y && !axis_known_position[Y_AXIS],
  1513. zz = z && !axis_known_position[Z_AXIS];
  1514. #else
  1515. const bool xx = x && !axis_homed[X_AXIS],
  1516. yy = y && !axis_homed[Y_AXIS],
  1517. zz = z && !axis_homed[Z_AXIS];
  1518. #endif
  1519. if (xx || yy || zz) {
  1520. SERIAL_ECHO_START();
  1521. SERIAL_ECHOPGM(MSG_HOME " ");
  1522. if (xx) SERIAL_ECHOPGM(MSG_X);
  1523. if (yy) SERIAL_ECHOPGM(MSG_Y);
  1524. if (zz) SERIAL_ECHOPGM(MSG_Z);
  1525. SERIAL_ECHOLNPGM(" " MSG_FIRST);
  1526. #if ENABLED(ULTRA_LCD)
  1527. lcd_status_printf_P(0, PSTR(MSG_HOME " %s%s%s " MSG_FIRST), xx ? MSG_X : "", yy ? MSG_Y : "", zz ? MSG_Z : "");
  1528. #endif
  1529. return true;
  1530. }
  1531. return false;
  1532. }
  1533. #endif // HAS_AXIS_UNHOMED_ERR
  1534. #if ENABLED(Z_PROBE_SLED)
  1535. #ifndef SLED_DOCKING_OFFSET
  1536. #define SLED_DOCKING_OFFSET 0
  1537. #endif
  1538. /**
  1539. * Method to dock/undock a sled designed by Charles Bell.
  1540. *
  1541. * stow[in] If false, move to MAX_X and engage the solenoid
  1542. * If true, move to MAX_X and release the solenoid
  1543. */
  1544. static void dock_sled(bool stow) {
  1545. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1546. if (DEBUGGING(LEVELING)) {
  1547. SERIAL_ECHOPAIR("dock_sled(", stow);
  1548. SERIAL_CHAR(')');
  1549. SERIAL_EOL();
  1550. }
  1551. #endif
  1552. // Dock sled a bit closer to ensure proper capturing
  1553. do_blocking_move_to_x(X_MAX_POS + SLED_DOCKING_OFFSET - ((stow) ? 1 : 0));
  1554. #if HAS_SOLENOID_1 && DISABLED(EXT_SOLENOID)
  1555. WRITE(SOL1_PIN, !stow); // switch solenoid
  1556. #endif
  1557. }
  1558. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  1559. FORCE_INLINE void do_blocking_move_to(const float (&raw)[XYZ], const float &fr_mm_s) {
  1560. do_blocking_move_to(raw[X_AXIS], raw[Y_AXIS], raw[Z_AXIS], fr_mm_s);
  1561. }
  1562. void run_deploy_moves_script() {
  1563. #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)
  1564. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_X
  1565. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_X current_position[X_AXIS]
  1566. #endif
  1567. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_Y
  1568. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_Y current_position[Y_AXIS]
  1569. #endif
  1570. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_Z
  1571. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_Z current_position[Z_AXIS]
  1572. #endif
  1573. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE
  1574. #define Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE 0.0
  1575. #endif
  1576. const float deploy_1[] = { Z_PROBE_ALLEN_KEY_DEPLOY_1_X, Z_PROBE_ALLEN_KEY_DEPLOY_1_Y, Z_PROBE_ALLEN_KEY_DEPLOY_1_Z };
  1577. do_blocking_move_to(deploy_1, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_1_FEEDRATE));
  1578. #endif
  1579. #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)
  1580. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_X
  1581. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_X current_position[X_AXIS]
  1582. #endif
  1583. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_Y
  1584. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Y current_position[Y_AXIS]
  1585. #endif
  1586. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_Z
  1587. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Z current_position[Z_AXIS]
  1588. #endif
  1589. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE
  1590. #define Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE 0.0
  1591. #endif
  1592. const float deploy_2[] = { Z_PROBE_ALLEN_KEY_DEPLOY_2_X, Z_PROBE_ALLEN_KEY_DEPLOY_2_Y, Z_PROBE_ALLEN_KEY_DEPLOY_2_Z };
  1593. do_blocking_move_to(deploy_2, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE));
  1594. #endif
  1595. #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)
  1596. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_X
  1597. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_X current_position[X_AXIS]
  1598. #endif
  1599. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_Y
  1600. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Y current_position[Y_AXIS]
  1601. #endif
  1602. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_Z
  1603. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Z current_position[Z_AXIS]
  1604. #endif
  1605. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE
  1606. #define Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE 0.0
  1607. #endif
  1608. const float deploy_3[] = { Z_PROBE_ALLEN_KEY_DEPLOY_3_X, Z_PROBE_ALLEN_KEY_DEPLOY_3_Y, Z_PROBE_ALLEN_KEY_DEPLOY_3_Z };
  1609. do_blocking_move_to(deploy_3, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_3_FEEDRATE));
  1610. #endif
  1611. #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)
  1612. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_X
  1613. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_X current_position[X_AXIS]
  1614. #endif
  1615. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_Y
  1616. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_Y current_position[Y_AXIS]
  1617. #endif
  1618. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_Z
  1619. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_Z current_position[Z_AXIS]
  1620. #endif
  1621. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE
  1622. #define Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE 0.0
  1623. #endif
  1624. const float deploy_4[] = { Z_PROBE_ALLEN_KEY_DEPLOY_4_X, Z_PROBE_ALLEN_KEY_DEPLOY_4_Y, Z_PROBE_ALLEN_KEY_DEPLOY_4_Z };
  1625. do_blocking_move_to(deploy_4, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_4_FEEDRATE));
  1626. #endif
  1627. #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)
  1628. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_X
  1629. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_X current_position[X_AXIS]
  1630. #endif
  1631. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_Y
  1632. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_Y current_position[Y_AXIS]
  1633. #endif
  1634. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_Z
  1635. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_Z current_position[Z_AXIS]
  1636. #endif
  1637. #ifndef Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE
  1638. #define Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE 0.0
  1639. #endif
  1640. const float deploy_5[] = { Z_PROBE_ALLEN_KEY_DEPLOY_5_X, Z_PROBE_ALLEN_KEY_DEPLOY_5_Y, Z_PROBE_ALLEN_KEY_DEPLOY_5_Z };
  1641. do_blocking_move_to(deploy_5, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_DEPLOY_5_FEEDRATE));
  1642. #endif
  1643. }
  1644. void run_stow_moves_script() {
  1645. #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)
  1646. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_X
  1647. #define Z_PROBE_ALLEN_KEY_STOW_1_X current_position[X_AXIS]
  1648. #endif
  1649. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_Y
  1650. #define Z_PROBE_ALLEN_KEY_STOW_1_Y current_position[Y_AXIS]
  1651. #endif
  1652. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_Z
  1653. #define Z_PROBE_ALLEN_KEY_STOW_1_Z current_position[Z_AXIS]
  1654. #endif
  1655. #ifndef Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE
  1656. #define Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE 0.0
  1657. #endif
  1658. const float stow_1[] = { Z_PROBE_ALLEN_KEY_STOW_1_X, Z_PROBE_ALLEN_KEY_STOW_1_Y, Z_PROBE_ALLEN_KEY_STOW_1_Z };
  1659. do_blocking_move_to(stow_1, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_1_FEEDRATE));
  1660. #endif
  1661. #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)
  1662. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_X
  1663. #define Z_PROBE_ALLEN_KEY_STOW_2_X current_position[X_AXIS]
  1664. #endif
  1665. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_Y
  1666. #define Z_PROBE_ALLEN_KEY_STOW_2_Y current_position[Y_AXIS]
  1667. #endif
  1668. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_Z
  1669. #define Z_PROBE_ALLEN_KEY_STOW_2_Z current_position[Z_AXIS]
  1670. #endif
  1671. #ifndef Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE
  1672. #define Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE 0.0
  1673. #endif
  1674. const float stow_2[] = { Z_PROBE_ALLEN_KEY_STOW_2_X, Z_PROBE_ALLEN_KEY_STOW_2_Y, Z_PROBE_ALLEN_KEY_STOW_2_Z };
  1675. do_blocking_move_to(stow_2, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_2_FEEDRATE));
  1676. #endif
  1677. #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)
  1678. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_X
  1679. #define Z_PROBE_ALLEN_KEY_STOW_3_X current_position[X_AXIS]
  1680. #endif
  1681. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_Y
  1682. #define Z_PROBE_ALLEN_KEY_STOW_3_Y current_position[Y_AXIS]
  1683. #endif
  1684. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_Z
  1685. #define Z_PROBE_ALLEN_KEY_STOW_3_Z current_position[Z_AXIS]
  1686. #endif
  1687. #ifndef Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE
  1688. #define Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE 0.0
  1689. #endif
  1690. const float stow_3[] = { Z_PROBE_ALLEN_KEY_STOW_3_X, Z_PROBE_ALLEN_KEY_STOW_3_Y, Z_PROBE_ALLEN_KEY_STOW_3_Z };
  1691. do_blocking_move_to(stow_3, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE));
  1692. #endif
  1693. #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)
  1694. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_X
  1695. #define Z_PROBE_ALLEN_KEY_STOW_4_X current_position[X_AXIS]
  1696. #endif
  1697. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_Y
  1698. #define Z_PROBE_ALLEN_KEY_STOW_4_Y current_position[Y_AXIS]
  1699. #endif
  1700. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_Z
  1701. #define Z_PROBE_ALLEN_KEY_STOW_4_Z current_position[Z_AXIS]
  1702. #endif
  1703. #ifndef Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE
  1704. #define Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE 0.0
  1705. #endif
  1706. const float stow_4[] = { Z_PROBE_ALLEN_KEY_STOW_4_X, Z_PROBE_ALLEN_KEY_STOW_4_Y, Z_PROBE_ALLEN_KEY_STOW_4_Z };
  1707. do_blocking_move_to(stow_4, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_4_FEEDRATE));
  1708. #endif
  1709. #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)
  1710. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_X
  1711. #define Z_PROBE_ALLEN_KEY_STOW_5_X current_position[X_AXIS]
  1712. #endif
  1713. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_Y
  1714. #define Z_PROBE_ALLEN_KEY_STOW_5_Y current_position[Y_AXIS]
  1715. #endif
  1716. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_Z
  1717. #define Z_PROBE_ALLEN_KEY_STOW_5_Z current_position[Z_AXIS]
  1718. #endif
  1719. #ifndef Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE
  1720. #define Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE 0.0
  1721. #endif
  1722. const float stow_5[] = { Z_PROBE_ALLEN_KEY_STOW_5_X, Z_PROBE_ALLEN_KEY_STOW_5_Y, Z_PROBE_ALLEN_KEY_STOW_5_Z };
  1723. do_blocking_move_to(stow_5, MMM_TO_MMS(Z_PROBE_ALLEN_KEY_STOW_5_FEEDRATE));
  1724. #endif
  1725. }
  1726. #endif // Z_PROBE_ALLEN_KEY
  1727. #if ENABLED(PROBING_FANS_OFF)
  1728. void fans_pause(const bool p) {
  1729. if (p != fans_paused) {
  1730. fans_paused = p;
  1731. if (p)
  1732. for (uint8_t x = 0; x < FAN_COUNT; x++) {
  1733. paused_fanSpeeds[x] = fanSpeeds[x];
  1734. fanSpeeds[x] = 0;
  1735. }
  1736. else
  1737. for (uint8_t x = 0; x < FAN_COUNT; x++)
  1738. fanSpeeds[x] = paused_fanSpeeds[x];
  1739. }
  1740. }
  1741. #endif // PROBING_FANS_OFF
  1742. #if HAS_BED_PROBE
  1743. // TRIGGERED_WHEN_STOWED_TEST can easily be extended to servo probes, ... if needed.
  1744. #if ENABLED(PROBE_IS_TRIGGERED_WHEN_STOWED_TEST)
  1745. #if ENABLED(Z_MIN_PROBE_ENDSTOP)
  1746. #define _TRIGGERED_WHEN_STOWED_TEST (READ(Z_MIN_PROBE_PIN) != Z_MIN_PROBE_ENDSTOP_INVERTING)
  1747. #else
  1748. #define _TRIGGERED_WHEN_STOWED_TEST (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING)
  1749. #endif
  1750. #endif
  1751. #if QUIET_PROBING
  1752. void probing_pause(const bool p) {
  1753. #if ENABLED(PROBING_HEATERS_OFF)
  1754. thermalManager.pause(p);
  1755. #endif
  1756. #if ENABLED(PROBING_FANS_OFF)
  1757. fans_pause(p);
  1758. #endif
  1759. if (p) safe_delay(
  1760. #if DELAY_BEFORE_PROBING > 25
  1761. DELAY_BEFORE_PROBING
  1762. #else
  1763. 25
  1764. #endif
  1765. );
  1766. }
  1767. #endif // QUIET_PROBING
  1768. #if ENABLED(BLTOUCH)
  1769. void bltouch_command(int angle) {
  1770. MOVE_SERVO(Z_ENDSTOP_SERVO_NR, angle); // Give the BL-Touch the command and wait
  1771. safe_delay(BLTOUCH_DELAY);
  1772. }
  1773. bool set_bltouch_deployed(const bool deploy) {
  1774. if (deploy && TEST_BLTOUCH()) { // If BL-Touch says it's triggered
  1775. bltouch_command(BLTOUCH_RESET); // try to reset it.
  1776. bltouch_command(BLTOUCH_DEPLOY); // Also needs to deploy and stow to
  1777. bltouch_command(BLTOUCH_STOW); // clear the triggered condition.
  1778. safe_delay(1500); // Wait for internal self-test to complete.
  1779. // (Measured completion time was 0.65 seconds
  1780. // after reset, deploy, and stow sequence)
  1781. if (TEST_BLTOUCH()) { // If it still claims to be triggered...
  1782. SERIAL_ERROR_START();
  1783. SERIAL_ERRORLNPGM(MSG_STOP_BLTOUCH);
  1784. stop(); // punt!
  1785. return true;
  1786. }
  1787. }
  1788. bltouch_command(deploy ? BLTOUCH_DEPLOY : BLTOUCH_STOW);
  1789. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1790. if (DEBUGGING(LEVELING)) {
  1791. SERIAL_ECHOPAIR("set_bltouch_deployed(", deploy);
  1792. SERIAL_CHAR(')');
  1793. SERIAL_EOL();
  1794. }
  1795. #endif
  1796. return false;
  1797. }
  1798. #endif // BLTOUCH
  1799. // returns false for ok and true for failure
  1800. bool set_probe_deployed(bool deploy) {
  1801. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1802. if (DEBUGGING(LEVELING)) {
  1803. DEBUG_POS("set_probe_deployed", current_position);
  1804. SERIAL_ECHOLNPAIR("deploy: ", deploy);
  1805. }
  1806. #endif
  1807. if (endstops.z_probe_enabled == deploy) return false;
  1808. // Make room for probe
  1809. do_probe_raise(_Z_CLEARANCE_DEPLOY_PROBE);
  1810. #if ENABLED(Z_PROBE_SLED) || ENABLED(Z_PROBE_ALLEN_KEY)
  1811. #if ENABLED(Z_PROBE_SLED)
  1812. #define _AUE_ARGS true, false, false
  1813. #else
  1814. #define _AUE_ARGS
  1815. #endif
  1816. if (axis_unhomed_error(_AUE_ARGS)) {
  1817. SERIAL_ERROR_START();
  1818. SERIAL_ERRORLNPGM(MSG_STOP_UNHOMED);
  1819. stop();
  1820. return true;
  1821. }
  1822. #endif
  1823. const float oldXpos = current_position[X_AXIS],
  1824. oldYpos = current_position[Y_AXIS];
  1825. #ifdef _TRIGGERED_WHEN_STOWED_TEST
  1826. // If endstop is already false, the Z probe is deployed
  1827. if (_TRIGGERED_WHEN_STOWED_TEST == deploy) { // closed after the probe specific actions.
  1828. // Would a goto be less ugly?
  1829. //while (!_TRIGGERED_WHEN_STOWED_TEST) idle(); // would offer the opportunity
  1830. // for a triggered when stowed manual probe.
  1831. if (!deploy) endstops.enable_z_probe(false); // Switch off triggered when stowed probes early
  1832. // otherwise an Allen-Key probe can't be stowed.
  1833. #endif
  1834. #if ENABLED(SOLENOID_PROBE)
  1835. #if HAS_SOLENOID_1
  1836. WRITE(SOL1_PIN, deploy);
  1837. #endif
  1838. #elif ENABLED(Z_PROBE_SLED)
  1839. dock_sled(!deploy);
  1840. #elif HAS_Z_SERVO_ENDSTOP && DISABLED(BLTOUCH)
  1841. MOVE_SERVO(Z_ENDSTOP_SERVO_NR, z_servo_angle[deploy ? 0 : 1]);
  1842. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  1843. deploy ? run_deploy_moves_script() : run_stow_moves_script();
  1844. #endif
  1845. #ifdef _TRIGGERED_WHEN_STOWED_TEST
  1846. } // _TRIGGERED_WHEN_STOWED_TEST == deploy
  1847. if (_TRIGGERED_WHEN_STOWED_TEST == deploy) { // State hasn't changed?
  1848. if (IsRunning()) {
  1849. SERIAL_ERROR_START();
  1850. SERIAL_ERRORLNPGM("Z-Probe failed");
  1851. LCD_ALERTMESSAGEPGM("Err: ZPROBE");
  1852. }
  1853. stop();
  1854. return true;
  1855. } // _TRIGGERED_WHEN_STOWED_TEST == deploy
  1856. #endif
  1857. do_blocking_move_to(oldXpos, oldYpos, current_position[Z_AXIS]); // return to position before deploy
  1858. endstops.enable_z_probe(deploy);
  1859. return false;
  1860. }
  1861. /**
  1862. * @brief Used by run_z_probe to do a single Z probe move.
  1863. *
  1864. * @param z Z destination
  1865. * @param fr_mm_s Feedrate in mm/s
  1866. * @return true to indicate an error
  1867. */
  1868. static bool do_probe_move(const float z, const float fr_mm_m) {
  1869. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1870. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> do_probe_move", current_position);
  1871. #endif
  1872. // Deploy BLTouch at the start of any probe
  1873. #if ENABLED(BLTOUCH)
  1874. if (set_bltouch_deployed(true)) return true;
  1875. #endif
  1876. #if QUIET_PROBING
  1877. probing_pause(true);
  1878. #endif
  1879. // Move down until probe triggered
  1880. do_blocking_move_to_z(z, MMM_TO_MMS(fr_mm_m));
  1881. // Check to see if the probe was triggered
  1882. const bool probe_triggered = TEST(Endstops::endstop_hit_bits,
  1883. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  1884. Z_MIN
  1885. #else
  1886. Z_MIN_PROBE
  1887. #endif
  1888. );
  1889. #if QUIET_PROBING
  1890. probing_pause(false);
  1891. #endif
  1892. // Retract BLTouch immediately after a probe if it was triggered
  1893. #if ENABLED(BLTOUCH)
  1894. if (probe_triggered && set_bltouch_deployed(false)) return true;
  1895. #endif
  1896. // Clear endstop flags
  1897. endstops.hit_on_purpose();
  1898. // Get Z where the steppers were interrupted
  1899. set_current_from_steppers_for_axis(Z_AXIS);
  1900. // Tell the planner where we actually are
  1901. SYNC_PLAN_POSITION_KINEMATIC();
  1902. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1903. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< do_probe_move", current_position);
  1904. #endif
  1905. return !probe_triggered;
  1906. }
  1907. /**
  1908. * @details Used by probe_pt to do a single Z probe at the current position.
  1909. * Leaves current_position[Z_AXIS] at the height where the probe triggered.
  1910. *
  1911. * @return The raw Z position where the probe was triggered
  1912. */
  1913. static float run_z_probe() {
  1914. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1915. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> run_z_probe", current_position);
  1916. #endif
  1917. // Prevent stepper_inactive_time from running out and EXTRUDER_RUNOUT_PREVENT from extruding
  1918. refresh_cmd_timeout();
  1919. // Double-probing does a fast probe followed by a slow probe
  1920. #if MULTIPLE_PROBING == 2
  1921. // Do a first probe at the fast speed
  1922. if (do_probe_move(-10, Z_PROBE_SPEED_FAST)) return NAN;
  1923. float first_probe_z = current_position[Z_AXIS];
  1924. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1925. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("1st Probe Z:", first_probe_z);
  1926. #endif
  1927. // move up to make clearance for the probe
  1928. do_blocking_move_to_z(current_position[Z_AXIS] + Z_CLEARANCE_BETWEEN_PROBES, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  1929. #else
  1930. // If the nozzle is above the travel height then
  1931. // move down quickly before doing the slow probe
  1932. float z = Z_CLEARANCE_DEPLOY_PROBE;
  1933. if (zprobe_zoffset < 0) z -= zprobe_zoffset;
  1934. if (z < current_position[Z_AXIS]) {
  1935. // If we don't make it to the z position (i.e. the probe triggered), move up to make clearance for the probe
  1936. if (!do_probe_move(z, Z_PROBE_SPEED_FAST))
  1937. do_blocking_move_to_z(current_position[Z_AXIS] + Z_CLEARANCE_BETWEEN_PROBES, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  1938. }
  1939. #endif
  1940. #if MULTIPLE_PROBING > 2
  1941. float probes_total = 0;
  1942. for (uint8_t p = MULTIPLE_PROBING + 1; --p;) {
  1943. #endif
  1944. // move down slowly to find bed
  1945. if (do_probe_move(-10, Z_PROBE_SPEED_SLOW)) return NAN;
  1946. #if MULTIPLE_PROBING > 2
  1947. probes_total += current_position[Z_AXIS];
  1948. if (p > 1) do_blocking_move_to_z(current_position[Z_AXIS] + Z_CLEARANCE_BETWEEN_PROBES, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  1949. }
  1950. #endif
  1951. #if MULTIPLE_PROBING > 2
  1952. // Return the average value of all probes
  1953. return probes_total * (1.0 / (MULTIPLE_PROBING));
  1954. #elif MULTIPLE_PROBING == 2
  1955. const float z2 = current_position[Z_AXIS];
  1956. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1957. if (DEBUGGING(LEVELING)) {
  1958. SERIAL_ECHOPAIR("2nd Probe Z:", z2);
  1959. SERIAL_ECHOLNPAIR(" Discrepancy:", first_probe_z - z2);
  1960. }
  1961. #endif
  1962. // Return a weighted average of the fast and slow probes
  1963. return (z2 * 3.0 + first_probe_z * 2.0) * 0.2;
  1964. #else
  1965. // Return the single probe result
  1966. return current_position[Z_AXIS];
  1967. #endif
  1968. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1969. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< run_z_probe", current_position);
  1970. #endif
  1971. }
  1972. /**
  1973. * - Move to the given XY
  1974. * - Deploy the probe, if not already deployed
  1975. * - Probe the bed, get the Z position
  1976. * - Depending on the 'stow' flag
  1977. * - Stow the probe, or
  1978. * - Raise to the BETWEEN height
  1979. * - Return the probed Z position
  1980. */
  1981. float probe_pt(const float &rx, const float &ry, const bool stow, const uint8_t verbose_level, const bool probe_relative=true) {
  1982. #if ENABLED(DEBUG_LEVELING_FEATURE)
  1983. if (DEBUGGING(LEVELING)) {
  1984. SERIAL_ECHOPAIR(">>> probe_pt(", LOGICAL_X_POSITION(rx));
  1985. SERIAL_ECHOPAIR(", ", LOGICAL_Y_POSITION(ry));
  1986. SERIAL_ECHOPAIR(", ", stow ? "" : "no ");
  1987. SERIAL_ECHOLNPGM("stow)");
  1988. DEBUG_POS("", current_position);
  1989. }
  1990. #endif
  1991. // TODO: Adapt for SCARA, where the offset rotates
  1992. float nx = rx, ny = ry;
  1993. if (probe_relative) {
  1994. if (!position_is_reachable_by_probe(rx, ry)) return NAN; // The given position is in terms of the probe
  1995. nx -= (X_PROBE_OFFSET_FROM_EXTRUDER); // Get the nozzle position
  1996. ny -= (Y_PROBE_OFFSET_FROM_EXTRUDER);
  1997. }
  1998. else if (!position_is_reachable(nx, ny)) return NAN; // The given position is in terms of the nozzle
  1999. const float nz =
  2000. #if ENABLED(DELTA)
  2001. // Move below clip height or xy move will be aborted by do_blocking_move_to
  2002. min(current_position[Z_AXIS], delta_clip_start_height)
  2003. #else
  2004. current_position[Z_AXIS]
  2005. #endif
  2006. ;
  2007. const float old_feedrate_mm_s = feedrate_mm_s;
  2008. feedrate_mm_s = XY_PROBE_FEEDRATE_MM_S;
  2009. // Move the probe to the starting XYZ
  2010. do_blocking_move_to(nx, ny, nz);
  2011. float measured_z = NAN;
  2012. if (!DEPLOY_PROBE()) {
  2013. measured_z = run_z_probe() + zprobe_zoffset;
  2014. if (!stow)
  2015. do_blocking_move_to_z(current_position[Z_AXIS] + Z_CLEARANCE_BETWEEN_PROBES, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
  2016. else
  2017. if (STOW_PROBE()) measured_z = NAN;
  2018. }
  2019. if (verbose_level > 2) {
  2020. SERIAL_PROTOCOLPGM("Bed X: ");
  2021. SERIAL_PROTOCOL_F(LOGICAL_X_POSITION(rx), 3);
  2022. SERIAL_PROTOCOLPGM(" Y: ");
  2023. SERIAL_PROTOCOL_F(LOGICAL_Y_POSITION(ry), 3);
  2024. SERIAL_PROTOCOLPGM(" Z: ");
  2025. SERIAL_PROTOCOL_F(measured_z, 3);
  2026. SERIAL_EOL();
  2027. }
  2028. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2029. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< probe_pt");
  2030. #endif
  2031. feedrate_mm_s = old_feedrate_mm_s;
  2032. if (isnan(measured_z)) {
  2033. LCD_MESSAGEPGM(MSG_ERR_PROBING_FAILED);
  2034. SERIAL_ERROR_START();
  2035. SERIAL_ERRORLNPGM(MSG_ERR_PROBING_FAILED);
  2036. }
  2037. return measured_z;
  2038. }
  2039. #endif // HAS_BED_PROBE
  2040. #if HAS_LEVELING
  2041. bool leveling_is_valid() {
  2042. return
  2043. #if ENABLED(MESH_BED_LEVELING)
  2044. mbl.has_mesh
  2045. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2046. !!bilinear_grid_spacing[X_AXIS]
  2047. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2048. true
  2049. #else // 3POINT, LINEAR
  2050. true
  2051. #endif
  2052. ;
  2053. }
  2054. /**
  2055. * Turn bed leveling on or off, fixing the current
  2056. * position as-needed.
  2057. *
  2058. * Disable: Current position = physical position
  2059. * Enable: Current position = "unleveled" physical position
  2060. */
  2061. void set_bed_leveling_enabled(const bool enable/*=true*/) {
  2062. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2063. const bool can_change = (!enable || leveling_is_valid());
  2064. #else
  2065. constexpr bool can_change = true;
  2066. #endif
  2067. if (can_change && enable != planner.leveling_active) {
  2068. #if ENABLED(MESH_BED_LEVELING)
  2069. if (!enable)
  2070. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS]);
  2071. const bool enabling = enable && leveling_is_valid();
  2072. planner.leveling_active = enabling;
  2073. if (enabling) planner.unapply_leveling(current_position);
  2074. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2075. #if PLANNER_LEVELING
  2076. if (planner.leveling_active) { // leveling from on to off
  2077. // change unleveled current_position to physical current_position without moving steppers.
  2078. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS]);
  2079. planner.leveling_active = false; // disable only AFTER calling apply_leveling
  2080. }
  2081. else { // leveling from off to on
  2082. planner.leveling_active = true; // enable BEFORE calling unapply_leveling, otherwise ignored
  2083. // change physical current_position to unleveled current_position without moving steppers.
  2084. planner.unapply_leveling(current_position);
  2085. }
  2086. #else
  2087. planner.leveling_active = enable; // just flip the bit, current_position will be wrong until next move.
  2088. #endif
  2089. #else // ABL
  2090. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2091. // Force bilinear_z_offset to re-calculate next time
  2092. const float reset[XYZ] = { -9999.999, -9999.999, 0 };
  2093. (void)bilinear_z_offset(reset);
  2094. #endif
  2095. // Enable or disable leveling compensation in the planner
  2096. planner.leveling_active = enable;
  2097. if (!enable)
  2098. // When disabling just get the current position from the steppers.
  2099. // This will yield the smallest error when first converted back to steps.
  2100. set_current_from_steppers_for_axis(
  2101. #if ABL_PLANAR
  2102. ALL_AXES
  2103. #else
  2104. Z_AXIS
  2105. #endif
  2106. );
  2107. else
  2108. // When enabling, remove compensation from the current position,
  2109. // so compensation will give the right stepper counts.
  2110. planner.unapply_leveling(current_position);
  2111. SYNC_PLAN_POSITION_KINEMATIC();
  2112. #endif // ABL
  2113. }
  2114. }
  2115. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  2116. void set_z_fade_height(const float zfh, const bool do_report/*=true*/) {
  2117. if (planner.z_fade_height == zfh) return; // do nothing if no change
  2118. const bool level_active = planner.leveling_active;
  2119. #if ENABLED(AUTO_BED_LEVELING_UBL)
  2120. if (level_active) set_bed_leveling_enabled(false); // turn off before changing fade height for proper apply/unapply leveling to maintain current_position
  2121. #endif
  2122. planner.set_z_fade_height(zfh);
  2123. if (level_active) {
  2124. const float oldpos[] = { current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS] };
  2125. #if ENABLED(AUTO_BED_LEVELING_UBL)
  2126. set_bed_leveling_enabled(true); // turn back on after changing fade height
  2127. #else
  2128. set_current_from_steppers_for_axis(
  2129. #if ABL_PLANAR
  2130. ALL_AXES
  2131. #else
  2132. Z_AXIS
  2133. #endif
  2134. );
  2135. SYNC_PLAN_POSITION_KINEMATIC();
  2136. #endif
  2137. if (do_report && memcmp(oldpos, current_position, sizeof(oldpos)))
  2138. report_current_position();
  2139. }
  2140. }
  2141. #endif // LEVELING_FADE_HEIGHT
  2142. /**
  2143. * Reset calibration results to zero.
  2144. */
  2145. void reset_bed_level() {
  2146. set_bed_leveling_enabled(false);
  2147. #if ENABLED(MESH_BED_LEVELING)
  2148. if (leveling_is_valid()) {
  2149. mbl.reset();
  2150. mbl.has_mesh = false;
  2151. }
  2152. #else
  2153. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2154. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("reset_bed_level");
  2155. #endif
  2156. #if ABL_PLANAR
  2157. planner.bed_level_matrix.set_to_identity();
  2158. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2159. bilinear_start[X_AXIS] = bilinear_start[Y_AXIS] =
  2160. bilinear_grid_spacing[X_AXIS] = bilinear_grid_spacing[Y_AXIS] = 0;
  2161. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
  2162. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
  2163. z_values[x][y] = NAN;
  2164. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  2165. ubl.reset();
  2166. #endif
  2167. #endif
  2168. }
  2169. #endif // HAS_LEVELING
  2170. #if ENABLED(AUTO_BED_LEVELING_BILINEAR) || ENABLED(MESH_BED_LEVELING)
  2171. /**
  2172. * Enable to produce output in JSON format suitable
  2173. * for SCAD or JavaScript mesh visualizers.
  2174. *
  2175. * Visualize meshes in OpenSCAD using the included script.
  2176. *
  2177. * buildroot/shared/scripts/MarlinMesh.scad
  2178. */
  2179. //#define SCAD_MESH_OUTPUT
  2180. /**
  2181. * Print calibration results for plotting or manual frame adjustment.
  2182. */
  2183. 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)) {
  2184. #ifndef SCAD_MESH_OUTPUT
  2185. for (uint8_t x = 0; x < sx; x++) {
  2186. for (uint8_t i = 0; i < precision + 2 + (x < 10 ? 1 : 0); i++)
  2187. SERIAL_PROTOCOLCHAR(' ');
  2188. SERIAL_PROTOCOL((int)x);
  2189. }
  2190. SERIAL_EOL();
  2191. #endif
  2192. #ifdef SCAD_MESH_OUTPUT
  2193. SERIAL_PROTOCOLLNPGM("measured_z = ["); // open 2D array
  2194. #endif
  2195. for (uint8_t y = 0; y < sy; y++) {
  2196. #ifdef SCAD_MESH_OUTPUT
  2197. SERIAL_PROTOCOLPGM(" ["); // open sub-array
  2198. #else
  2199. if (y < 10) SERIAL_PROTOCOLCHAR(' ');
  2200. SERIAL_PROTOCOL((int)y);
  2201. #endif
  2202. for (uint8_t x = 0; x < sx; x++) {
  2203. SERIAL_PROTOCOLCHAR(' ');
  2204. const float offset = fn(x, y);
  2205. if (!isnan(offset)) {
  2206. if (offset >= 0) SERIAL_PROTOCOLCHAR('+');
  2207. SERIAL_PROTOCOL_F(offset, precision);
  2208. }
  2209. else {
  2210. #ifdef SCAD_MESH_OUTPUT
  2211. for (uint8_t i = 3; i < precision + 3; i++)
  2212. SERIAL_PROTOCOLCHAR(' ');
  2213. SERIAL_PROTOCOLPGM("NAN");
  2214. #else
  2215. for (uint8_t i = 0; i < precision + 3; i++)
  2216. SERIAL_PROTOCOLCHAR(i ? '=' : ' ');
  2217. #endif
  2218. }
  2219. #ifdef SCAD_MESH_OUTPUT
  2220. if (x < sx - 1) SERIAL_PROTOCOLCHAR(',');
  2221. #endif
  2222. }
  2223. #ifdef SCAD_MESH_OUTPUT
  2224. SERIAL_PROTOCOLCHAR(' ');
  2225. SERIAL_PROTOCOLCHAR(']'); // close sub-array
  2226. if (y < sy - 1) SERIAL_PROTOCOLCHAR(',');
  2227. #endif
  2228. SERIAL_EOL();
  2229. }
  2230. #ifdef SCAD_MESH_OUTPUT
  2231. SERIAL_PROTOCOLPGM("];"); // close 2D array
  2232. #endif
  2233. SERIAL_EOL();
  2234. }
  2235. #endif
  2236. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  2237. /**
  2238. * Extrapolate a single point from its neighbors
  2239. */
  2240. static void extrapolate_one_point(const uint8_t x, const uint8_t y, const int8_t xdir, const int8_t ydir) {
  2241. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2242. if (DEBUGGING(LEVELING)) {
  2243. SERIAL_ECHOPGM("Extrapolate [");
  2244. if (x < 10) SERIAL_CHAR(' ');
  2245. SERIAL_ECHO((int)x);
  2246. SERIAL_CHAR(xdir ? (xdir > 0 ? '+' : '-') : ' ');
  2247. SERIAL_CHAR(' ');
  2248. if (y < 10) SERIAL_CHAR(' ');
  2249. SERIAL_ECHO((int)y);
  2250. SERIAL_CHAR(ydir ? (ydir > 0 ? '+' : '-') : ' ');
  2251. SERIAL_CHAR(']');
  2252. }
  2253. #endif
  2254. if (!isnan(z_values[x][y])) {
  2255. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2256. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM(" (done)");
  2257. #endif
  2258. return; // Don't overwrite good values.
  2259. }
  2260. SERIAL_EOL();
  2261. // Get X neighbors, Y neighbors, and XY neighbors
  2262. const uint8_t x1 = x + xdir, y1 = y + ydir, x2 = x1 + xdir, y2 = y1 + ydir;
  2263. float a1 = z_values[x1][y ], a2 = z_values[x2][y ],
  2264. b1 = z_values[x ][y1], b2 = z_values[x ][y2],
  2265. c1 = z_values[x1][y1], c2 = z_values[x2][y2];
  2266. // Treat far unprobed points as zero, near as equal to far
  2267. if (isnan(a2)) a2 = 0.0; if (isnan(a1)) a1 = a2;
  2268. if (isnan(b2)) b2 = 0.0; if (isnan(b1)) b1 = b2;
  2269. if (isnan(c2)) c2 = 0.0; if (isnan(c1)) c1 = c2;
  2270. const float a = 2 * a1 - a2, b = 2 * b1 - b2, c = 2 * c1 - c2;
  2271. // Take the average instead of the median
  2272. z_values[x][y] = (a + b + c) / 3.0;
  2273. // Median is robust (ignores outliers).
  2274. // z_values[x][y] = (a < b) ? ((b < c) ? b : (c < a) ? a : c)
  2275. // : ((c < b) ? b : (a < c) ? a : c);
  2276. }
  2277. //Enable this if your SCARA uses 180° of total area
  2278. //#define EXTRAPOLATE_FROM_EDGE
  2279. #if ENABLED(EXTRAPOLATE_FROM_EDGE)
  2280. #if GRID_MAX_POINTS_X < GRID_MAX_POINTS_Y
  2281. #define HALF_IN_X
  2282. #elif GRID_MAX_POINTS_Y < GRID_MAX_POINTS_X
  2283. #define HALF_IN_Y
  2284. #endif
  2285. #endif
  2286. /**
  2287. * Fill in the unprobed points (corners of circular print surface)
  2288. * using linear extrapolation, away from the center.
  2289. */
  2290. static void extrapolate_unprobed_bed_level() {
  2291. #ifdef HALF_IN_X
  2292. constexpr uint8_t ctrx2 = 0, xlen = GRID_MAX_POINTS_X - 1;
  2293. #else
  2294. constexpr uint8_t ctrx1 = (GRID_MAX_POINTS_X - 1) / 2, // left-of-center
  2295. ctrx2 = (GRID_MAX_POINTS_X) / 2, // right-of-center
  2296. xlen = ctrx1;
  2297. #endif
  2298. #ifdef HALF_IN_Y
  2299. constexpr uint8_t ctry2 = 0, ylen = GRID_MAX_POINTS_Y - 1;
  2300. #else
  2301. constexpr uint8_t ctry1 = (GRID_MAX_POINTS_Y - 1) / 2, // top-of-center
  2302. ctry2 = (GRID_MAX_POINTS_Y) / 2, // bottom-of-center
  2303. ylen = ctry1;
  2304. #endif
  2305. for (uint8_t xo = 0; xo <= xlen; xo++)
  2306. for (uint8_t yo = 0; yo <= ylen; yo++) {
  2307. uint8_t x2 = ctrx2 + xo, y2 = ctry2 + yo;
  2308. #ifndef HALF_IN_X
  2309. const uint8_t x1 = ctrx1 - xo;
  2310. #endif
  2311. #ifndef HALF_IN_Y
  2312. const uint8_t y1 = ctry1 - yo;
  2313. #ifndef HALF_IN_X
  2314. extrapolate_one_point(x1, y1, +1, +1); // left-below + +
  2315. #endif
  2316. extrapolate_one_point(x2, y1, -1, +1); // right-below - +
  2317. #endif
  2318. #ifndef HALF_IN_X
  2319. extrapolate_one_point(x1, y2, +1, -1); // left-above + -
  2320. #endif
  2321. extrapolate_one_point(x2, y2, -1, -1); // right-above - -
  2322. }
  2323. }
  2324. static void print_bilinear_leveling_grid() {
  2325. SERIAL_ECHOLNPGM("Bilinear Leveling Grid:");
  2326. print_2d_array(GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y, 3,
  2327. [](const uint8_t ix, const uint8_t iy) { return z_values[ix][iy]; }
  2328. );
  2329. }
  2330. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  2331. #define ABL_GRID_POINTS_VIRT_X (GRID_MAX_POINTS_X - 1) * (BILINEAR_SUBDIVISIONS) + 1
  2332. #define ABL_GRID_POINTS_VIRT_Y (GRID_MAX_POINTS_Y - 1) * (BILINEAR_SUBDIVISIONS) + 1
  2333. #define ABL_TEMP_POINTS_X (GRID_MAX_POINTS_X + 2)
  2334. #define ABL_TEMP_POINTS_Y (GRID_MAX_POINTS_Y + 2)
  2335. float z_values_virt[ABL_GRID_POINTS_VIRT_X][ABL_GRID_POINTS_VIRT_Y];
  2336. int bilinear_grid_spacing_virt[2] = { 0 };
  2337. float bilinear_grid_factor_virt[2] = { 0 };
  2338. static void print_bilinear_leveling_grid_virt() {
  2339. SERIAL_ECHOLNPGM("Subdivided with CATMULL ROM Leveling Grid:");
  2340. print_2d_array(ABL_GRID_POINTS_VIRT_X, ABL_GRID_POINTS_VIRT_Y, 5,
  2341. [](const uint8_t ix, const uint8_t iy) { return z_values_virt[ix][iy]; }
  2342. );
  2343. }
  2344. #define LINEAR_EXTRAPOLATION(E, I) ((E) * 2 - (I))
  2345. float bed_level_virt_coord(const uint8_t x, const uint8_t y) {
  2346. uint8_t ep = 0, ip = 1;
  2347. if (!x || x == ABL_TEMP_POINTS_X - 1) {
  2348. if (x) {
  2349. ep = GRID_MAX_POINTS_X - 1;
  2350. ip = GRID_MAX_POINTS_X - 2;
  2351. }
  2352. if (WITHIN(y, 1, ABL_TEMP_POINTS_Y - 2))
  2353. return LINEAR_EXTRAPOLATION(
  2354. z_values[ep][y - 1],
  2355. z_values[ip][y - 1]
  2356. );
  2357. else
  2358. return LINEAR_EXTRAPOLATION(
  2359. bed_level_virt_coord(ep + 1, y),
  2360. bed_level_virt_coord(ip + 1, y)
  2361. );
  2362. }
  2363. if (!y || y == ABL_TEMP_POINTS_Y - 1) {
  2364. if (y) {
  2365. ep = GRID_MAX_POINTS_Y - 1;
  2366. ip = GRID_MAX_POINTS_Y - 2;
  2367. }
  2368. if (WITHIN(x, 1, ABL_TEMP_POINTS_X - 2))
  2369. return LINEAR_EXTRAPOLATION(
  2370. z_values[x - 1][ep],
  2371. z_values[x - 1][ip]
  2372. );
  2373. else
  2374. return LINEAR_EXTRAPOLATION(
  2375. bed_level_virt_coord(x, ep + 1),
  2376. bed_level_virt_coord(x, ip + 1)
  2377. );
  2378. }
  2379. return z_values[x - 1][y - 1];
  2380. }
  2381. static float bed_level_virt_cmr(const float p[4], const uint8_t i, const float t) {
  2382. return (
  2383. p[i-1] * -t * sq(1 - t)
  2384. + p[i] * (2 - 5 * sq(t) + 3 * t * sq(t))
  2385. + p[i+1] * t * (1 + 4 * t - 3 * sq(t))
  2386. - p[i+2] * sq(t) * (1 - t)
  2387. ) * 0.5;
  2388. }
  2389. static float bed_level_virt_2cmr(const uint8_t x, const uint8_t y, const float &tx, const float &ty) {
  2390. float row[4], column[4];
  2391. for (uint8_t i = 0; i < 4; i++) {
  2392. for (uint8_t j = 0; j < 4; j++) {
  2393. column[j] = bed_level_virt_coord(i + x - 1, j + y - 1);
  2394. }
  2395. row[i] = bed_level_virt_cmr(column, 1, ty);
  2396. }
  2397. return bed_level_virt_cmr(row, 1, tx);
  2398. }
  2399. void bed_level_virt_interpolate() {
  2400. bilinear_grid_spacing_virt[X_AXIS] = bilinear_grid_spacing[X_AXIS] / (BILINEAR_SUBDIVISIONS);
  2401. bilinear_grid_spacing_virt[Y_AXIS] = bilinear_grid_spacing[Y_AXIS] / (BILINEAR_SUBDIVISIONS);
  2402. bilinear_grid_factor_virt[X_AXIS] = RECIPROCAL(bilinear_grid_spacing_virt[X_AXIS]);
  2403. bilinear_grid_factor_virt[Y_AXIS] = RECIPROCAL(bilinear_grid_spacing_virt[Y_AXIS]);
  2404. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
  2405. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
  2406. for (uint8_t ty = 0; ty < BILINEAR_SUBDIVISIONS; ty++)
  2407. for (uint8_t tx = 0; tx < BILINEAR_SUBDIVISIONS; tx++) {
  2408. if ((ty && y == GRID_MAX_POINTS_Y - 1) || (tx && x == GRID_MAX_POINTS_X - 1))
  2409. continue;
  2410. z_values_virt[x * (BILINEAR_SUBDIVISIONS) + tx][y * (BILINEAR_SUBDIVISIONS) + ty] =
  2411. bed_level_virt_2cmr(
  2412. x + 1,
  2413. y + 1,
  2414. (float)tx / (BILINEAR_SUBDIVISIONS),
  2415. (float)ty / (BILINEAR_SUBDIVISIONS)
  2416. );
  2417. }
  2418. }
  2419. #endif // ABL_BILINEAR_SUBDIVISION
  2420. // Refresh after other values have been updated
  2421. void refresh_bed_level() {
  2422. bilinear_grid_factor[X_AXIS] = RECIPROCAL(bilinear_grid_spacing[X_AXIS]);
  2423. bilinear_grid_factor[Y_AXIS] = RECIPROCAL(bilinear_grid_spacing[Y_AXIS]);
  2424. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  2425. bed_level_virt_interpolate();
  2426. #endif
  2427. }
  2428. #endif // AUTO_BED_LEVELING_BILINEAR
  2429. /**
  2430. * Home an individual linear axis
  2431. */
  2432. static void do_homing_move(const AxisEnum axis, const float distance, const float fr_mm_s=0.0) {
  2433. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2434. if (DEBUGGING(LEVELING)) {
  2435. SERIAL_ECHOPAIR(">>> do_homing_move(", axis_codes[axis]);
  2436. SERIAL_ECHOPAIR(", ", distance);
  2437. SERIAL_ECHOPAIR(", ", fr_mm_s);
  2438. SERIAL_CHAR(')');
  2439. SERIAL_EOL();
  2440. }
  2441. #endif
  2442. #if HOMING_Z_WITH_PROBE && ENABLED(BLTOUCH)
  2443. const bool deploy_bltouch = (axis == Z_AXIS && distance < 0);
  2444. if (deploy_bltouch) set_bltouch_deployed(true);
  2445. #endif
  2446. #if QUIET_PROBING
  2447. if (axis == Z_AXIS) probing_pause(true);
  2448. #endif
  2449. // Tell the planner the axis is at 0
  2450. current_position[axis] = 0;
  2451. #if IS_SCARA
  2452. SYNC_PLAN_POSITION_KINEMATIC();
  2453. current_position[axis] = distance;
  2454. inverse_kinematics(current_position);
  2455. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], current_position[E_AXIS], fr_mm_s ? fr_mm_s : homing_feedrate(axis), active_extruder);
  2456. #else
  2457. sync_plan_position();
  2458. current_position[axis] = distance;
  2459. planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], fr_mm_s ? fr_mm_s : homing_feedrate(axis), active_extruder);
  2460. #endif
  2461. stepper.synchronize();
  2462. #if QUIET_PROBING
  2463. if (axis == Z_AXIS) probing_pause(false);
  2464. #endif
  2465. #if HOMING_Z_WITH_PROBE && ENABLED(BLTOUCH)
  2466. if (deploy_bltouch) set_bltouch_deployed(false);
  2467. #endif
  2468. endstops.hit_on_purpose();
  2469. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2470. if (DEBUGGING(LEVELING)) {
  2471. SERIAL_ECHOPAIR("<<< do_homing_move(", axis_codes[axis]);
  2472. SERIAL_CHAR(')');
  2473. SERIAL_EOL();
  2474. }
  2475. #endif
  2476. }
  2477. /**
  2478. * TMC2130 specific sensorless homing using stallGuard2.
  2479. * stallGuard2 only works when in spreadCycle mode.
  2480. * spreadCycle and stealthChop are mutually exclusive.
  2481. */
  2482. #if ENABLED(SENSORLESS_HOMING)
  2483. template<typename TMC>
  2484. void tmc_sensorless_homing(TMC &st, bool enable=true) {
  2485. #if ENABLED(STEALTHCHOP)
  2486. if (enable) {
  2487. st.coolstep_min_speed(1024UL * 1024UL - 1UL);
  2488. st.stealthChop(0);
  2489. }
  2490. else {
  2491. st.coolstep_min_speed(0);
  2492. st.stealthChop(1);
  2493. }
  2494. #endif
  2495. st.diag1_stall(enable ? 1 : 0);
  2496. }
  2497. #endif
  2498. /**
  2499. * Home an individual "raw axis" to its endstop.
  2500. * This applies to XYZ on Cartesian and Core robots, and
  2501. * to the individual ABC steppers on DELTA and SCARA.
  2502. *
  2503. * At the end of the procedure the axis is marked as
  2504. * homed and the current position of that axis is updated.
  2505. * Kinematic robots should wait till all axes are homed
  2506. * before updating the current position.
  2507. */
  2508. #define HOMEAXIS(LETTER) homeaxis(LETTER##_AXIS)
  2509. static void homeaxis(const AxisEnum axis) {
  2510. #if IS_SCARA
  2511. // Only Z homing (with probe) is permitted
  2512. if (axis != Z_AXIS) { BUZZ(100, 880); return; }
  2513. #else
  2514. #define CAN_HOME(A) \
  2515. (axis == A##_AXIS && ((A##_MIN_PIN > -1 && A##_HOME_DIR < 0) || (A##_MAX_PIN > -1 && A##_HOME_DIR > 0)))
  2516. if (!CAN_HOME(X) && !CAN_HOME(Y) && !CAN_HOME(Z)) return;
  2517. #endif
  2518. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2519. if (DEBUGGING(LEVELING)) {
  2520. SERIAL_ECHOPAIR(">>> homeaxis(", axis_codes[axis]);
  2521. SERIAL_CHAR(')');
  2522. SERIAL_EOL();
  2523. }
  2524. #endif
  2525. const int axis_home_dir =
  2526. #if ENABLED(DUAL_X_CARRIAGE)
  2527. (axis == X_AXIS) ? x_home_dir(active_extruder) :
  2528. #endif
  2529. home_dir(axis);
  2530. // Homing Z towards the bed? Deploy the Z probe or endstop.
  2531. #if HOMING_Z_WITH_PROBE
  2532. if (axis == Z_AXIS && DEPLOY_PROBE()) return;
  2533. #endif
  2534. // Set flags for X, Y, Z motor locking
  2535. #if ENABLED(X_DUAL_ENDSTOPS)
  2536. if (axis == X_AXIS) stepper.set_homing_flag_x(true);
  2537. #endif
  2538. #if ENABLED(Y_DUAL_ENDSTOPS)
  2539. if (axis == Y_AXIS) stepper.set_homing_flag_y(true);
  2540. #endif
  2541. #if ENABLED(Z_DUAL_ENDSTOPS)
  2542. if (axis == Z_AXIS) stepper.set_homing_flag_z(true);
  2543. #endif
  2544. // Disable stealthChop if used. Enable diag1 pin on driver.
  2545. #if ENABLED(SENSORLESS_HOMING)
  2546. #if ENABLED(X_IS_TMC2130)
  2547. if (axis == X_AXIS) tmc_sensorless_homing(stepperX);
  2548. #endif
  2549. #if ENABLED(Y_IS_TMC2130)
  2550. if (axis == Y_AXIS) tmc_sensorless_homing(stepperY);
  2551. #endif
  2552. #endif
  2553. // Fast move towards endstop until triggered
  2554. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2555. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Home 1 Fast:");
  2556. #endif
  2557. do_homing_move(axis, 1.5 * max_length(axis) * axis_home_dir);
  2558. // When homing Z with probe respect probe clearance
  2559. const float bump = axis_home_dir * (
  2560. #if HOMING_Z_WITH_PROBE
  2561. (axis == Z_AXIS) ? max(Z_CLEARANCE_BETWEEN_PROBES, home_bump_mm(Z_AXIS)) :
  2562. #endif
  2563. home_bump_mm(axis)
  2564. );
  2565. // If a second homing move is configured...
  2566. if (bump) {
  2567. // Move away from the endstop by the axis HOME_BUMP_MM
  2568. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2569. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Move Away:");
  2570. #endif
  2571. do_homing_move(axis, -bump);
  2572. // Slow move towards endstop until triggered
  2573. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2574. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Home 2 Slow:");
  2575. #endif
  2576. do_homing_move(axis, 2 * bump, get_homing_bump_feedrate(axis));
  2577. }
  2578. /**
  2579. * Home axes that have dual endstops... differently
  2580. */
  2581. #if ENABLED(X_DUAL_ENDSTOPS) || ENABLED(Y_DUAL_ENDSTOPS) || ENABLED(Z_DUAL_ENDSTOPS)
  2582. const bool pos_dir = axis_home_dir > 0;
  2583. #if ENABLED(X_DUAL_ENDSTOPS)
  2584. if (axis == X_AXIS) {
  2585. const bool lock_x1 = pos_dir ? (x_endstop_adj > 0) : (x_endstop_adj < 0);
  2586. const float adj = FABS(x_endstop_adj);
  2587. if (lock_x1) stepper.set_x_lock(true); else stepper.set_x2_lock(true);
  2588. do_homing_move(axis, pos_dir ? -adj : adj);
  2589. if (lock_x1) stepper.set_x_lock(false); else stepper.set_x2_lock(false);
  2590. stepper.set_homing_flag_x(false);
  2591. }
  2592. #endif
  2593. #if ENABLED(Y_DUAL_ENDSTOPS)
  2594. if (axis == Y_AXIS) {
  2595. const bool lock_y1 = pos_dir ? (y_endstop_adj > 0) : (y_endstop_adj < 0);
  2596. const float adj = FABS(y_endstop_adj);
  2597. if (lock_y1) stepper.set_y_lock(true); else stepper.set_y2_lock(true);
  2598. do_homing_move(axis, pos_dir ? -adj : adj);
  2599. if (lock_y1) stepper.set_y_lock(false); else stepper.set_y2_lock(false);
  2600. stepper.set_homing_flag_y(false);
  2601. }
  2602. #endif
  2603. #if ENABLED(Z_DUAL_ENDSTOPS)
  2604. if (axis == Z_AXIS) {
  2605. const bool lock_z1 = pos_dir ? (z_endstop_adj > 0) : (z_endstop_adj < 0);
  2606. const float adj = FABS(z_endstop_adj);
  2607. if (lock_z1) stepper.set_z_lock(true); else stepper.set_z2_lock(true);
  2608. do_homing_move(axis, pos_dir ? -adj : adj);
  2609. if (lock_z1) stepper.set_z_lock(false); else stepper.set_z2_lock(false);
  2610. stepper.set_homing_flag_z(false);
  2611. }
  2612. #endif
  2613. #endif
  2614. #if IS_SCARA
  2615. set_axis_is_at_home(axis);
  2616. SYNC_PLAN_POSITION_KINEMATIC();
  2617. #elif ENABLED(DELTA)
  2618. // Delta has already moved all three towers up in G28
  2619. // so here it re-homes each tower in turn.
  2620. // Delta homing treats the axes as normal linear axes.
  2621. // retrace by the amount specified in delta_endstop_adj + additional 0.1mm in order to have minimum steps
  2622. if (delta_endstop_adj[axis] * Z_HOME_DIR <= 0) {
  2623. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2624. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("delta_endstop_adj:");
  2625. #endif
  2626. do_homing_move(axis, delta_endstop_adj[axis] - 0.1 * Z_HOME_DIR);
  2627. }
  2628. #else
  2629. // For cartesian/core machines,
  2630. // set the axis to its home position
  2631. set_axis_is_at_home(axis);
  2632. sync_plan_position();
  2633. destination[axis] = current_position[axis];
  2634. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2635. if (DEBUGGING(LEVELING)) DEBUG_POS("> AFTER set_axis_is_at_home", current_position);
  2636. #endif
  2637. #endif
  2638. // Re-enable stealthChop if used. Disable diag1 pin on driver.
  2639. #if ENABLED(SENSORLESS_HOMING)
  2640. #if ENABLED(X_IS_TMC2130)
  2641. if (axis == X_AXIS) tmc_sensorless_homing(stepperX, false);
  2642. #endif
  2643. #if ENABLED(Y_IS_TMC2130)
  2644. if (axis == Y_AXIS) tmc_sensorless_homing(stepperY, false);
  2645. #endif
  2646. #endif
  2647. // Put away the Z probe
  2648. #if HOMING_Z_WITH_PROBE
  2649. if (axis == Z_AXIS && STOW_PROBE()) return;
  2650. #endif
  2651. #if ENABLED(DEBUG_LEVELING_FEATURE)
  2652. if (DEBUGGING(LEVELING)) {
  2653. SERIAL_ECHOPAIR("<<< homeaxis(", axis_codes[axis]);
  2654. SERIAL_CHAR(')');
  2655. SERIAL_EOL();
  2656. }
  2657. #endif
  2658. } // homeaxis()
  2659. #if ENABLED(FWRETRACT)
  2660. /**
  2661. * Retract or recover according to firmware settings
  2662. *
  2663. * This function handles retract/recover moves for G10 and G11,
  2664. * plus auto-retract moves sent from G0/G1 when E-only moves are done.
  2665. *
  2666. * To simplify the logic, doubled retract/recover moves are ignored.
  2667. *
  2668. * Note: Z lift is done transparently to the planner. Aborting
  2669. * a print between G10 and G11 may corrupt the Z position.
  2670. *
  2671. * Note: Auto-retract will apply the set Z hop in addition to any Z hop
  2672. * included in the G-code. Use M207 Z0 to to prevent double hop.
  2673. */
  2674. void retract(const bool retracting
  2675. #if EXTRUDERS > 1
  2676. , bool swapping = false
  2677. #endif
  2678. ) {
  2679. static float hop_amount = 0.0; // Total amount lifted, for use in recover
  2680. // Prevent two retracts or recovers in a row
  2681. if (retracted[active_extruder] == retracting) return;
  2682. // Prevent two swap-retract or recovers in a row
  2683. #if EXTRUDERS > 1
  2684. // Allow G10 S1 only after G10
  2685. if (swapping && retracted_swap[active_extruder] == retracting) return;
  2686. // G11 priority to recover the long retract if activated
  2687. if (!retracting) swapping = retracted_swap[active_extruder];
  2688. #else
  2689. const bool swapping = false;
  2690. #endif
  2691. /* // debugging
  2692. SERIAL_ECHOLNPAIR("retracting ", retracting);
  2693. SERIAL_ECHOLNPAIR("swapping ", swapping);
  2694. SERIAL_ECHOLNPAIR("active extruder ", active_extruder);
  2695. for (uint8_t i = 0; i < EXTRUDERS; ++i) {
  2696. SERIAL_ECHOPAIR("retracted[", i);
  2697. SERIAL_ECHOLNPAIR("] ", retracted[i]);
  2698. SERIAL_ECHOPAIR("retracted_swap[", i);
  2699. SERIAL_ECHOLNPAIR("] ", retracted_swap[i]);
  2700. }
  2701. SERIAL_ECHOLNPAIR("current_position[z] ", current_position[Z_AXIS]);
  2702. SERIAL_ECHOLNPAIR("hop_amount ", hop_amount);
  2703. //*/
  2704. const bool has_zhop = retract_zlift > 0.01; // Is there a hop set?
  2705. const float old_feedrate_mm_s = feedrate_mm_s;
  2706. // The current position will be the destination for E and Z moves
  2707. set_destination_from_current();
  2708. stepper.synchronize(); // Wait for buffered moves to complete
  2709. const float renormalize = 1.0 / planner.e_factor[active_extruder];
  2710. if (retracting) {
  2711. // Retract by moving from a faux E position back to the current E position
  2712. feedrate_mm_s = retract_feedrate_mm_s;
  2713. current_position[E_AXIS] += (swapping ? swap_retract_length : retract_length) * renormalize;
  2714. sync_plan_position_e();
  2715. prepare_move_to_destination();
  2716. // Is a Z hop set, and has the hop not yet been done?
  2717. if (has_zhop && !hop_amount) {
  2718. hop_amount += retract_zlift; // Carriage is raised for retraction hop
  2719. feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS]; // Z feedrate to max
  2720. current_position[Z_AXIS] -= retract_zlift; // Pretend current pos is lower. Next move raises Z.
  2721. SYNC_PLAN_POSITION_KINEMATIC(); // Set the planner to the new position
  2722. prepare_move_to_destination(); // Raise up to the old current pos
  2723. feedrate_mm_s = retract_feedrate_mm_s; // Restore feedrate
  2724. }
  2725. }
  2726. else {
  2727. // If a hop was done and Z hasn't changed, undo the Z hop
  2728. if (hop_amount) {
  2729. current_position[Z_AXIS] += retract_zlift; // Pretend current pos is lower. Next move raises Z.
  2730. SYNC_PLAN_POSITION_KINEMATIC(); // Set the planner to the new position
  2731. feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS]; // Z feedrate to max
  2732. prepare_move_to_destination(); // Raise up to the old current pos
  2733. hop_amount = 0.0; // Clear hop
  2734. }
  2735. // A retract multiplier has been added here to get faster swap recovery
  2736. feedrate_mm_s = swapping ? swap_retract_recover_feedrate_mm_s : retract_recover_feedrate_mm_s;
  2737. const float move_e = swapping ? swap_retract_length + swap_retract_recover_length : retract_length + retract_recover_length;
  2738. current_position[E_AXIS] -= move_e * renormalize;
  2739. sync_plan_position_e();
  2740. prepare_move_to_destination(); // Recover E
  2741. }
  2742. feedrate_mm_s = old_feedrate_mm_s; // Restore original feedrate
  2743. retracted[active_extruder] = retracting; // Active extruder now retracted / recovered
  2744. // If swap retract/recover update the retracted_swap flag too
  2745. #if EXTRUDERS > 1
  2746. if (swapping) retracted_swap[active_extruder] = retracting;
  2747. #endif
  2748. /* // debugging
  2749. SERIAL_ECHOLNPAIR("retracting ", retracting);
  2750. SERIAL_ECHOLNPAIR("swapping ", swapping);
  2751. SERIAL_ECHOLNPAIR("active_extruder ", active_extruder);
  2752. for (uint8_t i = 0; i < EXTRUDERS; ++i) {
  2753. SERIAL_ECHOPAIR("retracted[", i);
  2754. SERIAL_ECHOLNPAIR("] ", retracted[i]);
  2755. SERIAL_ECHOPAIR("retracted_swap[", i);
  2756. SERIAL_ECHOLNPAIR("] ", retracted_swap[i]);
  2757. }
  2758. SERIAL_ECHOLNPAIR("current_position[z] ", current_position[Z_AXIS]);
  2759. SERIAL_ECHOLNPAIR("hop_amount ", hop_amount);
  2760. //*/
  2761. }
  2762. #endif // FWRETRACT
  2763. #if ENABLED(MIXING_EXTRUDER)
  2764. void normalize_mix() {
  2765. float mix_total = 0.0;
  2766. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) mix_total += RECIPROCAL(mixing_factor[i]);
  2767. // Scale all values if they don't add up to ~1.0
  2768. if (!NEAR(mix_total, 1.0)) {
  2769. SERIAL_PROTOCOLLNPGM("Warning: Mix factors must add up to 1.0. Scaling.");
  2770. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) mixing_factor[i] *= mix_total;
  2771. }
  2772. }
  2773. #if ENABLED(DIRECT_MIXING_IN_G1)
  2774. // Get mixing parameters from the GCode
  2775. // The total "must" be 1.0 (but it will be normalized)
  2776. // If no mix factors are given, the old mix is preserved
  2777. void gcode_get_mix() {
  2778. const char* mixing_codes = "ABCDHI";
  2779. byte mix_bits = 0;
  2780. for (uint8_t i = 0; i < MIXING_STEPPERS; i++) {
  2781. if (parser.seenval(mixing_codes[i])) {
  2782. SBI(mix_bits, i);
  2783. float v = parser.value_float();
  2784. NOLESS(v, 0.0);
  2785. mixing_factor[i] = RECIPROCAL(v);
  2786. }
  2787. }
  2788. // If any mixing factors were included, clear the rest
  2789. // If none were included, preserve the last mix
  2790. if (mix_bits) {
  2791. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  2792. if (!TEST(mix_bits, i)) mixing_factor[i] = 0.0;
  2793. normalize_mix();
  2794. }
  2795. }
  2796. #endif
  2797. #endif
  2798. /**
  2799. * ***************************************************************************
  2800. * ***************************** G-CODE HANDLING *****************************
  2801. * ***************************************************************************
  2802. */
  2803. /**
  2804. * Set XYZE destination and feedrate from the current GCode command
  2805. *
  2806. * - Set destination from included axis codes
  2807. * - Set to current for missing axis codes
  2808. * - Set the feedrate, if included
  2809. */
  2810. void gcode_get_destination() {
  2811. LOOP_XYZE(i) {
  2812. if (parser.seen(axis_codes[i])) {
  2813. const float v = parser.value_axis_units((AxisEnum)i) + (axis_relative_modes[i] || relative_mode ? current_position[i] : 0);
  2814. destination[i] = i == E_AXIS ? v : LOGICAL_TO_NATIVE(v, i);
  2815. }
  2816. else
  2817. destination[i] = current_position[i];
  2818. }
  2819. if (parser.linearval('F') > 0.0)
  2820. feedrate_mm_s = MMM_TO_MMS(parser.value_feedrate());
  2821. #if ENABLED(PRINTCOUNTER)
  2822. if (!DEBUGGING(DRYRUN))
  2823. print_job_timer.incFilamentUsed(destination[E_AXIS] - current_position[E_AXIS]);
  2824. #endif
  2825. // Get ABCDHI mixing factors
  2826. #if ENABLED(MIXING_EXTRUDER) && ENABLED(DIRECT_MIXING_IN_G1)
  2827. gcode_get_mix();
  2828. #endif
  2829. }
  2830. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  2831. /**
  2832. * Output a "busy" message at regular intervals
  2833. * while the machine is not accepting commands.
  2834. */
  2835. void host_keepalive() {
  2836. const millis_t ms = millis();
  2837. if (host_keepalive_interval && busy_state != NOT_BUSY) {
  2838. if (PENDING(ms, next_busy_signal_ms)) return;
  2839. switch (busy_state) {
  2840. case IN_HANDLER:
  2841. case IN_PROCESS:
  2842. SERIAL_ECHO_START();
  2843. SERIAL_ECHOLNPGM(MSG_BUSY_PROCESSING);
  2844. break;
  2845. case PAUSED_FOR_USER:
  2846. SERIAL_ECHO_START();
  2847. SERIAL_ECHOLNPGM(MSG_BUSY_PAUSED_FOR_USER);
  2848. break;
  2849. case PAUSED_FOR_INPUT:
  2850. SERIAL_ECHO_START();
  2851. SERIAL_ECHOLNPGM(MSG_BUSY_PAUSED_FOR_INPUT);
  2852. break;
  2853. default:
  2854. break;
  2855. }
  2856. }
  2857. next_busy_signal_ms = ms + host_keepalive_interval * 1000UL;
  2858. }
  2859. #endif // HOST_KEEPALIVE_FEATURE
  2860. /**************************************************
  2861. ***************** GCode Handlers *****************
  2862. **************************************************/
  2863. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  2864. #define G0_G1_CONDITION !axis_unhomed_error(parser.seen('X'), parser.seen('Y'), parser.seen('Z'))
  2865. #else
  2866. #define G0_G1_CONDITION true
  2867. #endif
  2868. /**
  2869. * G0, G1: Coordinated movement of X Y Z E axes
  2870. */
  2871. inline void gcode_G0_G1(
  2872. #if IS_SCARA
  2873. bool fast_move=false
  2874. #endif
  2875. ) {
  2876. if (IsRunning() && G0_G1_CONDITION) {
  2877. gcode_get_destination(); // For X Y Z E F
  2878. #if ENABLED(FWRETRACT)
  2879. if (MIN_AUTORETRACT <= MAX_AUTORETRACT) {
  2880. // When M209 Autoretract is enabled, convert E-only moves to firmware retract/recover moves
  2881. if (autoretract_enabled && parser.seen('E') && !(parser.seen('X') || parser.seen('Y') || parser.seen('Z'))) {
  2882. const float echange = destination[E_AXIS] - current_position[E_AXIS];
  2883. // Is this a retract or recover move?
  2884. if (WITHIN(FABS(echange), MIN_AUTORETRACT, MAX_AUTORETRACT) && retracted[active_extruder] == (echange > 0.0)) {
  2885. current_position[E_AXIS] = destination[E_AXIS]; // Hide a G1-based retract/recover from calculations
  2886. sync_plan_position_e(); // AND from the planner
  2887. return retract(echange < 0.0); // Firmware-based retract/recover (double-retract ignored)
  2888. }
  2889. }
  2890. }
  2891. #endif // FWRETRACT
  2892. #if IS_SCARA
  2893. fast_move ? prepare_uninterpolated_move_to_destination() : prepare_move_to_destination();
  2894. #else
  2895. prepare_move_to_destination();
  2896. #endif
  2897. #if ENABLED(NANODLP_Z_SYNC)
  2898. #if ENABLED(NANODLP_ALL_AXIS)
  2899. #define _MOVE_SYNC true // For any move wait and output sync message
  2900. #else
  2901. #define _MOVE_SYNC parser.seenval('Z') // Only for Z move
  2902. #endif
  2903. if (_MOVE_SYNC) {
  2904. stepper.synchronize();
  2905. SERIAL_ECHOLNPGM(MSG_Z_MOVE_COMP);
  2906. }
  2907. #endif
  2908. }
  2909. }
  2910. /**
  2911. * G2: Clockwise Arc
  2912. * G3: Counterclockwise Arc
  2913. *
  2914. * This command has two forms: IJ-form and R-form.
  2915. *
  2916. * - I specifies an X offset. J specifies a Y offset.
  2917. * At least one of the IJ parameters is required.
  2918. * X and Y can be omitted to do a complete circle.
  2919. * The given XY is not error-checked. The arc ends
  2920. * based on the angle of the destination.
  2921. * Mixing I or J with R will throw an error.
  2922. *
  2923. * - R specifies the radius. X or Y is required.
  2924. * Omitting both X and Y will throw an error.
  2925. * X or Y must differ from the current XY.
  2926. * Mixing R with I or J will throw an error.
  2927. *
  2928. * - P specifies the number of full circles to do
  2929. * before the specified arc move.
  2930. *
  2931. * Examples:
  2932. *
  2933. * G2 I10 ; CW circle centered at X+10
  2934. * G3 X20 Y12 R14 ; CCW circle with r=14 ending at X20 Y12
  2935. */
  2936. #if ENABLED(ARC_SUPPORT)
  2937. inline void gcode_G2_G3(const bool clockwise) {
  2938. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  2939. if (axis_unhomed_error()) return;
  2940. #endif
  2941. if (IsRunning()) {
  2942. #if ENABLED(SF_ARC_FIX)
  2943. const bool relative_mode_backup = relative_mode;
  2944. relative_mode = true;
  2945. #endif
  2946. gcode_get_destination();
  2947. #if ENABLED(SF_ARC_FIX)
  2948. relative_mode = relative_mode_backup;
  2949. #endif
  2950. float arc_offset[2] = { 0.0, 0.0 };
  2951. if (parser.seenval('R')) {
  2952. const float r = parser.value_linear_units(),
  2953. p1 = current_position[X_AXIS], q1 = current_position[Y_AXIS],
  2954. p2 = destination[X_AXIS], q2 = destination[Y_AXIS];
  2955. if (r && (p2 != p1 || q2 != q1)) {
  2956. const float e = clockwise ^ (r < 0) ? -1 : 1, // clockwise -1/1, counterclockwise 1/-1
  2957. dx = p2 - p1, dy = q2 - q1, // X and Y differences
  2958. d = HYPOT(dx, dy), // Linear distance between the points
  2959. h = SQRT(sq(r) - sq(d * 0.5)), // Distance to the arc pivot-point
  2960. mx = (p1 + p2) * 0.5, my = (q1 + q2) * 0.5, // Point between the two points
  2961. sx = -dy / d, sy = dx / d, // Slope of the perpendicular bisector
  2962. cx = mx + e * h * sx, cy = my + e * h * sy; // Pivot-point of the arc
  2963. arc_offset[0] = cx - p1;
  2964. arc_offset[1] = cy - q1;
  2965. }
  2966. }
  2967. else {
  2968. if (parser.seenval('I')) arc_offset[0] = parser.value_linear_units();
  2969. if (parser.seenval('J')) arc_offset[1] = parser.value_linear_units();
  2970. }
  2971. if (arc_offset[0] || arc_offset[1]) {
  2972. #if ENABLED(ARC_P_CIRCLES)
  2973. // P indicates number of circles to do
  2974. int8_t circles_to_do = parser.byteval('P');
  2975. if (!WITHIN(circles_to_do, 0, 100)) {
  2976. SERIAL_ERROR_START();
  2977. SERIAL_ERRORLNPGM(MSG_ERR_ARC_ARGS);
  2978. }
  2979. while (circles_to_do--)
  2980. plan_arc(current_position, arc_offset, clockwise);
  2981. #endif
  2982. // Send the arc to the planner
  2983. plan_arc(destination, arc_offset, clockwise);
  2984. refresh_cmd_timeout();
  2985. }
  2986. else {
  2987. // Bad arguments
  2988. SERIAL_ERROR_START();
  2989. SERIAL_ERRORLNPGM(MSG_ERR_ARC_ARGS);
  2990. }
  2991. }
  2992. }
  2993. #endif // ARC_SUPPORT
  2994. void dwell(millis_t time) {
  2995. refresh_cmd_timeout();
  2996. time += previous_cmd_ms;
  2997. while (PENDING(millis(), time)) idle();
  2998. }
  2999. /**
  3000. * G4: Dwell S<seconds> or P<milliseconds>
  3001. */
  3002. inline void gcode_G4() {
  3003. millis_t dwell_ms = 0;
  3004. if (parser.seenval('P')) dwell_ms = parser.value_millis(); // milliseconds to wait
  3005. if (parser.seenval('S')) dwell_ms = parser.value_millis_from_seconds(); // seconds to wait
  3006. stepper.synchronize();
  3007. #if ENABLED(NANODLP_Z_SYNC)
  3008. SERIAL_ECHOLNPGM(MSG_Z_MOVE_COMP);
  3009. #endif
  3010. if (!lcd_hasstatus()) LCD_MESSAGEPGM(MSG_DWELL);
  3011. dwell(dwell_ms);
  3012. }
  3013. #if ENABLED(BEZIER_CURVE_SUPPORT)
  3014. /**
  3015. * Parameters interpreted according to:
  3016. * http://linuxcnc.org/docs/2.6/html/gcode/gcode.html#sec:G5-Cubic-Spline
  3017. * However I, J omission is not supported at this point; all
  3018. * parameters can be omitted and default to zero.
  3019. */
  3020. /**
  3021. * G5: Cubic B-spline
  3022. */
  3023. inline void gcode_G5() {
  3024. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  3025. if (axis_unhomed_error()) return;
  3026. #endif
  3027. if (IsRunning()) {
  3028. #if ENABLED(CNC_WORKSPACE_PLANES)
  3029. if (workspace_plane != PLANE_XY) {
  3030. SERIAL_ERROR_START();
  3031. SERIAL_ERRORLNPGM(MSG_ERR_BAD_PLANE_MODE);
  3032. return;
  3033. }
  3034. #endif
  3035. gcode_get_destination();
  3036. const float offset[] = {
  3037. parser.linearval('I'),
  3038. parser.linearval('J'),
  3039. parser.linearval('P'),
  3040. parser.linearval('Q')
  3041. };
  3042. plan_cubic_move(offset);
  3043. }
  3044. }
  3045. #endif // BEZIER_CURVE_SUPPORT
  3046. #if ENABLED(FWRETRACT)
  3047. /**
  3048. * G10 - Retract filament according to settings of M207
  3049. */
  3050. inline void gcode_G10() {
  3051. #if EXTRUDERS > 1
  3052. const bool rs = parser.boolval('S');
  3053. retracted_swap[active_extruder] = rs; // Use 'S' for swap, default to false
  3054. #endif
  3055. retract(true
  3056. #if EXTRUDERS > 1
  3057. , rs
  3058. #endif
  3059. );
  3060. }
  3061. /**
  3062. * G11 - Recover filament according to settings of M208
  3063. */
  3064. inline void gcode_G11() { retract(false); }
  3065. #endif // FWRETRACT
  3066. #if ENABLED(NOZZLE_CLEAN_FEATURE)
  3067. /**
  3068. * G12: Clean the nozzle
  3069. */
  3070. inline void gcode_G12() {
  3071. // Don't allow nozzle cleaning without homing first
  3072. if (axis_unhomed_error()) return;
  3073. const uint8_t pattern = parser.ushortval('P', 0),
  3074. strokes = parser.ushortval('S', NOZZLE_CLEAN_STROKES),
  3075. objects = parser.ushortval('T', NOZZLE_CLEAN_TRIANGLES);
  3076. const float radius = parser.floatval('R', NOZZLE_CLEAN_CIRCLE_RADIUS);
  3077. Nozzle::clean(pattern, strokes, radius, objects);
  3078. }
  3079. #endif
  3080. #if ENABLED(CNC_WORKSPACE_PLANES)
  3081. inline void report_workspace_plane() {
  3082. SERIAL_ECHO_START();
  3083. SERIAL_ECHOPGM("Workspace Plane ");
  3084. serialprintPGM(
  3085. workspace_plane == PLANE_YZ ? PSTR("YZ\n") :
  3086. workspace_plane == PLANE_ZX ? PSTR("ZX\n") :
  3087. PSTR("XY\n")
  3088. );
  3089. }
  3090. inline void set_workspace_plane(const WorkspacePlane plane) {
  3091. workspace_plane = plane;
  3092. if (DEBUGGING(INFO)) report_workspace_plane();
  3093. }
  3094. /**
  3095. * G17: Select Plane XY
  3096. * G18: Select Plane ZX
  3097. * G19: Select Plane YZ
  3098. */
  3099. inline void gcode_G17() { set_workspace_plane(PLANE_XY); }
  3100. inline void gcode_G18() { set_workspace_plane(PLANE_ZX); }
  3101. inline void gcode_G19() { set_workspace_plane(PLANE_YZ); }
  3102. #endif // CNC_WORKSPACE_PLANES
  3103. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  3104. /**
  3105. * Select a coordinate system and update the workspace offset.
  3106. * System index -1 is used to specify machine-native.
  3107. */
  3108. bool select_coordinate_system(const int8_t _new) {
  3109. if (active_coordinate_system == _new) return false;
  3110. float old_offset[XYZ] = { 0 }, new_offset[XYZ] = { 0 };
  3111. if (WITHIN(active_coordinate_system, 0, MAX_COORDINATE_SYSTEMS - 1))
  3112. COPY(old_offset, coordinate_system[active_coordinate_system]);
  3113. if (WITHIN(_new, 0, MAX_COORDINATE_SYSTEMS - 1))
  3114. COPY(new_offset, coordinate_system[_new]);
  3115. active_coordinate_system = _new;
  3116. LOOP_XYZ(i) {
  3117. const float diff = new_offset[i] - old_offset[i];
  3118. if (diff) {
  3119. position_shift[i] += diff;
  3120. update_software_endstops((AxisEnum)i);
  3121. }
  3122. }
  3123. return true;
  3124. }
  3125. /**
  3126. * In CNC G-code G53 is like a modifier
  3127. * It precedes a movement command (or other modifiers) on the same line.
  3128. * This is the first command to use parser.chain() to make this possible.
  3129. */
  3130. inline void gcode_G53() {
  3131. // If this command has more following...
  3132. if (parser.chain()) {
  3133. const int8_t _system = active_coordinate_system;
  3134. active_coordinate_system = -1;
  3135. process_parsed_command();
  3136. active_coordinate_system = _system;
  3137. }
  3138. }
  3139. /**
  3140. * G54-G59.3: Select a new workspace
  3141. *
  3142. * A workspace is an XYZ offset to the machine native space.
  3143. * All workspaces default to 0,0,0 at start, or with EEPROM
  3144. * support they may be restored from a previous session.
  3145. *
  3146. * G92 is used to set the current workspace's offset.
  3147. */
  3148. inline void gcode_G54_59(uint8_t subcode=0) {
  3149. const int8_t _space = parser.codenum - 54 + subcode;
  3150. if (select_coordinate_system(_space)) {
  3151. SERIAL_PROTOCOLLNPAIR("Select workspace ", _space);
  3152. report_current_position();
  3153. }
  3154. }
  3155. FORCE_INLINE void gcode_G54() { gcode_G54_59(); }
  3156. FORCE_INLINE void gcode_G55() { gcode_G54_59(); }
  3157. FORCE_INLINE void gcode_G56() { gcode_G54_59(); }
  3158. FORCE_INLINE void gcode_G57() { gcode_G54_59(); }
  3159. FORCE_INLINE void gcode_G58() { gcode_G54_59(); }
  3160. FORCE_INLINE void gcode_G59() { gcode_G54_59(parser.subcode); }
  3161. #endif
  3162. #if ENABLED(INCH_MODE_SUPPORT)
  3163. /**
  3164. * G20: Set input mode to inches
  3165. */
  3166. inline void gcode_G20() { parser.set_input_linear_units(LINEARUNIT_INCH); }
  3167. /**
  3168. * G21: Set input mode to millimeters
  3169. */
  3170. inline void gcode_G21() { parser.set_input_linear_units(LINEARUNIT_MM); }
  3171. #endif
  3172. #if ENABLED(NOZZLE_PARK_FEATURE)
  3173. /**
  3174. * G27: Park the nozzle
  3175. */
  3176. inline void gcode_G27() {
  3177. // Don't allow nozzle parking without homing first
  3178. if (axis_unhomed_error()) return;
  3179. Nozzle::park(parser.ushortval('P'));
  3180. }
  3181. #endif // NOZZLE_PARK_FEATURE
  3182. #if ENABLED(QUICK_HOME)
  3183. static void quick_home_xy() {
  3184. // Pretend the current position is 0,0
  3185. current_position[X_AXIS] = current_position[Y_AXIS] = 0.0;
  3186. sync_plan_position();
  3187. const int x_axis_home_dir =
  3188. #if ENABLED(DUAL_X_CARRIAGE)
  3189. x_home_dir(active_extruder)
  3190. #else
  3191. home_dir(X_AXIS)
  3192. #endif
  3193. ;
  3194. const float mlx = max_length(X_AXIS),
  3195. mly = max_length(Y_AXIS),
  3196. mlratio = mlx > mly ? mly / mlx : mlx / mly,
  3197. fr_mm_s = min(homing_feedrate(X_AXIS), homing_feedrate(Y_AXIS)) * SQRT(sq(mlratio) + 1.0);
  3198. do_blocking_move_to_xy(1.5 * mlx * x_axis_home_dir, 1.5 * mly * home_dir(Y_AXIS), fr_mm_s);
  3199. endstops.hit_on_purpose(); // clear endstop hit flags
  3200. current_position[X_AXIS] = current_position[Y_AXIS] = 0.0;
  3201. }
  3202. #endif // QUICK_HOME
  3203. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3204. void log_machine_info() {
  3205. SERIAL_ECHOPGM("Machine Type: ");
  3206. #if ENABLED(DELTA)
  3207. SERIAL_ECHOLNPGM("Delta");
  3208. #elif IS_SCARA
  3209. SERIAL_ECHOLNPGM("SCARA");
  3210. #elif IS_CORE
  3211. SERIAL_ECHOLNPGM("Core");
  3212. #else
  3213. SERIAL_ECHOLNPGM("Cartesian");
  3214. #endif
  3215. SERIAL_ECHOPGM("Probe: ");
  3216. #if ENABLED(PROBE_MANUALLY)
  3217. SERIAL_ECHOLNPGM("PROBE_MANUALLY");
  3218. #elif ENABLED(FIX_MOUNTED_PROBE)
  3219. SERIAL_ECHOLNPGM("FIX_MOUNTED_PROBE");
  3220. #elif ENABLED(BLTOUCH)
  3221. SERIAL_ECHOLNPGM("BLTOUCH");
  3222. #elif HAS_Z_SERVO_ENDSTOP
  3223. SERIAL_ECHOLNPGM("SERVO PROBE");
  3224. #elif ENABLED(Z_PROBE_SLED)
  3225. SERIAL_ECHOLNPGM("Z_PROBE_SLED");
  3226. #elif ENABLED(Z_PROBE_ALLEN_KEY)
  3227. SERIAL_ECHOLNPGM("Z_PROBE_ALLEN_KEY");
  3228. #else
  3229. SERIAL_ECHOLNPGM("NONE");
  3230. #endif
  3231. #if HAS_BED_PROBE
  3232. SERIAL_ECHOPAIR("Probe Offset X:", X_PROBE_OFFSET_FROM_EXTRUDER);
  3233. SERIAL_ECHOPAIR(" Y:", Y_PROBE_OFFSET_FROM_EXTRUDER);
  3234. SERIAL_ECHOPAIR(" Z:", zprobe_zoffset);
  3235. #if X_PROBE_OFFSET_FROM_EXTRUDER > 0
  3236. SERIAL_ECHOPGM(" (Right");
  3237. #elif X_PROBE_OFFSET_FROM_EXTRUDER < 0
  3238. SERIAL_ECHOPGM(" (Left");
  3239. #elif Y_PROBE_OFFSET_FROM_EXTRUDER != 0
  3240. SERIAL_ECHOPGM(" (Middle");
  3241. #else
  3242. SERIAL_ECHOPGM(" (Aligned With");
  3243. #endif
  3244. #if Y_PROBE_OFFSET_FROM_EXTRUDER > 0
  3245. SERIAL_ECHOPGM("-Back");
  3246. #elif Y_PROBE_OFFSET_FROM_EXTRUDER < 0
  3247. SERIAL_ECHOPGM("-Front");
  3248. #elif X_PROBE_OFFSET_FROM_EXTRUDER != 0
  3249. SERIAL_ECHOPGM("-Center");
  3250. #endif
  3251. if (zprobe_zoffset < 0)
  3252. SERIAL_ECHOPGM(" & Below");
  3253. else if (zprobe_zoffset > 0)
  3254. SERIAL_ECHOPGM(" & Above");
  3255. else
  3256. SERIAL_ECHOPGM(" & Same Z as");
  3257. SERIAL_ECHOLNPGM(" Nozzle)");
  3258. #endif
  3259. #if HAS_ABL
  3260. SERIAL_ECHOPGM("Auto Bed Leveling: ");
  3261. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3262. SERIAL_ECHOPGM("LINEAR");
  3263. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3264. SERIAL_ECHOPGM("BILINEAR");
  3265. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  3266. SERIAL_ECHOPGM("3POINT");
  3267. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  3268. SERIAL_ECHOPGM("UBL");
  3269. #endif
  3270. if (planner.leveling_active) {
  3271. SERIAL_ECHOLNPGM(" (enabled)");
  3272. #if ABL_PLANAR
  3273. const float diff[XYZ] = {
  3274. stepper.get_axis_position_mm(X_AXIS) - current_position[X_AXIS],
  3275. stepper.get_axis_position_mm(Y_AXIS) - current_position[Y_AXIS],
  3276. stepper.get_axis_position_mm(Z_AXIS) - current_position[Z_AXIS]
  3277. };
  3278. SERIAL_ECHOPGM("ABL Adjustment X");
  3279. if (diff[X_AXIS] > 0) SERIAL_CHAR('+');
  3280. SERIAL_ECHO(diff[X_AXIS]);
  3281. SERIAL_ECHOPGM(" Y");
  3282. if (diff[Y_AXIS] > 0) SERIAL_CHAR('+');
  3283. SERIAL_ECHO(diff[Y_AXIS]);
  3284. SERIAL_ECHOPGM(" Z");
  3285. if (diff[Z_AXIS] > 0) SERIAL_CHAR('+');
  3286. SERIAL_ECHO(diff[Z_AXIS]);
  3287. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  3288. SERIAL_ECHOPAIR("UBL Adjustment Z", stepper.get_axis_position_mm(Z_AXIS) - current_position[Z_AXIS]);
  3289. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3290. SERIAL_ECHOPAIR("ABL Adjustment Z", bilinear_z_offset(current_position));
  3291. #endif
  3292. }
  3293. else
  3294. SERIAL_ECHOLNPGM(" (disabled)");
  3295. SERIAL_EOL();
  3296. #elif ENABLED(MESH_BED_LEVELING)
  3297. SERIAL_ECHOPGM("Mesh Bed Leveling");
  3298. if (planner.leveling_active) {
  3299. float rz = current_position[Z_AXIS];
  3300. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], rz);
  3301. SERIAL_ECHOLNPGM(" (enabled)");
  3302. SERIAL_ECHOPAIR("MBL Adjustment Z", rz);
  3303. }
  3304. else
  3305. SERIAL_ECHOPGM(" (disabled)");
  3306. SERIAL_EOL();
  3307. #endif // MESH_BED_LEVELING
  3308. }
  3309. #endif // DEBUG_LEVELING_FEATURE
  3310. #if ENABLED(DELTA)
  3311. /**
  3312. * A delta can only safely home all axes at the same time
  3313. * This is like quick_home_xy() but for 3 towers.
  3314. */
  3315. inline bool home_delta() {
  3316. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3317. if (DEBUGGING(LEVELING)) DEBUG_POS(">>> home_delta", current_position);
  3318. #endif
  3319. // Init the current position of all carriages to 0,0,0
  3320. ZERO(current_position);
  3321. sync_plan_position();
  3322. // Move all carriages together linearly until an endstop is hit.
  3323. current_position[X_AXIS] = current_position[Y_AXIS] = current_position[Z_AXIS] = (delta_height + 10);
  3324. feedrate_mm_s = homing_feedrate(X_AXIS);
  3325. buffer_line_to_current_position();
  3326. stepper.synchronize();
  3327. // If an endstop was not hit, then damage can occur if homing is continued.
  3328. // This can occur if the delta height not set correctly.
  3329. if (!(Endstops::endstop_hit_bits & (_BV(X_MAX) | _BV(Y_MAX) | _BV(Z_MAX)))) {
  3330. LCD_MESSAGEPGM(MSG_ERR_HOMING_FAILED);
  3331. SERIAL_ERROR_START();
  3332. SERIAL_ERRORLNPGM(MSG_ERR_HOMING_FAILED);
  3333. return false;
  3334. }
  3335. endstops.hit_on_purpose(); // clear endstop hit flags
  3336. // At least one carriage has reached the top.
  3337. // Now re-home each carriage separately.
  3338. HOMEAXIS(A);
  3339. HOMEAXIS(B);
  3340. HOMEAXIS(C);
  3341. // Set all carriages to their home positions
  3342. // Do this here all at once for Delta, because
  3343. // XYZ isn't ABC. Applying this per-tower would
  3344. // give the impression that they are the same.
  3345. LOOP_XYZ(i) set_axis_is_at_home((AxisEnum)i);
  3346. SYNC_PLAN_POSITION_KINEMATIC();
  3347. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3348. if (DEBUGGING(LEVELING)) DEBUG_POS("<<< home_delta", current_position);
  3349. #endif
  3350. return true;
  3351. }
  3352. #endif // DELTA
  3353. #if ENABLED(Z_SAFE_HOMING)
  3354. inline void home_z_safely() {
  3355. // Disallow Z homing if X or Y are unknown
  3356. if (!axis_known_position[X_AXIS] || !axis_known_position[Y_AXIS]) {
  3357. LCD_MESSAGEPGM(MSG_ERR_Z_HOMING);
  3358. SERIAL_ECHO_START();
  3359. SERIAL_ECHOLNPGM(MSG_ERR_Z_HOMING);
  3360. return;
  3361. }
  3362. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3363. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Z_SAFE_HOMING >>>");
  3364. #endif
  3365. SYNC_PLAN_POSITION_KINEMATIC();
  3366. /**
  3367. * Move the Z probe (or just the nozzle) to the safe homing point
  3368. */
  3369. destination[X_AXIS] = Z_SAFE_HOMING_X_POINT;
  3370. destination[Y_AXIS] = Z_SAFE_HOMING_Y_POINT;
  3371. destination[Z_AXIS] = current_position[Z_AXIS]; // Z is already at the right height
  3372. #if HOMING_Z_WITH_PROBE
  3373. destination[X_AXIS] -= X_PROBE_OFFSET_FROM_EXTRUDER;
  3374. destination[Y_AXIS] -= Y_PROBE_OFFSET_FROM_EXTRUDER;
  3375. #endif
  3376. if (position_is_reachable(destination[X_AXIS], destination[Y_AXIS])) {
  3377. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3378. if (DEBUGGING(LEVELING)) DEBUG_POS("Z_SAFE_HOMING", destination);
  3379. #endif
  3380. // This causes the carriage on Dual X to unpark
  3381. #if ENABLED(DUAL_X_CARRIAGE)
  3382. active_extruder_parked = false;
  3383. #endif
  3384. do_blocking_move_to_xy(destination[X_AXIS], destination[Y_AXIS]);
  3385. HOMEAXIS(Z);
  3386. }
  3387. else {
  3388. LCD_MESSAGEPGM(MSG_ZPROBE_OUT);
  3389. SERIAL_ECHO_START();
  3390. SERIAL_ECHOLNPGM(MSG_ZPROBE_OUT);
  3391. }
  3392. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3393. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< Z_SAFE_HOMING");
  3394. #endif
  3395. }
  3396. #endif // Z_SAFE_HOMING
  3397. #if ENABLED(PROBE_MANUALLY)
  3398. bool g29_in_progress = false;
  3399. #else
  3400. constexpr bool g29_in_progress = false;
  3401. #endif
  3402. /**
  3403. * G28: Home all axes according to settings
  3404. *
  3405. * Parameters
  3406. *
  3407. * None Home to all axes with no parameters.
  3408. * With QUICK_HOME enabled XY will home together, then Z.
  3409. *
  3410. * Cartesian parameters
  3411. *
  3412. * X Home to the X endstop
  3413. * Y Home to the Y endstop
  3414. * Z Home to the Z endstop
  3415. *
  3416. */
  3417. inline void gcode_G28(const bool always_home_all) {
  3418. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3419. if (DEBUGGING(LEVELING)) {
  3420. SERIAL_ECHOLNPGM(">>> gcode_G28");
  3421. log_machine_info();
  3422. }
  3423. #endif
  3424. // Wait for planner moves to finish!
  3425. stepper.synchronize();
  3426. // Cancel the active G29 session
  3427. #if ENABLED(PROBE_MANUALLY)
  3428. g29_in_progress = false;
  3429. #endif
  3430. // Disable the leveling matrix before homing
  3431. #if HAS_LEVELING
  3432. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3433. const bool ubl_state_at_entry = planner.leveling_active;
  3434. #endif
  3435. set_bed_leveling_enabled(false);
  3436. #endif
  3437. #if ENABLED(CNC_WORKSPACE_PLANES)
  3438. workspace_plane = PLANE_XY;
  3439. #endif
  3440. // Always home with tool 0 active
  3441. #if HOTENDS > 1
  3442. const uint8_t old_tool_index = active_extruder;
  3443. tool_change(0, 0, true);
  3444. #endif
  3445. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  3446. extruder_duplication_enabled = false;
  3447. #endif
  3448. setup_for_endstop_or_probe_move();
  3449. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3450. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> endstops.enable(true)");
  3451. #endif
  3452. endstops.enable(true); // Enable endstops for next homing move
  3453. #if ENABLED(DELTA)
  3454. home_delta();
  3455. UNUSED(always_home_all);
  3456. #else // NOT DELTA
  3457. const bool homeX = always_home_all || parser.seen('X'),
  3458. homeY = always_home_all || parser.seen('Y'),
  3459. homeZ = always_home_all || parser.seen('Z'),
  3460. home_all = (!homeX && !homeY && !homeZ) || (homeX && homeY && homeZ);
  3461. set_destination_from_current();
  3462. #if Z_HOME_DIR > 0 // If homing away from BED do Z first
  3463. if (home_all || homeZ) {
  3464. HOMEAXIS(Z);
  3465. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3466. if (DEBUGGING(LEVELING)) DEBUG_POS("> HOMEAXIS(Z)", current_position);
  3467. #endif
  3468. }
  3469. #endif
  3470. if (home_all || homeX || homeY) {
  3471. // Raise Z before homing any other axes and z is not already high enough (never lower z)
  3472. destination[Z_AXIS] = Z_HOMING_HEIGHT;
  3473. if (destination[Z_AXIS] > current_position[Z_AXIS]) {
  3474. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3475. if (DEBUGGING(LEVELING))
  3476. SERIAL_ECHOLNPAIR("Raise Z (before homing) to ", destination[Z_AXIS]);
  3477. #endif
  3478. do_blocking_move_to_z(destination[Z_AXIS]);
  3479. }
  3480. }
  3481. #if ENABLED(QUICK_HOME)
  3482. if (home_all || (homeX && homeY)) quick_home_xy();
  3483. #endif
  3484. #if ENABLED(HOME_Y_BEFORE_X)
  3485. // Home Y
  3486. if (home_all || homeY) {
  3487. HOMEAXIS(Y);
  3488. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3489. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeY", current_position);
  3490. #endif
  3491. }
  3492. #endif
  3493. // Home X
  3494. if (home_all || homeX) {
  3495. #if ENABLED(DUAL_X_CARRIAGE)
  3496. // Always home the 2nd (right) extruder first
  3497. active_extruder = 1;
  3498. HOMEAXIS(X);
  3499. // Remember this extruder's position for later tool change
  3500. inactive_extruder_x_pos = current_position[X_AXIS];
  3501. // Home the 1st (left) extruder
  3502. active_extruder = 0;
  3503. HOMEAXIS(X);
  3504. // Consider the active extruder to be parked
  3505. COPY(raised_parked_position, current_position);
  3506. delayed_move_time = 0;
  3507. active_extruder_parked = true;
  3508. #else
  3509. HOMEAXIS(X);
  3510. #endif
  3511. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3512. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeX", current_position);
  3513. #endif
  3514. }
  3515. #if DISABLED(HOME_Y_BEFORE_X)
  3516. // Home Y
  3517. if (home_all || homeY) {
  3518. HOMEAXIS(Y);
  3519. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3520. if (DEBUGGING(LEVELING)) DEBUG_POS("> homeY", current_position);
  3521. #endif
  3522. }
  3523. #endif
  3524. // Home Z last if homing towards the bed
  3525. #if Z_HOME_DIR < 0
  3526. if (home_all || homeZ) {
  3527. #if ENABLED(Z_SAFE_HOMING)
  3528. home_z_safely();
  3529. #else
  3530. HOMEAXIS(Z);
  3531. #endif
  3532. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3533. if (DEBUGGING(LEVELING)) DEBUG_POS("> (home_all || homeZ) > final", current_position);
  3534. #endif
  3535. } // home_all || homeZ
  3536. #endif // Z_HOME_DIR < 0
  3537. SYNC_PLAN_POSITION_KINEMATIC();
  3538. #endif // !DELTA (gcode_G28)
  3539. endstops.not_homing();
  3540. #if ENABLED(DELTA) && ENABLED(DELTA_HOME_TO_SAFE_ZONE)
  3541. // move to a height where we can use the full xy-area
  3542. do_blocking_move_to_z(delta_clip_start_height);
  3543. #endif
  3544. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3545. set_bed_leveling_enabled(ubl_state_at_entry);
  3546. #endif
  3547. clean_up_after_endstop_or_probe_move();
  3548. // Restore the active tool after homing
  3549. #if HOTENDS > 1
  3550. #if ENABLED(PARKING_EXTRUDER)
  3551. #define NO_FETCH false // fetch the previous toolhead
  3552. #else
  3553. #define NO_FETCH true
  3554. #endif
  3555. tool_change(old_tool_index, 0, NO_FETCH);
  3556. #endif
  3557. lcd_refresh();
  3558. report_current_position();
  3559. #if ENABLED(NANODLP_Z_SYNC)
  3560. #if ENABLED(NANODLP_ALL_AXIS)
  3561. #define _HOME_SYNC true // For any axis, output sync text.
  3562. #else
  3563. #define _HOME_SYNC (home_all || homeZ) // Only for Z-axis
  3564. #endif
  3565. if (_HOME_SYNC)
  3566. SERIAL_ECHOLNPGM(MSG_Z_MOVE_COMP);
  3567. #endif
  3568. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3569. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G28");
  3570. #endif
  3571. } // G28
  3572. void home_all_axes() { gcode_G28(true); }
  3573. #if HAS_PROBING_PROCEDURE
  3574. void out_of_range_error(const char* p_edge) {
  3575. SERIAL_PROTOCOLPGM("?Probe ");
  3576. serialprintPGM(p_edge);
  3577. SERIAL_PROTOCOLLNPGM(" position out of range.");
  3578. }
  3579. #endif
  3580. #if ENABLED(MESH_BED_LEVELING) || ENABLED(PROBE_MANUALLY)
  3581. #if ENABLED(LCD_BED_LEVELING)
  3582. extern bool lcd_wait_for_move;
  3583. #else
  3584. constexpr bool lcd_wait_for_move = false;
  3585. #endif
  3586. inline void _manual_goto_xy(const float &rx, const float &ry) {
  3587. #if MANUAL_PROBE_HEIGHT > 0
  3588. const float prev_z = current_position[Z_AXIS];
  3589. do_blocking_move_to(rx, ry, MANUAL_PROBE_HEIGHT);
  3590. do_blocking_move_to_z(prev_z);
  3591. #else
  3592. do_blocking_move_to_xy(rx, ry);
  3593. #endif
  3594. current_position[X_AXIS] = rx;
  3595. current_position[Y_AXIS] = ry;
  3596. #if ENABLED(LCD_BED_LEVELING)
  3597. lcd_wait_for_move = false;
  3598. #endif
  3599. }
  3600. #endif
  3601. #if ENABLED(MESH_BED_LEVELING)
  3602. // Save 130 bytes with non-duplication of PSTR
  3603. void echo_not_entered() { SERIAL_PROTOCOLLNPGM(" not entered."); }
  3604. void mbl_mesh_report() {
  3605. SERIAL_PROTOCOLLNPGM("Num X,Y: " STRINGIFY(GRID_MAX_POINTS_X) "," STRINGIFY(GRID_MAX_POINTS_Y));
  3606. SERIAL_PROTOCOLPGM("Z offset: "); SERIAL_PROTOCOL_F(mbl.z_offset, 5);
  3607. SERIAL_PROTOCOLLNPGM("\nMeasured points:");
  3608. print_2d_array(GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y, 5,
  3609. [](const uint8_t ix, const uint8_t iy) { return mbl.z_values[ix][iy]; }
  3610. );
  3611. }
  3612. /**
  3613. * G29: Mesh-based Z probe, probes a grid and produces a
  3614. * mesh to compensate for variable bed height
  3615. *
  3616. * Parameters With MESH_BED_LEVELING:
  3617. *
  3618. * S0 Produce a mesh report
  3619. * S1 Start probing mesh points
  3620. * S2 Probe the next mesh point
  3621. * S3 Xn Yn Zn.nn Manually modify a single point
  3622. * S4 Zn.nn Set z offset. Positive away from bed, negative closer to bed.
  3623. * S5 Reset and disable mesh
  3624. *
  3625. * The S0 report the points as below
  3626. *
  3627. * +----> X-axis 1-n
  3628. * |
  3629. * |
  3630. * v Y-axis 1-n
  3631. *
  3632. */
  3633. inline void gcode_G29() {
  3634. static int mbl_probe_index = -1;
  3635. #if HAS_SOFTWARE_ENDSTOPS
  3636. static bool enable_soft_endstops;
  3637. #endif
  3638. const MeshLevelingState state = (MeshLevelingState)parser.byteval('S', (int8_t)MeshReport);
  3639. if (!WITHIN(state, 0, 5)) {
  3640. SERIAL_PROTOCOLLNPGM("S out of range (0-5).");
  3641. return;
  3642. }
  3643. int8_t px, py;
  3644. switch (state) {
  3645. case MeshReport:
  3646. if (leveling_is_valid()) {
  3647. SERIAL_PROTOCOLLNPAIR("State: ", planner.leveling_active ? MSG_ON : MSG_OFF);
  3648. mbl_mesh_report();
  3649. }
  3650. else
  3651. SERIAL_PROTOCOLLNPGM("Mesh bed leveling has no data.");
  3652. break;
  3653. case MeshStart:
  3654. mbl.reset();
  3655. mbl_probe_index = 0;
  3656. enqueue_and_echo_commands_P(lcd_wait_for_move ? PSTR("G29 S2") : PSTR("G28\nG29 S2"));
  3657. break;
  3658. case MeshNext:
  3659. if (mbl_probe_index < 0) {
  3660. SERIAL_PROTOCOLLNPGM("Start mesh probing with \"G29 S1\" first.");
  3661. return;
  3662. }
  3663. // For each G29 S2...
  3664. if (mbl_probe_index == 0) {
  3665. #if HAS_SOFTWARE_ENDSTOPS
  3666. // For the initial G29 S2 save software endstop state
  3667. enable_soft_endstops = soft_endstops_enabled;
  3668. #endif
  3669. }
  3670. else {
  3671. // For G29 S2 after adjusting Z.
  3672. mbl.set_zigzag_z(mbl_probe_index - 1, current_position[Z_AXIS]);
  3673. #if HAS_SOFTWARE_ENDSTOPS
  3674. soft_endstops_enabled = enable_soft_endstops;
  3675. #endif
  3676. }
  3677. // If there's another point to sample, move there with optional lift.
  3678. if (mbl_probe_index < GRID_MAX_POINTS) {
  3679. mbl.zigzag(mbl_probe_index, px, py);
  3680. _manual_goto_xy(mbl.index_to_xpos[px], mbl.index_to_ypos[py]);
  3681. #if HAS_SOFTWARE_ENDSTOPS
  3682. // Disable software endstops to allow manual adjustment
  3683. // If G29 is not completed, they will not be re-enabled
  3684. soft_endstops_enabled = false;
  3685. #endif
  3686. mbl_probe_index++;
  3687. }
  3688. else {
  3689. // One last "return to the bed" (as originally coded) at completion
  3690. current_position[Z_AXIS] = Z_MIN_POS + MANUAL_PROBE_HEIGHT;
  3691. buffer_line_to_current_position();
  3692. stepper.synchronize();
  3693. // After recording the last point, activate home and activate
  3694. mbl_probe_index = -1;
  3695. SERIAL_PROTOCOLLNPGM("Mesh probing done.");
  3696. BUZZ(100, 659);
  3697. BUZZ(100, 698);
  3698. mbl.has_mesh = true;
  3699. home_all_axes();
  3700. set_bed_leveling_enabled(true);
  3701. #if ENABLED(MESH_G28_REST_ORIGIN)
  3702. current_position[Z_AXIS] = Z_MIN_POS;
  3703. set_destination_from_current();
  3704. buffer_line_to_destination(homing_feedrate(Z_AXIS));
  3705. stepper.synchronize();
  3706. #endif
  3707. #if ENABLED(LCD_BED_LEVELING)
  3708. lcd_wait_for_move = false;
  3709. #endif
  3710. }
  3711. break;
  3712. case MeshSet:
  3713. if (parser.seenval('X')) {
  3714. px = parser.value_int() - 1;
  3715. if (!WITHIN(px, 0, GRID_MAX_POINTS_X - 1)) {
  3716. SERIAL_PROTOCOLLNPGM("X out of range (1-" STRINGIFY(GRID_MAX_POINTS_X) ").");
  3717. return;
  3718. }
  3719. }
  3720. else {
  3721. SERIAL_CHAR('X'); echo_not_entered();
  3722. return;
  3723. }
  3724. if (parser.seenval('Y')) {
  3725. py = parser.value_int() - 1;
  3726. if (!WITHIN(py, 0, GRID_MAX_POINTS_Y - 1)) {
  3727. SERIAL_PROTOCOLLNPGM("Y out of range (1-" STRINGIFY(GRID_MAX_POINTS_Y) ").");
  3728. return;
  3729. }
  3730. }
  3731. else {
  3732. SERIAL_CHAR('Y'); echo_not_entered();
  3733. return;
  3734. }
  3735. if (parser.seenval('Z'))
  3736. mbl.z_values[px][py] = parser.value_linear_units();
  3737. else {
  3738. SERIAL_CHAR('Z'); echo_not_entered();
  3739. return;
  3740. }
  3741. break;
  3742. case MeshSetZOffset:
  3743. if (parser.seenval('Z'))
  3744. mbl.z_offset = parser.value_linear_units();
  3745. else {
  3746. SERIAL_CHAR('Z'); echo_not_entered();
  3747. return;
  3748. }
  3749. break;
  3750. case MeshReset:
  3751. reset_bed_level();
  3752. break;
  3753. } // switch(state)
  3754. if (state == MeshStart || state == MeshNext) {
  3755. SERIAL_PROTOCOLPAIR("MBL G29 point ", min(mbl_probe_index, GRID_MAX_POINTS));
  3756. SERIAL_PROTOCOLLNPAIR(" of ", int(GRID_MAX_POINTS));
  3757. }
  3758. report_current_position();
  3759. }
  3760. #elif OLDSCHOOL_ABL
  3761. #if ABL_GRID
  3762. #if ENABLED(PROBE_Y_FIRST)
  3763. #define PR_OUTER_VAR xCount
  3764. #define PR_OUTER_END abl_grid_points_x
  3765. #define PR_INNER_VAR yCount
  3766. #define PR_INNER_END abl_grid_points_y
  3767. #else
  3768. #define PR_OUTER_VAR yCount
  3769. #define PR_OUTER_END abl_grid_points_y
  3770. #define PR_INNER_VAR xCount
  3771. #define PR_INNER_END abl_grid_points_x
  3772. #endif
  3773. #endif
  3774. /**
  3775. * G29: Detailed Z probe, probes the bed at 3 or more points.
  3776. * Will fail if the printer has not been homed with G28.
  3777. *
  3778. * Enhanced G29 Auto Bed Leveling Probe Routine
  3779. *
  3780. * D Dry-Run mode. Just evaluate the bed Topology - Don't apply
  3781. * or alter the bed level data. Useful to check the topology
  3782. * after a first run of G29.
  3783. *
  3784. * J Jettison current bed leveling data
  3785. *
  3786. * V Set the verbose level (0-4). Example: "G29 V3"
  3787. *
  3788. * Parameters With LINEAR leveling only:
  3789. *
  3790. * P Set the size of the grid that will be probed (P x P points).
  3791. * Example: "G29 P4"
  3792. *
  3793. * X Set the X size of the grid that will be probed (X x Y points).
  3794. * Example: "G29 X7 Y5"
  3795. *
  3796. * Y Set the Y size of the grid that will be probed (X x Y points).
  3797. *
  3798. * T Generate a Bed Topology Report. Example: "G29 P5 T" for a detailed report.
  3799. * This is useful for manual bed leveling and finding flaws in the bed (to
  3800. * assist with part placement).
  3801. * Not supported by non-linear delta printer bed leveling.
  3802. *
  3803. * Parameters With LINEAR and BILINEAR leveling only:
  3804. *
  3805. * S Set the XY travel speed between probe points (in units/min)
  3806. *
  3807. * F Set the Front limit of the probing grid
  3808. * B Set the Back limit of the probing grid
  3809. * L Set the Left limit of the probing grid
  3810. * R Set the Right limit of the probing grid
  3811. *
  3812. * Parameters with DEBUG_LEVELING_FEATURE only:
  3813. *
  3814. * C Make a totally fake grid with no actual probing.
  3815. * For use in testing when no probing is possible.
  3816. *
  3817. * Parameters with BILINEAR leveling only:
  3818. *
  3819. * Z Supply an additional Z probe offset
  3820. *
  3821. * Extra parameters with PROBE_MANUALLY:
  3822. *
  3823. * To do manual probing simply repeat G29 until the procedure is complete.
  3824. * The first G29 accepts parameters. 'G29 Q' for status, 'G29 A' to abort.
  3825. *
  3826. * Q Query leveling and G29 state
  3827. *
  3828. * A Abort current leveling procedure
  3829. *
  3830. * Extra parameters with BILINEAR only:
  3831. *
  3832. * W Write a mesh point. (If G29 is idle.)
  3833. * I X index for mesh point
  3834. * J Y index for mesh point
  3835. * X X for mesh point, overrides I
  3836. * Y Y for mesh point, overrides J
  3837. * Z Z for mesh point. Otherwise, raw current Z.
  3838. *
  3839. * Without PROBE_MANUALLY:
  3840. *
  3841. * E By default G29 will engage the Z probe, test the bed, then disengage.
  3842. * Include "E" to engage/disengage the Z probe for each sample.
  3843. * There's no extra effect if you have a fixed Z probe.
  3844. *
  3845. */
  3846. inline void gcode_G29() {
  3847. // G29 Q is also available if debugging
  3848. #if ENABLED(DEBUG_LEVELING_FEATURE)
  3849. const bool query = parser.seen('Q');
  3850. const uint8_t old_debug_flags = marlin_debug_flags;
  3851. if (query) marlin_debug_flags |= DEBUG_LEVELING;
  3852. if (DEBUGGING(LEVELING)) {
  3853. DEBUG_POS(">>> gcode_G29", current_position);
  3854. log_machine_info();
  3855. }
  3856. marlin_debug_flags = old_debug_flags;
  3857. #if DISABLED(PROBE_MANUALLY)
  3858. if (query) return;
  3859. #endif
  3860. #endif
  3861. #if ENABLED(PROBE_MANUALLY)
  3862. const bool seenA = parser.seen('A'), seenQ = parser.seen('Q'), no_action = seenA || seenQ;
  3863. #endif
  3864. #if ENABLED(DEBUG_LEVELING_FEATURE) && DISABLED(PROBE_MANUALLY)
  3865. const bool faux = parser.boolval('C');
  3866. #elif ENABLED(PROBE_MANUALLY)
  3867. const bool faux = no_action;
  3868. #else
  3869. bool constexpr faux = false;
  3870. #endif
  3871. // Don't allow auto-leveling without homing first
  3872. if (axis_unhomed_error()) return;
  3873. // Define local vars 'static' for manual probing, 'auto' otherwise
  3874. #if ENABLED(PROBE_MANUALLY)
  3875. #define ABL_VAR static
  3876. #else
  3877. #define ABL_VAR
  3878. #endif
  3879. ABL_VAR int verbose_level;
  3880. ABL_VAR float xProbe, yProbe, measured_z;
  3881. ABL_VAR bool dryrun, abl_should_enable;
  3882. #if ENABLED(PROBE_MANUALLY) || ENABLED(AUTO_BED_LEVELING_LINEAR)
  3883. ABL_VAR int abl_probe_index;
  3884. #endif
  3885. #if HAS_SOFTWARE_ENDSTOPS && ENABLED(PROBE_MANUALLY)
  3886. ABL_VAR bool enable_soft_endstops = true;
  3887. #endif
  3888. #if ABL_GRID
  3889. #if ENABLED(PROBE_MANUALLY)
  3890. ABL_VAR uint8_t PR_OUTER_VAR;
  3891. ABL_VAR int8_t PR_INNER_VAR;
  3892. #endif
  3893. ABL_VAR int left_probe_bed_position, right_probe_bed_position, front_probe_bed_position, back_probe_bed_position;
  3894. ABL_VAR float xGridSpacing = 0, yGridSpacing = 0;
  3895. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3896. ABL_VAR uint8_t abl_grid_points_x = GRID_MAX_POINTS_X,
  3897. abl_grid_points_y = GRID_MAX_POINTS_Y;
  3898. ABL_VAR bool do_topography_map;
  3899. #else // Bilinear
  3900. uint8_t constexpr abl_grid_points_x = GRID_MAX_POINTS_X,
  3901. abl_grid_points_y = GRID_MAX_POINTS_Y;
  3902. #endif
  3903. #if ENABLED(AUTO_BED_LEVELING_LINEAR) || ENABLED(PROBE_MANUALLY)
  3904. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3905. ABL_VAR int abl2;
  3906. #else // Bilinear
  3907. int constexpr abl2 = GRID_MAX_POINTS;
  3908. #endif
  3909. #endif
  3910. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3911. ABL_VAR float zoffset;
  3912. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  3913. ABL_VAR int indexIntoAB[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
  3914. ABL_VAR float eqnAMatrix[GRID_MAX_POINTS * 3], // "A" matrix of the linear system of equations
  3915. eqnBVector[GRID_MAX_POINTS], // "B" vector of Z points
  3916. mean;
  3917. #endif
  3918. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  3919. int constexpr abl2 = 3;
  3920. // Probe at 3 arbitrary points
  3921. ABL_VAR vector_3 points[3] = {
  3922. vector_3(ABL_PROBE_PT_1_X, ABL_PROBE_PT_1_Y, 0),
  3923. vector_3(ABL_PROBE_PT_2_X, ABL_PROBE_PT_2_Y, 0),
  3924. vector_3(ABL_PROBE_PT_3_X, ABL_PROBE_PT_3_Y, 0)
  3925. };
  3926. #endif // AUTO_BED_LEVELING_3POINT
  3927. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3928. struct linear_fit_data lsf_results;
  3929. incremental_LSF_reset(&lsf_results);
  3930. #endif
  3931. /**
  3932. * On the initial G29 fetch command parameters.
  3933. */
  3934. if (!g29_in_progress) {
  3935. #if ENABLED(PROBE_MANUALLY) || ENABLED(AUTO_BED_LEVELING_LINEAR)
  3936. abl_probe_index = -1;
  3937. #endif
  3938. abl_should_enable = planner.leveling_active;
  3939. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3940. if (parser.seen('W')) {
  3941. if (!leveling_is_valid()) {
  3942. SERIAL_ERROR_START();
  3943. SERIAL_ERRORLNPGM("No bilinear grid");
  3944. return;
  3945. }
  3946. const float rz = parser.seenval('Z') ? RAW_Z_POSITION(parser.value_linear_units()) : current_position[Z_AXIS];
  3947. if (!WITHIN(rz, -10, 10)) {
  3948. SERIAL_ERROR_START();
  3949. SERIAL_ERRORLNPGM("Bad Z value");
  3950. return;
  3951. }
  3952. const float rx = RAW_X_POSITION(parser.linearval('X', NAN)),
  3953. ry = RAW_Y_POSITION(parser.linearval('Y', NAN));
  3954. int8_t i = parser.byteval('I', -1),
  3955. j = parser.byteval('J', -1);
  3956. if (!isnan(rx) && !isnan(ry)) {
  3957. // Get nearest i / j from x / y
  3958. i = (rx - bilinear_start[X_AXIS] + 0.5 * xGridSpacing) / xGridSpacing;
  3959. j = (ry - bilinear_start[Y_AXIS] + 0.5 * yGridSpacing) / yGridSpacing;
  3960. i = constrain(i, 0, GRID_MAX_POINTS_X - 1);
  3961. j = constrain(j, 0, GRID_MAX_POINTS_Y - 1);
  3962. }
  3963. if (WITHIN(i, 0, GRID_MAX_POINTS_X - 1) && WITHIN(j, 0, GRID_MAX_POINTS_Y)) {
  3964. set_bed_leveling_enabled(false);
  3965. z_values[i][j] = rz;
  3966. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  3967. bed_level_virt_interpolate();
  3968. #endif
  3969. set_bed_leveling_enabled(abl_should_enable);
  3970. report_current_position();
  3971. }
  3972. return;
  3973. } // parser.seen('W')
  3974. #endif
  3975. #if HAS_LEVELING
  3976. // Jettison bed leveling data
  3977. if (parser.seen('J')) {
  3978. reset_bed_level();
  3979. return;
  3980. }
  3981. #endif
  3982. verbose_level = parser.intval('V');
  3983. if (!WITHIN(verbose_level, 0, 4)) {
  3984. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-4).");
  3985. return;
  3986. }
  3987. dryrun = parser.boolval('D')
  3988. #if ENABLED(PROBE_MANUALLY)
  3989. || no_action
  3990. #endif
  3991. ;
  3992. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  3993. do_topography_map = verbose_level > 2 || parser.boolval('T');
  3994. // X and Y specify points in each direction, overriding the default
  3995. // These values may be saved with the completed mesh
  3996. abl_grid_points_x = parser.intval('X', GRID_MAX_POINTS_X);
  3997. abl_grid_points_y = parser.intval('Y', GRID_MAX_POINTS_Y);
  3998. if (parser.seenval('P')) abl_grid_points_x = abl_grid_points_y = parser.value_int();
  3999. if (abl_grid_points_x < 2 || abl_grid_points_y < 2) {
  4000. SERIAL_PROTOCOLLNPGM("?Number of probe points is implausible (2 minimum).");
  4001. return;
  4002. }
  4003. abl2 = abl_grid_points_x * abl_grid_points_y;
  4004. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4005. zoffset = parser.linearval('Z');
  4006. #endif
  4007. #if ABL_GRID
  4008. xy_probe_feedrate_mm_s = MMM_TO_MMS(parser.linearval('S', XY_PROBE_SPEED));
  4009. left_probe_bed_position = parser.seenval('L') ? (int)RAW_X_POSITION(parser.value_linear_units()) : LEFT_PROBE_BED_POSITION;
  4010. right_probe_bed_position = parser.seenval('R') ? (int)RAW_X_POSITION(parser.value_linear_units()) : RIGHT_PROBE_BED_POSITION;
  4011. front_probe_bed_position = parser.seenval('F') ? (int)RAW_Y_POSITION(parser.value_linear_units()) : FRONT_PROBE_BED_POSITION;
  4012. back_probe_bed_position = parser.seenval('B') ? (int)RAW_Y_POSITION(parser.value_linear_units()) : BACK_PROBE_BED_POSITION;
  4013. const bool left_out_l = left_probe_bed_position < MIN_PROBE_X,
  4014. left_out = left_out_l || left_probe_bed_position > right_probe_bed_position - (MIN_PROBE_EDGE),
  4015. right_out_r = right_probe_bed_position > MAX_PROBE_X,
  4016. right_out = right_out_r || right_probe_bed_position < left_probe_bed_position + MIN_PROBE_EDGE,
  4017. front_out_f = front_probe_bed_position < MIN_PROBE_Y,
  4018. front_out = front_out_f || front_probe_bed_position > back_probe_bed_position - (MIN_PROBE_EDGE),
  4019. back_out_b = back_probe_bed_position > MAX_PROBE_Y,
  4020. back_out = back_out_b || back_probe_bed_position < front_probe_bed_position + MIN_PROBE_EDGE;
  4021. if (left_out || right_out || front_out || back_out) {
  4022. if (left_out) {
  4023. out_of_range_error(PSTR("(L)eft"));
  4024. left_probe_bed_position = left_out_l ? MIN_PROBE_X : right_probe_bed_position - (MIN_PROBE_EDGE);
  4025. }
  4026. if (right_out) {
  4027. out_of_range_error(PSTR("(R)ight"));
  4028. right_probe_bed_position = right_out_r ? MAX_PROBE_X : left_probe_bed_position + MIN_PROBE_EDGE;
  4029. }
  4030. if (front_out) {
  4031. out_of_range_error(PSTR("(F)ront"));
  4032. front_probe_bed_position = front_out_f ? MIN_PROBE_Y : back_probe_bed_position - (MIN_PROBE_EDGE);
  4033. }
  4034. if (back_out) {
  4035. out_of_range_error(PSTR("(B)ack"));
  4036. back_probe_bed_position = back_out_b ? MAX_PROBE_Y : front_probe_bed_position + MIN_PROBE_EDGE;
  4037. }
  4038. return;
  4039. }
  4040. // probe at the points of a lattice grid
  4041. xGridSpacing = (right_probe_bed_position - left_probe_bed_position) / (abl_grid_points_x - 1);
  4042. yGridSpacing = (back_probe_bed_position - front_probe_bed_position) / (abl_grid_points_y - 1);
  4043. #endif // ABL_GRID
  4044. if (verbose_level > 0) {
  4045. SERIAL_PROTOCOLLNPGM("G29 Auto Bed Leveling");
  4046. if (dryrun) SERIAL_PROTOCOLLNPGM("Running in DRY-RUN mode");
  4047. }
  4048. stepper.synchronize();
  4049. // Disable auto bed leveling during G29
  4050. planner.leveling_active = false;
  4051. if (!dryrun) {
  4052. // Re-orient the current position without leveling
  4053. // based on where the steppers are positioned.
  4054. set_current_from_steppers_for_axis(ALL_AXES);
  4055. // Sync the planner to where the steppers stopped
  4056. SYNC_PLAN_POSITION_KINEMATIC();
  4057. }
  4058. #if HAS_BED_PROBE
  4059. // Deploy the probe. Probe will raise if needed.
  4060. if (DEPLOY_PROBE()) {
  4061. planner.leveling_active = abl_should_enable;
  4062. return;
  4063. }
  4064. #endif
  4065. if (!faux) setup_for_endstop_or_probe_move();
  4066. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4067. #if ENABLED(PROBE_MANUALLY)
  4068. if (!no_action)
  4069. #endif
  4070. if ( xGridSpacing != bilinear_grid_spacing[X_AXIS]
  4071. || yGridSpacing != bilinear_grid_spacing[Y_AXIS]
  4072. || left_probe_bed_position != bilinear_start[X_AXIS]
  4073. || front_probe_bed_position != bilinear_start[Y_AXIS]
  4074. ) {
  4075. if (dryrun) {
  4076. // Before reset bed level, re-enable to correct the position
  4077. planner.leveling_active = abl_should_enable;
  4078. }
  4079. // Reset grid to 0.0 or "not probed". (Also disables ABL)
  4080. reset_bed_level();
  4081. // Initialize a grid with the given dimensions
  4082. bilinear_grid_spacing[X_AXIS] = xGridSpacing;
  4083. bilinear_grid_spacing[Y_AXIS] = yGridSpacing;
  4084. bilinear_start[X_AXIS] = left_probe_bed_position;
  4085. bilinear_start[Y_AXIS] = front_probe_bed_position;
  4086. // Can't re-enable (on error) until the new grid is written
  4087. abl_should_enable = false;
  4088. }
  4089. #endif // AUTO_BED_LEVELING_BILINEAR
  4090. #if ENABLED(AUTO_BED_LEVELING_3POINT)
  4091. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4092. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> 3-point Leveling");
  4093. #endif
  4094. // Probe at 3 arbitrary points
  4095. points[0].z = points[1].z = points[2].z = 0;
  4096. #endif // AUTO_BED_LEVELING_3POINT
  4097. } // !g29_in_progress
  4098. #if ENABLED(PROBE_MANUALLY)
  4099. // For manual probing, get the next index to probe now.
  4100. // On the first probe this will be incremented to 0.
  4101. if (!no_action) {
  4102. ++abl_probe_index;
  4103. g29_in_progress = true;
  4104. }
  4105. // Abort current G29 procedure, go back to idle state
  4106. if (seenA && g29_in_progress) {
  4107. SERIAL_PROTOCOLLNPGM("Manual G29 aborted");
  4108. #if HAS_SOFTWARE_ENDSTOPS
  4109. soft_endstops_enabled = enable_soft_endstops;
  4110. #endif
  4111. planner.leveling_active = abl_should_enable;
  4112. g29_in_progress = false;
  4113. #if ENABLED(LCD_BED_LEVELING)
  4114. lcd_wait_for_move = false;
  4115. #endif
  4116. }
  4117. // Query G29 status
  4118. if (verbose_level || seenQ) {
  4119. SERIAL_PROTOCOLPGM("Manual G29 ");
  4120. if (g29_in_progress) {
  4121. SERIAL_PROTOCOLPAIR("point ", min(abl_probe_index + 1, abl2));
  4122. SERIAL_PROTOCOLLNPAIR(" of ", abl2);
  4123. }
  4124. else
  4125. SERIAL_PROTOCOLLNPGM("idle");
  4126. }
  4127. if (no_action) return;
  4128. if (abl_probe_index == 0) {
  4129. // For the initial G29 save software endstop state
  4130. #if HAS_SOFTWARE_ENDSTOPS
  4131. enable_soft_endstops = soft_endstops_enabled;
  4132. #endif
  4133. }
  4134. else {
  4135. // For G29 after adjusting Z.
  4136. // Save the previous Z before going to the next point
  4137. measured_z = current_position[Z_AXIS];
  4138. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4139. mean += measured_z;
  4140. eqnBVector[abl_probe_index] = measured_z;
  4141. eqnAMatrix[abl_probe_index + 0 * abl2] = xProbe;
  4142. eqnAMatrix[abl_probe_index + 1 * abl2] = yProbe;
  4143. eqnAMatrix[abl_probe_index + 2 * abl2] = 1;
  4144. incremental_LSF(&lsf_results, xProbe, yProbe, measured_z);
  4145. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4146. z_values[xCount][yCount] = measured_z + zoffset;
  4147. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4148. if (DEBUGGING(LEVELING)) {
  4149. SERIAL_PROTOCOLPAIR("Save X", xCount);
  4150. SERIAL_PROTOCOLPAIR(" Y", yCount);
  4151. SERIAL_PROTOCOLLNPAIR(" Z", measured_z + zoffset);
  4152. }
  4153. #endif
  4154. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  4155. points[abl_probe_index].z = measured_z;
  4156. #endif
  4157. }
  4158. //
  4159. // If there's another point to sample, move there with optional lift.
  4160. //
  4161. #if ABL_GRID
  4162. // Skip any unreachable points
  4163. while (abl_probe_index < abl2) {
  4164. // Set xCount, yCount based on abl_probe_index, with zig-zag
  4165. PR_OUTER_VAR = abl_probe_index / PR_INNER_END;
  4166. PR_INNER_VAR = abl_probe_index - (PR_OUTER_VAR * PR_INNER_END);
  4167. // Probe in reverse order for every other row/column
  4168. bool zig = (PR_OUTER_VAR & 1); // != ((PR_OUTER_END) & 1);
  4169. if (zig) PR_INNER_VAR = (PR_INNER_END - 1) - PR_INNER_VAR;
  4170. const float xBase = xCount * xGridSpacing + left_probe_bed_position,
  4171. yBase = yCount * yGridSpacing + front_probe_bed_position;
  4172. xProbe = FLOOR(xBase + (xBase < 0 ? 0 : 0.5));
  4173. yProbe = FLOOR(yBase + (yBase < 0 ? 0 : 0.5));
  4174. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4175. indexIntoAB[xCount][yCount] = abl_probe_index;
  4176. #endif
  4177. // Keep looping till a reachable point is found
  4178. if (position_is_reachable(xProbe, yProbe)) break;
  4179. ++abl_probe_index;
  4180. }
  4181. // Is there a next point to move to?
  4182. if (abl_probe_index < abl2) {
  4183. _manual_goto_xy(xProbe, yProbe); // Can be used here too!
  4184. #if HAS_SOFTWARE_ENDSTOPS
  4185. // Disable software endstops to allow manual adjustment
  4186. // If G29 is not completed, they will not be re-enabled
  4187. soft_endstops_enabled = false;
  4188. #endif
  4189. return;
  4190. }
  4191. else {
  4192. // Leveling done! Fall through to G29 finishing code below
  4193. SERIAL_PROTOCOLLNPGM("Grid probing done.");
  4194. // Re-enable software endstops, if needed
  4195. #if HAS_SOFTWARE_ENDSTOPS
  4196. soft_endstops_enabled = enable_soft_endstops;
  4197. #endif
  4198. }
  4199. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  4200. // Probe at 3 arbitrary points
  4201. if (abl_probe_index < 3) {
  4202. xProbe = points[abl_probe_index].x;
  4203. yProbe = points[abl_probe_index].y;
  4204. #if HAS_SOFTWARE_ENDSTOPS
  4205. // Disable software endstops to allow manual adjustment
  4206. // If G29 is not completed, they will not be re-enabled
  4207. soft_endstops_enabled = false;
  4208. #endif
  4209. return;
  4210. }
  4211. else {
  4212. SERIAL_PROTOCOLLNPGM("3-point probing done.");
  4213. // Re-enable software endstops, if needed
  4214. #if HAS_SOFTWARE_ENDSTOPS
  4215. soft_endstops_enabled = enable_soft_endstops;
  4216. #endif
  4217. if (!dryrun) {
  4218. vector_3 planeNormal = vector_3::cross(points[0] - points[1], points[2] - points[1]).get_normal();
  4219. if (planeNormal.z < 0) {
  4220. planeNormal.x *= -1;
  4221. planeNormal.y *= -1;
  4222. planeNormal.z *= -1;
  4223. }
  4224. planner.bed_level_matrix = matrix_3x3::create_look_at(planeNormal);
  4225. // Can't re-enable (on error) until the new grid is written
  4226. abl_should_enable = false;
  4227. }
  4228. }
  4229. #endif // AUTO_BED_LEVELING_3POINT
  4230. #else // !PROBE_MANUALLY
  4231. {
  4232. const bool stow_probe_after_each = parser.boolval('E');
  4233. #if ABL_GRID
  4234. bool zig = PR_OUTER_END & 1; // Always end at RIGHT and BACK_PROBE_BED_POSITION
  4235. measured_z = 0;
  4236. // Outer loop is Y with PROBE_Y_FIRST disabled
  4237. for (uint8_t PR_OUTER_VAR = 0; PR_OUTER_VAR < PR_OUTER_END && !isnan(measured_z); PR_OUTER_VAR++) {
  4238. int8_t inStart, inStop, inInc;
  4239. if (zig) { // away from origin
  4240. inStart = 0;
  4241. inStop = PR_INNER_END;
  4242. inInc = 1;
  4243. }
  4244. else { // towards origin
  4245. inStart = PR_INNER_END - 1;
  4246. inStop = -1;
  4247. inInc = -1;
  4248. }
  4249. zig ^= true; // zag
  4250. // Inner loop is Y with PROBE_Y_FIRST enabled
  4251. for (int8_t PR_INNER_VAR = inStart; PR_INNER_VAR != inStop; PR_INNER_VAR += inInc) {
  4252. float xBase = left_probe_bed_position + xGridSpacing * xCount,
  4253. yBase = front_probe_bed_position + yGridSpacing * yCount;
  4254. xProbe = FLOOR(xBase + (xBase < 0 ? 0 : 0.5));
  4255. yProbe = FLOOR(yBase + (yBase < 0 ? 0 : 0.5));
  4256. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4257. indexIntoAB[xCount][yCount] = ++abl_probe_index; // 0...
  4258. #endif
  4259. #if IS_KINEMATIC
  4260. // Avoid probing outside the round or hexagonal area
  4261. if (!position_is_reachable_by_probe(xProbe, yProbe)) continue;
  4262. #endif
  4263. measured_z = faux ? 0.001 * random(-100, 101) : probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
  4264. if (isnan(measured_z)) {
  4265. planner.leveling_active = abl_should_enable;
  4266. break;
  4267. }
  4268. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  4269. mean += measured_z;
  4270. eqnBVector[abl_probe_index] = measured_z;
  4271. eqnAMatrix[abl_probe_index + 0 * abl2] = xProbe;
  4272. eqnAMatrix[abl_probe_index + 1 * abl2] = yProbe;
  4273. eqnAMatrix[abl_probe_index + 2 * abl2] = 1;
  4274. incremental_LSF(&lsf_results, xProbe, yProbe, measured_z);
  4275. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4276. z_values[xCount][yCount] = measured_z + zoffset;
  4277. #endif
  4278. abl_should_enable = false;
  4279. idle();
  4280. } // inner
  4281. } // outer
  4282. #elif ENABLED(AUTO_BED_LEVELING_3POINT)
  4283. // Probe at 3 arbitrary points
  4284. for (uint8_t i = 0; i < 3; ++i) {
  4285. // Retain the last probe position
  4286. xProbe = points[i].x;
  4287. yProbe = points[i].y;
  4288. measured_z = faux ? 0.001 * random(-100, 101) : probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
  4289. if (isnan(measured_z)) {
  4290. planner.leveling_active = abl_should_enable;
  4291. break;
  4292. }
  4293. points[i].z = measured_z;
  4294. }
  4295. if (!dryrun && !isnan(measured_z)) {
  4296. vector_3 planeNormal = vector_3::cross(points[0] - points[1], points[2] - points[1]).get_normal();
  4297. if (planeNormal.z < 0) {
  4298. planeNormal.x *= -1;
  4299. planeNormal.y *= -1;
  4300. planeNormal.z *= -1;
  4301. }
  4302. planner.bed_level_matrix = matrix_3x3::create_look_at(planeNormal);
  4303. // Can't re-enable (on error) until the new grid is written
  4304. abl_should_enable = false;
  4305. }
  4306. #endif // AUTO_BED_LEVELING_3POINT
  4307. // Raise to _Z_CLEARANCE_DEPLOY_PROBE. Stow the probe.
  4308. if (STOW_PROBE()) {
  4309. planner.leveling_active = abl_should_enable;
  4310. measured_z = NAN;
  4311. }
  4312. }
  4313. #endif // !PROBE_MANUALLY
  4314. //
  4315. // G29 Finishing Code
  4316. //
  4317. // Unless this is a dry run, auto bed leveling will
  4318. // definitely be enabled after this point.
  4319. //
  4320. // If code above wants to continue leveling, it should
  4321. // return or loop before this point.
  4322. //
  4323. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4324. if (DEBUGGING(LEVELING)) DEBUG_POS("> probing complete", current_position);
  4325. #endif
  4326. #if ENABLED(PROBE_MANUALLY)
  4327. g29_in_progress = false;
  4328. #if ENABLED(LCD_BED_LEVELING)
  4329. lcd_wait_for_move = false;
  4330. #endif
  4331. #endif
  4332. // Calculate leveling, print reports, correct the position
  4333. if (!isnan(measured_z)) {
  4334. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4335. if (!dryrun) extrapolate_unprobed_bed_level();
  4336. print_bilinear_leveling_grid();
  4337. refresh_bed_level();
  4338. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  4339. print_bilinear_leveling_grid_virt();
  4340. #endif
  4341. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  4342. // For LINEAR leveling calculate matrix, print reports, correct the position
  4343. /**
  4344. * solve the plane equation ax + by + d = z
  4345. * A is the matrix with rows [x y 1] for all the probed points
  4346. * B is the vector of the Z positions
  4347. * the normal vector to the plane is formed by the coefficients of the
  4348. * plane equation in the standard form, which is Vx*x+Vy*y+Vz*z+d = 0
  4349. * so Vx = -a Vy = -b Vz = 1 (we want the vector facing towards positive Z
  4350. */
  4351. float plane_equation_coefficients[3];
  4352. finish_incremental_LSF(&lsf_results);
  4353. plane_equation_coefficients[0] = -lsf_results.A; // We should be able to eliminate the '-' on these three lines and down below
  4354. plane_equation_coefficients[1] = -lsf_results.B; // but that is not yet tested.
  4355. plane_equation_coefficients[2] = -lsf_results.D;
  4356. mean /= abl2;
  4357. if (verbose_level) {
  4358. SERIAL_PROTOCOLPGM("Eqn coefficients: a: ");
  4359. SERIAL_PROTOCOL_F(plane_equation_coefficients[0], 8);
  4360. SERIAL_PROTOCOLPGM(" b: ");
  4361. SERIAL_PROTOCOL_F(plane_equation_coefficients[1], 8);
  4362. SERIAL_PROTOCOLPGM(" d: ");
  4363. SERIAL_PROTOCOL_F(plane_equation_coefficients[2], 8);
  4364. SERIAL_EOL();
  4365. if (verbose_level > 2) {
  4366. SERIAL_PROTOCOLPGM("Mean of sampled points: ");
  4367. SERIAL_PROTOCOL_F(mean, 8);
  4368. SERIAL_EOL();
  4369. }
  4370. }
  4371. // Create the matrix but don't correct the position yet
  4372. if (!dryrun)
  4373. planner.bed_level_matrix = matrix_3x3::create_look_at(
  4374. vector_3(-plane_equation_coefficients[0], -plane_equation_coefficients[1], 1) // We can eliminate the '-' here and up above
  4375. );
  4376. // Show the Topography map if enabled
  4377. if (do_topography_map) {
  4378. SERIAL_PROTOCOLLNPGM("\nBed Height Topography:\n"
  4379. " +--- BACK --+\n"
  4380. " | |\n"
  4381. " L | (+) | R\n"
  4382. " E | | I\n"
  4383. " F | (-) N (+) | G\n"
  4384. " T | | H\n"
  4385. " | (-) | T\n"
  4386. " | |\n"
  4387. " O-- FRONT --+\n"
  4388. " (0,0)");
  4389. float min_diff = 999;
  4390. for (int8_t yy = abl_grid_points_y - 1; yy >= 0; yy--) {
  4391. for (uint8_t xx = 0; xx < abl_grid_points_x; xx++) {
  4392. int ind = indexIntoAB[xx][yy];
  4393. float diff = eqnBVector[ind] - mean,
  4394. x_tmp = eqnAMatrix[ind + 0 * abl2],
  4395. y_tmp = eqnAMatrix[ind + 1 * abl2],
  4396. z_tmp = 0;
  4397. apply_rotation_xyz(planner.bed_level_matrix, x_tmp, y_tmp, z_tmp);
  4398. NOMORE(min_diff, eqnBVector[ind] - z_tmp);
  4399. if (diff >= 0.0)
  4400. SERIAL_PROTOCOLPGM(" +"); // Include + for column alignment
  4401. else
  4402. SERIAL_PROTOCOLCHAR(' ');
  4403. SERIAL_PROTOCOL_F(diff, 5);
  4404. } // xx
  4405. SERIAL_EOL();
  4406. } // yy
  4407. SERIAL_EOL();
  4408. if (verbose_level > 3) {
  4409. SERIAL_PROTOCOLLNPGM("\nCorrected Bed Height vs. Bed Topology:");
  4410. for (int8_t yy = abl_grid_points_y - 1; yy >= 0; yy--) {
  4411. for (uint8_t xx = 0; xx < abl_grid_points_x; xx++) {
  4412. int ind = indexIntoAB[xx][yy];
  4413. float x_tmp = eqnAMatrix[ind + 0 * abl2],
  4414. y_tmp = eqnAMatrix[ind + 1 * abl2],
  4415. z_tmp = 0;
  4416. apply_rotation_xyz(planner.bed_level_matrix, x_tmp, y_tmp, z_tmp);
  4417. float diff = eqnBVector[ind] - z_tmp - min_diff;
  4418. if (diff >= 0.0)
  4419. SERIAL_PROTOCOLPGM(" +");
  4420. // Include + for column alignment
  4421. else
  4422. SERIAL_PROTOCOLCHAR(' ');
  4423. SERIAL_PROTOCOL_F(diff, 5);
  4424. } // xx
  4425. SERIAL_EOL();
  4426. } // yy
  4427. SERIAL_EOL();
  4428. }
  4429. } //do_topography_map
  4430. #endif // AUTO_BED_LEVELING_LINEAR
  4431. #if ABL_PLANAR
  4432. // For LINEAR and 3POINT leveling correct the current position
  4433. if (verbose_level > 0)
  4434. planner.bed_level_matrix.debug(PSTR("\n\nBed Level Correction Matrix:"));
  4435. if (!dryrun) {
  4436. //
  4437. // Correct the current XYZ position based on the tilted plane.
  4438. //
  4439. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4440. if (DEBUGGING(LEVELING)) DEBUG_POS("G29 uncorrected XYZ", current_position);
  4441. #endif
  4442. float converted[XYZ];
  4443. COPY(converted, current_position);
  4444. planner.leveling_active = true;
  4445. planner.unapply_leveling(converted); // use conversion machinery
  4446. planner.leveling_active = false;
  4447. // Use the last measured distance to the bed, if possible
  4448. if ( NEAR(current_position[X_AXIS], xProbe - (X_PROBE_OFFSET_FROM_EXTRUDER))
  4449. && NEAR(current_position[Y_AXIS], yProbe - (Y_PROBE_OFFSET_FROM_EXTRUDER))
  4450. ) {
  4451. const float simple_z = current_position[Z_AXIS] - measured_z;
  4452. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4453. if (DEBUGGING(LEVELING)) {
  4454. SERIAL_ECHOPAIR("Z from Probe:", simple_z);
  4455. SERIAL_ECHOPAIR(" Matrix:", converted[Z_AXIS]);
  4456. SERIAL_ECHOLNPAIR(" Discrepancy:", simple_z - converted[Z_AXIS]);
  4457. }
  4458. #endif
  4459. converted[Z_AXIS] = simple_z;
  4460. }
  4461. // The rotated XY and corrected Z are now current_position
  4462. COPY(current_position, converted);
  4463. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4464. if (DEBUGGING(LEVELING)) DEBUG_POS("G29 corrected XYZ", current_position);
  4465. #endif
  4466. }
  4467. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  4468. if (!dryrun) {
  4469. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4470. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("G29 uncorrected Z:", current_position[Z_AXIS]);
  4471. #endif
  4472. // Unapply the offset because it is going to be immediately applied
  4473. // and cause compensation movement in Z
  4474. current_position[Z_AXIS] -= bilinear_z_offset(current_position);
  4475. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4476. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR(" corrected Z:", current_position[Z_AXIS]);
  4477. #endif
  4478. }
  4479. #endif // ABL_PLANAR
  4480. #ifdef Z_PROBE_END_SCRIPT
  4481. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4482. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("Z Probe End Script: ", Z_PROBE_END_SCRIPT);
  4483. #endif
  4484. enqueue_and_echo_commands_P(PSTR(Z_PROBE_END_SCRIPT));
  4485. stepper.synchronize();
  4486. #endif
  4487. // Auto Bed Leveling is complete! Enable if possible.
  4488. planner.leveling_active = dryrun ? abl_should_enable : true;
  4489. } // !isnan(measured_z)
  4490. // Restore state after probing
  4491. if (!faux) clean_up_after_endstop_or_probe_move();
  4492. #if ENABLED(DEBUG_LEVELING_FEATURE)
  4493. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G29");
  4494. #endif
  4495. report_current_position();
  4496. KEEPALIVE_STATE(IN_HANDLER);
  4497. if (planner.leveling_active)
  4498. SYNC_PLAN_POSITION_KINEMATIC();
  4499. }
  4500. #endif // OLDSCHOOL_ABL
  4501. #if HAS_BED_PROBE
  4502. /**
  4503. * G30: Do a single Z probe at the current XY
  4504. *
  4505. * Parameters:
  4506. *
  4507. * X Probe X position (default current X)
  4508. * Y Probe Y position (default current Y)
  4509. * E Engage the probe for each probe
  4510. */
  4511. inline void gcode_G30() {
  4512. const float xpos = parser.linearval('X', current_position[X_AXIS] + X_PROBE_OFFSET_FROM_EXTRUDER),
  4513. ypos = parser.linearval('Y', current_position[Y_AXIS] + Y_PROBE_OFFSET_FROM_EXTRUDER);
  4514. if (!position_is_reachable_by_probe(xpos, ypos)) return;
  4515. // Disable leveling so the planner won't mess with us
  4516. #if HAS_LEVELING
  4517. set_bed_leveling_enabled(false);
  4518. #endif
  4519. setup_for_endstop_or_probe_move();
  4520. const float measured_z = probe_pt(xpos, ypos, parser.boolval('E'), 1);
  4521. if (!isnan(measured_z)) {
  4522. SERIAL_PROTOCOLPAIR("Bed X: ", FIXFLOAT(xpos));
  4523. SERIAL_PROTOCOLPAIR(" Y: ", FIXFLOAT(ypos));
  4524. SERIAL_PROTOCOLLNPAIR(" Z: ", FIXFLOAT(measured_z));
  4525. }
  4526. clean_up_after_endstop_or_probe_move();
  4527. report_current_position();
  4528. }
  4529. #if ENABLED(Z_PROBE_SLED)
  4530. /**
  4531. * G31: Deploy the Z probe
  4532. */
  4533. inline void gcode_G31() { DEPLOY_PROBE(); }
  4534. /**
  4535. * G32: Stow the Z probe
  4536. */
  4537. inline void gcode_G32() { STOW_PROBE(); }
  4538. #endif // Z_PROBE_SLED
  4539. #endif // HAS_BED_PROBE
  4540. #if ENABLED(DELTA_AUTO_CALIBRATION)
  4541. constexpr uint8_t _7P_STEP = 1, // 7-point step - to change number of calibration points
  4542. _4P_STEP = _7P_STEP * 2, // 4-point step
  4543. NPP = _7P_STEP * 6; // number of calibration points on the radius
  4544. enum CalEnum { // the 7 main calibration points - add definitions if needed
  4545. CEN = 0,
  4546. __A = 1,
  4547. _AB = __A + _7P_STEP,
  4548. __B = _AB + _7P_STEP,
  4549. _BC = __B + _7P_STEP,
  4550. __C = _BC + _7P_STEP,
  4551. _CA = __C + _7P_STEP,
  4552. };
  4553. #define LOOP_CAL_PT(VAR, S, N) for (uint8_t VAR=S; VAR<=NPP; VAR+=N)
  4554. #define F_LOOP_CAL_PT(VAR, S, N) for (float VAR=S; VAR<NPP+0.9999; VAR+=N)
  4555. #define I_LOOP_CAL_PT(VAR, S, N) for (float VAR=S; VAR>CEN+0.9999; VAR-=N)
  4556. #define LOOP_CAL_ALL(VAR) LOOP_CAL_PT(VAR, CEN, 1)
  4557. #define LOOP_CAL_RAD(VAR) LOOP_CAL_PT(VAR, __A, _7P_STEP)
  4558. #define LOOP_CAL_ACT(VAR, _4P, _OP) LOOP_CAL_PT(VAR, _OP ? _AB : __A, _4P ? _4P_STEP : _7P_STEP)
  4559. static void print_signed_float(const char * const prefix, const float &f) {
  4560. SERIAL_PROTOCOLPGM(" ");
  4561. serialprintPGM(prefix);
  4562. SERIAL_PROTOCOLCHAR(':');
  4563. if (f >= 0) SERIAL_CHAR('+');
  4564. SERIAL_PROTOCOL_F(f, 2);
  4565. }
  4566. static void print_G33_settings(const bool end_stops, const bool tower_angles) {
  4567. SERIAL_PROTOCOLPAIR(".Height:", delta_height);
  4568. if (end_stops) {
  4569. print_signed_float(PSTR("Ex"), delta_endstop_adj[A_AXIS]);
  4570. print_signed_float(PSTR("Ey"), delta_endstop_adj[B_AXIS]);
  4571. print_signed_float(PSTR("Ez"), delta_endstop_adj[C_AXIS]);
  4572. }
  4573. if (end_stops && tower_angles) {
  4574. SERIAL_PROTOCOLPAIR(" Radius:", delta_radius);
  4575. SERIAL_EOL();
  4576. SERIAL_CHAR('.');
  4577. SERIAL_PROTOCOL_SP(13);
  4578. }
  4579. if (tower_angles) {
  4580. print_signed_float(PSTR("Tx"), delta_tower_angle_trim[A_AXIS]);
  4581. print_signed_float(PSTR("Ty"), delta_tower_angle_trim[B_AXIS]);
  4582. print_signed_float(PSTR("Tz"), delta_tower_angle_trim[C_AXIS]);
  4583. }
  4584. if ((!end_stops && tower_angles) || (end_stops && !tower_angles)) { // XOR
  4585. SERIAL_PROTOCOLPAIR(" Radius:", delta_radius);
  4586. }
  4587. SERIAL_EOL();
  4588. }
  4589. static void print_G33_results(const float z_at_pt[NPP + 1], const bool tower_points, const bool opposite_points) {
  4590. SERIAL_PROTOCOLPGM(". ");
  4591. print_signed_float(PSTR("c"), z_at_pt[CEN]);
  4592. if (tower_points) {
  4593. print_signed_float(PSTR(" x"), z_at_pt[__A]);
  4594. print_signed_float(PSTR(" y"), z_at_pt[__B]);
  4595. print_signed_float(PSTR(" z"), z_at_pt[__C]);
  4596. }
  4597. if (tower_points && opposite_points) {
  4598. SERIAL_EOL();
  4599. SERIAL_CHAR('.');
  4600. SERIAL_PROTOCOL_SP(13);
  4601. }
  4602. if (opposite_points) {
  4603. print_signed_float(PSTR("yz"), z_at_pt[_BC]);
  4604. print_signed_float(PSTR("zx"), z_at_pt[_CA]);
  4605. print_signed_float(PSTR("xy"), z_at_pt[_AB]);
  4606. }
  4607. SERIAL_EOL();
  4608. }
  4609. /**
  4610. * After G33:
  4611. * - Move to the print ceiling (DELTA_HOME_TO_SAFE_ZONE only)
  4612. * - Stow the probe
  4613. * - Restore endstops state
  4614. * - Select the old tool, if needed
  4615. */
  4616. static void G33_cleanup(
  4617. #if HOTENDS > 1
  4618. const uint8_t old_tool_index
  4619. #endif
  4620. ) {
  4621. #if ENABLED(DELTA_HOME_TO_SAFE_ZONE)
  4622. do_blocking_move_to_z(delta_clip_start_height);
  4623. #endif
  4624. STOW_PROBE();
  4625. clean_up_after_endstop_or_probe_move();
  4626. #if HOTENDS > 1
  4627. tool_change(old_tool_index, 0, true);
  4628. #endif
  4629. }
  4630. inline float calibration_probe(const float nx, const float ny, const bool stow) {
  4631. #if HAS_BED_PROBE
  4632. return probe_pt(nx, ny, stow, 0, false);
  4633. #else
  4634. UNUSED(stow);
  4635. return lcd_probe_pt(nx, ny);
  4636. #endif
  4637. }
  4638. static float probe_G33_points(float z_at_pt[NPP + 1], const int8_t probe_points, const bool towers_set, const bool stow_after_each) {
  4639. const bool _0p_calibration = probe_points == 0,
  4640. _1p_calibration = probe_points == 1,
  4641. _4p_calibration = probe_points == 2,
  4642. _4p_opposite_points = _4p_calibration && !towers_set,
  4643. _7p_calibration = probe_points >= 3 || probe_points == 0,
  4644. _7p_no_intermediates = probe_points == 3,
  4645. _7p_1_intermediates = probe_points == 4,
  4646. _7p_2_intermediates = probe_points == 5,
  4647. _7p_4_intermediates = probe_points == 6,
  4648. _7p_6_intermediates = probe_points == 7,
  4649. _7p_8_intermediates = probe_points == 8,
  4650. _7p_11_intermediates = probe_points == 9,
  4651. _7p_14_intermediates = probe_points == 10,
  4652. _7p_intermed_points = probe_points >= 4,
  4653. _7p_6_centre = probe_points >= 5 && probe_points <= 7,
  4654. _7p_9_centre = probe_points >= 8;
  4655. LOOP_CAL_ALL(axis) z_at_pt[axis] = 0.0;
  4656. if (!_0p_calibration) {
  4657. if (!_7p_no_intermediates && !_7p_4_intermediates && !_7p_11_intermediates) { // probe the center
  4658. z_at_pt[CEN] += calibration_probe(0, 0, stow_after_each);
  4659. if (isnan(z_at_pt[CEN])) return NAN;
  4660. }
  4661. if (_7p_calibration) { // probe extra center points
  4662. const float start = _7p_9_centre ? _CA + _7P_STEP / 3.0 : _7p_6_centre ? _CA : __C,
  4663. steps = _7p_9_centre ? _4P_STEP / 3.0 : _7p_6_centre ? _7P_STEP : _4P_STEP;
  4664. I_LOOP_CAL_PT(axis, start, steps) {
  4665. const float a = RADIANS(210 + (360 / NPP) * (axis - 1)),
  4666. r = delta_calibration_radius * 0.1;
  4667. z_at_pt[CEN] += calibration_probe(cos(a) * r, sin(a) * r, stow_after_each);
  4668. if (isnan(z_at_pt[CEN])) return NAN;
  4669. }
  4670. z_at_pt[CEN] /= float(_7p_2_intermediates ? 7 : probe_points);
  4671. }
  4672. if (!_1p_calibration) { // probe the radius
  4673. const CalEnum start = _4p_opposite_points ? _AB : __A;
  4674. const float steps = _7p_14_intermediates ? _7P_STEP / 15.0 : // 15r * 6 + 10c = 100
  4675. _7p_11_intermediates ? _7P_STEP / 12.0 : // 12r * 6 + 9c = 81
  4676. _7p_8_intermediates ? _7P_STEP / 9.0 : // 9r * 6 + 10c = 64
  4677. _7p_6_intermediates ? _7P_STEP / 7.0 : // 7r * 6 + 7c = 49
  4678. _7p_4_intermediates ? _7P_STEP / 5.0 : // 5r * 6 + 6c = 36
  4679. _7p_2_intermediates ? _7P_STEP / 3.0 : // 3r * 6 + 7c = 25
  4680. _7p_1_intermediates ? _7P_STEP / 2.0 : // 2r * 6 + 4c = 16
  4681. _7p_no_intermediates ? _7P_STEP : // 1r * 6 + 3c = 9
  4682. _4P_STEP; // .5r * 6 + 1c = 4
  4683. bool zig_zag = true;
  4684. F_LOOP_CAL_PT(axis, start, _7p_9_centre ? steps * 3 : steps) {
  4685. const int8_t offset = _7p_9_centre ? 1 : 0;
  4686. for (int8_t circle = -offset; circle <= offset; circle++) {
  4687. const float a = RADIANS(210 + (360 / NPP) * (axis - 1)),
  4688. r = delta_calibration_radius * (1 + 0.1 * (zig_zag ? circle : - circle)),
  4689. interpol = fmod(axis, 1);
  4690. const float z_temp = calibration_probe(cos(a) * r, sin(a) * r, stow_after_each);
  4691. if (isnan(z_temp)) return NAN;
  4692. // split probe point to neighbouring calibration points
  4693. z_at_pt[uint8_t(round(axis - interpol + NPP - 1)) % NPP + 1] += z_temp * sq(cos(RADIANS(interpol * 90)));
  4694. z_at_pt[uint8_t(round(axis - interpol)) % NPP + 1] += z_temp * sq(sin(RADIANS(interpol * 90)));
  4695. }
  4696. zig_zag = !zig_zag;
  4697. }
  4698. if (_7p_intermed_points)
  4699. LOOP_CAL_RAD(axis)
  4700. z_at_pt[axis] /= _7P_STEP / steps;
  4701. }
  4702. float S1 = z_at_pt[CEN],
  4703. S2 = sq(z_at_pt[CEN]);
  4704. int16_t N = 1;
  4705. if (!_1p_calibration) { // std dev from zero plane
  4706. LOOP_CAL_ACT(axis, _4p_calibration, _4p_opposite_points) {
  4707. S1 += z_at_pt[axis];
  4708. S2 += sq(z_at_pt[axis]);
  4709. N++;
  4710. }
  4711. return round(SQRT(S2 / N) * 1000.0) / 1000.0 + 0.00001;
  4712. }
  4713. }
  4714. return 0.00001;
  4715. }
  4716. #if HAS_BED_PROBE
  4717. static bool G33_auto_tune() {
  4718. float z_at_pt[NPP + 1] = { 0.0 },
  4719. z_at_pt_base[NPP + 1] = { 0.0 },
  4720. z_temp, h_fac = 0.0, r_fac = 0.0, a_fac = 0.0, norm = 0.8;
  4721. #define ZP(N,I) ((N) * z_at_pt[I])
  4722. #define Z06(I) ZP(6, I)
  4723. #define Z03(I) ZP(3, I)
  4724. #define Z02(I) ZP(2, I)
  4725. #define Z01(I) ZP(1, I)
  4726. #define Z32(I) ZP(3/2, I)
  4727. SERIAL_PROTOCOLPGM("AUTO TUNE baseline");
  4728. SERIAL_EOL();
  4729. if (isnan(probe_G33_points(z_at_pt_base, 3, true, false))) return false;
  4730. print_G33_results(z_at_pt_base, true, true);
  4731. LOOP_XYZ(axis) {
  4732. delta_endstop_adj[axis] -= 1.0;
  4733. recalc_delta_settings();
  4734. endstops.enable(true);
  4735. if (!home_delta()) return false;
  4736. endstops.not_homing();
  4737. SERIAL_PROTOCOLPGM("Tuning E");
  4738. SERIAL_CHAR(tolower(axis_codes[axis]));
  4739. SERIAL_EOL();
  4740. if (isnan(probe_G33_points(z_at_pt, 3, true, false))) return false;
  4741. LOOP_CAL_ALL(axis) z_at_pt[axis] -= z_at_pt_base[axis];
  4742. print_G33_results(z_at_pt, true, true);
  4743. delta_endstop_adj[axis] += 1.0;
  4744. recalc_delta_settings();
  4745. switch (axis) {
  4746. case A_AXIS :
  4747. h_fac += 4.0 / (Z03(CEN) +Z01(__A) +Z32(_CA) +Z32(_AB)); // Offset by X-tower end-stop
  4748. break;
  4749. case B_AXIS :
  4750. h_fac += 4.0 / (Z03(CEN) +Z01(__B) +Z32(_BC) +Z32(_AB)); // Offset by Y-tower end-stop
  4751. break;
  4752. case C_AXIS :
  4753. h_fac += 4.0 / (Z03(CEN) +Z01(__C) +Z32(_BC) +Z32(_CA) ); // Offset by Z-tower end-stop
  4754. break;
  4755. }
  4756. }
  4757. h_fac /= 3.0;
  4758. h_fac *= norm; // Normalize to 1.02 for Kossel mini
  4759. for (int8_t zig_zag = -1; zig_zag < 2; zig_zag += 2) {
  4760. delta_radius += 1.0 * zig_zag;
  4761. recalc_delta_settings();
  4762. endstops.enable(true);
  4763. if (!home_delta()) return false;
  4764. endstops.not_homing();
  4765. SERIAL_PROTOCOLPGM("Tuning R");
  4766. SERIAL_PROTOCOL(zig_zag == -1 ? "-" : "+");
  4767. SERIAL_EOL();
  4768. if (isnan(probe_G33_points(z_at_pt, 3, true, false))) return false;
  4769. LOOP_CAL_ALL(axis) z_at_pt[axis] -= z_at_pt_base[axis];
  4770. print_G33_results(z_at_pt, true, true);
  4771. delta_radius -= 1.0 * zig_zag;
  4772. recalc_delta_settings();
  4773. r_fac -= zig_zag * 6.0 / (Z03(__A) +Z03(__B) +Z03(__C) +Z03(_BC) +Z03(_CA) +Z03(_AB)); // Offset by delta radius
  4774. }
  4775. r_fac /= 2.0;
  4776. r_fac *= 3 * norm; // Normalize to 2.25 for Kossel mini
  4777. LOOP_XYZ(axis) {
  4778. delta_tower_angle_trim[axis] += 1.0;
  4779. delta_endstop_adj[(axis + 1) % 3] -= 1.0 / 4.5;
  4780. delta_endstop_adj[(axis + 2) % 3] += 1.0 / 4.5;
  4781. z_temp = MAX3(delta_endstop_adj[A_AXIS], delta_endstop_adj[B_AXIS], delta_endstop_adj[C_AXIS]);
  4782. delta_height -= z_temp;
  4783. LOOP_XYZ(axis) delta_endstop_adj[axis] -= z_temp;
  4784. recalc_delta_settings();
  4785. endstops.enable(true);
  4786. if (!home_delta()) return false;
  4787. endstops.not_homing();
  4788. SERIAL_PROTOCOLPGM("Tuning T");
  4789. SERIAL_CHAR(tolower(axis_codes[axis]));
  4790. SERIAL_EOL();
  4791. if (isnan(probe_G33_points(z_at_pt, 3, true, false))) return false;
  4792. LOOP_CAL_ALL(axis) z_at_pt[axis] -= z_at_pt_base[axis];
  4793. print_G33_results(z_at_pt, true, true);
  4794. delta_tower_angle_trim[axis] -= 1.0;
  4795. delta_endstop_adj[(axis+1) % 3] += 1.0/4.5;
  4796. delta_endstop_adj[(axis+2) % 3] -= 1.0/4.5;
  4797. z_temp = MAX3(delta_endstop_adj[A_AXIS], delta_endstop_adj[B_AXIS], delta_endstop_adj[C_AXIS]);
  4798. delta_height -= z_temp;
  4799. LOOP_XYZ(axis) delta_endstop_adj[axis] -= z_temp;
  4800. recalc_delta_settings();
  4801. switch (axis) {
  4802. case A_AXIS :
  4803. a_fac += 4.0 / ( Z06(__B) -Z06(__C) +Z06(_CA) -Z06(_AB)); // Offset by alpha tower angle
  4804. break;
  4805. case B_AXIS :
  4806. a_fac += 4.0 / (-Z06(__A) +Z06(__C) -Z06(_BC) +Z06(_AB)); // Offset by beta tower angle
  4807. break;
  4808. case C_AXIS :
  4809. a_fac += 4.0 / (Z06(__A) -Z06(__B) +Z06(_BC) -Z06(_CA) ); // Offset by gamma tower angle
  4810. break;
  4811. }
  4812. }
  4813. a_fac /= 3.0;
  4814. a_fac *= norm; // Normalize to 0.83 for Kossel mini
  4815. endstops.enable(true);
  4816. if (!home_delta()) return false;
  4817. endstops.not_homing();
  4818. print_signed_float(PSTR( "H_FACTOR: "), h_fac);
  4819. print_signed_float(PSTR(" R_FACTOR: "), r_fac);
  4820. print_signed_float(PSTR(" A_FACTOR: "), a_fac);
  4821. SERIAL_EOL();
  4822. SERIAL_PROTOCOLPGM("Copy these values to Configuration.h");
  4823. SERIAL_EOL();
  4824. return true;
  4825. }
  4826. #endif // HAS_BED_PROBE
  4827. /**
  4828. * G33 - Delta '1-4-7-point' Auto-Calibration
  4829. * Calibrate height, endstops, delta radius, and tower angles.
  4830. *
  4831. * Parameters:
  4832. *
  4833. * Pn Number of probe points:
  4834. * P0 No probe. Normalize only.
  4835. * P1 Probe center and set height only.
  4836. * P2 Probe center and towers. Set height, endstops and delta radius.
  4837. * P3 Probe all positions: center, towers and opposite towers. Set all.
  4838. * P4-P10 Probe all positions + at different itermediate locations and average them.
  4839. *
  4840. * T Don't calibrate tower angle corrections
  4841. *
  4842. * Cn.nn Calibration precision; when omitted calibrates to maximum precision
  4843. *
  4844. * Fn Force to run at least n iterations and takes the best result
  4845. *
  4846. * A Auto tune calibartion factors (set in Configuration.h)
  4847. *
  4848. * Vn Verbose level:
  4849. * V0 Dry-run mode. Report settings and probe results. No calibration.
  4850. * V1 Report start and end settings only
  4851. * V2 Report settings at each iteration
  4852. * V3 Report settings and probe results
  4853. *
  4854. * E Engage the probe for each point
  4855. */
  4856. inline void gcode_G33() {
  4857. const int8_t probe_points = parser.intval('P', DELTA_CALIBRATION_DEFAULT_POINTS);
  4858. if (!WITHIN(probe_points, 0, 10)) {
  4859. SERIAL_PROTOCOLLNPGM("?(P)oints is implausible (0-10).");
  4860. return;
  4861. }
  4862. const int8_t verbose_level = parser.byteval('V', 1);
  4863. if (!WITHIN(verbose_level, 0, 3)) {
  4864. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-3).");
  4865. return;
  4866. }
  4867. const float calibration_precision = parser.floatval('C', 0.0);
  4868. if (calibration_precision < 0) {
  4869. SERIAL_PROTOCOLLNPGM("?(C)alibration precision is implausible (>=0).");
  4870. return;
  4871. }
  4872. const int8_t force_iterations = parser.intval('F', 0);
  4873. if (!WITHIN(force_iterations, 0, 30)) {
  4874. SERIAL_PROTOCOLLNPGM("?(F)orce iteration is implausible (0-30).");
  4875. return;
  4876. }
  4877. const bool towers_set = !parser.boolval('T'),
  4878. auto_tune = parser.boolval('A'),
  4879. stow_after_each = parser.boolval('E'),
  4880. _0p_calibration = probe_points == 0,
  4881. _1p_calibration = probe_points == 1,
  4882. _4p_calibration = probe_points == 2,
  4883. _7p_9_centre = probe_points >= 8,
  4884. _tower_results = (_4p_calibration && towers_set)
  4885. || probe_points >= 3 || probe_points == 0,
  4886. _opposite_results = (_4p_calibration && !towers_set)
  4887. || probe_points >= 3 || probe_points == 0,
  4888. _endstop_results = probe_points != 1,
  4889. _angle_results = (probe_points >= 3 || probe_points == 0) && towers_set;
  4890. const static char save_message[] PROGMEM = "Save with M500 and/or copy to Configuration.h";
  4891. int8_t iterations = 0;
  4892. float test_precision,
  4893. zero_std_dev = (verbose_level ? 999.0 : 0.0), // 0.0 in dry-run mode : forced end
  4894. zero_std_dev_min = zero_std_dev,
  4895. e_old[ABC] = {
  4896. delta_endstop_adj[A_AXIS],
  4897. delta_endstop_adj[B_AXIS],
  4898. delta_endstop_adj[C_AXIS]
  4899. },
  4900. dr_old = delta_radius,
  4901. zh_old = delta_height,
  4902. ta_old[ABC] = {
  4903. delta_tower_angle_trim[A_AXIS],
  4904. delta_tower_angle_trim[B_AXIS],
  4905. delta_tower_angle_trim[C_AXIS]
  4906. };
  4907. SERIAL_PROTOCOLLNPGM("G33 Auto Calibrate");
  4908. if (!_1p_calibration && !_0p_calibration) { // test if the outer radius is reachable
  4909. LOOP_CAL_RAD(axis) {
  4910. const float a = RADIANS(210 + (360 / NPP) * (axis - 1)),
  4911. r = delta_calibration_radius * (1 + (_7p_9_centre ? 0.1 : 0.0));
  4912. if (!position_is_reachable(cos(a) * r, sin(a) * r)) {
  4913. SERIAL_PROTOCOLLNPGM("?(M665 B)ed radius is implausible.");
  4914. return;
  4915. }
  4916. }
  4917. }
  4918. stepper.synchronize();
  4919. #if HAS_LEVELING
  4920. reset_bed_level(); // After calibration bed-level data is no longer valid
  4921. #endif
  4922. #if HOTENDS > 1
  4923. const uint8_t old_tool_index = active_extruder;
  4924. tool_change(0, 0, true);
  4925. #define G33_CLEANUP() G33_cleanup(old_tool_index)
  4926. #else
  4927. #define G33_CLEANUP() G33_cleanup()
  4928. #endif
  4929. setup_for_endstop_or_probe_move();
  4930. endstops.enable(true);
  4931. if (!_0p_calibration) {
  4932. if (!home_delta())
  4933. return;
  4934. endstops.not_homing();
  4935. }
  4936. if (auto_tune) {
  4937. #if HAS_BED_PROBE
  4938. G33_auto_tune();
  4939. #else
  4940. SERIAL_PROTOCOLLNPGM("A probe is needed for auto-tune");
  4941. #endif
  4942. G33_CLEANUP();
  4943. return;
  4944. }
  4945. // Report settings
  4946. const char *checkingac = PSTR("Checking... AC"); // TODO: Make translatable string
  4947. serialprintPGM(checkingac);
  4948. if (verbose_level == 0) SERIAL_PROTOCOLPGM(" (DRY-RUN)");
  4949. SERIAL_EOL();
  4950. lcd_setstatusPGM(checkingac);
  4951. print_G33_settings(_endstop_results, _angle_results);
  4952. do {
  4953. float z_at_pt[NPP + 1] = { 0.0 };
  4954. test_precision = zero_std_dev;
  4955. iterations++;
  4956. // Probe the points
  4957. zero_std_dev = probe_G33_points(z_at_pt, probe_points, towers_set, stow_after_each);
  4958. if (isnan(zero_std_dev)) {
  4959. SERIAL_PROTOCOLPGM("Correct delta_radius with M665 R or end-stops with M666 X Y Z");
  4960. SERIAL_EOL();
  4961. return G33_CLEANUP();
  4962. }
  4963. // Solve matrices
  4964. if ((zero_std_dev < test_precision || iterations <= force_iterations) && zero_std_dev > calibration_precision) {
  4965. if (zero_std_dev < zero_std_dev_min) {
  4966. COPY(e_old, delta_endstop_adj);
  4967. dr_old = delta_radius;
  4968. zh_old = delta_height;
  4969. COPY(ta_old, delta_tower_angle_trim);
  4970. }
  4971. float e_delta[ABC] = { 0.0 }, r_delta = 0.0, t_delta[ABC] = { 0.0 };
  4972. const float r_diff = delta_radius - delta_calibration_radius,
  4973. h_factor = 1 / 6.0 *
  4974. #ifdef H_FACTOR
  4975. (H_FACTOR), // Set in Configuration.h
  4976. #else
  4977. (1.00 + r_diff * 0.001), // 1.02 for r_diff = 20mm
  4978. #endif
  4979. r_factor = 1 / 6.0 *
  4980. #ifdef R_FACTOR
  4981. -(R_FACTOR), // Set in Configuration.h
  4982. #else
  4983. -(1.75 + 0.005 * r_diff + 0.001 * sq(r_diff)), // 2.25 for r_diff = 20mm
  4984. #endif
  4985. a_factor = 1 / 6.0 *
  4986. #ifdef A_FACTOR
  4987. (A_FACTOR); // Set in Configuration.h
  4988. #else
  4989. (66.66 / delta_calibration_radius); // 0.83 for cal_rd = 80mm
  4990. #endif
  4991. #define ZP(N,I) ((N) * z_at_pt[I])
  4992. #define Z6(I) ZP(6, I)
  4993. #define Z4(I) ZP(4, I)
  4994. #define Z2(I) ZP(2, I)
  4995. #define Z1(I) ZP(1, I)
  4996. #if !HAS_BED_PROBE
  4997. test_precision = 0.00; // forced end
  4998. #endif
  4999. switch (probe_points) {
  5000. case 0:
  5001. test_precision = 0.00; // forced end
  5002. break;
  5003. case 1:
  5004. test_precision = 0.00; // forced end
  5005. LOOP_XYZ(axis) e_delta[axis] = Z1(CEN);
  5006. break;
  5007. case 2:
  5008. if (towers_set) {
  5009. e_delta[A_AXIS] = (Z6(CEN) +Z4(__A) -Z2(__B) -Z2(__C)) * h_factor;
  5010. e_delta[B_AXIS] = (Z6(CEN) -Z2(__A) +Z4(__B) -Z2(__C)) * h_factor;
  5011. e_delta[C_AXIS] = (Z6(CEN) -Z2(__A) -Z2(__B) +Z4(__C)) * h_factor;
  5012. r_delta = (Z6(CEN) -Z2(__A) -Z2(__B) -Z2(__C)) * r_factor;
  5013. }
  5014. else {
  5015. e_delta[A_AXIS] = (Z6(CEN) -Z4(_BC) +Z2(_CA) +Z2(_AB)) * h_factor;
  5016. e_delta[B_AXIS] = (Z6(CEN) +Z2(_BC) -Z4(_CA) +Z2(_AB)) * h_factor;
  5017. e_delta[C_AXIS] = (Z6(CEN) +Z2(_BC) +Z2(_CA) -Z4(_AB)) * h_factor;
  5018. r_delta = (Z6(CEN) -Z2(_BC) -Z2(_CA) -Z2(_AB)) * r_factor;
  5019. }
  5020. break;
  5021. default:
  5022. e_delta[A_AXIS] = (Z6(CEN) +Z2(__A) -Z1(__B) -Z1(__C) -Z2(_BC) +Z1(_CA) +Z1(_AB)) * h_factor;
  5023. e_delta[B_AXIS] = (Z6(CEN) -Z1(__A) +Z2(__B) -Z1(__C) +Z1(_BC) -Z2(_CA) +Z1(_AB)) * h_factor;
  5024. e_delta[C_AXIS] = (Z6(CEN) -Z1(__A) -Z1(__B) +Z2(__C) +Z1(_BC) +Z1(_CA) -Z2(_AB)) * h_factor;
  5025. r_delta = (Z6(CEN) -Z1(__A) -Z1(__B) -Z1(__C) -Z1(_BC) -Z1(_CA) -Z1(_AB)) * r_factor;
  5026. if (towers_set) {
  5027. t_delta[A_AXIS] = ( -Z4(__B) +Z4(__C) -Z4(_CA) +Z4(_AB)) * a_factor;
  5028. t_delta[B_AXIS] = ( Z4(__A) -Z4(__C) +Z4(_BC) -Z4(_AB)) * a_factor;
  5029. t_delta[C_AXIS] = (-Z4(__A) +Z4(__B) -Z4(_BC) +Z4(_CA) ) * a_factor;
  5030. e_delta[A_AXIS] += (t_delta[B_AXIS] - t_delta[C_AXIS]) / 4.5;
  5031. e_delta[B_AXIS] += (t_delta[C_AXIS] - t_delta[A_AXIS]) / 4.5;
  5032. e_delta[C_AXIS] += (t_delta[A_AXIS] - t_delta[B_AXIS]) / 4.5;
  5033. }
  5034. break;
  5035. }
  5036. LOOP_XYZ(axis) delta_endstop_adj[axis] += e_delta[axis];
  5037. delta_radius += r_delta;
  5038. LOOP_XYZ(axis) delta_tower_angle_trim[axis] += t_delta[axis];
  5039. }
  5040. else if (zero_std_dev >= test_precision) { // step one back
  5041. COPY(delta_endstop_adj, e_old);
  5042. delta_radius = dr_old;
  5043. delta_height = zh_old;
  5044. COPY(delta_tower_angle_trim, ta_old);
  5045. }
  5046. if (verbose_level != 0) { // !dry run
  5047. // normalise angles to least squares
  5048. if (_angle_results) {
  5049. float a_sum = 0.0;
  5050. LOOP_XYZ(axis) a_sum += delta_tower_angle_trim[axis];
  5051. LOOP_XYZ(axis) delta_tower_angle_trim[axis] -= a_sum / 3.0;
  5052. }
  5053. // adjust delta_height and endstops by the max amount
  5054. const float z_temp = MAX3(delta_endstop_adj[A_AXIS], delta_endstop_adj[B_AXIS], delta_endstop_adj[C_AXIS]);
  5055. delta_height -= z_temp;
  5056. LOOP_XYZ(axis) delta_endstop_adj[axis] -= z_temp;
  5057. }
  5058. recalc_delta_settings();
  5059. NOMORE(zero_std_dev_min, zero_std_dev);
  5060. // print report
  5061. if (verbose_level > 2)
  5062. print_G33_results(z_at_pt, _tower_results, _opposite_results);
  5063. if (verbose_level != 0) { // !dry run
  5064. if ((zero_std_dev >= test_precision && iterations > force_iterations) || zero_std_dev <= calibration_precision) { // end iterations
  5065. SERIAL_PROTOCOLPGM("Calibration OK");
  5066. SERIAL_PROTOCOL_SP(32);
  5067. #if HAS_BED_PROBE
  5068. if (zero_std_dev >= test_precision && !_1p_calibration)
  5069. SERIAL_PROTOCOLPGM("rolling back.");
  5070. else
  5071. #endif
  5072. {
  5073. SERIAL_PROTOCOLPGM("std dev:");
  5074. SERIAL_PROTOCOL_F(zero_std_dev_min, 3);
  5075. }
  5076. SERIAL_EOL();
  5077. char mess[21];
  5078. strcpy_P(mess, PSTR("Calibration sd:"));
  5079. if (zero_std_dev_min < 1)
  5080. sprintf_P(&mess[15], PSTR("0.%03i"), (int)round(zero_std_dev_min * 1000.0));
  5081. else
  5082. sprintf_P(&mess[15], PSTR("%03i.x"), (int)round(zero_std_dev_min));
  5083. lcd_setstatus(mess);
  5084. print_G33_settings(_endstop_results, _angle_results);
  5085. serialprintPGM(save_message);
  5086. SERIAL_EOL();
  5087. }
  5088. else { // !end iterations
  5089. char mess[15];
  5090. if (iterations < 31)
  5091. sprintf_P(mess, PSTR("Iteration : %02i"), (int)iterations);
  5092. else
  5093. strcpy_P(mess, PSTR("No convergence"));
  5094. SERIAL_PROTOCOL(mess);
  5095. SERIAL_PROTOCOL_SP(32);
  5096. SERIAL_PROTOCOLPGM("std dev:");
  5097. SERIAL_PROTOCOL_F(zero_std_dev, 3);
  5098. SERIAL_EOL();
  5099. lcd_setstatus(mess);
  5100. if (verbose_level > 1)
  5101. print_G33_settings(_endstop_results, _angle_results);
  5102. }
  5103. }
  5104. else { // dry run
  5105. const char *enddryrun = PSTR("End DRY-RUN");
  5106. serialprintPGM(enddryrun);
  5107. SERIAL_PROTOCOL_SP(35);
  5108. SERIAL_PROTOCOLPGM("std dev:");
  5109. SERIAL_PROTOCOL_F(zero_std_dev, 3);
  5110. SERIAL_EOL();
  5111. char mess[21];
  5112. strcpy_P(mess, enddryrun);
  5113. strcpy_P(&mess[11], PSTR(" sd:"));
  5114. if (zero_std_dev < 1)
  5115. sprintf_P(&mess[15], PSTR("0.%03i"), (int)round(zero_std_dev * 1000.0));
  5116. else
  5117. sprintf_P(&mess[15], PSTR("%03i.x"), (int)round(zero_std_dev));
  5118. lcd_setstatus(mess);
  5119. }
  5120. endstops.enable(true);
  5121. if (!home_delta())
  5122. return;
  5123. endstops.not_homing();
  5124. }
  5125. while (((zero_std_dev < test_precision && iterations < 31) || iterations <= force_iterations) && zero_std_dev > calibration_precision);
  5126. G33_CLEANUP();
  5127. }
  5128. #endif // DELTA_AUTO_CALIBRATION
  5129. #if ENABLED(G38_PROBE_TARGET)
  5130. static bool G38_run_probe() {
  5131. bool G38_pass_fail = false;
  5132. #if MULTIPLE_PROBING > 1
  5133. // Get direction of move and retract
  5134. float retract_mm[XYZ];
  5135. LOOP_XYZ(i) {
  5136. float dist = destination[i] - current_position[i];
  5137. retract_mm[i] = FABS(dist) < G38_MINIMUM_MOVE ? 0 : home_bump_mm((AxisEnum)i) * (dist > 0 ? -1 : 1);
  5138. }
  5139. #endif
  5140. stepper.synchronize(); // wait until the machine is idle
  5141. // Move until destination reached or target hit
  5142. endstops.enable(true);
  5143. G38_move = true;
  5144. G38_endstop_hit = false;
  5145. prepare_move_to_destination();
  5146. stepper.synchronize();
  5147. G38_move = false;
  5148. endstops.hit_on_purpose();
  5149. set_current_from_steppers_for_axis(ALL_AXES);
  5150. SYNC_PLAN_POSITION_KINEMATIC();
  5151. if (G38_endstop_hit) {
  5152. G38_pass_fail = true;
  5153. #if MULTIPLE_PROBING > 1
  5154. // Move away by the retract distance
  5155. set_destination_from_current();
  5156. LOOP_XYZ(i) destination[i] += retract_mm[i];
  5157. endstops.enable(false);
  5158. prepare_move_to_destination();
  5159. stepper.synchronize();
  5160. feedrate_mm_s /= 4;
  5161. // Bump the target more slowly
  5162. LOOP_XYZ(i) destination[i] -= retract_mm[i] * 2;
  5163. endstops.enable(true);
  5164. G38_move = true;
  5165. prepare_move_to_destination();
  5166. stepper.synchronize();
  5167. G38_move = false;
  5168. set_current_from_steppers_for_axis(ALL_AXES);
  5169. SYNC_PLAN_POSITION_KINEMATIC();
  5170. #endif
  5171. }
  5172. endstops.hit_on_purpose();
  5173. endstops.not_homing();
  5174. return G38_pass_fail;
  5175. }
  5176. /**
  5177. * G38.2 - probe toward workpiece, stop on contact, signal error if failure
  5178. * G38.3 - probe toward workpiece, stop on contact
  5179. *
  5180. * Like G28 except uses Z min probe for all axes
  5181. */
  5182. inline void gcode_G38(bool is_38_2) {
  5183. // Get X Y Z E F
  5184. gcode_get_destination();
  5185. setup_for_endstop_or_probe_move();
  5186. // If any axis has enough movement, do the move
  5187. LOOP_XYZ(i)
  5188. if (FABS(destination[i] - current_position[i]) >= G38_MINIMUM_MOVE) {
  5189. if (!parser.seenval('F')) feedrate_mm_s = homing_feedrate((AxisEnum)i);
  5190. // If G38.2 fails throw an error
  5191. if (!G38_run_probe() && is_38_2) {
  5192. SERIAL_ERROR_START();
  5193. SERIAL_ERRORLNPGM("Failed to reach target");
  5194. }
  5195. break;
  5196. }
  5197. clean_up_after_endstop_or_probe_move();
  5198. }
  5199. #endif // G38_PROBE_TARGET
  5200. #if HAS_MESH
  5201. /**
  5202. * G42: Move X & Y axes to mesh coordinates (I & J)
  5203. */
  5204. inline void gcode_G42() {
  5205. #if ENABLED(NO_MOTION_BEFORE_HOMING)
  5206. if (axis_unhomed_error()) return;
  5207. #endif
  5208. if (IsRunning()) {
  5209. const bool hasI = parser.seenval('I');
  5210. const int8_t ix = hasI ? parser.value_int() : 0;
  5211. const bool hasJ = parser.seenval('J');
  5212. const int8_t iy = hasJ ? parser.value_int() : 0;
  5213. if ((hasI && !WITHIN(ix, 0, GRID_MAX_POINTS_X - 1)) || (hasJ && !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1))) {
  5214. SERIAL_ECHOLNPGM(MSG_ERR_MESH_XY);
  5215. return;
  5216. }
  5217. set_destination_from_current();
  5218. if (hasI) destination[X_AXIS] = _GET_MESH_X(ix);
  5219. if (hasJ) destination[Y_AXIS] = _GET_MESH_Y(iy);
  5220. if (parser.boolval('P')) {
  5221. if (hasI) destination[X_AXIS] -= X_PROBE_OFFSET_FROM_EXTRUDER;
  5222. if (hasJ) destination[Y_AXIS] -= Y_PROBE_OFFSET_FROM_EXTRUDER;
  5223. }
  5224. const float fval = parser.linearval('F');
  5225. if (fval > 0.0) feedrate_mm_s = MMM_TO_MMS(fval);
  5226. // SCARA kinematic has "safe" XY raw moves
  5227. #if IS_SCARA
  5228. prepare_uninterpolated_move_to_destination();
  5229. #else
  5230. prepare_move_to_destination();
  5231. #endif
  5232. }
  5233. }
  5234. #endif // HAS_MESH
  5235. /**
  5236. * G92: Set current position to given X Y Z E
  5237. */
  5238. inline void gcode_G92() {
  5239. stepper.synchronize();
  5240. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  5241. switch (parser.subcode) {
  5242. case 1:
  5243. // Zero the G92 values and restore current position
  5244. #if !IS_SCARA
  5245. LOOP_XYZ(i) {
  5246. const float v = position_shift[i];
  5247. if (v) {
  5248. position_shift[i] = 0;
  5249. update_software_endstops((AxisEnum)i);
  5250. }
  5251. }
  5252. #endif // Not SCARA
  5253. return;
  5254. }
  5255. #endif
  5256. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  5257. #define IS_G92_0 (parser.subcode == 0)
  5258. #else
  5259. #define IS_G92_0 true
  5260. #endif
  5261. bool didE = false;
  5262. #if IS_SCARA || !HAS_POSITION_SHIFT
  5263. bool didXYZ = false;
  5264. #else
  5265. constexpr bool didXYZ = false;
  5266. #endif
  5267. if (IS_G92_0) LOOP_XYZE(i) {
  5268. if (parser.seenval(axis_codes[i])) {
  5269. const float l = parser.value_axis_units((AxisEnum)i),
  5270. v = i == E_AXIS ? l : LOGICAL_TO_NATIVE(l, i),
  5271. d = v - current_position[i];
  5272. if (!NEAR_ZERO(d)) {
  5273. #if IS_SCARA || !HAS_POSITION_SHIFT
  5274. if (i == E_AXIS) didE = true; else didXYZ = true;
  5275. current_position[i] = v; // Without workspaces revert to Marlin 1.0 behavior
  5276. #elif HAS_POSITION_SHIFT
  5277. if (i == E_AXIS) {
  5278. didE = true;
  5279. current_position[E_AXIS] = v; // When using coordinate spaces, only E is set directly
  5280. }
  5281. else {
  5282. position_shift[i] += d; // Other axes simply offset the coordinate space
  5283. update_software_endstops((AxisEnum)i);
  5284. }
  5285. #endif
  5286. }
  5287. }
  5288. }
  5289. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  5290. // Apply workspace offset to the active coordinate system
  5291. if (WITHIN(active_coordinate_system, 0, MAX_COORDINATE_SYSTEMS - 1))
  5292. COPY(coordinate_system[active_coordinate_system], position_shift);
  5293. #endif
  5294. if (didXYZ)
  5295. SYNC_PLAN_POSITION_KINEMATIC();
  5296. else if (didE)
  5297. sync_plan_position_e();
  5298. report_current_position();
  5299. }
  5300. #if HAS_RESUME_CONTINUE
  5301. /**
  5302. * M0: Unconditional stop - Wait for user button press on LCD
  5303. * M1: Conditional stop - Wait for user button press on LCD
  5304. */
  5305. inline void gcode_M0_M1() {
  5306. const char * const args = parser.string_arg;
  5307. millis_t ms = 0;
  5308. bool hasP = false, hasS = false;
  5309. if (parser.seenval('P')) {
  5310. ms = parser.value_millis(); // milliseconds to wait
  5311. hasP = ms > 0;
  5312. }
  5313. if (parser.seenval('S')) {
  5314. ms = parser.value_millis_from_seconds(); // seconds to wait
  5315. hasS = ms > 0;
  5316. }
  5317. #if ENABLED(ULTIPANEL)
  5318. if (!hasP && !hasS && args && *args)
  5319. lcd_setstatus(args, true);
  5320. else {
  5321. LCD_MESSAGEPGM(MSG_USERWAIT);
  5322. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  5323. dontExpireStatus();
  5324. #endif
  5325. }
  5326. #else
  5327. if (!hasP && !hasS && args && *args) {
  5328. SERIAL_ECHO_START();
  5329. SERIAL_ECHOLN(args);
  5330. }
  5331. #endif
  5332. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5333. wait_for_user = true;
  5334. stepper.synchronize();
  5335. refresh_cmd_timeout();
  5336. if (ms > 0) {
  5337. ms += previous_cmd_ms; // wait until this time for a click
  5338. while (PENDING(millis(), ms) && wait_for_user) idle();
  5339. }
  5340. else {
  5341. #if ENABLED(ULTIPANEL)
  5342. if (lcd_detected()) {
  5343. while (wait_for_user) idle();
  5344. print_job_timer.isPaused() ? LCD_MESSAGEPGM(WELCOME_MSG) : LCD_MESSAGEPGM(MSG_RESUMING);
  5345. }
  5346. #else
  5347. while (wait_for_user) idle();
  5348. #endif
  5349. }
  5350. wait_for_user = false;
  5351. KEEPALIVE_STATE(IN_HANDLER);
  5352. }
  5353. #endif // HAS_RESUME_CONTINUE
  5354. #if ENABLED(SPINDLE_LASER_ENABLE)
  5355. /**
  5356. * M3: Spindle Clockwise
  5357. * M4: Spindle Counter-clockwise
  5358. *
  5359. * S0 turns off spindle.
  5360. *
  5361. * If no speed PWM output is defined then M3/M4 just turns it on.
  5362. *
  5363. * At least 12.8KHz (50Hz * 256) is needed for spindle PWM.
  5364. * Hardware PWM is required. ISRs are too slow.
  5365. *
  5366. * NOTE: WGM for timers 3, 4, and 5 must be either Mode 1 or Mode 5.
  5367. * No other settings give a PWM signal that goes from 0 to 5 volts.
  5368. *
  5369. * The system automatically sets WGM to Mode 1, so no special
  5370. * initialization is needed.
  5371. *
  5372. * WGM bits for timer 2 are automatically set by the system to
  5373. * Mode 1. This produces an acceptable 0 to 5 volt signal.
  5374. * No special initialization is needed.
  5375. *
  5376. * NOTE: A minimum PWM frequency of 50 Hz is needed. All prescaler
  5377. * factors for timers 2, 3, 4, and 5 are acceptable.
  5378. *
  5379. * SPINDLE_LASER_ENABLE_PIN needs an external pullup or it may power on
  5380. * the spindle/laser during power-up or when connecting to the host
  5381. * (usually goes through a reset which sets all I/O pins to tri-state)
  5382. *
  5383. * PWM duty cycle goes from 0 (off) to 255 (always on).
  5384. */
  5385. // Wait for spindle to come up to speed
  5386. inline void delay_for_power_up() { dwell(SPINDLE_LASER_POWERUP_DELAY); }
  5387. // Wait for spindle to stop turning
  5388. inline void delay_for_power_down() { dwell(SPINDLE_LASER_POWERDOWN_DELAY); }
  5389. /**
  5390. * ocr_val_mode() is used for debugging and to get the points needed to compute the RPM vs ocr_val line
  5391. *
  5392. * it accepts inputs of 0-255
  5393. */
  5394. inline void ocr_val_mode() {
  5395. uint8_t spindle_laser_power = parser.value_byte();
  5396. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low)
  5397. if (SPINDLE_LASER_PWM_INVERT) spindle_laser_power = 255 - spindle_laser_power;
  5398. analogWrite(SPINDLE_LASER_PWM_PIN, spindle_laser_power);
  5399. }
  5400. inline void gcode_M3_M4(bool is_M3) {
  5401. stepper.synchronize(); // wait until previous movement commands (G0/G0/G2/G3) have completed before playing with the spindle
  5402. #if SPINDLE_DIR_CHANGE
  5403. const bool rotation_dir = (is_M3 && !SPINDLE_INVERT_DIR || !is_M3 && SPINDLE_INVERT_DIR) ? HIGH : LOW;
  5404. if (SPINDLE_STOP_ON_DIR_CHANGE \
  5405. && READ(SPINDLE_LASER_ENABLE_PIN) == SPINDLE_LASER_ENABLE_INVERT \
  5406. && READ(SPINDLE_DIR_PIN) != rotation_dir
  5407. ) {
  5408. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // turn spindle off
  5409. delay_for_power_down();
  5410. }
  5411. WRITE(SPINDLE_DIR_PIN, rotation_dir);
  5412. #endif
  5413. /**
  5414. * Our final value for ocr_val is an unsigned 8 bit value between 0 and 255 which usually means uint8_t.
  5415. * Went to uint16_t because some of the uint8_t calculations would sometimes give 1000 0000 rather than 1111 1111.
  5416. * Then needed to AND the uint16_t result with 0x00FF to make sure we only wrote the byte of interest.
  5417. */
  5418. #if ENABLED(SPINDLE_LASER_PWM)
  5419. if (parser.seen('O')) ocr_val_mode();
  5420. else {
  5421. const float spindle_laser_power = parser.floatval('S');
  5422. if (spindle_laser_power == 0) {
  5423. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // turn spindle off (active low)
  5424. analogWrite(SPINDLE_LASER_PWM_PIN, SPINDLE_LASER_PWM_INVERT ? 255 : 0); // only write low byte
  5425. delay_for_power_down();
  5426. }
  5427. else {
  5428. int16_t ocr_val = (spindle_laser_power - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // convert RPM to PWM duty cycle
  5429. NOMORE(ocr_val, 255); // limit to max the Atmel PWM will support
  5430. if (spindle_laser_power <= SPEED_POWER_MIN)
  5431. ocr_val = (SPEED_POWER_MIN - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // minimum setting
  5432. if (spindle_laser_power >= SPEED_POWER_MAX)
  5433. ocr_val = (SPEED_POWER_MAX - (SPEED_POWER_INTERCEPT)) * (1.0 / (SPEED_POWER_SLOPE)); // limit to max RPM
  5434. if (SPINDLE_LASER_PWM_INVERT) ocr_val = 255 - ocr_val;
  5435. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low)
  5436. analogWrite(SPINDLE_LASER_PWM_PIN, ocr_val & 0xFF); // only write low byte
  5437. delay_for_power_up();
  5438. }
  5439. }
  5440. #else
  5441. WRITE(SPINDLE_LASER_ENABLE_PIN, SPINDLE_LASER_ENABLE_INVERT); // turn spindle on (active low) if spindle speed option not enabled
  5442. delay_for_power_up();
  5443. #endif
  5444. }
  5445. /**
  5446. * M5 turn off spindle
  5447. */
  5448. inline void gcode_M5() {
  5449. stepper.synchronize();
  5450. WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT);
  5451. delay_for_power_down();
  5452. }
  5453. #endif // SPINDLE_LASER_ENABLE
  5454. /**
  5455. * M17: Enable power on all stepper motors
  5456. */
  5457. inline void gcode_M17() {
  5458. LCD_MESSAGEPGM(MSG_NO_MOVE);
  5459. enable_all_steppers();
  5460. }
  5461. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  5462. static float resume_position[XYZE];
  5463. static bool move_away_flag = false;
  5464. #if ENABLED(SDSUPPORT)
  5465. static bool sd_print_paused = false;
  5466. #endif
  5467. static void filament_change_beep(const int8_t max_beep_count, const bool init=false) {
  5468. static millis_t next_buzz = 0;
  5469. static int8_t runout_beep = 0;
  5470. if (init) next_buzz = runout_beep = 0;
  5471. const millis_t ms = millis();
  5472. if (ELAPSED(ms, next_buzz)) {
  5473. if (max_beep_count < 0 || runout_beep < max_beep_count + 5) { // Only beep as long as we're supposed to
  5474. next_buzz = ms + ((max_beep_count < 0 || runout_beep < max_beep_count) ? 2500 : 400);
  5475. BUZZ(300, 2000);
  5476. runout_beep++;
  5477. }
  5478. }
  5479. }
  5480. static void ensure_safe_temperature() {
  5481. bool heaters_heating = true;
  5482. wait_for_heatup = true; // M108 will clear this
  5483. while (wait_for_heatup && heaters_heating) {
  5484. idle();
  5485. heaters_heating = false;
  5486. HOTEND_LOOP() {
  5487. if (thermalManager.degTargetHotend(e) && abs(thermalManager.degHotend(e) - thermalManager.degTargetHotend(e)) > TEMP_HYSTERESIS) {
  5488. heaters_heating = true;
  5489. #if ENABLED(ULTIPANEL)
  5490. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_WAIT_FOR_NOZZLES_TO_HEAT);
  5491. #endif
  5492. break;
  5493. }
  5494. }
  5495. }
  5496. }
  5497. #if IS_KINEMATIC
  5498. #define RUNPLAN(RATE_MM_S) planner.buffer_line_kinematic(destination, RATE_MM_S, active_extruder)
  5499. #else
  5500. #define RUNPLAN(RATE_MM_S) buffer_line_to_destination(RATE_MM_S)
  5501. #endif
  5502. void do_pause_e_move(const float &length, const float fr) {
  5503. current_position[E_AXIS] += length / planner.e_factor[active_extruder];
  5504. set_destination_from_current();
  5505. RUNPLAN(fr);
  5506. stepper.synchronize();
  5507. }
  5508. static bool pause_print(const float &retract, const float &z_lift, const float &x_pos, const float &y_pos,
  5509. const float &unload_length = 0 , const int8_t max_beep_count = 0, const bool show_lcd = false
  5510. ) {
  5511. if (move_away_flag) return false; // already paused
  5512. if (!DEBUGGING(DRYRUN) && (unload_length != 0 || retract != 0)) {
  5513. #if ENABLED(PREVENT_COLD_EXTRUSION)
  5514. if (!thermalManager.allow_cold_extrude &&
  5515. thermalManager.degTargetHotend(active_extruder) < thermalManager.extrude_min_temp) {
  5516. SERIAL_ERROR_START();
  5517. SERIAL_ERRORLNPGM(MSG_TOO_COLD_FOR_M600);
  5518. return false;
  5519. }
  5520. #endif
  5521. ensure_safe_temperature(); // wait for extruder to heat up before unloading
  5522. }
  5523. // Indicate that the printer is paused
  5524. move_away_flag = true;
  5525. // Pause the print job and timer
  5526. #if ENABLED(SDSUPPORT)
  5527. if (card.sdprinting) {
  5528. card.pauseSDPrint();
  5529. sd_print_paused = true;
  5530. }
  5531. #endif
  5532. print_job_timer.pause();
  5533. // Show initial message and wait for synchronize steppers
  5534. if (show_lcd) {
  5535. #if ENABLED(ULTIPANEL)
  5536. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INIT);
  5537. #endif
  5538. }
  5539. // Save current position
  5540. stepper.synchronize();
  5541. COPY(resume_position, current_position);
  5542. // Initial retract before move to filament change position
  5543. if (retract) do_pause_e_move(retract, PAUSE_PARK_RETRACT_FEEDRATE);
  5544. // Lift Z axis
  5545. if (z_lift > 0)
  5546. do_blocking_move_to_z(current_position[Z_AXIS] + z_lift, PAUSE_PARK_Z_FEEDRATE);
  5547. // Move XY axes to filament exchange position
  5548. do_blocking_move_to_xy(x_pos, y_pos, PAUSE_PARK_XY_FEEDRATE);
  5549. if (unload_length != 0) {
  5550. if (show_lcd) {
  5551. #if ENABLED(ULTIPANEL)
  5552. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_UNLOAD);
  5553. idle();
  5554. #endif
  5555. }
  5556. // Unload filament
  5557. do_pause_e_move(unload_length, FILAMENT_CHANGE_UNLOAD_FEEDRATE);
  5558. }
  5559. if (show_lcd) {
  5560. #if ENABLED(ULTIPANEL)
  5561. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5562. #endif
  5563. }
  5564. #if HAS_BUZZER
  5565. filament_change_beep(max_beep_count, true);
  5566. #endif
  5567. idle();
  5568. // Disable extruders steppers for manual filament changing (only on boards that have separate ENABLE_PINS)
  5569. #if E0_ENABLE_PIN != X_ENABLE_PIN && E1_ENABLE_PIN != Y_ENABLE_PIN
  5570. disable_e_steppers();
  5571. safe_delay(100);
  5572. #endif
  5573. // Start the heater idle timers
  5574. const millis_t nozzle_timeout = (millis_t)(PAUSE_PARK_NOZZLE_TIMEOUT) * 1000UL;
  5575. HOTEND_LOOP()
  5576. thermalManager.start_heater_idle_timer(e, nozzle_timeout);
  5577. return true;
  5578. }
  5579. static void wait_for_filament_reload(const int8_t max_beep_count = 0) {
  5580. bool nozzle_timed_out = false;
  5581. // Wait for filament insert by user and press button
  5582. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5583. wait_for_user = true; // LCD click or M108 will clear this
  5584. while (wait_for_user) {
  5585. #if HAS_BUZZER
  5586. filament_change_beep(max_beep_count);
  5587. #endif
  5588. // If the nozzle has timed out, wait for the user to press the button to re-heat the nozzle, then
  5589. // re-heat the nozzle, re-show the insert screen, restart the idle timers, and start over
  5590. if (!nozzle_timed_out)
  5591. HOTEND_LOOP()
  5592. nozzle_timed_out |= thermalManager.is_heater_idle(e);
  5593. if (nozzle_timed_out) {
  5594. #if ENABLED(ULTIPANEL)
  5595. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_CLICK_TO_HEAT_NOZZLE);
  5596. #endif
  5597. // Wait for LCD click or M108
  5598. while (wait_for_user) idle(true);
  5599. // Re-enable the heaters if they timed out
  5600. HOTEND_LOOP() thermalManager.reset_heater_idle_timer(e);
  5601. // Wait for the heaters to reach the target temperatures
  5602. ensure_safe_temperature();
  5603. #if ENABLED(ULTIPANEL)
  5604. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5605. #endif
  5606. // Start the heater idle timers
  5607. const millis_t nozzle_timeout = (millis_t)(PAUSE_PARK_NOZZLE_TIMEOUT) * 1000UL;
  5608. HOTEND_LOOP()
  5609. thermalManager.start_heater_idle_timer(e, nozzle_timeout);
  5610. wait_for_user = true; /* Wait for user to load filament */
  5611. nozzle_timed_out = false;
  5612. #if HAS_BUZZER
  5613. filament_change_beep(max_beep_count, true);
  5614. #endif
  5615. }
  5616. idle(true);
  5617. }
  5618. KEEPALIVE_STATE(IN_HANDLER);
  5619. }
  5620. static void resume_print(const float &load_length = 0, const float &initial_extrude_length = 0, const int8_t max_beep_count = 0) {
  5621. bool nozzle_timed_out = false;
  5622. if (!move_away_flag) return;
  5623. // Re-enable the heaters if they timed out
  5624. HOTEND_LOOP() {
  5625. nozzle_timed_out |= thermalManager.is_heater_idle(e);
  5626. thermalManager.reset_heater_idle_timer(e);
  5627. }
  5628. if (nozzle_timed_out) ensure_safe_temperature();
  5629. #if HAS_BUZZER
  5630. filament_change_beep(max_beep_count, true);
  5631. #endif
  5632. set_destination_from_current();
  5633. if (load_length != 0) {
  5634. #if ENABLED(ULTIPANEL)
  5635. // Show "insert filament"
  5636. if (nozzle_timed_out)
  5637. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INSERT);
  5638. #endif
  5639. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5640. wait_for_user = true; // LCD click or M108 will clear this
  5641. while (wait_for_user && nozzle_timed_out) {
  5642. #if HAS_BUZZER
  5643. filament_change_beep(max_beep_count);
  5644. #endif
  5645. idle(true);
  5646. }
  5647. KEEPALIVE_STATE(IN_HANDLER);
  5648. #if ENABLED(ULTIPANEL)
  5649. // Show "load" message
  5650. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_LOAD);
  5651. #endif
  5652. // Load filament
  5653. do_pause_e_move(load_length, FILAMENT_CHANGE_LOAD_FEEDRATE);
  5654. }
  5655. #if ENABLED(ULTIPANEL) && ADVANCED_PAUSE_EXTRUDE_LENGTH > 0
  5656. float extrude_length = initial_extrude_length;
  5657. do {
  5658. if (extrude_length > 0) {
  5659. // "Wait for filament extrude"
  5660. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_EXTRUDE);
  5661. // Extrude filament to get into hotend
  5662. do_pause_e_move(extrude_length, ADVANCED_PAUSE_EXTRUDE_FEEDRATE);
  5663. }
  5664. // Show "Extrude More" / "Resume" menu and wait for reply
  5665. KEEPALIVE_STATE(PAUSED_FOR_USER);
  5666. wait_for_user = false;
  5667. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_OPTION);
  5668. while (advanced_pause_menu_response == ADVANCED_PAUSE_RESPONSE_WAIT_FOR) idle(true);
  5669. KEEPALIVE_STATE(IN_HANDLER);
  5670. extrude_length = ADVANCED_PAUSE_EXTRUDE_LENGTH;
  5671. // Keep looping if "Extrude More" was selected
  5672. } while (advanced_pause_menu_response == ADVANCED_PAUSE_RESPONSE_EXTRUDE_MORE);
  5673. #endif
  5674. #if ENABLED(ULTIPANEL)
  5675. // "Wait for print to resume"
  5676. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_RESUME);
  5677. #endif
  5678. // Set extruder to saved position
  5679. destination[E_AXIS] = current_position[E_AXIS] = resume_position[E_AXIS];
  5680. planner.set_e_position_mm(current_position[E_AXIS]);
  5681. // Move XY to starting position, then Z
  5682. do_blocking_move_to_xy(resume_position[X_AXIS], resume_position[Y_AXIS], PAUSE_PARK_XY_FEEDRATE);
  5683. do_blocking_move_to_z(resume_position[Z_AXIS], PAUSE_PARK_Z_FEEDRATE);
  5684. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  5685. filament_ran_out = false;
  5686. #endif
  5687. #if ENABLED(ULTIPANEL)
  5688. // Show status screen
  5689. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_STATUS);
  5690. #endif
  5691. #if ENABLED(SDSUPPORT)
  5692. if (sd_print_paused) {
  5693. card.startFileprint();
  5694. sd_print_paused = false;
  5695. }
  5696. #endif
  5697. move_away_flag = false;
  5698. }
  5699. #endif // ADVANCED_PAUSE_FEATURE
  5700. #if ENABLED(SDSUPPORT)
  5701. /**
  5702. * M20: List SD card to serial output
  5703. */
  5704. inline void gcode_M20() {
  5705. SERIAL_PROTOCOLLNPGM(MSG_BEGIN_FILE_LIST);
  5706. card.ls();
  5707. SERIAL_PROTOCOLLNPGM(MSG_END_FILE_LIST);
  5708. }
  5709. /**
  5710. * M21: Init SD Card
  5711. */
  5712. inline void gcode_M21() { card.initsd(); }
  5713. /**
  5714. * M22: Release SD Card
  5715. */
  5716. inline void gcode_M22() { card.release(); }
  5717. /**
  5718. * M23: Open a file
  5719. */
  5720. inline void gcode_M23() {
  5721. // Simplify3D includes the size, so zero out all spaces (#7227)
  5722. for (char *fn = parser.string_arg; *fn; ++fn) if (*fn == ' ') *fn = '\0';
  5723. card.openFile(parser.string_arg, true);
  5724. }
  5725. /**
  5726. * M24: Start or Resume SD Print
  5727. */
  5728. inline void gcode_M24() {
  5729. #if ENABLED(PARK_HEAD_ON_PAUSE)
  5730. resume_print();
  5731. #endif
  5732. card.startFileprint();
  5733. print_job_timer.start();
  5734. }
  5735. /**
  5736. * M25: Pause SD Print
  5737. */
  5738. inline void gcode_M25() {
  5739. card.pauseSDPrint();
  5740. print_job_timer.pause();
  5741. #if ENABLED(PARK_HEAD_ON_PAUSE)
  5742. enqueue_and_echo_commands_P(PSTR("M125")); // Must be enqueued with pauseSDPrint set to be last in the buffer
  5743. #endif
  5744. }
  5745. /**
  5746. * M26: Set SD Card file index
  5747. */
  5748. inline void gcode_M26() {
  5749. if (card.cardOK && parser.seenval('S'))
  5750. card.setIndex(parser.value_long());
  5751. }
  5752. /**
  5753. * M27: Get SD Card status
  5754. */
  5755. inline void gcode_M27() { card.getStatus(); }
  5756. /**
  5757. * M28: Start SD Write
  5758. */
  5759. inline void gcode_M28() { card.openFile(parser.string_arg, false); }
  5760. /**
  5761. * M29: Stop SD Write
  5762. * Processed in write to file routine above
  5763. */
  5764. inline void gcode_M29() {
  5765. // card.saving = false;
  5766. }
  5767. /**
  5768. * M30 <filename>: Delete SD Card file
  5769. */
  5770. inline void gcode_M30() {
  5771. if (card.cardOK) {
  5772. card.closefile();
  5773. card.removeFile(parser.string_arg);
  5774. }
  5775. }
  5776. #endif // SDSUPPORT
  5777. /**
  5778. * M31: Get the time since the start of SD Print (or last M109)
  5779. */
  5780. inline void gcode_M31() {
  5781. char buffer[21];
  5782. duration_t elapsed = print_job_timer.duration();
  5783. elapsed.toString(buffer);
  5784. lcd_setstatus(buffer);
  5785. SERIAL_ECHO_START();
  5786. SERIAL_ECHOLNPAIR("Print time: ", buffer);
  5787. }
  5788. #if ENABLED(SDSUPPORT)
  5789. /**
  5790. * M32: Select file and start SD Print
  5791. *
  5792. * Examples:
  5793. *
  5794. * M32 !PATH/TO/FILE.GCO# ; Start FILE.GCO
  5795. * M32 P !PATH/TO/FILE.GCO# ; Start FILE.GCO as a procedure
  5796. * M32 S60 !PATH/TO/FILE.GCO# ; Start FILE.GCO at byte 60
  5797. *
  5798. */
  5799. inline void gcode_M32() {
  5800. if (card.sdprinting) stepper.synchronize();
  5801. if (card.cardOK) {
  5802. const bool call_procedure = parser.boolval('P');
  5803. card.openFile(parser.string_arg, true, call_procedure);
  5804. if (parser.seenval('S')) card.setIndex(parser.value_long());
  5805. card.startFileprint();
  5806. // Procedure calls count as normal print time.
  5807. if (!call_procedure) print_job_timer.start();
  5808. }
  5809. }
  5810. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  5811. /**
  5812. * M33: Get the long full path of a file or folder
  5813. *
  5814. * Parameters:
  5815. * <dospath> Case-insensitive DOS-style path to a file or folder
  5816. *
  5817. * Example:
  5818. * M33 miscel~1/armchair/armcha~1.gco
  5819. *
  5820. * Output:
  5821. * /Miscellaneous/Armchair/Armchair.gcode
  5822. */
  5823. inline void gcode_M33() {
  5824. card.printLongPath(parser.string_arg);
  5825. }
  5826. #endif
  5827. #if ENABLED(SDCARD_SORT_ALPHA) && ENABLED(SDSORT_GCODE)
  5828. /**
  5829. * M34: Set SD Card Sorting Options
  5830. */
  5831. inline void gcode_M34() {
  5832. if (parser.seen('S')) card.setSortOn(parser.value_bool());
  5833. if (parser.seenval('F')) {
  5834. const int v = parser.value_long();
  5835. card.setSortFolders(v < 0 ? -1 : v > 0 ? 1 : 0);
  5836. }
  5837. //if (parser.seen('R')) card.setSortReverse(parser.value_bool());
  5838. }
  5839. #endif // SDCARD_SORT_ALPHA && SDSORT_GCODE
  5840. /**
  5841. * M928: Start SD Write
  5842. */
  5843. inline void gcode_M928() {
  5844. card.openLogFile(parser.string_arg);
  5845. }
  5846. #endif // SDSUPPORT
  5847. /**
  5848. * Sensitive pin test for M42, M226
  5849. */
  5850. static bool pin_is_protected(const int8_t pin) {
  5851. static const int8_t sensitive_pins[] PROGMEM = SENSITIVE_PINS;
  5852. for (uint8_t i = 0; i < COUNT(sensitive_pins); i++)
  5853. if (pin == (int8_t)pgm_read_byte(&sensitive_pins[i])) return true;
  5854. return false;
  5855. }
  5856. /**
  5857. * M42: Change pin status via GCode
  5858. *
  5859. * P<pin> Pin number (LED if omitted)
  5860. * S<byte> Pin status from 0 - 255
  5861. */
  5862. inline void gcode_M42() {
  5863. if (!parser.seenval('S')) return;
  5864. const byte pin_status = parser.value_byte();
  5865. const int pin_number = parser.intval('P', LED_PIN);
  5866. if (pin_number < 0) return;
  5867. if (pin_is_protected(pin_number)) {
  5868. SERIAL_ERROR_START();
  5869. SERIAL_ERRORLNPGM(MSG_ERR_PROTECTED_PIN);
  5870. return;
  5871. }
  5872. pinMode(pin_number, OUTPUT);
  5873. digitalWrite(pin_number, pin_status);
  5874. analogWrite(pin_number, pin_status);
  5875. #if FAN_COUNT > 0
  5876. switch (pin_number) {
  5877. #if HAS_FAN0
  5878. case FAN_PIN: fanSpeeds[0] = pin_status; break;
  5879. #endif
  5880. #if HAS_FAN1
  5881. case FAN1_PIN: fanSpeeds[1] = pin_status; break;
  5882. #endif
  5883. #if HAS_FAN2
  5884. case FAN2_PIN: fanSpeeds[2] = pin_status; break;
  5885. #endif
  5886. }
  5887. #endif
  5888. }
  5889. #if ENABLED(PINS_DEBUGGING)
  5890. #include "pinsDebug.h"
  5891. inline void toggle_pins() {
  5892. const bool I_flag = parser.boolval('I');
  5893. const int repeat = parser.intval('R', 1),
  5894. start = parser.intval('S'),
  5895. end = parser.intval('L', NUM_DIGITAL_PINS - 1),
  5896. wait = parser.intval('W', 500);
  5897. for (uint8_t pin = start; pin <= end; pin++) {
  5898. //report_pin_state_extended(pin, I_flag, false);
  5899. if (!I_flag && pin_is_protected(pin)) {
  5900. report_pin_state_extended(pin, I_flag, true, "Untouched ");
  5901. SERIAL_EOL();
  5902. }
  5903. else {
  5904. report_pin_state_extended(pin, I_flag, true, "Pulsing ");
  5905. #if AVR_AT90USB1286_FAMILY // Teensy IDEs don't know about these pins so must use FASTIO
  5906. if (pin == TEENSY_E2) {
  5907. SET_OUTPUT(TEENSY_E2);
  5908. for (int16_t j = 0; j < repeat; j++) {
  5909. WRITE(TEENSY_E2, LOW); safe_delay(wait);
  5910. WRITE(TEENSY_E2, HIGH); safe_delay(wait);
  5911. WRITE(TEENSY_E2, LOW); safe_delay(wait);
  5912. }
  5913. }
  5914. else if (pin == TEENSY_E3) {
  5915. SET_OUTPUT(TEENSY_E3);
  5916. for (int16_t j = 0; j < repeat; j++) {
  5917. WRITE(TEENSY_E3, LOW); safe_delay(wait);
  5918. WRITE(TEENSY_E3, HIGH); safe_delay(wait);
  5919. WRITE(TEENSY_E3, LOW); safe_delay(wait);
  5920. }
  5921. }
  5922. else
  5923. #endif
  5924. {
  5925. pinMode(pin, OUTPUT);
  5926. for (int16_t j = 0; j < repeat; j++) {
  5927. digitalWrite(pin, 0); safe_delay(wait);
  5928. digitalWrite(pin, 1); safe_delay(wait);
  5929. digitalWrite(pin, 0); safe_delay(wait);
  5930. }
  5931. }
  5932. }
  5933. SERIAL_EOL();
  5934. }
  5935. SERIAL_ECHOLNPGM("Done.");
  5936. } // toggle_pins
  5937. inline void servo_probe_test() {
  5938. #if !(NUM_SERVOS > 0 && HAS_SERVO_0)
  5939. SERIAL_ERROR_START();
  5940. SERIAL_ERRORLNPGM("SERVO not setup");
  5941. #elif !HAS_Z_SERVO_ENDSTOP
  5942. SERIAL_ERROR_START();
  5943. SERIAL_ERRORLNPGM("Z_ENDSTOP_SERVO_NR not setup");
  5944. #else // HAS_Z_SERVO_ENDSTOP
  5945. const uint8_t probe_index = parser.byteval('P', Z_ENDSTOP_SERVO_NR);
  5946. SERIAL_PROTOCOLLNPGM("Servo probe test");
  5947. SERIAL_PROTOCOLLNPAIR(". using index: ", probe_index);
  5948. SERIAL_PROTOCOLLNPAIR(". deploy angle: ", z_servo_angle[0]);
  5949. SERIAL_PROTOCOLLNPAIR(". stow angle: ", z_servo_angle[1]);
  5950. bool probe_inverting;
  5951. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  5952. #define PROBE_TEST_PIN Z_MIN_PIN
  5953. SERIAL_PROTOCOLLNPAIR(". probe uses Z_MIN pin: ", PROBE_TEST_PIN);
  5954. SERIAL_PROTOCOLLNPGM(". uses Z_MIN_ENDSTOP_INVERTING (ignores Z_MIN_PROBE_ENDSTOP_INVERTING)");
  5955. SERIAL_PROTOCOLPGM(". Z_MIN_ENDSTOP_INVERTING: ");
  5956. #if Z_MIN_ENDSTOP_INVERTING
  5957. SERIAL_PROTOCOLLNPGM("true");
  5958. #else
  5959. SERIAL_PROTOCOLLNPGM("false");
  5960. #endif
  5961. probe_inverting = Z_MIN_ENDSTOP_INVERTING;
  5962. #elif ENABLED(Z_MIN_PROBE_ENDSTOP)
  5963. #define PROBE_TEST_PIN Z_MIN_PROBE_PIN
  5964. SERIAL_PROTOCOLLNPAIR(". probe uses Z_MIN_PROBE_PIN: ", PROBE_TEST_PIN);
  5965. SERIAL_PROTOCOLLNPGM(". uses Z_MIN_PROBE_ENDSTOP_INVERTING (ignores Z_MIN_ENDSTOP_INVERTING)");
  5966. SERIAL_PROTOCOLPGM(". Z_MIN_PROBE_ENDSTOP_INVERTING: ");
  5967. #if Z_MIN_PROBE_ENDSTOP_INVERTING
  5968. SERIAL_PROTOCOLLNPGM("true");
  5969. #else
  5970. SERIAL_PROTOCOLLNPGM("false");
  5971. #endif
  5972. probe_inverting = Z_MIN_PROBE_ENDSTOP_INVERTING;
  5973. #endif
  5974. SERIAL_PROTOCOLLNPGM(". deploy & stow 4 times");
  5975. SET_INPUT_PULLUP(PROBE_TEST_PIN);
  5976. bool deploy_state, stow_state;
  5977. for (uint8_t i = 0; i < 4; i++) {
  5978. MOVE_SERVO(probe_index, z_servo_angle[0]); //deploy
  5979. safe_delay(500);
  5980. deploy_state = READ(PROBE_TEST_PIN);
  5981. MOVE_SERVO(probe_index, z_servo_angle[1]); //stow
  5982. safe_delay(500);
  5983. stow_state = READ(PROBE_TEST_PIN);
  5984. }
  5985. if (probe_inverting != deploy_state) SERIAL_PROTOCOLLNPGM("WARNING - INVERTING setting probably backwards");
  5986. refresh_cmd_timeout();
  5987. if (deploy_state != stow_state) {
  5988. SERIAL_PROTOCOLLNPGM("BLTouch clone detected");
  5989. if (deploy_state) {
  5990. SERIAL_PROTOCOLLNPGM(". DEPLOYED state: HIGH (logic 1)");
  5991. SERIAL_PROTOCOLLNPGM(". STOWED (triggered) state: LOW (logic 0)");
  5992. }
  5993. else {
  5994. SERIAL_PROTOCOLLNPGM(". DEPLOYED state: LOW (logic 0)");
  5995. SERIAL_PROTOCOLLNPGM(". STOWED (triggered) state: HIGH (logic 1)");
  5996. }
  5997. #if ENABLED(BLTOUCH)
  5998. SERIAL_PROTOCOLLNPGM("ERROR: BLTOUCH enabled - set this device up as a Z Servo Probe with inverting as true.");
  5999. #endif
  6000. }
  6001. else { // measure active signal length
  6002. MOVE_SERVO(probe_index, z_servo_angle[0]); // deploy
  6003. safe_delay(500);
  6004. SERIAL_PROTOCOLLNPGM("please trigger probe");
  6005. uint16_t probe_counter = 0;
  6006. // Allow 30 seconds max for operator to trigger probe
  6007. for (uint16_t j = 0; j < 500 * 30 && probe_counter == 0 ; j++) {
  6008. safe_delay(2);
  6009. if (0 == j % (500 * 1)) // keep cmd_timeout happy
  6010. refresh_cmd_timeout();
  6011. if (deploy_state != READ(PROBE_TEST_PIN)) { // probe triggered
  6012. for (probe_counter = 1; probe_counter < 50 && deploy_state != READ(PROBE_TEST_PIN); ++probe_counter)
  6013. safe_delay(2);
  6014. if (probe_counter == 50)
  6015. SERIAL_PROTOCOLLNPGM("Z Servo Probe detected"); // >= 100mS active time
  6016. else if (probe_counter >= 2)
  6017. SERIAL_PROTOCOLLNPAIR("BLTouch compatible probe detected - pulse width (+/- 4mS): ", probe_counter * 2); // allow 4 - 100mS pulse
  6018. else
  6019. SERIAL_PROTOCOLLNPGM("noise detected - please re-run test"); // less than 2mS pulse
  6020. MOVE_SERVO(probe_index, z_servo_angle[1]); //stow
  6021. } // pulse detected
  6022. } // for loop waiting for trigger
  6023. if (probe_counter == 0) SERIAL_PROTOCOLLNPGM("trigger not detected");
  6024. } // measure active signal length
  6025. #endif
  6026. } // servo_probe_test
  6027. /**
  6028. * M43: Pin debug - report pin state, watch pins, toggle pins and servo probe test/report
  6029. *
  6030. * M43 - report name and state of pin(s)
  6031. * P<pin> Pin to read or watch. If omitted, reads all pins.
  6032. * I Flag to ignore Marlin's pin protection.
  6033. *
  6034. * M43 W - Watch pins -reporting changes- until reset, click, or M108.
  6035. * P<pin> Pin to read or watch. If omitted, read/watch all pins.
  6036. * I Flag to ignore Marlin's pin protection.
  6037. *
  6038. * M43 E<bool> - Enable / disable background endstop monitoring
  6039. * - Machine continues to operate
  6040. * - Reports changes to endstops
  6041. * - Toggles LED_PIN when an endstop changes
  6042. * - Can not reliably catch the 5mS pulse from BLTouch type probes
  6043. *
  6044. * M43 T - Toggle pin(s) and report which pin is being toggled
  6045. * S<pin> - Start Pin number. If not given, will default to 0
  6046. * L<pin> - End Pin number. If not given, will default to last pin defined for this board
  6047. * I<bool> - Flag to ignore Marlin's pin protection. Use with caution!!!!
  6048. * R - Repeat pulses on each pin this number of times before continueing to next pin
  6049. * W - Wait time (in miliseconds) between pulses. If not given will default to 500
  6050. *
  6051. * M43 S - Servo probe test
  6052. * P<index> - Probe index (optional - defaults to 0
  6053. */
  6054. inline void gcode_M43() {
  6055. if (parser.seen('T')) { // must be first or else its "S" and "E" parameters will execute endstop or servo test
  6056. toggle_pins();
  6057. return;
  6058. }
  6059. // Enable or disable endstop monitoring
  6060. if (parser.seen('E')) {
  6061. endstop_monitor_flag = parser.value_bool();
  6062. SERIAL_PROTOCOLPGM("endstop monitor ");
  6063. serialprintPGM(endstop_monitor_flag ? PSTR("en") : PSTR("dis"));
  6064. SERIAL_PROTOCOLLNPGM("abled");
  6065. return;
  6066. }
  6067. if (parser.seen('S')) {
  6068. servo_probe_test();
  6069. return;
  6070. }
  6071. // Get the range of pins to test or watch
  6072. const uint8_t first_pin = parser.byteval('P'),
  6073. last_pin = parser.seenval('P') ? first_pin : NUM_DIGITAL_PINS - 1;
  6074. if (first_pin > last_pin) return;
  6075. const bool ignore_protection = parser.boolval('I');
  6076. // Watch until click, M108, or reset
  6077. if (parser.boolval('W')) {
  6078. SERIAL_PROTOCOLLNPGM("Watching pins");
  6079. byte pin_state[last_pin - first_pin + 1];
  6080. for (int8_t pin = first_pin; pin <= last_pin; pin++) {
  6081. if (pin_is_protected(pin) && !ignore_protection) continue;
  6082. pinMode(pin, INPUT_PULLUP);
  6083. delay(1);
  6084. /*
  6085. if (IS_ANALOG(pin))
  6086. pin_state[pin - first_pin] = analogRead(pin - analogInputToDigitalPin(0)); // int16_t pin_state[...]
  6087. else
  6088. //*/
  6089. pin_state[pin - first_pin] = digitalRead(pin);
  6090. }
  6091. #if HAS_RESUME_CONTINUE
  6092. wait_for_user = true;
  6093. KEEPALIVE_STATE(PAUSED_FOR_USER);
  6094. #endif
  6095. for (;;) {
  6096. for (int8_t pin = first_pin; pin <= last_pin; pin++) {
  6097. if (pin_is_protected(pin) && !ignore_protection) continue;
  6098. const byte val =
  6099. /*
  6100. IS_ANALOG(pin)
  6101. ? analogRead(pin - analogInputToDigitalPin(0)) : // int16_t val
  6102. :
  6103. //*/
  6104. digitalRead(pin);
  6105. if (val != pin_state[pin - first_pin]) {
  6106. report_pin_state_extended(pin, ignore_protection, false);
  6107. pin_state[pin - first_pin] = val;
  6108. }
  6109. }
  6110. #if HAS_RESUME_CONTINUE
  6111. if (!wait_for_user) {
  6112. KEEPALIVE_STATE(IN_HANDLER);
  6113. break;
  6114. }
  6115. #endif
  6116. safe_delay(200);
  6117. }
  6118. return;
  6119. }
  6120. // Report current state of selected pin(s)
  6121. for (uint8_t pin = first_pin; pin <= last_pin; pin++)
  6122. report_pin_state_extended(pin, ignore_protection, true);
  6123. }
  6124. #endif // PINS_DEBUGGING
  6125. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  6126. /**
  6127. * M48: Z probe repeatability measurement function.
  6128. *
  6129. * Usage:
  6130. * M48 <P#> <X#> <Y#> <V#> <E> <L#>
  6131. * P = Number of sampled points (4-50, default 10)
  6132. * X = Sample X position
  6133. * Y = Sample Y position
  6134. * V = Verbose level (0-4, default=1)
  6135. * E = Engage Z probe for each reading
  6136. * L = Number of legs of movement before probe
  6137. * S = Schizoid (Or Star if you prefer)
  6138. *
  6139. * This function requires the machine to be homed before invocation.
  6140. */
  6141. inline void gcode_M48() {
  6142. if (axis_unhomed_error()) return;
  6143. const int8_t verbose_level = parser.byteval('V', 1);
  6144. if (!WITHIN(verbose_level, 0, 4)) {
  6145. SERIAL_PROTOCOLLNPGM("?(V)erbose level is implausible (0-4).");
  6146. return;
  6147. }
  6148. if (verbose_level > 0)
  6149. SERIAL_PROTOCOLLNPGM("M48 Z-Probe Repeatability Test");
  6150. const int8_t n_samples = parser.byteval('P', 10);
  6151. if (!WITHIN(n_samples, 4, 50)) {
  6152. SERIAL_PROTOCOLLNPGM("?Sample size not plausible (4-50).");
  6153. return;
  6154. }
  6155. const bool stow_probe_after_each = parser.boolval('E');
  6156. float X_current = current_position[X_AXIS],
  6157. Y_current = current_position[Y_AXIS];
  6158. const float X_probe_location = parser.linearval('X', X_current + X_PROBE_OFFSET_FROM_EXTRUDER),
  6159. Y_probe_location = parser.linearval('Y', Y_current + Y_PROBE_OFFSET_FROM_EXTRUDER);
  6160. #if DISABLED(DELTA)
  6161. if (!WITHIN(X_probe_location, MIN_PROBE_X, MAX_PROBE_X)) {
  6162. out_of_range_error(PSTR("X"));
  6163. return;
  6164. }
  6165. if (!WITHIN(Y_probe_location, MIN_PROBE_Y, MAX_PROBE_Y)) {
  6166. out_of_range_error(PSTR("Y"));
  6167. return;
  6168. }
  6169. #else
  6170. if (!position_is_reachable_by_probe(X_probe_location, Y_probe_location)) {
  6171. SERIAL_PROTOCOLLNPGM("? (X,Y) location outside of probeable radius.");
  6172. return;
  6173. }
  6174. #endif
  6175. bool seen_L = parser.seen('L');
  6176. uint8_t n_legs = seen_L ? parser.value_byte() : 0;
  6177. if (n_legs > 15) {
  6178. SERIAL_PROTOCOLLNPGM("?Number of legs in movement not plausible (0-15).");
  6179. return;
  6180. }
  6181. if (n_legs == 1) n_legs = 2;
  6182. const bool schizoid_flag = parser.boolval('S');
  6183. if (schizoid_flag && !seen_L) n_legs = 7;
  6184. /**
  6185. * Now get everything to the specified probe point So we can safely do a
  6186. * probe to get us close to the bed. If the Z-Axis is far from the bed,
  6187. * we don't want to use that as a starting point for each probe.
  6188. */
  6189. if (verbose_level > 2)
  6190. SERIAL_PROTOCOLLNPGM("Positioning the probe...");
  6191. // Disable bed level correction in M48 because we want the raw data when we probe
  6192. #if HAS_LEVELING
  6193. const bool was_enabled = planner.leveling_active;
  6194. set_bed_leveling_enabled(false);
  6195. #endif
  6196. setup_for_endstop_or_probe_move();
  6197. double mean = 0.0, sigma = 0.0, min = 99999.9, max = -99999.9, sample_set[n_samples];
  6198. // Move to the first point, deploy, and probe
  6199. const float t = probe_pt(X_probe_location, Y_probe_location, stow_probe_after_each, verbose_level);
  6200. bool probing_good = !isnan(t);
  6201. if (probing_good) {
  6202. randomSeed(millis());
  6203. for (uint8_t n = 0; n < n_samples; n++) {
  6204. if (n_legs) {
  6205. const int dir = (random(0, 10) > 5.0) ? -1 : 1; // clockwise or counter clockwise
  6206. float angle = random(0.0, 360.0);
  6207. const float radius = random(
  6208. #if ENABLED(DELTA)
  6209. 0.1250000000 * (DELTA_PROBEABLE_RADIUS),
  6210. 0.3333333333 * (DELTA_PROBEABLE_RADIUS)
  6211. #else
  6212. 5.0, 0.125 * min(X_BED_SIZE, Y_BED_SIZE)
  6213. #endif
  6214. );
  6215. if (verbose_level > 3) {
  6216. SERIAL_ECHOPAIR("Starting radius: ", radius);
  6217. SERIAL_ECHOPAIR(" angle: ", angle);
  6218. SERIAL_ECHOPGM(" Direction: ");
  6219. if (dir > 0) SERIAL_ECHOPGM("Counter-");
  6220. SERIAL_ECHOLNPGM("Clockwise");
  6221. }
  6222. for (uint8_t l = 0; l < n_legs - 1; l++) {
  6223. double delta_angle;
  6224. if (schizoid_flag)
  6225. // The points of a 5 point star are 72 degrees apart. We need to
  6226. // skip a point and go to the next one on the star.
  6227. delta_angle = dir * 2.0 * 72.0;
  6228. else
  6229. // If we do this line, we are just trying to move further
  6230. // around the circle.
  6231. delta_angle = dir * (float) random(25, 45);
  6232. angle += delta_angle;
  6233. while (angle > 360.0) // We probably do not need to keep the angle between 0 and 2*PI, but the
  6234. angle -= 360.0; // Arduino documentation says the trig functions should not be given values
  6235. while (angle < 0.0) // outside of this range. It looks like they behave correctly with
  6236. angle += 360.0; // numbers outside of the range, but just to be safe we clamp them.
  6237. X_current = X_probe_location - (X_PROBE_OFFSET_FROM_EXTRUDER) + cos(RADIANS(angle)) * radius;
  6238. Y_current = Y_probe_location - (Y_PROBE_OFFSET_FROM_EXTRUDER) + sin(RADIANS(angle)) * radius;
  6239. #if DISABLED(DELTA)
  6240. X_current = constrain(X_current, X_MIN_POS, X_MAX_POS);
  6241. Y_current = constrain(Y_current, Y_MIN_POS, Y_MAX_POS);
  6242. #else
  6243. // If we have gone out too far, we can do a simple fix and scale the numbers
  6244. // back in closer to the origin.
  6245. while (!position_is_reachable_by_probe(X_current, Y_current)) {
  6246. X_current *= 0.8;
  6247. Y_current *= 0.8;
  6248. if (verbose_level > 3) {
  6249. SERIAL_ECHOPAIR("Pulling point towards center:", X_current);
  6250. SERIAL_ECHOLNPAIR(", ", Y_current);
  6251. }
  6252. }
  6253. #endif
  6254. if (verbose_level > 3) {
  6255. SERIAL_PROTOCOLPGM("Going to:");
  6256. SERIAL_ECHOPAIR(" X", X_current);
  6257. SERIAL_ECHOPAIR(" Y", Y_current);
  6258. SERIAL_ECHOLNPAIR(" Z", current_position[Z_AXIS]);
  6259. }
  6260. do_blocking_move_to_xy(X_current, Y_current);
  6261. } // n_legs loop
  6262. } // n_legs
  6263. // Probe a single point
  6264. sample_set[n] = probe_pt(X_probe_location, Y_probe_location, stow_probe_after_each, 0);
  6265. // Break the loop if the probe fails
  6266. probing_good = !isnan(sample_set[n]);
  6267. if (!probing_good) break;
  6268. /**
  6269. * Get the current mean for the data points we have so far
  6270. */
  6271. double sum = 0.0;
  6272. for (uint8_t j = 0; j <= n; j++) sum += sample_set[j];
  6273. mean = sum / (n + 1);
  6274. NOMORE(min, sample_set[n]);
  6275. NOLESS(max, sample_set[n]);
  6276. /**
  6277. * Now, use that mean to calculate the standard deviation for the
  6278. * data points we have so far
  6279. */
  6280. sum = 0.0;
  6281. for (uint8_t j = 0; j <= n; j++)
  6282. sum += sq(sample_set[j] - mean);
  6283. sigma = SQRT(sum / (n + 1));
  6284. if (verbose_level > 0) {
  6285. if (verbose_level > 1) {
  6286. SERIAL_PROTOCOL(n + 1);
  6287. SERIAL_PROTOCOLPGM(" of ");
  6288. SERIAL_PROTOCOL((int)n_samples);
  6289. SERIAL_PROTOCOLPGM(": z: ");
  6290. SERIAL_PROTOCOL_F(sample_set[n], 3);
  6291. if (verbose_level > 2) {
  6292. SERIAL_PROTOCOLPGM(" mean: ");
  6293. SERIAL_PROTOCOL_F(mean, 4);
  6294. SERIAL_PROTOCOLPGM(" sigma: ");
  6295. SERIAL_PROTOCOL_F(sigma, 6);
  6296. SERIAL_PROTOCOLPGM(" min: ");
  6297. SERIAL_PROTOCOL_F(min, 3);
  6298. SERIAL_PROTOCOLPGM(" max: ");
  6299. SERIAL_PROTOCOL_F(max, 3);
  6300. SERIAL_PROTOCOLPGM(" range: ");
  6301. SERIAL_PROTOCOL_F(max-min, 3);
  6302. }
  6303. SERIAL_EOL();
  6304. }
  6305. }
  6306. } // n_samples loop
  6307. }
  6308. STOW_PROBE();
  6309. if (probing_good) {
  6310. SERIAL_PROTOCOLLNPGM("Finished!");
  6311. if (verbose_level > 0) {
  6312. SERIAL_PROTOCOLPGM("Mean: ");
  6313. SERIAL_PROTOCOL_F(mean, 6);
  6314. SERIAL_PROTOCOLPGM(" Min: ");
  6315. SERIAL_PROTOCOL_F(min, 3);
  6316. SERIAL_PROTOCOLPGM(" Max: ");
  6317. SERIAL_PROTOCOL_F(max, 3);
  6318. SERIAL_PROTOCOLPGM(" Range: ");
  6319. SERIAL_PROTOCOL_F(max-min, 3);
  6320. SERIAL_EOL();
  6321. }
  6322. SERIAL_PROTOCOLPGM("Standard Deviation: ");
  6323. SERIAL_PROTOCOL_F(sigma, 6);
  6324. SERIAL_EOL();
  6325. SERIAL_EOL();
  6326. }
  6327. clean_up_after_endstop_or_probe_move();
  6328. // Re-enable bed level correction if it had been on
  6329. #if HAS_LEVELING
  6330. set_bed_leveling_enabled(was_enabled);
  6331. #endif
  6332. report_current_position();
  6333. }
  6334. #endif // Z_MIN_PROBE_REPEATABILITY_TEST
  6335. #if ENABLED(G26_MESH_VALIDATION)
  6336. inline void gcode_M49() {
  6337. g26_debug_flag ^= true;
  6338. SERIAL_PROTOCOLPGM("G26 Debug ");
  6339. serialprintPGM(g26_debug_flag ? PSTR("on.\n") : PSTR("off.\n"));
  6340. }
  6341. #endif // G26_MESH_VALIDATION
  6342. #if ENABLED(ULTRA_LCD) && ENABLED(LCD_SET_PROGRESS_MANUALLY)
  6343. /**
  6344. * M73: Set percentage complete (for display on LCD)
  6345. *
  6346. * Example:
  6347. * M73 P25 ; Set progress to 25%
  6348. *
  6349. * Notes:
  6350. * This has no effect during an SD print job
  6351. */
  6352. inline void gcode_M73() {
  6353. if (!IS_SD_PRINTING && parser.seen('P')) {
  6354. progress_bar_percent = parser.value_byte();
  6355. NOMORE(progress_bar_percent, 100);
  6356. }
  6357. }
  6358. #endif // ULTRA_LCD && LCD_SET_PROGRESS_MANUALLY
  6359. /**
  6360. * M75: Start print timer
  6361. */
  6362. inline void gcode_M75() { print_job_timer.start(); }
  6363. /**
  6364. * M76: Pause print timer
  6365. */
  6366. inline void gcode_M76() { print_job_timer.pause(); }
  6367. /**
  6368. * M77: Stop print timer
  6369. */
  6370. inline void gcode_M77() { print_job_timer.stop(); }
  6371. #if ENABLED(PRINTCOUNTER)
  6372. /**
  6373. * M78: Show print statistics
  6374. */
  6375. inline void gcode_M78() {
  6376. // "M78 S78" will reset the statistics
  6377. if (parser.intval('S') == 78)
  6378. print_job_timer.initStats();
  6379. else
  6380. print_job_timer.showStats();
  6381. }
  6382. #endif
  6383. /**
  6384. * M104: Set hot end temperature
  6385. */
  6386. inline void gcode_M104() {
  6387. if (get_target_extruder_from_command(104)) return;
  6388. if (DEBUGGING(DRYRUN)) return;
  6389. #if ENABLED(SINGLENOZZLE)
  6390. if (target_extruder != active_extruder) return;
  6391. #endif
  6392. if (parser.seenval('S')) {
  6393. const int16_t temp = parser.value_celsius();
  6394. thermalManager.setTargetHotend(temp, target_extruder);
  6395. #if ENABLED(DUAL_X_CARRIAGE)
  6396. if (dual_x_carriage_mode == DXC_DUPLICATION_MODE && target_extruder == 0)
  6397. thermalManager.setTargetHotend(temp ? temp + duplicate_extruder_temp_offset : 0, 1);
  6398. #endif
  6399. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  6400. /**
  6401. * Stop the timer at the end of print. Start is managed by 'heat and wait' M109.
  6402. * We use half EXTRUDE_MINTEMP here to allow nozzles to be put into hot
  6403. * standby mode, for instance in a dual extruder setup, without affecting
  6404. * the running print timer.
  6405. */
  6406. if (parser.value_celsius() <= (EXTRUDE_MINTEMP) / 2) {
  6407. print_job_timer.stop();
  6408. LCD_MESSAGEPGM(WELCOME_MSG);
  6409. }
  6410. #endif
  6411. if (parser.value_celsius() > thermalManager.degHotend(target_extruder))
  6412. lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
  6413. }
  6414. #if ENABLED(AUTOTEMP)
  6415. planner.autotemp_M104_M109();
  6416. #endif
  6417. }
  6418. /**
  6419. * M105: Read hot end and bed temperature
  6420. */
  6421. inline void gcode_M105() {
  6422. if (get_target_extruder_from_command(105)) return;
  6423. #if HAS_TEMP_HOTEND || HAS_TEMP_BED
  6424. SERIAL_PROTOCOLPGM(MSG_OK);
  6425. thermalManager.print_heaterstates();
  6426. #else // !HAS_TEMP_HOTEND && !HAS_TEMP_BED
  6427. SERIAL_ERROR_START();
  6428. SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
  6429. #endif
  6430. SERIAL_EOL();
  6431. }
  6432. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  6433. /**
  6434. * M155: Set temperature auto-report interval. M155 S<seconds>
  6435. */
  6436. inline void gcode_M155() {
  6437. if (parser.seenval('S'))
  6438. thermalManager.set_auto_report_interval(parser.value_byte());
  6439. }
  6440. #endif // AUTO_REPORT_TEMPERATURES
  6441. #if FAN_COUNT > 0
  6442. /**
  6443. * M106: Set Fan Speed
  6444. *
  6445. * S<int> Speed between 0-255
  6446. * P<index> Fan index, if more than one fan
  6447. *
  6448. * With EXTRA_FAN_SPEED enabled:
  6449. *
  6450. * T<int> Restore/Use/Set Temporary Speed:
  6451. * 1 = Restore previous speed after T2
  6452. * 2 = Use temporary speed set with T3-255
  6453. * 3-255 = Set the speed for use with T2
  6454. */
  6455. inline void gcode_M106() {
  6456. const uint8_t p = parser.byteval('P');
  6457. if (p < FAN_COUNT) {
  6458. #if ENABLED(EXTRA_FAN_SPEED)
  6459. const int16_t t = parser.intval('T');
  6460. if (t > 0) {
  6461. switch (t) {
  6462. case 1:
  6463. fanSpeeds[p] = old_fanSpeeds[p];
  6464. break;
  6465. case 2:
  6466. old_fanSpeeds[p] = fanSpeeds[p];
  6467. fanSpeeds[p] = new_fanSpeeds[p];
  6468. break;
  6469. default:
  6470. new_fanSpeeds[p] = min(t, 255);
  6471. break;
  6472. }
  6473. return;
  6474. }
  6475. #endif // EXTRA_FAN_SPEED
  6476. const uint16_t s = parser.ushortval('S', 255);
  6477. fanSpeeds[p] = min(s, 255);
  6478. }
  6479. }
  6480. /**
  6481. * M107: Fan Off
  6482. */
  6483. inline void gcode_M107() {
  6484. const uint16_t p = parser.ushortval('P');
  6485. if (p < FAN_COUNT) fanSpeeds[p] = 0;
  6486. }
  6487. #endif // FAN_COUNT > 0
  6488. #if DISABLED(EMERGENCY_PARSER)
  6489. /**
  6490. * M108: Stop the waiting for heaters in M109, M190, M303. Does not affect the target temperature.
  6491. */
  6492. inline void gcode_M108() { wait_for_heatup = false; }
  6493. /**
  6494. * M112: Emergency Stop
  6495. */
  6496. inline void gcode_M112() { kill(PSTR(MSG_KILLED)); }
  6497. /**
  6498. * M410: Quickstop - Abort all planned moves
  6499. *
  6500. * This will stop the carriages mid-move, so most likely they
  6501. * will be out of sync with the stepper position after this.
  6502. */
  6503. inline void gcode_M410() { quickstop_stepper(); }
  6504. #endif
  6505. /**
  6506. * M109: Sxxx Wait for extruder(s) to reach temperature. Waits only when heating.
  6507. * Rxxx Wait for extruder(s) to reach temperature. Waits when heating and cooling.
  6508. */
  6509. #ifndef MIN_COOLING_SLOPE_DEG
  6510. #define MIN_COOLING_SLOPE_DEG 1.50
  6511. #endif
  6512. #ifndef MIN_COOLING_SLOPE_TIME
  6513. #define MIN_COOLING_SLOPE_TIME 60
  6514. #endif
  6515. inline void gcode_M109() {
  6516. if (get_target_extruder_from_command(109)) return;
  6517. if (DEBUGGING(DRYRUN)) return;
  6518. #if ENABLED(SINGLENOZZLE)
  6519. if (target_extruder != active_extruder) return;
  6520. #endif
  6521. const bool no_wait_for_cooling = parser.seenval('S');
  6522. if (no_wait_for_cooling || parser.seenval('R')) {
  6523. const int16_t temp = parser.value_celsius();
  6524. thermalManager.setTargetHotend(temp, target_extruder);
  6525. #if ENABLED(DUAL_X_CARRIAGE)
  6526. if (dual_x_carriage_mode == DXC_DUPLICATION_MODE && target_extruder == 0)
  6527. thermalManager.setTargetHotend(temp ? temp + duplicate_extruder_temp_offset : 0, 1);
  6528. #endif
  6529. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  6530. /**
  6531. * Use half EXTRUDE_MINTEMP to allow nozzles to be put into hot
  6532. * standby mode, (e.g., in a dual extruder setup) without affecting
  6533. * the running print timer.
  6534. */
  6535. if (parser.value_celsius() <= (EXTRUDE_MINTEMP) / 2) {
  6536. print_job_timer.stop();
  6537. LCD_MESSAGEPGM(WELCOME_MSG);
  6538. }
  6539. else
  6540. print_job_timer.start();
  6541. #endif
  6542. if (thermalManager.isHeatingHotend(target_extruder)) lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
  6543. }
  6544. else return;
  6545. #if ENABLED(AUTOTEMP)
  6546. planner.autotemp_M104_M109();
  6547. #endif
  6548. #if TEMP_RESIDENCY_TIME > 0
  6549. millis_t residency_start_ms = 0;
  6550. // Loop until the temperature has stabilized
  6551. #define TEMP_CONDITIONS (!residency_start_ms || PENDING(now, residency_start_ms + (TEMP_RESIDENCY_TIME) * 1000UL))
  6552. #else
  6553. // Loop until the temperature is very close target
  6554. #define TEMP_CONDITIONS (wants_to_cool ? thermalManager.isCoolingHotend(target_extruder) : thermalManager.isHeatingHotend(target_extruder))
  6555. #endif
  6556. float target_temp = -1.0, old_temp = 9999.0;
  6557. bool wants_to_cool = false;
  6558. wait_for_heatup = true;
  6559. millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
  6560. #if DISABLED(BUSY_WHILE_HEATING)
  6561. KEEPALIVE_STATE(NOT_BUSY);
  6562. #endif
  6563. #if ENABLED(PRINTER_EVENT_LEDS)
  6564. const float start_temp = thermalManager.degHotend(target_extruder);
  6565. uint8_t old_blue = 0;
  6566. #endif
  6567. do {
  6568. // Target temperature might be changed during the loop
  6569. if (target_temp != thermalManager.degTargetHotend(target_extruder)) {
  6570. wants_to_cool = thermalManager.isCoolingHotend(target_extruder);
  6571. target_temp = thermalManager.degTargetHotend(target_extruder);
  6572. // Exit if S<lower>, continue if S<higher>, R<lower>, or R<higher>
  6573. if (no_wait_for_cooling && wants_to_cool) break;
  6574. }
  6575. now = millis();
  6576. if (ELAPSED(now, next_temp_ms)) { //Print temp & remaining time every 1s while waiting
  6577. next_temp_ms = now + 1000UL;
  6578. thermalManager.print_heaterstates();
  6579. #if TEMP_RESIDENCY_TIME > 0
  6580. SERIAL_PROTOCOLPGM(" W:");
  6581. if (residency_start_ms)
  6582. SERIAL_PROTOCOL(long((((TEMP_RESIDENCY_TIME) * 1000UL) - (now - residency_start_ms)) / 1000UL));
  6583. else
  6584. SERIAL_PROTOCOLCHAR('?');
  6585. #endif
  6586. SERIAL_EOL();
  6587. }
  6588. idle();
  6589. refresh_cmd_timeout(); // to prevent stepper_inactive_time from running out
  6590. const float temp = thermalManager.degHotend(target_extruder);
  6591. #if ENABLED(PRINTER_EVENT_LEDS)
  6592. // Gradually change LED strip from violet to red as nozzle heats up
  6593. if (!wants_to_cool) {
  6594. const uint8_t blue = map(constrain(temp, start_temp, target_temp), start_temp, target_temp, 255, 0);
  6595. if (blue != old_blue) {
  6596. old_blue = blue;
  6597. leds.set_color(
  6598. MakeLEDColor(255, 0, blue, 0, pixels.getBrightness())
  6599. #if ENABLED(NEOPIXEL_IS_SEQUENTIAL)
  6600. , true
  6601. #endif
  6602. );
  6603. }
  6604. }
  6605. #endif
  6606. #if TEMP_RESIDENCY_TIME > 0
  6607. const float temp_diff = FABS(target_temp - temp);
  6608. if (!residency_start_ms) {
  6609. // Start the TEMP_RESIDENCY_TIME timer when we reach target temp for the first time.
  6610. if (temp_diff < TEMP_WINDOW) residency_start_ms = now;
  6611. }
  6612. else if (temp_diff > TEMP_HYSTERESIS) {
  6613. // Restart the timer whenever the temperature falls outside the hysteresis.
  6614. residency_start_ms = now;
  6615. }
  6616. #endif
  6617. // Prevent a wait-forever situation if R is misused i.e. M109 R0
  6618. if (wants_to_cool) {
  6619. // break after MIN_COOLING_SLOPE_TIME seconds
  6620. // if the temperature did not drop at least MIN_COOLING_SLOPE_DEG
  6621. if (!next_cool_check_ms || ELAPSED(now, next_cool_check_ms)) {
  6622. if (old_temp - temp < MIN_COOLING_SLOPE_DEG) break;
  6623. next_cool_check_ms = now + 1000UL * MIN_COOLING_SLOPE_TIME;
  6624. old_temp = temp;
  6625. }
  6626. }
  6627. } while (wait_for_heatup && TEMP_CONDITIONS);
  6628. if (wait_for_heatup) {
  6629. LCD_MESSAGEPGM(MSG_HEATING_COMPLETE);
  6630. #if ENABLED(PRINTER_EVENT_LEDS)
  6631. leds.set_white();
  6632. #endif
  6633. }
  6634. #if DISABLED(BUSY_WHILE_HEATING)
  6635. KEEPALIVE_STATE(IN_HANDLER);
  6636. #endif
  6637. }
  6638. #if HAS_TEMP_BED
  6639. #ifndef MIN_COOLING_SLOPE_DEG_BED
  6640. #define MIN_COOLING_SLOPE_DEG_BED 1.50
  6641. #endif
  6642. #ifndef MIN_COOLING_SLOPE_TIME_BED
  6643. #define MIN_COOLING_SLOPE_TIME_BED 60
  6644. #endif
  6645. /**
  6646. * M190: Sxxx Wait for bed current temp to reach target temp. Waits only when heating
  6647. * Rxxx Wait for bed current temp to reach target temp. Waits when heating and cooling
  6648. */
  6649. inline void gcode_M190() {
  6650. if (DEBUGGING(DRYRUN)) return;
  6651. LCD_MESSAGEPGM(MSG_BED_HEATING);
  6652. const bool no_wait_for_cooling = parser.seenval('S');
  6653. if (no_wait_for_cooling || parser.seenval('R')) {
  6654. thermalManager.setTargetBed(parser.value_celsius());
  6655. #if ENABLED(PRINTJOB_TIMER_AUTOSTART)
  6656. if (parser.value_celsius() > BED_MINTEMP)
  6657. print_job_timer.start();
  6658. #endif
  6659. }
  6660. else return;
  6661. #if TEMP_BED_RESIDENCY_TIME > 0
  6662. millis_t residency_start_ms = 0;
  6663. // Loop until the temperature has stabilized
  6664. #define TEMP_BED_CONDITIONS (!residency_start_ms || PENDING(now, residency_start_ms + (TEMP_BED_RESIDENCY_TIME) * 1000UL))
  6665. #else
  6666. // Loop until the temperature is very close target
  6667. #define TEMP_BED_CONDITIONS (wants_to_cool ? thermalManager.isCoolingBed() : thermalManager.isHeatingBed())
  6668. #endif
  6669. float target_temp = -1.0, old_temp = 9999.0;
  6670. bool wants_to_cool = false;
  6671. wait_for_heatup = true;
  6672. millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
  6673. #if DISABLED(BUSY_WHILE_HEATING)
  6674. KEEPALIVE_STATE(NOT_BUSY);
  6675. #endif
  6676. target_extruder = active_extruder; // for print_heaterstates
  6677. #if ENABLED(PRINTER_EVENT_LEDS)
  6678. const float start_temp = thermalManager.degBed();
  6679. uint8_t old_red = 255;
  6680. #endif
  6681. do {
  6682. // Target temperature might be changed during the loop
  6683. if (target_temp != thermalManager.degTargetBed()) {
  6684. wants_to_cool = thermalManager.isCoolingBed();
  6685. target_temp = thermalManager.degTargetBed();
  6686. // Exit if S<lower>, continue if S<higher>, R<lower>, or R<higher>
  6687. if (no_wait_for_cooling && wants_to_cool) break;
  6688. }
  6689. now = millis();
  6690. if (ELAPSED(now, next_temp_ms)) { //Print Temp Reading every 1 second while heating up.
  6691. next_temp_ms = now + 1000UL;
  6692. thermalManager.print_heaterstates();
  6693. #if TEMP_BED_RESIDENCY_TIME > 0
  6694. SERIAL_PROTOCOLPGM(" W:");
  6695. if (residency_start_ms)
  6696. SERIAL_PROTOCOL(long((((TEMP_BED_RESIDENCY_TIME) * 1000UL) - (now - residency_start_ms)) / 1000UL));
  6697. else
  6698. SERIAL_PROTOCOLCHAR('?');
  6699. #endif
  6700. SERIAL_EOL();
  6701. }
  6702. idle();
  6703. refresh_cmd_timeout(); // to prevent stepper_inactive_time from running out
  6704. const float temp = thermalManager.degBed();
  6705. #if ENABLED(PRINTER_EVENT_LEDS)
  6706. // Gradually change LED strip from blue to violet as bed heats up
  6707. if (!wants_to_cool) {
  6708. const uint8_t red = map(constrain(temp, start_temp, target_temp), start_temp, target_temp, 0, 255);
  6709. if (red != old_red) {
  6710. old_red = red;
  6711. leds.set_color(
  6712. MakeLEDColor(red, 0, 255, 0, pixels.getBrightness())
  6713. #if ENABLED(NEOPIXEL_IS_SEQUENTIAL)
  6714. , true
  6715. #endif
  6716. );
  6717. }
  6718. }
  6719. #endif
  6720. #if TEMP_BED_RESIDENCY_TIME > 0
  6721. const float temp_diff = FABS(target_temp - temp);
  6722. if (!residency_start_ms) {
  6723. // Start the TEMP_BED_RESIDENCY_TIME timer when we reach target temp for the first time.
  6724. if (temp_diff < TEMP_BED_WINDOW) residency_start_ms = now;
  6725. }
  6726. else if (temp_diff > TEMP_BED_HYSTERESIS) {
  6727. // Restart the timer whenever the temperature falls outside the hysteresis.
  6728. residency_start_ms = now;
  6729. }
  6730. #endif // TEMP_BED_RESIDENCY_TIME > 0
  6731. // Prevent a wait-forever situation if R is misused i.e. M190 R0
  6732. if (wants_to_cool) {
  6733. // Break after MIN_COOLING_SLOPE_TIME_BED seconds
  6734. // if the temperature did not drop at least MIN_COOLING_SLOPE_DEG_BED
  6735. if (!next_cool_check_ms || ELAPSED(now, next_cool_check_ms)) {
  6736. if (old_temp - temp < MIN_COOLING_SLOPE_DEG_BED) break;
  6737. next_cool_check_ms = now + 1000UL * MIN_COOLING_SLOPE_TIME_BED;
  6738. old_temp = temp;
  6739. }
  6740. }
  6741. } while (wait_for_heatup && TEMP_BED_CONDITIONS);
  6742. if (wait_for_heatup) LCD_MESSAGEPGM(MSG_BED_DONE);
  6743. #if DISABLED(BUSY_WHILE_HEATING)
  6744. KEEPALIVE_STATE(IN_HANDLER);
  6745. #endif
  6746. }
  6747. #endif // HAS_TEMP_BED
  6748. /**
  6749. * M110: Set Current Line Number
  6750. */
  6751. inline void gcode_M110() {
  6752. if (parser.seenval('N')) gcode_LastN = parser.value_long();
  6753. }
  6754. /**
  6755. * M111: Set the debug level
  6756. */
  6757. inline void gcode_M111() {
  6758. if (parser.seen('S')) marlin_debug_flags = parser.byteval('S');
  6759. const static char str_debug_1[] PROGMEM = MSG_DEBUG_ECHO,
  6760. str_debug_2[] PROGMEM = MSG_DEBUG_INFO,
  6761. str_debug_4[] PROGMEM = MSG_DEBUG_ERRORS,
  6762. str_debug_8[] PROGMEM = MSG_DEBUG_DRYRUN,
  6763. str_debug_16[] PROGMEM = MSG_DEBUG_COMMUNICATION
  6764. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6765. , str_debug_32[] PROGMEM = MSG_DEBUG_LEVELING
  6766. #endif
  6767. ;
  6768. const static char* const debug_strings[] PROGMEM = {
  6769. str_debug_1, str_debug_2, str_debug_4, str_debug_8, str_debug_16
  6770. #if ENABLED(DEBUG_LEVELING_FEATURE)
  6771. , str_debug_32
  6772. #endif
  6773. };
  6774. SERIAL_ECHO_START();
  6775. SERIAL_ECHOPGM(MSG_DEBUG_PREFIX);
  6776. if (marlin_debug_flags) {
  6777. uint8_t comma = 0;
  6778. for (uint8_t i = 0; i < COUNT(debug_strings); i++) {
  6779. if (TEST(marlin_debug_flags, i)) {
  6780. if (comma++) SERIAL_CHAR(',');
  6781. serialprintPGM((char*)pgm_read_word(&debug_strings[i]));
  6782. }
  6783. }
  6784. }
  6785. else {
  6786. SERIAL_ECHOPGM(MSG_DEBUG_OFF);
  6787. }
  6788. SERIAL_EOL();
  6789. }
  6790. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  6791. /**
  6792. * M113: Get or set Host Keepalive interval (0 to disable)
  6793. *
  6794. * S<seconds> Optional. Set the keepalive interval.
  6795. */
  6796. inline void gcode_M113() {
  6797. if (parser.seenval('S')) {
  6798. host_keepalive_interval = parser.value_byte();
  6799. NOMORE(host_keepalive_interval, 60);
  6800. }
  6801. else {
  6802. SERIAL_ECHO_START();
  6803. SERIAL_ECHOLNPAIR("M113 S", (unsigned long)host_keepalive_interval);
  6804. }
  6805. }
  6806. #endif
  6807. #if ENABLED(BARICUDA)
  6808. #if HAS_HEATER_1
  6809. /**
  6810. * M126: Heater 1 valve open
  6811. */
  6812. inline void gcode_M126() { baricuda_valve_pressure = parser.byteval('S', 255); }
  6813. /**
  6814. * M127: Heater 1 valve close
  6815. */
  6816. inline void gcode_M127() { baricuda_valve_pressure = 0; }
  6817. #endif
  6818. #if HAS_HEATER_2
  6819. /**
  6820. * M128: Heater 2 valve open
  6821. */
  6822. inline void gcode_M128() { baricuda_e_to_p_pressure = parser.byteval('S', 255); }
  6823. /**
  6824. * M129: Heater 2 valve close
  6825. */
  6826. inline void gcode_M129() { baricuda_e_to_p_pressure = 0; }
  6827. #endif
  6828. #endif // BARICUDA
  6829. /**
  6830. * M140: Set bed temperature
  6831. */
  6832. inline void gcode_M140() {
  6833. if (DEBUGGING(DRYRUN)) return;
  6834. if (parser.seenval('S')) thermalManager.setTargetBed(parser.value_celsius());
  6835. }
  6836. #if ENABLED(ULTIPANEL)
  6837. /**
  6838. * M145: Set the heatup state for a material in the LCD menu
  6839. *
  6840. * S<material> (0=PLA, 1=ABS)
  6841. * H<hotend temp>
  6842. * B<bed temp>
  6843. * F<fan speed>
  6844. */
  6845. inline void gcode_M145() {
  6846. const uint8_t material = (uint8_t)parser.intval('S');
  6847. if (material >= COUNT(lcd_preheat_hotend_temp)) {
  6848. SERIAL_ERROR_START();
  6849. SERIAL_ERRORLNPGM(MSG_ERR_MATERIAL_INDEX);
  6850. }
  6851. else {
  6852. int v;
  6853. if (parser.seenval('H')) {
  6854. v = parser.value_int();
  6855. lcd_preheat_hotend_temp[material] = constrain(v, EXTRUDE_MINTEMP, HEATER_0_MAXTEMP - 15);
  6856. }
  6857. if (parser.seenval('F')) {
  6858. v = parser.value_int();
  6859. lcd_preheat_fan_speed[material] = constrain(v, 0, 255);
  6860. }
  6861. #if TEMP_SENSOR_BED != 0
  6862. if (parser.seenval('B')) {
  6863. v = parser.value_int();
  6864. lcd_preheat_bed_temp[material] = constrain(v, BED_MINTEMP, BED_MAXTEMP - 15);
  6865. }
  6866. #endif
  6867. }
  6868. }
  6869. #endif // ULTIPANEL
  6870. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  6871. /**
  6872. * M149: Set temperature units
  6873. */
  6874. inline void gcode_M149() {
  6875. if (parser.seenval('C')) parser.set_input_temp_units(TEMPUNIT_C);
  6876. else if (parser.seenval('K')) parser.set_input_temp_units(TEMPUNIT_K);
  6877. else if (parser.seenval('F')) parser.set_input_temp_units(TEMPUNIT_F);
  6878. }
  6879. #endif
  6880. #if HAS_POWER_SWITCH
  6881. /**
  6882. * M80 : Turn on the Power Supply
  6883. * M80 S : Report the current state and exit
  6884. */
  6885. inline void gcode_M80() {
  6886. // S: Report the current power supply state and exit
  6887. if (parser.seen('S')) {
  6888. serialprintPGM(powersupply_on ? PSTR("PS:1\n") : PSTR("PS:0\n"));
  6889. return;
  6890. }
  6891. OUT_WRITE(PS_ON_PIN, PS_ON_AWAKE); // GND
  6892. /**
  6893. * If you have a switch on suicide pin, this is useful
  6894. * if you want to start another print with suicide feature after
  6895. * a print without suicide...
  6896. */
  6897. #if HAS_SUICIDE
  6898. OUT_WRITE(SUICIDE_PIN, HIGH);
  6899. #endif
  6900. #if ENABLED(HAVE_TMC2130)
  6901. delay(100);
  6902. tmc2130_init(); // Settings only stick when the driver has power
  6903. #endif
  6904. powersupply_on = true;
  6905. #if ENABLED(ULTIPANEL)
  6906. LCD_MESSAGEPGM(WELCOME_MSG);
  6907. #endif
  6908. #if ENABLED(HAVE_TMC2208)
  6909. delay(100);
  6910. tmc2208_init();
  6911. #endif
  6912. }
  6913. #endif // HAS_POWER_SWITCH
  6914. /**
  6915. * M81: Turn off Power, including Power Supply, if there is one.
  6916. *
  6917. * This code should ALWAYS be available for EMERGENCY SHUTDOWN!
  6918. */
  6919. inline void gcode_M81() {
  6920. thermalManager.disable_all_heaters();
  6921. stepper.finish_and_disable();
  6922. #if FAN_COUNT > 0
  6923. for (uint8_t i = 0; i < FAN_COUNT; i++) fanSpeeds[i] = 0;
  6924. #if ENABLED(PROBING_FANS_OFF)
  6925. fans_paused = false;
  6926. ZERO(paused_fanSpeeds);
  6927. #endif
  6928. #endif
  6929. safe_delay(1000); // Wait 1 second before switching off
  6930. #if HAS_SUICIDE
  6931. stepper.synchronize();
  6932. suicide();
  6933. #elif HAS_POWER_SWITCH
  6934. OUT_WRITE(PS_ON_PIN, PS_ON_ASLEEP);
  6935. powersupply_on = false;
  6936. #endif
  6937. #if ENABLED(ULTIPANEL)
  6938. LCD_MESSAGEPGM(MACHINE_NAME " " MSG_OFF ".");
  6939. #endif
  6940. }
  6941. /**
  6942. * M82: Set E codes absolute (default)
  6943. */
  6944. inline void gcode_M82() { axis_relative_modes[E_AXIS] = false; }
  6945. /**
  6946. * M83: Set E codes relative while in Absolute Coordinates (G90) mode
  6947. */
  6948. inline void gcode_M83() { axis_relative_modes[E_AXIS] = true; }
  6949. /**
  6950. * M18, M84: Disable stepper motors
  6951. */
  6952. inline void gcode_M18_M84() {
  6953. if (parser.seenval('S')) {
  6954. stepper_inactive_time = parser.value_millis_from_seconds();
  6955. }
  6956. else {
  6957. bool all_axis = !((parser.seen('X')) || (parser.seen('Y')) || (parser.seen('Z')) || (parser.seen('E')));
  6958. if (all_axis) {
  6959. stepper.finish_and_disable();
  6960. }
  6961. else {
  6962. stepper.synchronize();
  6963. if (parser.seen('X')) disable_X();
  6964. if (parser.seen('Y')) disable_Y();
  6965. if (parser.seen('Z')) disable_Z();
  6966. #if E0_ENABLE_PIN != X_ENABLE_PIN && E1_ENABLE_PIN != Y_ENABLE_PIN // Only enable on boards that have separate ENABLE_PINS
  6967. if (parser.seen('E')) disable_e_steppers();
  6968. #endif
  6969. }
  6970. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTRA_LCD) // Only needed with an LCD
  6971. ubl.lcd_map_control = defer_return_to_status = false;
  6972. #endif
  6973. }
  6974. }
  6975. /**
  6976. * M85: Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
  6977. */
  6978. inline void gcode_M85() {
  6979. if (parser.seen('S')) max_inactive_time = parser.value_millis_from_seconds();
  6980. }
  6981. /**
  6982. * Multi-stepper support for M92, M201, M203
  6983. */
  6984. #if ENABLED(DISTINCT_E_FACTORS)
  6985. #define GET_TARGET_EXTRUDER(CMD) if (get_target_extruder_from_command(CMD)) return
  6986. #define TARGET_EXTRUDER target_extruder
  6987. #else
  6988. #define GET_TARGET_EXTRUDER(CMD) NOOP
  6989. #define TARGET_EXTRUDER 0
  6990. #endif
  6991. /**
  6992. * M92: Set axis steps-per-unit for one or more axes, X, Y, Z, and E.
  6993. * (Follows the same syntax as G92)
  6994. *
  6995. * With multiple extruders use T to specify which one.
  6996. */
  6997. inline void gcode_M92() {
  6998. GET_TARGET_EXTRUDER(92);
  6999. LOOP_XYZE(i) {
  7000. if (parser.seen(axis_codes[i])) {
  7001. if (i == E_AXIS) {
  7002. const float value = parser.value_per_axis_unit((AxisEnum)(E_AXIS + TARGET_EXTRUDER));
  7003. if (value < 20.0) {
  7004. float factor = planner.axis_steps_per_mm[E_AXIS + TARGET_EXTRUDER] / value; // increase e constants if M92 E14 is given for netfab.
  7005. planner.max_jerk[E_AXIS] *= factor;
  7006. planner.max_feedrate_mm_s[E_AXIS + TARGET_EXTRUDER] *= factor;
  7007. planner.max_acceleration_steps_per_s2[E_AXIS + TARGET_EXTRUDER] *= factor;
  7008. }
  7009. planner.axis_steps_per_mm[E_AXIS + TARGET_EXTRUDER] = value;
  7010. }
  7011. else {
  7012. planner.axis_steps_per_mm[i] = parser.value_per_axis_unit((AxisEnum)i);
  7013. }
  7014. }
  7015. }
  7016. planner.refresh_positioning();
  7017. }
  7018. /**
  7019. * Output the current position to serial
  7020. */
  7021. void report_current_position() {
  7022. SERIAL_PROTOCOLPGM("X:");
  7023. SERIAL_PROTOCOL(LOGICAL_X_POSITION(current_position[X_AXIS]));
  7024. SERIAL_PROTOCOLPGM(" Y:");
  7025. SERIAL_PROTOCOL(LOGICAL_Y_POSITION(current_position[Y_AXIS]));
  7026. SERIAL_PROTOCOLPGM(" Z:");
  7027. SERIAL_PROTOCOL(LOGICAL_Z_POSITION(current_position[Z_AXIS]));
  7028. SERIAL_PROTOCOLPGM(" E:");
  7029. SERIAL_PROTOCOL(current_position[E_AXIS]);
  7030. stepper.report_positions();
  7031. #if IS_SCARA
  7032. SERIAL_PROTOCOLPAIR("SCARA Theta:", stepper.get_axis_position_degrees(A_AXIS));
  7033. SERIAL_PROTOCOLLNPAIR(" Psi+Theta:", stepper.get_axis_position_degrees(B_AXIS));
  7034. SERIAL_EOL();
  7035. #endif
  7036. }
  7037. #ifdef M114_DETAIL
  7038. void report_xyze(const float pos[], const uint8_t n = 4, const uint8_t precision = 3) {
  7039. char str[12];
  7040. for (uint8_t i = 0; i < n; i++) {
  7041. SERIAL_CHAR(' ');
  7042. SERIAL_CHAR(axis_codes[i]);
  7043. SERIAL_CHAR(':');
  7044. SERIAL_PROTOCOL(dtostrf(pos[i], 8, precision, str));
  7045. }
  7046. SERIAL_EOL();
  7047. }
  7048. inline void report_xyz(const float pos[]) { report_xyze(pos, 3); }
  7049. void report_current_position_detail() {
  7050. stepper.synchronize();
  7051. SERIAL_PROTOCOLPGM("\nLogical:");
  7052. const float logical[XYZ] = {
  7053. LOGICAL_X_POSITION(current_position[X_AXIS]),
  7054. LOGICAL_Y_POSITION(current_position[Y_AXIS]),
  7055. LOGICAL_Z_POSITION(current_position[Z_AXIS])
  7056. };
  7057. report_xyze(logical);
  7058. SERIAL_PROTOCOLPGM("Raw: ");
  7059. report_xyz(current_position);
  7060. float leveled[XYZ] = { current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS] };
  7061. #if PLANNER_LEVELING
  7062. SERIAL_PROTOCOLPGM("Leveled:");
  7063. planner.apply_leveling(leveled);
  7064. report_xyz(leveled);
  7065. SERIAL_PROTOCOLPGM("UnLevel:");
  7066. float unleveled[XYZ] = { leveled[X_AXIS], leveled[Y_AXIS], leveled[Z_AXIS] };
  7067. planner.unapply_leveling(unleveled);
  7068. report_xyz(unleveled);
  7069. #endif
  7070. #if IS_KINEMATIC
  7071. #if IS_SCARA
  7072. SERIAL_PROTOCOLPGM("ScaraK: ");
  7073. #else
  7074. SERIAL_PROTOCOLPGM("DeltaK: ");
  7075. #endif
  7076. inverse_kinematics(leveled); // writes delta[]
  7077. report_xyz(delta);
  7078. #endif
  7079. SERIAL_PROTOCOLPGM("Stepper:");
  7080. LOOP_XYZE(i) {
  7081. SERIAL_CHAR(' ');
  7082. SERIAL_CHAR(axis_codes[i]);
  7083. SERIAL_CHAR(':');
  7084. SERIAL_PROTOCOL(stepper.position((AxisEnum)i));
  7085. }
  7086. SERIAL_EOL();
  7087. #if IS_SCARA
  7088. const float deg[XYZ] = {
  7089. stepper.get_axis_position_degrees(A_AXIS),
  7090. stepper.get_axis_position_degrees(B_AXIS)
  7091. };
  7092. SERIAL_PROTOCOLPGM("Degrees:");
  7093. report_xyze(deg, 2);
  7094. #endif
  7095. SERIAL_PROTOCOLPGM("FromStp:");
  7096. get_cartesian_from_steppers(); // writes cartes[XYZ] (with forward kinematics)
  7097. const float from_steppers[XYZE] = { cartes[X_AXIS], cartes[Y_AXIS], cartes[Z_AXIS], stepper.get_axis_position_mm(E_AXIS) };
  7098. report_xyze(from_steppers);
  7099. const float diff[XYZE] = {
  7100. from_steppers[X_AXIS] - leveled[X_AXIS],
  7101. from_steppers[Y_AXIS] - leveled[Y_AXIS],
  7102. from_steppers[Z_AXIS] - leveled[Z_AXIS],
  7103. from_steppers[E_AXIS] - current_position[E_AXIS]
  7104. };
  7105. SERIAL_PROTOCOLPGM("Differ: ");
  7106. report_xyze(diff);
  7107. }
  7108. #endif // M114_DETAIL
  7109. /**
  7110. * M114: Report current position to host
  7111. */
  7112. inline void gcode_M114() {
  7113. #ifdef M114_DETAIL
  7114. if (parser.seen('D')) {
  7115. report_current_position_detail();
  7116. return;
  7117. }
  7118. #endif
  7119. stepper.synchronize();
  7120. report_current_position();
  7121. }
  7122. /**
  7123. * M115: Capabilities string
  7124. */
  7125. inline void gcode_M115() {
  7126. SERIAL_PROTOCOLLNPGM(MSG_M115_REPORT);
  7127. #if ENABLED(EXTENDED_CAPABILITIES_REPORT)
  7128. // SERIAL_XON_XOFF
  7129. #if ENABLED(SERIAL_XON_XOFF)
  7130. SERIAL_PROTOCOLLNPGM("Cap:SERIAL_XON_XOFF:1");
  7131. #else
  7132. SERIAL_PROTOCOLLNPGM("Cap:SERIAL_XON_XOFF:0");
  7133. #endif
  7134. // EEPROM (M500, M501)
  7135. #if ENABLED(EEPROM_SETTINGS)
  7136. SERIAL_PROTOCOLLNPGM("Cap:EEPROM:1");
  7137. #else
  7138. SERIAL_PROTOCOLLNPGM("Cap:EEPROM:0");
  7139. #endif
  7140. // AUTOREPORT_TEMP (M155)
  7141. #if ENABLED(AUTO_REPORT_TEMPERATURES)
  7142. SERIAL_PROTOCOLLNPGM("Cap:AUTOREPORT_TEMP:1");
  7143. #else
  7144. SERIAL_PROTOCOLLNPGM("Cap:AUTOREPORT_TEMP:0");
  7145. #endif
  7146. // PROGRESS (M530 S L, M531 <file>, M532 X L)
  7147. SERIAL_PROTOCOLLNPGM("Cap:PROGRESS:0");
  7148. // Print Job timer M75, M76, M77
  7149. SERIAL_PROTOCOLLNPGM("Cap:PRINT_JOB:1");
  7150. // AUTOLEVEL (G29)
  7151. #if HAS_ABL
  7152. SERIAL_PROTOCOLLNPGM("Cap:AUTOLEVEL:1");
  7153. #else
  7154. SERIAL_PROTOCOLLNPGM("Cap:AUTOLEVEL:0");
  7155. #endif
  7156. // Z_PROBE (G30)
  7157. #if HAS_BED_PROBE
  7158. SERIAL_PROTOCOLLNPGM("Cap:Z_PROBE:1");
  7159. #else
  7160. SERIAL_PROTOCOLLNPGM("Cap:Z_PROBE:0");
  7161. #endif
  7162. // MESH_REPORT (M420 V)
  7163. #if HAS_LEVELING
  7164. SERIAL_PROTOCOLLNPGM("Cap:LEVELING_DATA:1");
  7165. #else
  7166. SERIAL_PROTOCOLLNPGM("Cap:LEVELING_DATA:0");
  7167. #endif
  7168. // BUILD_PERCENT (M73)
  7169. #if ENABLED(LCD_SET_PROGRESS_MANUALLY)
  7170. SERIAL_PROTOCOLLNPGM("Cap:BUILD_PERCENT:1");
  7171. #else
  7172. SERIAL_PROTOCOLLNPGM("Cap:BUILD_PERCENT:0");
  7173. #endif
  7174. // SOFTWARE_POWER (M80, M81)
  7175. #if HAS_POWER_SWITCH
  7176. SERIAL_PROTOCOLLNPGM("Cap:SOFTWARE_POWER:1");
  7177. #else
  7178. SERIAL_PROTOCOLLNPGM("Cap:SOFTWARE_POWER:0");
  7179. #endif
  7180. // CASE LIGHTS (M355)
  7181. #if HAS_CASE_LIGHT
  7182. SERIAL_PROTOCOLLNPGM("Cap:TOGGLE_LIGHTS:1");
  7183. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) {
  7184. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:1");
  7185. }
  7186. else
  7187. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:0");
  7188. #else
  7189. SERIAL_PROTOCOLLNPGM("Cap:TOGGLE_LIGHTS:0");
  7190. SERIAL_PROTOCOLLNPGM("Cap:CASE_LIGHT_BRIGHTNESS:0");
  7191. #endif
  7192. // EMERGENCY_PARSER (M108, M112, M410)
  7193. #if ENABLED(EMERGENCY_PARSER)
  7194. SERIAL_PROTOCOLLNPGM("Cap:EMERGENCY_PARSER:1");
  7195. #else
  7196. SERIAL_PROTOCOLLNPGM("Cap:EMERGENCY_PARSER:0");
  7197. #endif
  7198. #endif // EXTENDED_CAPABILITIES_REPORT
  7199. }
  7200. /**
  7201. * M117: Set LCD Status Message
  7202. */
  7203. inline void gcode_M117() { lcd_setstatus(parser.string_arg); }
  7204. /**
  7205. * M118: Display a message in the host console.
  7206. *
  7207. * A1 Append '// ' for an action command, as in OctoPrint
  7208. * E1 Have the host 'echo:' the text
  7209. */
  7210. inline void gcode_M118() {
  7211. if (parser.boolval('E')) SERIAL_ECHO_START();
  7212. if (parser.boolval('A')) SERIAL_ECHOPGM("// ");
  7213. SERIAL_ECHOLN(parser.string_arg);
  7214. }
  7215. /**
  7216. * M119: Output endstop states to serial output
  7217. */
  7218. inline void gcode_M119() { endstops.M119(); }
  7219. /**
  7220. * M120: Enable endstops and set non-homing endstop state to "enabled"
  7221. */
  7222. inline void gcode_M120() { endstops.enable_globally(true); }
  7223. /**
  7224. * M121: Disable endstops and set non-homing endstop state to "disabled"
  7225. */
  7226. inline void gcode_M121() { endstops.enable_globally(false); }
  7227. #if ENABLED(PARK_HEAD_ON_PAUSE)
  7228. /**
  7229. * M125: Store current position and move to filament change position.
  7230. * Called on pause (by M25) to prevent material leaking onto the
  7231. * object. On resume (M24) the head will be moved back and the
  7232. * print will resume.
  7233. *
  7234. * If Marlin is compiled without SD Card support, M125 can be
  7235. * used directly to pause the print and move to park position,
  7236. * resuming with a button click or M108.
  7237. *
  7238. * L = override retract length
  7239. * X = override X
  7240. * Y = override Y
  7241. * Z = override Z raise
  7242. */
  7243. inline void gcode_M125() {
  7244. // Initial retract before move to filament change position
  7245. const float retract = parser.seen('L') ? parser.value_axis_units(E_AXIS) : 0
  7246. #ifdef PAUSE_PARK_RETRACT_LENGTH
  7247. - (PAUSE_PARK_RETRACT_LENGTH)
  7248. #endif
  7249. ;
  7250. // Lift Z axis
  7251. const float z_lift = parser.linearval('Z')
  7252. #ifdef PAUSE_PARK_Z_ADD
  7253. + PAUSE_PARK_Z_ADD
  7254. #endif
  7255. ;
  7256. // Move XY axes to filament change position or given position
  7257. const float x_pos = parser.linearval('X')
  7258. #ifdef PAUSE_PARK_X_POS
  7259. + PAUSE_PARK_X_POS
  7260. #endif
  7261. #if HOTENDS > 1 && DISABLED(DUAL_X_CARRIAGE)
  7262. + (active_extruder ? hotend_offset[X_AXIS][active_extruder] : 0)
  7263. #endif
  7264. ;
  7265. const float y_pos = parser.linearval('Y')
  7266. #ifdef PAUSE_PARK_Y_POS
  7267. + PAUSE_PARK_Y_POS
  7268. #endif
  7269. #if HOTENDS > 1 && DISABLED(DUAL_X_CARRIAGE)
  7270. + (active_extruder ? hotend_offset[Y_AXIS][active_extruder] : 0)
  7271. #endif
  7272. ;
  7273. #if DISABLED(SDSUPPORT)
  7274. const bool job_running = print_job_timer.isRunning();
  7275. #endif
  7276. if (pause_print(retract, z_lift, x_pos, y_pos)) {
  7277. #if DISABLED(SDSUPPORT)
  7278. // Wait for lcd click or M108
  7279. wait_for_filament_reload();
  7280. // Return to print position and continue
  7281. resume_print();
  7282. if (job_running) print_job_timer.start();
  7283. #endif
  7284. }
  7285. }
  7286. #endif // PARK_HEAD_ON_PAUSE
  7287. #if HAS_COLOR_LEDS
  7288. /**
  7289. * M150: Set Status LED Color - Use R-U-B-W for R-G-B-W
  7290. * and Brightness - Use P (for NEOPIXEL only)
  7291. *
  7292. * Always sets all 3 or 4 components. If a component is left out, set to 0.
  7293. * If brightness is left out, no value changed
  7294. *
  7295. * Examples:
  7296. *
  7297. * M150 R255 ; Turn LED red
  7298. * M150 R255 U127 ; Turn LED orange (PWM only)
  7299. * M150 ; Turn LED off
  7300. * M150 R U B ; Turn LED white
  7301. * M150 W ; Turn LED white using a white LED
  7302. * M150 P127 ; Set LED 50% brightness
  7303. * M150 P ; Set LED full brightness
  7304. */
  7305. inline void gcode_M150() {
  7306. leds.set_color(MakeLEDColor(
  7307. parser.seen('R') ? (parser.has_value() ? parser.value_byte() : 255) : 0,
  7308. parser.seen('U') ? (parser.has_value() ? parser.value_byte() : 255) : 0,
  7309. parser.seen('B') ? (parser.has_value() ? parser.value_byte() : 255) : 0,
  7310. parser.seen('W') ? (parser.has_value() ? parser.value_byte() : 255) : 0,
  7311. parser.seen('P') ? (parser.has_value() ? parser.value_byte() : 255) : pixels.getBrightness()
  7312. ));
  7313. }
  7314. #endif // HAS_COLOR_LEDS
  7315. /**
  7316. * M200: Set filament diameter and set E axis units to cubic units
  7317. *
  7318. * T<extruder> - Optional extruder number. Current extruder if omitted.
  7319. * D<linear> - Diameter of the filament. Use "D0" to switch back to linear units on the E axis.
  7320. */
  7321. inline void gcode_M200() {
  7322. if (get_target_extruder_from_command(200)) return;
  7323. if (parser.seen('D')) {
  7324. // setting any extruder filament size disables volumetric on the assumption that
  7325. // slicers either generate in extruder values as cubic mm or as as filament feeds
  7326. // for all extruders
  7327. if ( (parser.volumetric_enabled = (parser.value_linear_units() != 0.0)) )
  7328. planner.set_filament_size(target_extruder, parser.value_linear_units());
  7329. }
  7330. planner.calculate_volumetric_multipliers();
  7331. }
  7332. /**
  7333. * M201: Set max acceleration in units/s^2 for print moves (M201 X1000 Y1000)
  7334. *
  7335. * With multiple extruders use T to specify which one.
  7336. */
  7337. inline void gcode_M201() {
  7338. GET_TARGET_EXTRUDER(201);
  7339. LOOP_XYZE(i) {
  7340. if (parser.seen(axis_codes[i])) {
  7341. const uint8_t a = i + (i == E_AXIS ? TARGET_EXTRUDER : 0);
  7342. planner.max_acceleration_mm_per_s2[a] = parser.value_axis_units((AxisEnum)a);
  7343. }
  7344. }
  7345. // 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)
  7346. planner.reset_acceleration_rates();
  7347. }
  7348. #if 0 // Not used for Sprinter/grbl gen6
  7349. inline void gcode_M202() {
  7350. LOOP_XYZE(i) {
  7351. if (parser.seen(axis_codes[i])) axis_travel_steps_per_sqr_second[i] = parser.value_axis_units((AxisEnum)i) * planner.axis_steps_per_mm[i];
  7352. }
  7353. }
  7354. #endif
  7355. /**
  7356. * M203: Set maximum feedrate that your machine can sustain (M203 X200 Y200 Z300 E10000) in units/sec
  7357. *
  7358. * With multiple extruders use T to specify which one.
  7359. */
  7360. inline void gcode_M203() {
  7361. GET_TARGET_EXTRUDER(203);
  7362. LOOP_XYZE(i)
  7363. if (parser.seen(axis_codes[i])) {
  7364. const uint8_t a = i + (i == E_AXIS ? TARGET_EXTRUDER : 0);
  7365. planner.max_feedrate_mm_s[a] = parser.value_axis_units((AxisEnum)a);
  7366. }
  7367. }
  7368. /**
  7369. * M204: Set Accelerations in units/sec^2 (M204 P1200 R3000 T3000)
  7370. *
  7371. * P = Printing moves
  7372. * R = Retract only (no X, Y, Z) moves
  7373. * T = Travel (non printing) moves
  7374. *
  7375. * Also sets minimum segment time in ms (B20000) to prevent buffer under-runs and M20 minimum feedrate
  7376. */
  7377. inline void gcode_M204() {
  7378. if (parser.seen('S')) { // Kept for legacy compatibility. Should NOT BE USED for new developments.
  7379. planner.travel_acceleration = planner.acceleration = parser.value_linear_units();
  7380. SERIAL_ECHOLNPAIR("Setting Print and Travel Acceleration: ", planner.acceleration);
  7381. }
  7382. if (parser.seen('P')) {
  7383. planner.acceleration = parser.value_linear_units();
  7384. SERIAL_ECHOLNPAIR("Setting Print Acceleration: ", planner.acceleration);
  7385. }
  7386. if (parser.seen('R')) {
  7387. planner.retract_acceleration = parser.value_linear_units();
  7388. SERIAL_ECHOLNPAIR("Setting Retract Acceleration: ", planner.retract_acceleration);
  7389. }
  7390. if (parser.seen('T')) {
  7391. planner.travel_acceleration = parser.value_linear_units();
  7392. SERIAL_ECHOLNPAIR("Setting Travel Acceleration: ", planner.travel_acceleration);
  7393. }
  7394. }
  7395. /**
  7396. * M205: Set Advanced Settings
  7397. *
  7398. * S = Min Feed Rate (units/s)
  7399. * T = Min Travel Feed Rate (units/s)
  7400. * B = Min Segment Time (µs)
  7401. * X = Max X Jerk (units/sec^2)
  7402. * Y = Max Y Jerk (units/sec^2)
  7403. * Z = Max Z Jerk (units/sec^2)
  7404. * E = Max E Jerk (units/sec^2)
  7405. */
  7406. inline void gcode_M205() {
  7407. if (parser.seen('S')) planner.min_feedrate_mm_s = parser.value_linear_units();
  7408. if (parser.seen('T')) planner.min_travel_feedrate_mm_s = parser.value_linear_units();
  7409. if (parser.seen('B')) planner.min_segment_time_us = parser.value_ulong();
  7410. if (parser.seen('X')) planner.max_jerk[X_AXIS] = parser.value_linear_units();
  7411. if (parser.seen('Y')) planner.max_jerk[Y_AXIS] = parser.value_linear_units();
  7412. if (parser.seen('Z')) planner.max_jerk[Z_AXIS] = parser.value_linear_units();
  7413. if (parser.seen('E')) planner.max_jerk[E_AXIS] = parser.value_linear_units();
  7414. }
  7415. #if HAS_M206_COMMAND
  7416. /**
  7417. * M206: Set Additional Homing Offset (X Y Z). SCARA aliases T=X, P=Y
  7418. *
  7419. * *** @thinkyhead: I recommend deprecating M206 for SCARA in favor of M665.
  7420. * *** M206 for SCARA will remain enabled in 1.1.x for compatibility.
  7421. * *** In the next 1.2 release, it will simply be disabled by default.
  7422. */
  7423. inline void gcode_M206() {
  7424. LOOP_XYZ(i)
  7425. if (parser.seen(axis_codes[i]))
  7426. set_home_offset((AxisEnum)i, parser.value_linear_units());
  7427. #if ENABLED(MORGAN_SCARA)
  7428. if (parser.seen('T')) set_home_offset(A_AXIS, parser.value_float()); // Theta
  7429. if (parser.seen('P')) set_home_offset(B_AXIS, parser.value_float()); // Psi
  7430. #endif
  7431. report_current_position();
  7432. }
  7433. #endif // HAS_M206_COMMAND
  7434. #if ENABLED(DELTA)
  7435. /**
  7436. * M665: Set delta configurations
  7437. *
  7438. * H = delta height
  7439. * L = diagonal rod
  7440. * R = delta radius
  7441. * S = segments per second
  7442. * B = delta calibration radius
  7443. * X = Alpha (Tower 1) angle trim
  7444. * Y = Beta (Tower 2) angle trim
  7445. * Z = Rotate A and B by this angle
  7446. */
  7447. inline void gcode_M665() {
  7448. if (parser.seen('H')) delta_height = parser.value_linear_units();
  7449. if (parser.seen('L')) delta_diagonal_rod = parser.value_linear_units();
  7450. if (parser.seen('R')) delta_radius = parser.value_linear_units();
  7451. if (parser.seen('S')) delta_segments_per_second = parser.value_float();
  7452. if (parser.seen('B')) delta_calibration_radius = parser.value_float();
  7453. if (parser.seen('X')) delta_tower_angle_trim[A_AXIS] = parser.value_float();
  7454. if (parser.seen('Y')) delta_tower_angle_trim[B_AXIS] = parser.value_float();
  7455. if (parser.seen('Z')) delta_tower_angle_trim[C_AXIS] = parser.value_float();
  7456. recalc_delta_settings();
  7457. }
  7458. /**
  7459. * M666: Set delta endstop adjustment
  7460. */
  7461. inline void gcode_M666() {
  7462. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7463. if (DEBUGGING(LEVELING)) {
  7464. SERIAL_ECHOLNPGM(">>> gcode_M666");
  7465. }
  7466. #endif
  7467. LOOP_XYZ(i) {
  7468. if (parser.seen(axis_codes[i])) {
  7469. if (parser.value_linear_units() * Z_HOME_DIR <= 0)
  7470. delta_endstop_adj[i] = parser.value_linear_units();
  7471. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7472. if (DEBUGGING(LEVELING)) {
  7473. SERIAL_ECHOPAIR("delta_endstop_adj[", axis_codes[i]);
  7474. SERIAL_ECHOLNPAIR("] = ", delta_endstop_adj[i]);
  7475. }
  7476. #endif
  7477. }
  7478. }
  7479. #if ENABLED(DEBUG_LEVELING_FEATURE)
  7480. if (DEBUGGING(LEVELING)) {
  7481. SERIAL_ECHOLNPGM("<<< gcode_M666");
  7482. }
  7483. #endif
  7484. }
  7485. #elif IS_SCARA
  7486. /**
  7487. * M665: Set SCARA settings
  7488. *
  7489. * Parameters:
  7490. *
  7491. * S[segments-per-second] - Segments-per-second
  7492. * P[theta-psi-offset] - Theta-Psi offset, added to the shoulder (A/X) angle
  7493. * T[theta-offset] - Theta offset, added to the elbow (B/Y) angle
  7494. *
  7495. * A, P, and X are all aliases for the shoulder angle
  7496. * B, T, and Y are all aliases for the elbow angle
  7497. */
  7498. inline void gcode_M665() {
  7499. if (parser.seen('S')) delta_segments_per_second = parser.value_float();
  7500. const bool hasA = parser.seen('A'), hasP = parser.seen('P'), hasX = parser.seen('X');
  7501. const uint8_t sumAPX = hasA + hasP + hasX;
  7502. if (sumAPX == 1)
  7503. home_offset[A_AXIS] = parser.value_float();
  7504. else if (sumAPX > 1) {
  7505. SERIAL_ERROR_START();
  7506. SERIAL_ERRORLNPGM("Only one of A, P, or X is allowed.");
  7507. return;
  7508. }
  7509. const bool hasB = parser.seen('B'), hasT = parser.seen('T'), hasY = parser.seen('Y');
  7510. const uint8_t sumBTY = hasB + hasT + hasY;
  7511. if (sumBTY == 1)
  7512. home_offset[B_AXIS] = parser.value_float();
  7513. else if (sumBTY > 1) {
  7514. SERIAL_ERROR_START();
  7515. SERIAL_ERRORLNPGM("Only one of B, T, or Y is allowed.");
  7516. return;
  7517. }
  7518. }
  7519. #elif ENABLED(X_DUAL_ENDSTOPS) || ENABLED(Y_DUAL_ENDSTOPS) || ENABLED(Z_DUAL_ENDSTOPS)
  7520. /**
  7521. * M666: For Z Dual Endstop setup, set z axis offset to the z2 axis.
  7522. */
  7523. inline void gcode_M666() {
  7524. SERIAL_ECHOPGM("Dual Endstop Adjustment (mm): ");
  7525. #if ENABLED(X_DUAL_ENDSTOPS)
  7526. if (parser.seen('X')) x_endstop_adj = parser.value_linear_units();
  7527. SERIAL_ECHOPAIR(" X", x_endstop_adj);
  7528. #endif
  7529. #if ENABLED(Y_DUAL_ENDSTOPS)
  7530. if (parser.seen('Y')) y_endstop_adj = parser.value_linear_units();
  7531. SERIAL_ECHOPAIR(" Y", y_endstop_adj);
  7532. #endif
  7533. #if ENABLED(Z_DUAL_ENDSTOPS)
  7534. if (parser.seen('Z')) z_endstop_adj = parser.value_linear_units();
  7535. SERIAL_ECHOPAIR(" Z", z_endstop_adj);
  7536. #endif
  7537. SERIAL_EOL();
  7538. }
  7539. #endif // !DELTA && Z_DUAL_ENDSTOPS
  7540. #if ENABLED(FWRETRACT)
  7541. /**
  7542. * M207: Set firmware retraction values
  7543. *
  7544. * S[+units] retract_length
  7545. * W[+units] swap_retract_length (multi-extruder)
  7546. * F[units/min] retract_feedrate_mm_s
  7547. * Z[units] retract_zlift
  7548. */
  7549. inline void gcode_M207() {
  7550. if (parser.seen('S')) retract_length = parser.value_axis_units(E_AXIS);
  7551. if (parser.seen('F')) retract_feedrate_mm_s = MMM_TO_MMS(parser.value_axis_units(E_AXIS));
  7552. if (parser.seen('Z')) retract_zlift = parser.value_linear_units();
  7553. if (parser.seen('W')) swap_retract_length = parser.value_axis_units(E_AXIS);
  7554. }
  7555. /**
  7556. * M208: Set firmware un-retraction values
  7557. *
  7558. * S[+units] retract_recover_length (in addition to M207 S*)
  7559. * W[+units] swap_retract_recover_length (multi-extruder)
  7560. * F[units/min] retract_recover_feedrate_mm_s
  7561. * R[units/min] swap_retract_recover_feedrate_mm_s
  7562. */
  7563. inline void gcode_M208() {
  7564. if (parser.seen('S')) retract_recover_length = parser.value_axis_units(E_AXIS);
  7565. if (parser.seen('F')) retract_recover_feedrate_mm_s = MMM_TO_MMS(parser.value_axis_units(E_AXIS));
  7566. if (parser.seen('R')) swap_retract_recover_feedrate_mm_s = MMM_TO_MMS(parser.value_axis_units(E_AXIS));
  7567. if (parser.seen('W')) swap_retract_recover_length = parser.value_axis_units(E_AXIS);
  7568. }
  7569. /**
  7570. * M209: Enable automatic retract (M209 S1)
  7571. * For slicers that don't support G10/11, reversed extrude-only
  7572. * moves will be classified as retraction.
  7573. */
  7574. inline void gcode_M209() {
  7575. if (MIN_AUTORETRACT <= MAX_AUTORETRACT) {
  7576. if (parser.seen('S')) {
  7577. autoretract_enabled = parser.value_bool();
  7578. for (uint8_t i = 0; i < EXTRUDERS; i++) retracted[i] = false;
  7579. }
  7580. }
  7581. }
  7582. #endif // FWRETRACT
  7583. /**
  7584. * M211: Enable, Disable, and/or Report software endstops
  7585. *
  7586. * Usage: M211 S1 to enable, M211 S0 to disable, M211 alone for report
  7587. */
  7588. inline void gcode_M211() {
  7589. SERIAL_ECHO_START();
  7590. #if HAS_SOFTWARE_ENDSTOPS
  7591. if (parser.seen('S')) soft_endstops_enabled = parser.value_bool();
  7592. SERIAL_ECHOPGM(MSG_SOFT_ENDSTOPS);
  7593. serialprintPGM(soft_endstops_enabled ? PSTR(MSG_ON) : PSTR(MSG_OFF));
  7594. #else
  7595. SERIAL_ECHOPGM(MSG_SOFT_ENDSTOPS);
  7596. SERIAL_ECHOPGM(MSG_OFF);
  7597. #endif
  7598. SERIAL_ECHOPGM(MSG_SOFT_MIN);
  7599. SERIAL_ECHOPAIR( MSG_X, LOGICAL_X_POSITION(soft_endstop_min[X_AXIS]));
  7600. SERIAL_ECHOPAIR(" " MSG_Y, LOGICAL_Y_POSITION(soft_endstop_min[Y_AXIS]));
  7601. SERIAL_ECHOPAIR(" " MSG_Z, LOGICAL_Z_POSITION(soft_endstop_min[Z_AXIS]));
  7602. SERIAL_ECHOPGM(MSG_SOFT_MAX);
  7603. SERIAL_ECHOPAIR( MSG_X, LOGICAL_X_POSITION(soft_endstop_max[X_AXIS]));
  7604. SERIAL_ECHOPAIR(" " MSG_Y, LOGICAL_Y_POSITION(soft_endstop_max[Y_AXIS]));
  7605. SERIAL_ECHOLNPAIR(" " MSG_Z, LOGICAL_Z_POSITION(soft_endstop_max[Z_AXIS]));
  7606. }
  7607. #if HOTENDS > 1
  7608. /**
  7609. * M218 - set hotend offset (in linear units)
  7610. *
  7611. * T<tool>
  7612. * X<xoffset>
  7613. * Y<yoffset>
  7614. * Z<zoffset> - Available with DUAL_X_CARRIAGE and SWITCHING_NOZZLE
  7615. */
  7616. inline void gcode_M218() {
  7617. if (get_target_extruder_from_command(218) || target_extruder == 0) return;
  7618. if (parser.seenval('X')) hotend_offset[X_AXIS][target_extruder] = parser.value_linear_units();
  7619. if (parser.seenval('Y')) hotend_offset[Y_AXIS][target_extruder] = parser.value_linear_units();
  7620. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE) || ENABLED(PARKING_EXTRUDER)
  7621. if (parser.seenval('Z')) hotend_offset[Z_AXIS][target_extruder] = parser.value_linear_units();
  7622. #endif
  7623. SERIAL_ECHO_START();
  7624. SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
  7625. HOTEND_LOOP() {
  7626. SERIAL_CHAR(' ');
  7627. SERIAL_ECHO(hotend_offset[X_AXIS][e]);
  7628. SERIAL_CHAR(',');
  7629. SERIAL_ECHO(hotend_offset[Y_AXIS][e]);
  7630. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE) || ENABLED(PARKING_EXTRUDER)
  7631. SERIAL_CHAR(',');
  7632. SERIAL_ECHO(hotend_offset[Z_AXIS][e]);
  7633. #endif
  7634. }
  7635. SERIAL_EOL();
  7636. }
  7637. #endif // HOTENDS > 1
  7638. /**
  7639. * M220: Set speed percentage factor, aka "Feed Rate" (M220 S95)
  7640. */
  7641. inline void gcode_M220() {
  7642. if (parser.seenval('S')) feedrate_percentage = parser.value_int();
  7643. }
  7644. /**
  7645. * M221: Set extrusion percentage (M221 T0 S95)
  7646. */
  7647. inline void gcode_M221() {
  7648. if (get_target_extruder_from_command(221)) return;
  7649. if (parser.seenval('S')) {
  7650. planner.flow_percentage[target_extruder] = parser.value_int();
  7651. planner.refresh_e_factor(target_extruder);
  7652. }
  7653. }
  7654. /**
  7655. * M226: Wait until the specified pin reaches the state required (M226 P<pin> S<state>)
  7656. */
  7657. inline void gcode_M226() {
  7658. if (parser.seen('P')) {
  7659. const int pin_number = parser.value_int(),
  7660. pin_state = parser.intval('S', -1); // required pin state - default is inverted
  7661. if (WITHIN(pin_state, -1, 1) && pin_number > -1 && !pin_is_protected(pin_number)) {
  7662. int target = LOW;
  7663. stepper.synchronize();
  7664. pinMode(pin_number, INPUT);
  7665. switch (pin_state) {
  7666. case 1:
  7667. target = HIGH;
  7668. break;
  7669. case 0:
  7670. target = LOW;
  7671. break;
  7672. case -1:
  7673. target = !digitalRead(pin_number);
  7674. break;
  7675. }
  7676. while (digitalRead(pin_number) != target) idle();
  7677. } // pin_state -1 0 1 && pin_number > -1
  7678. } // parser.seen('P')
  7679. }
  7680. #if ENABLED(EXPERIMENTAL_I2CBUS)
  7681. /**
  7682. * M260: Send data to a I2C slave device
  7683. *
  7684. * This is a PoC, the formating and arguments for the GCODE will
  7685. * change to be more compatible, the current proposal is:
  7686. *
  7687. * M260 A<slave device address base 10> ; Sets the I2C slave address the data will be sent to
  7688. *
  7689. * M260 B<byte-1 value in base 10>
  7690. * M260 B<byte-2 value in base 10>
  7691. * M260 B<byte-3 value in base 10>
  7692. *
  7693. * M260 S1 ; Send the buffered data and reset the buffer
  7694. * M260 R1 ; Reset the buffer without sending data
  7695. *
  7696. */
  7697. inline void gcode_M260() {
  7698. // Set the target address
  7699. if (parser.seen('A')) i2c.address(parser.value_byte());
  7700. // Add a new byte to the buffer
  7701. if (parser.seen('B')) i2c.addbyte(parser.value_byte());
  7702. // Flush the buffer to the bus
  7703. if (parser.seen('S')) i2c.send();
  7704. // Reset and rewind the buffer
  7705. else if (parser.seen('R')) i2c.reset();
  7706. }
  7707. /**
  7708. * M261: Request X bytes from I2C slave device
  7709. *
  7710. * Usage: M261 A<slave device address base 10> B<number of bytes>
  7711. */
  7712. inline void gcode_M261() {
  7713. if (parser.seen('A')) i2c.address(parser.value_byte());
  7714. uint8_t bytes = parser.byteval('B', 1);
  7715. if (i2c.addr && bytes && bytes <= TWIBUS_BUFFER_SIZE) {
  7716. i2c.relay(bytes);
  7717. }
  7718. else {
  7719. SERIAL_ERROR_START();
  7720. SERIAL_ERRORLN("Bad i2c request");
  7721. }
  7722. }
  7723. #endif // EXPERIMENTAL_I2CBUS
  7724. #if HAS_SERVOS
  7725. /**
  7726. * M280: Get or set servo position. P<index> [S<angle>]
  7727. */
  7728. inline void gcode_M280() {
  7729. if (!parser.seen('P')) return;
  7730. const int servo_index = parser.value_int();
  7731. if (WITHIN(servo_index, 0, NUM_SERVOS - 1)) {
  7732. if (parser.seen('S'))
  7733. MOVE_SERVO(servo_index, parser.value_int());
  7734. else {
  7735. SERIAL_ECHO_START();
  7736. SERIAL_ECHOPAIR(" Servo ", servo_index);
  7737. SERIAL_ECHOLNPAIR(": ", servo[servo_index].read());
  7738. }
  7739. }
  7740. else {
  7741. SERIAL_ERROR_START();
  7742. SERIAL_ECHOPAIR("Servo ", servo_index);
  7743. SERIAL_ECHOLNPGM(" out of range");
  7744. }
  7745. }
  7746. #endif // HAS_SERVOS
  7747. #if ENABLED(BABYSTEPPING)
  7748. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  7749. FORCE_INLINE void mod_zprobe_zoffset(const float &offs) {
  7750. zprobe_zoffset += offs;
  7751. SERIAL_ECHO_START();
  7752. SERIAL_ECHOLNPAIR(MSG_PROBE_Z_OFFSET ": ", zprobe_zoffset);
  7753. }
  7754. #endif
  7755. /**
  7756. * M290: Babystepping
  7757. */
  7758. inline void gcode_M290() {
  7759. #if ENABLED(BABYSTEP_XY)
  7760. for (uint8_t a = X_AXIS; a <= Z_AXIS; a++)
  7761. if (parser.seenval(axis_codes[a]) || (a == Z_AXIS && parser.seenval('S'))) {
  7762. const float offs = constrain(parser.value_axis_units((AxisEnum)a), -2, 2);
  7763. thermalManager.babystep_axis((AxisEnum)a, offs * planner.axis_steps_per_mm[a]);
  7764. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  7765. if (a == Z_AXIS && (!parser.seen('P') || parser.value_bool())) mod_zprobe_zoffset(offs);
  7766. #endif
  7767. }
  7768. #else
  7769. if (parser.seenval('Z') || parser.seenval('S')) {
  7770. const float offs = constrain(parser.value_axis_units(Z_AXIS), -2, 2);
  7771. thermalManager.babystep_axis(Z_AXIS, offs * planner.axis_steps_per_mm[Z_AXIS]);
  7772. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  7773. if (!parser.seen('P') || parser.value_bool()) mod_zprobe_zoffset(offs);
  7774. #endif
  7775. }
  7776. #endif
  7777. }
  7778. #endif // BABYSTEPPING
  7779. #if HAS_BUZZER
  7780. /**
  7781. * M300: Play beep sound S<frequency Hz> P<duration ms>
  7782. */
  7783. inline void gcode_M300() {
  7784. uint16_t const frequency = parser.ushortval('S', 260);
  7785. uint16_t duration = parser.ushortval('P', 1000);
  7786. // Limits the tone duration to 0-5 seconds.
  7787. NOMORE(duration, 5000);
  7788. BUZZ(duration, frequency);
  7789. }
  7790. #endif // HAS_BUZZER
  7791. #if ENABLED(PIDTEMP)
  7792. /**
  7793. * M301: Set PID parameters P I D (and optionally C, L)
  7794. *
  7795. * P[float] Kp term
  7796. * I[float] Ki term (unscaled)
  7797. * D[float] Kd term (unscaled)
  7798. *
  7799. * With PID_EXTRUSION_SCALING:
  7800. *
  7801. * C[float] Kc term
  7802. * L[float] LPQ length
  7803. */
  7804. inline void gcode_M301() {
  7805. // multi-extruder PID patch: M301 updates or prints a single extruder's PID values
  7806. // default behaviour (omitting E parameter) is to update for extruder 0 only
  7807. const uint8_t e = parser.byteval('E'); // extruder being updated
  7808. if (e < HOTENDS) { // catch bad input value
  7809. if (parser.seen('P')) PID_PARAM(Kp, e) = parser.value_float();
  7810. if (parser.seen('I')) PID_PARAM(Ki, e) = scalePID_i(parser.value_float());
  7811. if (parser.seen('D')) PID_PARAM(Kd, e) = scalePID_d(parser.value_float());
  7812. #if ENABLED(PID_EXTRUSION_SCALING)
  7813. if (parser.seen('C')) PID_PARAM(Kc, e) = parser.value_float();
  7814. if (parser.seen('L')) lpq_len = parser.value_float();
  7815. NOMORE(lpq_len, LPQ_MAX_LEN);
  7816. #endif
  7817. thermalManager.updatePID();
  7818. SERIAL_ECHO_START();
  7819. #if ENABLED(PID_PARAMS_PER_HOTEND)
  7820. SERIAL_ECHOPAIR(" e:", e); // specify extruder in serial output
  7821. #endif // PID_PARAMS_PER_HOTEND
  7822. SERIAL_ECHOPAIR(" p:", PID_PARAM(Kp, e));
  7823. SERIAL_ECHOPAIR(" i:", unscalePID_i(PID_PARAM(Ki, e)));
  7824. SERIAL_ECHOPAIR(" d:", unscalePID_d(PID_PARAM(Kd, e)));
  7825. #if ENABLED(PID_EXTRUSION_SCALING)
  7826. //Kc does not have scaling applied above, or in resetting defaults
  7827. SERIAL_ECHOPAIR(" c:", PID_PARAM(Kc, e));
  7828. #endif
  7829. SERIAL_EOL();
  7830. }
  7831. else {
  7832. SERIAL_ERROR_START();
  7833. SERIAL_ERRORLN(MSG_INVALID_EXTRUDER);
  7834. }
  7835. }
  7836. #endif // PIDTEMP
  7837. #if ENABLED(PIDTEMPBED)
  7838. inline void gcode_M304() {
  7839. if (parser.seen('P')) thermalManager.bedKp = parser.value_float();
  7840. if (parser.seen('I')) thermalManager.bedKi = scalePID_i(parser.value_float());
  7841. if (parser.seen('D')) thermalManager.bedKd = scalePID_d(parser.value_float());
  7842. SERIAL_ECHO_START();
  7843. SERIAL_ECHOPAIR(" p:", thermalManager.bedKp);
  7844. SERIAL_ECHOPAIR(" i:", unscalePID_i(thermalManager.bedKi));
  7845. SERIAL_ECHOLNPAIR(" d:", unscalePID_d(thermalManager.bedKd));
  7846. }
  7847. #endif // PIDTEMPBED
  7848. #if defined(CHDK) || HAS_PHOTOGRAPH
  7849. /**
  7850. * M240: Trigger a camera by emulating a Canon RC-1
  7851. * See http://www.doc-diy.net/photo/rc-1_hacked/
  7852. */
  7853. inline void gcode_M240() {
  7854. #ifdef CHDK
  7855. OUT_WRITE(CHDK, HIGH);
  7856. chdkHigh = millis();
  7857. chdkActive = true;
  7858. #elif HAS_PHOTOGRAPH
  7859. const uint8_t NUM_PULSES = 16;
  7860. const float PULSE_LENGTH = 0.01524;
  7861. for (int i = 0; i < NUM_PULSES; i++) {
  7862. WRITE(PHOTOGRAPH_PIN, HIGH);
  7863. _delay_ms(PULSE_LENGTH);
  7864. WRITE(PHOTOGRAPH_PIN, LOW);
  7865. _delay_ms(PULSE_LENGTH);
  7866. }
  7867. delay(7.33);
  7868. for (int i = 0; i < NUM_PULSES; i++) {
  7869. WRITE(PHOTOGRAPH_PIN, HIGH);
  7870. _delay_ms(PULSE_LENGTH);
  7871. WRITE(PHOTOGRAPH_PIN, LOW);
  7872. _delay_ms(PULSE_LENGTH);
  7873. }
  7874. #endif // !CHDK && HAS_PHOTOGRAPH
  7875. }
  7876. #endif // CHDK || PHOTOGRAPH_PIN
  7877. #if HAS_LCD_CONTRAST
  7878. /**
  7879. * M250: Read and optionally set the LCD contrast
  7880. */
  7881. inline void gcode_M250() {
  7882. if (parser.seen('C')) set_lcd_contrast(parser.value_int());
  7883. SERIAL_PROTOCOLPGM("lcd contrast value: ");
  7884. SERIAL_PROTOCOL(lcd_contrast);
  7885. SERIAL_EOL();
  7886. }
  7887. #endif // HAS_LCD_CONTRAST
  7888. #if ENABLED(PREVENT_COLD_EXTRUSION)
  7889. /**
  7890. * M302: Allow cold extrudes, or set the minimum extrude temperature
  7891. *
  7892. * S<temperature> sets the minimum extrude temperature
  7893. * P<bool> enables (1) or disables (0) cold extrusion
  7894. *
  7895. * Examples:
  7896. *
  7897. * M302 ; report current cold extrusion state
  7898. * M302 P0 ; enable cold extrusion checking
  7899. * M302 P1 ; disables cold extrusion checking
  7900. * M302 S0 ; always allow extrusion (disables checking)
  7901. * M302 S170 ; only allow extrusion above 170
  7902. * M302 S170 P1 ; set min extrude temp to 170 but leave disabled
  7903. */
  7904. inline void gcode_M302() {
  7905. const bool seen_S = parser.seen('S');
  7906. if (seen_S) {
  7907. thermalManager.extrude_min_temp = parser.value_celsius();
  7908. thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0);
  7909. }
  7910. if (parser.seen('P'))
  7911. thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0) || parser.value_bool();
  7912. else if (!seen_S) {
  7913. // Report current state
  7914. SERIAL_ECHO_START();
  7915. SERIAL_ECHOPAIR("Cold extrudes are ", (thermalManager.allow_cold_extrude ? "en" : "dis"));
  7916. SERIAL_ECHOPAIR("abled (min temp ", thermalManager.extrude_min_temp);
  7917. SERIAL_ECHOLNPGM("C)");
  7918. }
  7919. }
  7920. #endif // PREVENT_COLD_EXTRUSION
  7921. /**
  7922. * M303: PID relay autotune
  7923. *
  7924. * S<temperature> sets the target temperature. (default 150C)
  7925. * E<extruder> (-1 for the bed) (default 0)
  7926. * C<cycles>
  7927. * U<bool> with a non-zero value will apply the result to current settings
  7928. */
  7929. inline void gcode_M303() {
  7930. #if HAS_PID_HEATING
  7931. const int e = parser.intval('E'), c = parser.intval('C', 5);
  7932. const bool u = parser.boolval('U');
  7933. int16_t temp = parser.celsiusval('S', e < 0 ? 70 : 150);
  7934. if (WITHIN(e, 0, HOTENDS - 1))
  7935. target_extruder = e;
  7936. #if DISABLED(BUSY_WHILE_HEATING)
  7937. KEEPALIVE_STATE(NOT_BUSY);
  7938. #endif
  7939. thermalManager.PID_autotune(temp, e, c, u);
  7940. #if DISABLED(BUSY_WHILE_HEATING)
  7941. KEEPALIVE_STATE(IN_HANDLER);
  7942. #endif
  7943. #else
  7944. SERIAL_ERROR_START();
  7945. SERIAL_ERRORLNPGM(MSG_ERR_M303_DISABLED);
  7946. #endif
  7947. }
  7948. #if ENABLED(MORGAN_SCARA)
  7949. bool SCARA_move_to_cal(const uint8_t delta_a, const uint8_t delta_b) {
  7950. if (IsRunning()) {
  7951. forward_kinematics_SCARA(delta_a, delta_b);
  7952. destination[X_AXIS] = cartes[X_AXIS];
  7953. destination[Y_AXIS] = cartes[Y_AXIS];
  7954. destination[Z_AXIS] = current_position[Z_AXIS];
  7955. prepare_move_to_destination();
  7956. return true;
  7957. }
  7958. return false;
  7959. }
  7960. /**
  7961. * M360: SCARA calibration: Move to cal-position ThetaA (0 deg calibration)
  7962. */
  7963. inline bool gcode_M360() {
  7964. SERIAL_ECHOLNPGM(" Cal: Theta 0");
  7965. return SCARA_move_to_cal(0, 120);
  7966. }
  7967. /**
  7968. * M361: SCARA calibration: Move to cal-position ThetaB (90 deg calibration - steps per degree)
  7969. */
  7970. inline bool gcode_M361() {
  7971. SERIAL_ECHOLNPGM(" Cal: Theta 90");
  7972. return SCARA_move_to_cal(90, 130);
  7973. }
  7974. /**
  7975. * M362: SCARA calibration: Move to cal-position PsiA (0 deg calibration)
  7976. */
  7977. inline bool gcode_M362() {
  7978. SERIAL_ECHOLNPGM(" Cal: Psi 0");
  7979. return SCARA_move_to_cal(60, 180);
  7980. }
  7981. /**
  7982. * M363: SCARA calibration: Move to cal-position PsiB (90 deg calibration - steps per degree)
  7983. */
  7984. inline bool gcode_M363() {
  7985. SERIAL_ECHOLNPGM(" Cal: Psi 90");
  7986. return SCARA_move_to_cal(50, 90);
  7987. }
  7988. /**
  7989. * M364: SCARA calibration: Move to cal-position PsiC (90 deg to Theta calibration position)
  7990. */
  7991. inline bool gcode_M364() {
  7992. SERIAL_ECHOLNPGM(" Cal: Theta-Psi 90");
  7993. return SCARA_move_to_cal(45, 135);
  7994. }
  7995. #endif // SCARA
  7996. #if ENABLED(EXT_SOLENOID)
  7997. void enable_solenoid(const uint8_t num) {
  7998. switch (num) {
  7999. case 0:
  8000. OUT_WRITE(SOL0_PIN, HIGH);
  8001. break;
  8002. #if HAS_SOLENOID_1 && EXTRUDERS > 1
  8003. case 1:
  8004. OUT_WRITE(SOL1_PIN, HIGH);
  8005. break;
  8006. #endif
  8007. #if HAS_SOLENOID_2 && EXTRUDERS > 2
  8008. case 2:
  8009. OUT_WRITE(SOL2_PIN, HIGH);
  8010. break;
  8011. #endif
  8012. #if HAS_SOLENOID_3 && EXTRUDERS > 3
  8013. case 3:
  8014. OUT_WRITE(SOL3_PIN, HIGH);
  8015. break;
  8016. #endif
  8017. #if HAS_SOLENOID_4 && EXTRUDERS > 4
  8018. case 4:
  8019. OUT_WRITE(SOL4_PIN, HIGH);
  8020. break;
  8021. #endif
  8022. default:
  8023. SERIAL_ECHO_START();
  8024. SERIAL_ECHOLNPGM(MSG_INVALID_SOLENOID);
  8025. break;
  8026. }
  8027. }
  8028. void enable_solenoid_on_active_extruder() { enable_solenoid(active_extruder); }
  8029. void disable_all_solenoids() {
  8030. OUT_WRITE(SOL0_PIN, LOW);
  8031. #if HAS_SOLENOID_1 && EXTRUDERS > 1
  8032. OUT_WRITE(SOL1_PIN, LOW);
  8033. #endif
  8034. #if HAS_SOLENOID_2 && EXTRUDERS > 2
  8035. OUT_WRITE(SOL2_PIN, LOW);
  8036. #endif
  8037. #if HAS_SOLENOID_3 && EXTRUDERS > 3
  8038. OUT_WRITE(SOL3_PIN, LOW);
  8039. #endif
  8040. #if HAS_SOLENOID_4 && EXTRUDERS > 4
  8041. OUT_WRITE(SOL4_PIN, LOW);
  8042. #endif
  8043. }
  8044. /**
  8045. * M380: Enable solenoid on the active extruder
  8046. */
  8047. inline void gcode_M380() { enable_solenoid_on_active_extruder(); }
  8048. /**
  8049. * M381: Disable all solenoids
  8050. */
  8051. inline void gcode_M381() { disable_all_solenoids(); }
  8052. #endif // EXT_SOLENOID
  8053. /**
  8054. * M400: Finish all moves
  8055. */
  8056. inline void gcode_M400() { stepper.synchronize(); }
  8057. #if HAS_BED_PROBE
  8058. /**
  8059. * M401: Engage Z Servo endstop if available
  8060. */
  8061. inline void gcode_M401() { DEPLOY_PROBE(); }
  8062. /**
  8063. * M402: Retract Z Servo endstop if enabled
  8064. */
  8065. inline void gcode_M402() { STOW_PROBE(); }
  8066. #endif // HAS_BED_PROBE
  8067. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  8068. /**
  8069. * M404: Display or set (in current units) the nominal filament width (3mm, 1.75mm ) W<3.0>
  8070. */
  8071. inline void gcode_M404() {
  8072. if (parser.seen('W')) {
  8073. filament_width_nominal = parser.value_linear_units();
  8074. planner.volumetric_area_nominal = CIRCLE_AREA(filament_width_nominal * 0.5);
  8075. }
  8076. else {
  8077. SERIAL_PROTOCOLPGM("Filament dia (nominal mm):");
  8078. SERIAL_PROTOCOLLN(filament_width_nominal);
  8079. }
  8080. }
  8081. /**
  8082. * M405: Turn on filament sensor for control
  8083. */
  8084. inline void gcode_M405() {
  8085. // This is technically a linear measurement, but since it's quantized to centimeters and is a different
  8086. // unit than everything else, it uses parser.value_byte() instead of parser.value_linear_units().
  8087. if (parser.seen('D')) {
  8088. meas_delay_cm = parser.value_byte();
  8089. NOMORE(meas_delay_cm, MAX_MEASUREMENT_DELAY);
  8090. }
  8091. if (filwidth_delay_index[1] == -1) { // Initialize the ring buffer if not done since startup
  8092. const uint8_t temp_ratio = thermalManager.widthFil_to_size_ratio();
  8093. for (uint8_t i = 0; i < COUNT(measurement_delay); ++i)
  8094. measurement_delay[i] = temp_ratio;
  8095. filwidth_delay_index[0] = filwidth_delay_index[1] = 0;
  8096. }
  8097. filament_sensor = true;
  8098. }
  8099. /**
  8100. * M406: Turn off filament sensor for control
  8101. */
  8102. inline void gcode_M406() {
  8103. filament_sensor = false;
  8104. planner.calculate_volumetric_multipliers(); // Restore correct 'volumetric_multiplier' value
  8105. }
  8106. /**
  8107. * M407: Get measured filament diameter on serial output
  8108. */
  8109. inline void gcode_M407() {
  8110. SERIAL_PROTOCOLPGM("Filament dia (measured mm):");
  8111. SERIAL_PROTOCOLLN(filament_width_meas);
  8112. }
  8113. #endif // FILAMENT_WIDTH_SENSOR
  8114. void quickstop_stepper() {
  8115. stepper.quick_stop();
  8116. stepper.synchronize();
  8117. set_current_from_steppers_for_axis(ALL_AXES);
  8118. SYNC_PLAN_POSITION_KINEMATIC();
  8119. }
  8120. #if HAS_LEVELING
  8121. /**
  8122. * M420: Enable/Disable Bed Leveling and/or set the Z fade height.
  8123. *
  8124. * S[bool] Turns leveling on or off
  8125. * Z[height] Sets the Z fade height (0 or none to disable)
  8126. * V[bool] Verbose - Print the leveling grid
  8127. *
  8128. * With AUTO_BED_LEVELING_UBL only:
  8129. *
  8130. * L[index] Load UBL mesh from index (0 is default)
  8131. */
  8132. inline void gcode_M420() {
  8133. const float oldpos[] = { current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS] };
  8134. #if ENABLED(AUTO_BED_LEVELING_UBL)
  8135. // L to load a mesh from the EEPROM
  8136. if (parser.seen('L')) {
  8137. #if ENABLED(EEPROM_SETTINGS)
  8138. const int8_t storage_slot = parser.has_value() ? parser.value_int() : ubl.storage_slot;
  8139. const int16_t a = settings.calc_num_meshes();
  8140. if (!a) {
  8141. SERIAL_PROTOCOLLNPGM("?EEPROM storage not available.");
  8142. return;
  8143. }
  8144. if (!WITHIN(storage_slot, 0, a - 1)) {
  8145. SERIAL_PROTOCOLLNPGM("?Invalid storage slot.");
  8146. SERIAL_PROTOCOLLNPAIR("?Use 0 to ", a - 1);
  8147. return;
  8148. }
  8149. settings.load_mesh(storage_slot);
  8150. ubl.storage_slot = storage_slot;
  8151. #else
  8152. SERIAL_PROTOCOLLNPGM("?EEPROM storage not available.");
  8153. return;
  8154. #endif
  8155. }
  8156. // L to load a mesh from the EEPROM
  8157. if (parser.seen('L') || parser.seen('V')) {
  8158. ubl.display_map(0); // Currently only supports one map type
  8159. SERIAL_ECHOLNPAIR("ubl.mesh_is_valid = ", ubl.mesh_is_valid());
  8160. SERIAL_ECHOLNPAIR("ubl.storage_slot = ", ubl.storage_slot);
  8161. }
  8162. #endif // AUTO_BED_LEVELING_UBL
  8163. // V to print the matrix or mesh
  8164. if (parser.seen('V')) {
  8165. #if ABL_PLANAR
  8166. planner.bed_level_matrix.debug(PSTR("Bed Level Correction Matrix:"));
  8167. #else
  8168. if (leveling_is_valid()) {
  8169. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  8170. print_bilinear_leveling_grid();
  8171. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  8172. print_bilinear_leveling_grid_virt();
  8173. #endif
  8174. #elif ENABLED(MESH_BED_LEVELING)
  8175. SERIAL_ECHOLNPGM("Mesh Bed Level data:");
  8176. mbl_mesh_report();
  8177. #endif
  8178. }
  8179. #endif
  8180. }
  8181. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  8182. if (parser.seen('Z')) set_z_fade_height(parser.value_linear_units(), false);
  8183. #endif
  8184. bool to_enable = false;
  8185. if (parser.seen('S')) {
  8186. to_enable = parser.value_bool();
  8187. set_bed_leveling_enabled(to_enable);
  8188. }
  8189. const bool new_status = planner.leveling_active;
  8190. if (to_enable && !new_status) {
  8191. SERIAL_ERROR_START();
  8192. SERIAL_ERRORLNPGM(MSG_ERR_M420_FAILED);
  8193. }
  8194. SERIAL_ECHO_START();
  8195. SERIAL_ECHOLNPAIR("Bed Leveling ", new_status ? MSG_ON : MSG_OFF);
  8196. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  8197. SERIAL_ECHO_START();
  8198. SERIAL_ECHOPGM("Fade Height ");
  8199. if (planner.z_fade_height > 0.0)
  8200. SERIAL_ECHOLN(planner.z_fade_height);
  8201. else
  8202. SERIAL_ECHOLNPGM(MSG_OFF);
  8203. #endif
  8204. // Report change in position
  8205. if (memcmp(oldpos, current_position, sizeof(oldpos)))
  8206. report_current_position();
  8207. }
  8208. #endif
  8209. #if ENABLED(MESH_BED_LEVELING)
  8210. /**
  8211. * M421: Set a single Mesh Bed Leveling Z coordinate
  8212. *
  8213. * Usage:
  8214. * M421 X<linear> Y<linear> Z<linear>
  8215. * M421 X<linear> Y<linear> Q<offset>
  8216. * M421 I<xindex> J<yindex> Z<linear>
  8217. * M421 I<xindex> J<yindex> Q<offset>
  8218. */
  8219. inline void gcode_M421() {
  8220. const bool hasX = parser.seen('X'), hasI = parser.seen('I');
  8221. const int8_t ix = hasI ? parser.value_int() : hasX ? mbl.probe_index_x(parser.value_linear_units()) : -1;
  8222. const bool hasY = parser.seen('Y'), hasJ = parser.seen('J');
  8223. const int8_t iy = hasJ ? parser.value_int() : hasY ? mbl.probe_index_y(parser.value_linear_units()) : -1;
  8224. const bool hasZ = parser.seen('Z'), hasQ = !hasZ && parser.seen('Q');
  8225. if (int(hasI && hasJ) + int(hasX && hasY) != 1 || !(hasZ || hasQ)) {
  8226. SERIAL_ERROR_START();
  8227. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  8228. }
  8229. else if (ix < 0 || iy < 0) {
  8230. SERIAL_ERROR_START();
  8231. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  8232. }
  8233. else
  8234. mbl.set_z(ix, iy, parser.value_linear_units() + (hasQ ? mbl.z_values[ix][iy] : 0));
  8235. }
  8236. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  8237. /**
  8238. * M421: Set a single Mesh Bed Leveling Z coordinate
  8239. *
  8240. * Usage:
  8241. * M421 I<xindex> J<yindex> Z<linear>
  8242. * M421 I<xindex> J<yindex> Q<offset>
  8243. */
  8244. inline void gcode_M421() {
  8245. int8_t ix = parser.intval('I', -1), iy = parser.intval('J', -1);
  8246. const bool hasI = ix >= 0,
  8247. hasJ = iy >= 0,
  8248. hasZ = parser.seen('Z'),
  8249. hasQ = !hasZ && parser.seen('Q');
  8250. if (!hasI || !hasJ || !(hasZ || hasQ)) {
  8251. SERIAL_ERROR_START();
  8252. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  8253. }
  8254. else if (!WITHIN(ix, 0, GRID_MAX_POINTS_X - 1) || !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1)) {
  8255. SERIAL_ERROR_START();
  8256. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  8257. }
  8258. else {
  8259. z_values[ix][iy] = parser.value_linear_units() + (hasQ ? z_values[ix][iy] : 0);
  8260. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  8261. bed_level_virt_interpolate();
  8262. #endif
  8263. }
  8264. }
  8265. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  8266. /**
  8267. * M421: Set a single Mesh Bed Leveling Z coordinate
  8268. *
  8269. * Usage:
  8270. * M421 I<xindex> J<yindex> Z<linear>
  8271. * M421 I<xindex> J<yindex> Q<offset>
  8272. * M421 C Z<linear>
  8273. * M421 C Q<offset>
  8274. */
  8275. inline void gcode_M421() {
  8276. int8_t ix = parser.intval('I', -1), iy = parser.intval('J', -1);
  8277. const bool hasI = ix >= 0,
  8278. hasJ = iy >= 0,
  8279. hasC = parser.seen('C'),
  8280. hasZ = parser.seen('Z'),
  8281. hasQ = !hasZ && parser.seen('Q');
  8282. if (hasC) {
  8283. const mesh_index_pair location = ubl.find_closest_mesh_point_of_type(REAL, current_position[X_AXIS], current_position[Y_AXIS], USE_NOZZLE_AS_REFERENCE, NULL);
  8284. ix = location.x_index;
  8285. iy = location.y_index;
  8286. }
  8287. if (int(hasC) + int(hasI && hasJ) != 1 || !(hasZ || hasQ)) {
  8288. SERIAL_ERROR_START();
  8289. SERIAL_ERRORLNPGM(MSG_ERR_M421_PARAMETERS);
  8290. }
  8291. else if (!WITHIN(ix, 0, GRID_MAX_POINTS_X - 1) || !WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1)) {
  8292. SERIAL_ERROR_START();
  8293. SERIAL_ERRORLNPGM(MSG_ERR_MESH_XY);
  8294. }
  8295. else
  8296. ubl.z_values[ix][iy] = parser.value_linear_units() + (hasQ ? ubl.z_values[ix][iy] : 0);
  8297. }
  8298. #endif // AUTO_BED_LEVELING_UBL
  8299. #if HAS_M206_COMMAND
  8300. /**
  8301. * M428: Set home_offset based on the distance between the
  8302. * current_position and the nearest "reference point."
  8303. * If an axis is past center its endstop position
  8304. * is the reference-point. Otherwise it uses 0. This allows
  8305. * the Z offset to be set near the bed when using a max endstop.
  8306. *
  8307. * M428 can't be used more than 2cm away from 0 or an endstop.
  8308. *
  8309. * Use M206 to set these values directly.
  8310. */
  8311. inline void gcode_M428() {
  8312. if (axis_unhomed_error()) return;
  8313. float diff[XYZ];
  8314. LOOP_XYZ(i) {
  8315. diff[i] = base_home_pos((AxisEnum)i) - current_position[i];
  8316. if (!WITHIN(diff[i], -20, 20) && home_dir((AxisEnum)i) > 0)
  8317. diff[i] = -current_position[i];
  8318. if (!WITHIN(diff[i], -20, 20)) {
  8319. SERIAL_ERROR_START();
  8320. SERIAL_ERRORLNPGM(MSG_ERR_M428_TOO_FAR);
  8321. LCD_ALERTMESSAGEPGM("Err: Too far!");
  8322. BUZZ(200, 40);
  8323. return;
  8324. }
  8325. }
  8326. LOOP_XYZ(i) set_home_offset((AxisEnum)i, diff[i]);
  8327. report_current_position();
  8328. LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
  8329. BUZZ(100, 659);
  8330. BUZZ(100, 698);
  8331. }
  8332. #endif // HAS_M206_COMMAND
  8333. /**
  8334. * M500: Store settings in EEPROM
  8335. */
  8336. inline void gcode_M500() {
  8337. (void)settings.save();
  8338. }
  8339. /**
  8340. * M501: Read settings from EEPROM
  8341. */
  8342. inline void gcode_M501() {
  8343. (void)settings.load();
  8344. }
  8345. /**
  8346. * M502: Revert to default settings
  8347. */
  8348. inline void gcode_M502() {
  8349. (void)settings.reset();
  8350. }
  8351. #if DISABLED(DISABLE_M503)
  8352. /**
  8353. * M503: print settings currently in memory
  8354. */
  8355. inline void gcode_M503() {
  8356. (void)settings.report(parser.seen('S') && !parser.value_bool());
  8357. }
  8358. #endif
  8359. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  8360. /**
  8361. * M540: Set whether SD card print should abort on endstop hit (M540 S<0|1>)
  8362. */
  8363. inline void gcode_M540() {
  8364. if (parser.seen('S')) stepper.abort_on_endstop_hit = parser.value_bool();
  8365. }
  8366. #endif // ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
  8367. #if HAS_BED_PROBE
  8368. inline void gcode_M851() {
  8369. SERIAL_ECHO_START();
  8370. SERIAL_ECHOPGM(MSG_PROBE_Z_OFFSET);
  8371. if (parser.seen('Z')) {
  8372. const float value = parser.value_linear_units();
  8373. if (!WITHIN(value, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX)) {
  8374. SERIAL_ECHOLNPGM(" " MSG_Z_MIN " " STRINGIFY(Z_PROBE_OFFSET_RANGE_MIN) " " MSG_Z_MAX " " STRINGIFY(Z_PROBE_OFFSET_RANGE_MAX));
  8375. return;
  8376. }
  8377. zprobe_zoffset = value;
  8378. }
  8379. SERIAL_ECHOLNPAIR(": ", zprobe_zoffset);
  8380. }
  8381. #endif // HAS_BED_PROBE
  8382. #if ENABLED(SKEW_CORRECTION_GCODE)
  8383. /**
  8384. * M852: Get or set the machine skew factors. Reports current values with no arguments.
  8385. *
  8386. * S[xy_factor] - Alias for 'I'
  8387. * I[xy_factor] - New XY skew factor
  8388. * J[xz_factor] - New XZ skew factor
  8389. * K[yz_factor] - New YZ skew factor
  8390. */
  8391. inline void gcode_M852() {
  8392. uint8_t ijk = 0, badval = 0, setval = 0;
  8393. if (parser.seen('I') || parser.seen('S')) {
  8394. ++ijk;
  8395. const float value = parser.value_linear_units();
  8396. if (WITHIN(value, SKEW_FACTOR_MIN, SKEW_FACTOR_MAX)) {
  8397. if (planner.xy_skew_factor != value) {
  8398. planner.xy_skew_factor = value;
  8399. ++setval;
  8400. }
  8401. }
  8402. else
  8403. ++badval;
  8404. }
  8405. #if ENABLED(SKEW_CORRECTION_FOR_Z)
  8406. if (parser.seen('J')) {
  8407. ++ijk;
  8408. const float value = parser.value_linear_units();
  8409. if (WITHIN(value, SKEW_FACTOR_MIN, SKEW_FACTOR_MAX)) {
  8410. if (planner.xz_skew_factor != value) {
  8411. planner.xz_skew_factor = value;
  8412. ++setval;
  8413. }
  8414. }
  8415. else
  8416. ++badval;
  8417. }
  8418. if (parser.seen('K')) {
  8419. ++ijk;
  8420. const float value = parser.value_linear_units();
  8421. if (WITHIN(value, SKEW_FACTOR_MIN, SKEW_FACTOR_MAX)) {
  8422. if (planner.yz_skew_factor != value) {
  8423. planner.yz_skew_factor = value;
  8424. ++setval;
  8425. }
  8426. }
  8427. else
  8428. ++badval;
  8429. }
  8430. #endif
  8431. if (badval)
  8432. SERIAL_ECHOLNPGM(MSG_SKEW_MIN " " STRINGIFY(SKEW_FACTOR_MIN) " " MSG_SKEW_MAX " " STRINGIFY(SKEW_FACTOR_MAX));
  8433. // When skew is changed the current position changes
  8434. if (setval) {
  8435. set_current_from_steppers_for_axis(ALL_AXES);
  8436. SYNC_PLAN_POSITION_KINEMATIC();
  8437. report_current_position();
  8438. }
  8439. if (!ijk) {
  8440. SERIAL_ECHO_START();
  8441. SERIAL_ECHOPAIR(MSG_SKEW_FACTOR " XY: ", planner.xy_skew_factor);
  8442. #if ENABLED(SKEW_CORRECTION_FOR_Z)
  8443. SERIAL_ECHOPAIR(" XZ: ", planner.xz_skew_factor);
  8444. SERIAL_ECHOLNPAIR(" YZ: ", planner.yz_skew_factor);
  8445. #else
  8446. SERIAL_EOL();
  8447. #endif
  8448. }
  8449. }
  8450. #endif // SKEW_CORRECTION_GCODE
  8451. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  8452. /**
  8453. * M600: Pause for filament change
  8454. *
  8455. * E[distance] - Retract the filament this far (negative value)
  8456. * Z[distance] - Move the Z axis by this distance
  8457. * X[position] - Move to this X position, with Y
  8458. * Y[position] - Move to this Y position, with X
  8459. * U[distance] - Retract distance for removal (negative value) (manual reload)
  8460. * L[distance] - Extrude distance for insertion (positive value) (manual reload)
  8461. * B[count] - Number of times to beep, -1 for indefinite (if equipped with a buzzer)
  8462. *
  8463. * Default values are used for omitted arguments.
  8464. *
  8465. */
  8466. inline void gcode_M600() {
  8467. #if ENABLED(HOME_BEFORE_FILAMENT_CHANGE)
  8468. // Don't allow filament change without homing first
  8469. if (axis_unhomed_error()) home_all_axes();
  8470. #endif
  8471. // Initial retract before move to filament change position
  8472. const float retract = parser.seen('E') ? parser.value_axis_units(E_AXIS) : 0
  8473. #ifdef PAUSE_PARK_RETRACT_LENGTH
  8474. - (PAUSE_PARK_RETRACT_LENGTH)
  8475. #endif
  8476. ;
  8477. // Lift Z axis
  8478. const float z_lift = parser.linearval('Z', 0
  8479. #ifdef PAUSE_PARK_Z_ADD
  8480. + PAUSE_PARK_Z_ADD
  8481. #endif
  8482. );
  8483. // Move XY axes to filament exchange position
  8484. const float x_pos = parser.linearval('X', 0
  8485. #ifdef PAUSE_PARK_X_POS
  8486. + PAUSE_PARK_X_POS
  8487. #endif
  8488. );
  8489. const float y_pos = parser.linearval('Y', 0
  8490. #ifdef PAUSE_PARK_Y_POS
  8491. + PAUSE_PARK_Y_POS
  8492. #endif
  8493. );
  8494. // Unload filament
  8495. const float unload_length = parser.seen('U') ? parser.value_axis_units(E_AXIS) : 0
  8496. #if defined(FILAMENT_CHANGE_UNLOAD_LENGTH) && FILAMENT_CHANGE_UNLOAD_LENGTH > 0
  8497. - (FILAMENT_CHANGE_UNLOAD_LENGTH)
  8498. #endif
  8499. ;
  8500. // Load filament
  8501. const float load_length = parser.seen('L') ? parser.value_axis_units(E_AXIS) : 0
  8502. #ifdef FILAMENT_CHANGE_LOAD_LENGTH
  8503. + FILAMENT_CHANGE_LOAD_LENGTH
  8504. #endif
  8505. ;
  8506. const int beep_count = parser.intval('B',
  8507. #ifdef FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS
  8508. FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS
  8509. #else
  8510. -1
  8511. #endif
  8512. );
  8513. const bool job_running = print_job_timer.isRunning();
  8514. if (pause_print(retract, z_lift, x_pos, y_pos, unload_length, beep_count, true)) {
  8515. wait_for_filament_reload(beep_count);
  8516. resume_print(load_length, ADVANCED_PAUSE_EXTRUDE_LENGTH, beep_count);
  8517. }
  8518. // Resume the print job timer if it was running
  8519. if (job_running) print_job_timer.start();
  8520. }
  8521. #endif // ADVANCED_PAUSE_FEATURE
  8522. #if ENABLED(MK2_MULTIPLEXER)
  8523. inline void select_multiplexed_stepper(const uint8_t e) {
  8524. stepper.synchronize();
  8525. disable_e_steppers();
  8526. WRITE(E_MUX0_PIN, TEST(e, 0) ? HIGH : LOW);
  8527. WRITE(E_MUX1_PIN, TEST(e, 1) ? HIGH : LOW);
  8528. WRITE(E_MUX2_PIN, TEST(e, 2) ? HIGH : LOW);
  8529. safe_delay(100);
  8530. }
  8531. /**
  8532. * M702: Unload all extruders
  8533. */
  8534. inline void gcode_M702() {
  8535. for (uint8_t s = 0; s < E_STEPPERS; s++) {
  8536. select_multiplexed_stepper(e);
  8537. // TODO: standard unload filament function
  8538. // MK2 firmware behavior:
  8539. // - Make sure temperature is high enough
  8540. // - Raise Z to at least 15 to make room
  8541. // - Extrude 1cm of filament in 1 second
  8542. // - Under 230C quickly purge ~12mm, over 230C purge ~10mm
  8543. // - Change E max feedrate to 80, eject the filament from the tube. Sync.
  8544. // - Restore E max feedrate to 50
  8545. }
  8546. // Go back to the last active extruder
  8547. select_multiplexed_stepper(active_extruder);
  8548. disable_e_steppers();
  8549. }
  8550. #endif // MK2_MULTIPLEXER
  8551. #if ENABLED(DUAL_X_CARRIAGE)
  8552. /**
  8553. * M605: Set dual x-carriage movement mode
  8554. *
  8555. * M605 S0: Full control mode. The slicer has full control over x-carriage movement
  8556. * M605 S1: Auto-park mode. The inactive head will auto park/unpark without slicer involvement
  8557. * M605 S2 [Xnnn] [Rmmm]: Duplication mode. The second extruder will duplicate the first with nnn
  8558. * units x-offset and an optional differential hotend temperature of
  8559. * mmm degrees. E.g., with "M605 S2 X100 R2" the second extruder will duplicate
  8560. * the first with a spacing of 100mm in the x direction and 2 degrees hotter.
  8561. *
  8562. * Note: the X axis should be homed after changing dual x-carriage mode.
  8563. */
  8564. inline void gcode_M605() {
  8565. stepper.synchronize();
  8566. if (parser.seen('S')) dual_x_carriage_mode = (DualXMode)parser.value_byte();
  8567. switch (dual_x_carriage_mode) {
  8568. case DXC_FULL_CONTROL_MODE:
  8569. case DXC_AUTO_PARK_MODE:
  8570. break;
  8571. case DXC_DUPLICATION_MODE:
  8572. if (parser.seen('X')) duplicate_extruder_x_offset = max(parser.value_linear_units(), X2_MIN_POS - x_home_pos(0));
  8573. if (parser.seen('R')) duplicate_extruder_temp_offset = parser.value_celsius_diff();
  8574. SERIAL_ECHO_START();
  8575. SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
  8576. SERIAL_CHAR(' ');
  8577. SERIAL_ECHO(hotend_offset[X_AXIS][0]);
  8578. SERIAL_CHAR(',');
  8579. SERIAL_ECHO(hotend_offset[Y_AXIS][0]);
  8580. SERIAL_CHAR(' ');
  8581. SERIAL_ECHO(duplicate_extruder_x_offset);
  8582. SERIAL_CHAR(',');
  8583. SERIAL_ECHOLN(hotend_offset[Y_AXIS][1]);
  8584. break;
  8585. default:
  8586. dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
  8587. break;
  8588. }
  8589. active_extruder_parked = false;
  8590. extruder_duplication_enabled = false;
  8591. delayed_move_time = 0;
  8592. }
  8593. #elif ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  8594. inline void gcode_M605() {
  8595. stepper.synchronize();
  8596. extruder_duplication_enabled = parser.intval('S') == (int)DXC_DUPLICATION_MODE;
  8597. SERIAL_ECHO_START();
  8598. SERIAL_ECHOLNPAIR(MSG_DUPLICATION_MODE, extruder_duplication_enabled ? MSG_ON : MSG_OFF);
  8599. }
  8600. #endif // DUAL_NOZZLE_DUPLICATION_MODE
  8601. #if ENABLED(LIN_ADVANCE)
  8602. /**
  8603. * M900: Set and/or Get advance K factor and WH/D ratio
  8604. *
  8605. * K<factor> Set advance K factor
  8606. * R<ratio> Set ratio directly (overrides WH/D)
  8607. * W<width> H<height> D<diam> Set ratio from WH/D
  8608. */
  8609. inline void gcode_M900() {
  8610. stepper.synchronize();
  8611. const float newK = parser.floatval('K', -1);
  8612. if (newK >= 0) planner.extruder_advance_k = newK;
  8613. float newR = parser.floatval('R', -1);
  8614. if (newR < 0) {
  8615. const float newD = parser.floatval('D', -1),
  8616. newW = parser.floatval('W', -1),
  8617. newH = parser.floatval('H', -1);
  8618. if (newD >= 0 && newW >= 0 && newH >= 0)
  8619. newR = newD ? (newW * newH) / (sq(newD * 0.5) * M_PI) : 0;
  8620. }
  8621. if (newR >= 0) planner.advance_ed_ratio = newR;
  8622. SERIAL_ECHO_START();
  8623. SERIAL_ECHOPAIR("Advance K=", planner.extruder_advance_k);
  8624. SERIAL_ECHOPGM(" E/D=");
  8625. const float ratio = planner.advance_ed_ratio;
  8626. if (ratio) SERIAL_ECHO(ratio); else SERIAL_ECHOPGM("Auto");
  8627. SERIAL_EOL();
  8628. }
  8629. #endif // LIN_ADVANCE
  8630. #if HAS_TRINAMIC
  8631. static bool report_tmc_status = false;
  8632. const char extended_axis_codes[11][3] = { "X", "X2", "Y", "Y2", "Z", "Z2", "E0", "E1", "E2", "E3", "E4" };
  8633. enum TMC_AxisEnum {
  8634. TMC_X,
  8635. TMC_X2,
  8636. TMC_Y,
  8637. TMC_Y2,
  8638. TMC_Z,
  8639. TMC_Z2,
  8640. TMC_E0,
  8641. TMC_E1,
  8642. TMC_E2,
  8643. TMC_E3,
  8644. TMC_E4
  8645. };
  8646. #if ENABLED(TMC_DEBUG)
  8647. enum TMC_debug_enum {
  8648. TMC_CODES,
  8649. TMC_ENABLED,
  8650. TMC_CURRENT,
  8651. TMC_RMS_CURRENT,
  8652. TMC_MAX_CURRENT,
  8653. TMC_IRUN,
  8654. TMC_IHOLD,
  8655. TMC_CS_ACTUAL,
  8656. TMC_PWM_SCALE,
  8657. TMC_VSENSE,
  8658. TMC_STEALTHCHOP,
  8659. TMC_MICROSTEPS,
  8660. TMC_TSTEP,
  8661. TMC_TPWMTHRS,
  8662. TMC_TPWMTHRS_MMS,
  8663. TMC_OTPW,
  8664. TMC_OTPW_TRIGGERED,
  8665. TMC_TOFF,
  8666. TMC_TBL,
  8667. TMC_HEND,
  8668. TMC_HSTRT,
  8669. TMC_SGT
  8670. };
  8671. enum TMC_drv_status_enum {
  8672. TMC_DRV_CODES,
  8673. TMC_STST,
  8674. TMC_OLB,
  8675. TMC_OLA,
  8676. TMC_S2GB,
  8677. TMC_S2GA,
  8678. TMC_DRV_OTPW,
  8679. TMC_OT,
  8680. TMC_STALLGUARD,
  8681. TMC_DRV_CS_ACTUAL,
  8682. TMC_FSACTIVE,
  8683. TMC_SG_RESULT,
  8684. TMC_DRV_STATUS_HEX,
  8685. TMC_T157,
  8686. TMC_T150,
  8687. TMC_T143,
  8688. TMC_T120,
  8689. TMC_STEALTH,
  8690. TMC_S2VSB,
  8691. TMC_S2VSA
  8692. };
  8693. static void drv_status_print_hex(const char name[], const uint32_t drv_status) {
  8694. SERIAL_ECHO(name);
  8695. SERIAL_ECHOPGM(" = 0x");
  8696. for(int B=24; B>=8; B-=8){
  8697. MYSERIAL.print((drv_status>>(B+4))&0xF, HEX);
  8698. MYSERIAL.print((drv_status>>B)&0xF, HEX);
  8699. MYSERIAL.print(':');
  8700. }
  8701. MYSERIAL.print((drv_status>>4)&0xF, HEX);
  8702. MYSERIAL.print((drv_status)&0xF, HEX);
  8703. SERIAL_EOL();
  8704. }
  8705. #if ENABLED(HAVE_TMC2130)
  8706. static void tmc_status(TMC2130Stepper &st, const TMC_debug_enum i) {
  8707. switch(i) {
  8708. case TMC_PWM_SCALE: MYSERIAL.print(st.PWM_SCALE(), DEC); break;
  8709. case TMC_TSTEP: SERIAL_ECHO(st.TSTEP()); break;
  8710. case TMC_SGT: MYSERIAL.print(st.sgt(), DEC); break;
  8711. case TMC_STEALTHCHOP: serialprintPGM(st.stealthChop() ? PSTR("true") : PSTR("false")); break;
  8712. default: break;
  8713. }
  8714. }
  8715. static void tmc_parse_drv_status(TMC2130Stepper &st, const TMC_drv_status_enum i) {
  8716. switch(i) {
  8717. case TMC_STALLGUARD: if (st.stallguard()) SERIAL_ECHOPGM("X"); break;
  8718. case TMC_SG_RESULT: MYSERIAL.print(st.sg_result(), DEC); break;
  8719. case TMC_FSACTIVE: if (st.fsactive()) SERIAL_ECHOPGM("X"); break;
  8720. default: break;
  8721. }
  8722. }
  8723. #endif
  8724. #if ENABLED(HAVE_TMC2208)
  8725. static void tmc_status(TMC2208Stepper &st, const TMC_debug_enum i) {
  8726. switch(i) {
  8727. case TMC_TSTEP:
  8728. {
  8729. uint32_t data = 0;
  8730. st.TSTEP(&data);
  8731. MYSERIAL.print(data);
  8732. break;
  8733. }
  8734. case TMC_PWM_SCALE: MYSERIAL.print(st.pwm_scale_sum(), DEC); break;
  8735. case TMC_STEALTHCHOP: serialprintPGM(st.stealth() ? PSTR("true") : PSTR("false")); break;
  8736. case TMC_S2VSA: if (st.s2vsa()) SERIAL_ECHOPGM("X"); break;
  8737. case TMC_S2VSB: if (st.s2vsb()) SERIAL_ECHOPGM("X"); break;
  8738. default: break;
  8739. }
  8740. }
  8741. static void tmc_parse_drv_status(TMC2208Stepper &st, const TMC_drv_status_enum i) {
  8742. switch(i) {
  8743. case TMC_T157: if (st.t157()) SERIAL_ECHOPGM("X"); break;
  8744. case TMC_T150: if (st.t150()) SERIAL_ECHOPGM("X"); break;
  8745. case TMC_T143: if (st.t143()) SERIAL_ECHOPGM("X"); break;
  8746. case TMC_T120: if (st.t120()) SERIAL_ECHOPGM("X"); break;
  8747. default: break;
  8748. }
  8749. }
  8750. #endif
  8751. template <typename TMC>
  8752. static void tmc_status(TMC &st, TMC_AxisEnum axis, const TMC_debug_enum i, const float spmm) {
  8753. SERIAL_ECHO('\t');
  8754. switch(i) {
  8755. case TMC_CODES: SERIAL_ECHO(extended_axis_codes[axis]); break;
  8756. case TMC_ENABLED: serialprintPGM(st.isEnabled() ? PSTR("true") : PSTR("false")); break;
  8757. case TMC_CURRENT: SERIAL_ECHO(st.getCurrent()); break;
  8758. case TMC_RMS_CURRENT: MYSERIAL.print(st.rms_current()); break;
  8759. case TMC_MAX_CURRENT: MYSERIAL.print((float)st.rms_current()*1.41, 0); break;
  8760. case TMC_IRUN:
  8761. MYSERIAL.print(st.irun(), DEC);
  8762. SERIAL_ECHOPGM("/31");
  8763. break;
  8764. case TMC_IHOLD:
  8765. MYSERIAL.print(st.ihold(), DEC);
  8766. SERIAL_ECHOPGM("/31");
  8767. break;
  8768. case TMC_CS_ACTUAL:
  8769. MYSERIAL.print(st.cs_actual(), DEC);
  8770. SERIAL_ECHOPGM("/31");
  8771. break;
  8772. case TMC_VSENSE: serialprintPGM(st.vsense() ? PSTR("1=.18") : PSTR("0=.325")); break;
  8773. case TMC_MICROSTEPS: SERIAL_ECHO(st.microsteps()); break;
  8774. case TMC_TPWMTHRS:
  8775. {
  8776. uint32_t tpwmthrs_val = st.TPWMTHRS();
  8777. SERIAL_ECHO(tpwmthrs_val);
  8778. }
  8779. break;
  8780. case TMC_TPWMTHRS_MMS:
  8781. {
  8782. uint32_t tpwmthrs_val = st.TPWMTHRS();
  8783. tpwmthrs_val ? SERIAL_ECHO(12650000UL * st.microsteps() / (256 * tpwmthrs_val * spmm)) : SERIAL_ECHO('-');
  8784. }
  8785. break;
  8786. case TMC_OTPW: serialprintPGM(st.otpw() ? PSTR("true") : PSTR("false")); break;
  8787. case TMC_OTPW_TRIGGERED: serialprintPGM(st.getOTPW() ? PSTR("true") : PSTR("false")); break;
  8788. case TMC_TOFF: MYSERIAL.print(st.toff(), DEC); break;
  8789. case TMC_TBL: MYSERIAL.print(st.blank_time(), DEC); break;
  8790. case TMC_HEND: MYSERIAL.print(st.hysterisis_end(), DEC); break;
  8791. case TMC_HSTRT: MYSERIAL.print(st.hysterisis_start(), DEC); break;
  8792. default: tmc_status(st, i); break;
  8793. }
  8794. }
  8795. template <typename TMC>
  8796. static void tmc_parse_drv_status(TMC &st, TMC_AxisEnum axis, const TMC_drv_status_enum i) {
  8797. SERIAL_ECHOPGM("\t");
  8798. switch(i) {
  8799. case TMC_DRV_CODES: SERIAL_ECHO(extended_axis_codes[axis]); break;
  8800. case TMC_STST: if (st.stst()) SERIAL_ECHOPGM("X"); break;
  8801. case TMC_OLB: if (st.olb()) SERIAL_ECHOPGM("X"); break;
  8802. case TMC_OLA: if (st.ola()) SERIAL_ECHOPGM("X"); break;
  8803. case TMC_S2GB: if (st.s2gb()) SERIAL_ECHOPGM("X"); break;
  8804. case TMC_S2GA: if (st.s2ga()) SERIAL_ECHOPGM("X"); break;
  8805. case TMC_DRV_OTPW: if (st.otpw()) SERIAL_ECHOPGM("X"); break;
  8806. case TMC_OT: if (st.ot()) SERIAL_ECHOPGM("X"); break;
  8807. case TMC_DRV_CS_ACTUAL: MYSERIAL.print(st.cs_actual(), DEC); break;
  8808. case TMC_DRV_STATUS_HEX:drv_status_print_hex(extended_axis_codes[axis], st.DRV_STATUS()); break;
  8809. default: tmc_parse_drv_status(st, i); break;
  8810. }
  8811. }
  8812. static void tmc_debug_loop(const TMC_debug_enum i) {
  8813. #if X_IS_TRINAMIC
  8814. tmc_status(stepperX, TMC_X, i, planner.axis_steps_per_mm[X_AXIS]);
  8815. #endif
  8816. #if X2_IS_TRINAMIC
  8817. tmc_status(stepperX2, TMC_X2, i, planner.axis_steps_per_mm[X_AXIS]);
  8818. #endif
  8819. #if Y_IS_TRINAMIC
  8820. tmc_status(stepperY, TMC_Y, i, planner.axis_steps_per_mm[Y_AXIS]);
  8821. #endif
  8822. #if Y2_IS_TRINAMIC
  8823. tmc_status(stepperY2, TMC_Y2, i, planner.axis_steps_per_mm[Y_AXIS]);
  8824. #endif
  8825. #if Z_IS_TRINAMIC
  8826. tmc_status(stepperZ, TMC_Z, i, planner.axis_steps_per_mm[Z_AXIS]);
  8827. #endif
  8828. #if Z2_IS_TRINAMIC
  8829. tmc_status(stepperZ2, TMC_Z2, i, planner.axis_steps_per_mm[Z_AXIS]);
  8830. #endif
  8831. #if E0_IS_TRINAMIC
  8832. tmc_status(stepperE0, TMC_E0, i, planner.axis_steps_per_mm[E_AXIS]);
  8833. #endif
  8834. #if E1_IS_TRINAMIC
  8835. tmc_status(stepperE1, TMC_E1, i, planner.axis_steps_per_mm[E_AXIS+1]);
  8836. #endif
  8837. #if E2_IS_TRINAMIC
  8838. tmc_status(stepperE2, TMC_E2, i, planner.axis_steps_per_mm[E_AXIS+2]);
  8839. #endif
  8840. #if E3_IS_TRINAMIC
  8841. tmc_status(stepperE3, TMC_E3, i, planner.axis_steps_per_mm[E_AXIS+3]);
  8842. #endif
  8843. #if E4_IS_TRINAMIC
  8844. tmc_status(stepperE4, TMC_E4, i, planner.axis_steps_per_mm[E_AXIS+4]);
  8845. #endif
  8846. SERIAL_EOL();
  8847. }
  8848. static void drv_status_loop(const TMC_drv_status_enum i) {
  8849. #if X_IS_TRINAMIC
  8850. tmc_parse_drv_status(stepperX, TMC_X, i);
  8851. #endif
  8852. #if X2_IS_TRINAMIC
  8853. tmc_parse_drv_status(stepperX2, TMC_X2, i);
  8854. #endif
  8855. #if Y_IS_TRINAMIC
  8856. tmc_parse_drv_status(stepperY, TMC_Y, i);
  8857. #endif
  8858. #if Y2_IS_TRINAMIC
  8859. tmc_parse_drv_status(stepperY2, TMC_Y2, i);
  8860. #endif
  8861. #if Z_IS_TRINAMIC
  8862. tmc_parse_drv_status(stepperZ, TMC_Z, i);
  8863. #endif
  8864. #if Z2_IS_TRINAMIC
  8865. tmc_parse_drv_status(stepperZ2, TMC_Z2, i);
  8866. #endif
  8867. #if E0_IS_TRINAMIC
  8868. tmc_parse_drv_status(stepperE0, TMC_E0, i);
  8869. #endif
  8870. #if E1_IS_TRINAMIC
  8871. tmc_parse_drv_status(stepperE1, TMC_E1, i);
  8872. #endif
  8873. #if E2_IS_TRINAMIC
  8874. tmc_parse_drv_status(stepperE2, TMC_E2, i);
  8875. #endif
  8876. #if E3_IS_TRINAMIC
  8877. tmc_parse_drv_status(stepperE3, TMC_E3, i);
  8878. #endif
  8879. #if E4_IS_TRINAMIC
  8880. tmc_parse_drv_status(stepperE4, TMC_E4, i);
  8881. #endif
  8882. SERIAL_EOL();
  8883. }
  8884. inline void gcode_M122() {
  8885. if (parser.seen('S')) {
  8886. if (parser.value_bool()) {
  8887. SERIAL_ECHOLNPGM("axis:pwm_scale |status_response|");
  8888. report_tmc_status = true;
  8889. } else
  8890. report_tmc_status = false;
  8891. } else {
  8892. SERIAL_ECHOPGM("\t"); tmc_debug_loop(TMC_CODES);
  8893. SERIAL_ECHOPGM("Enabled\t"); tmc_debug_loop(TMC_ENABLED);
  8894. SERIAL_ECHOPGM("Set current"); tmc_debug_loop(TMC_CURRENT);
  8895. SERIAL_ECHOPGM("RMS current"); tmc_debug_loop(TMC_RMS_CURRENT);
  8896. SERIAL_ECHOPGM("MAX current"); tmc_debug_loop(TMC_MAX_CURRENT);
  8897. SERIAL_ECHOPGM("Run current"); tmc_debug_loop(TMC_IRUN);
  8898. SERIAL_ECHOPGM("Hold current"); tmc_debug_loop(TMC_IHOLD);
  8899. SERIAL_ECHOPGM("CS actual\t"); tmc_debug_loop(TMC_CS_ACTUAL);
  8900. SERIAL_ECHOPGM("PWM scale"); tmc_debug_loop(TMC_PWM_SCALE);
  8901. SERIAL_ECHOPGM("vsense\t"); tmc_debug_loop(TMC_VSENSE);
  8902. SERIAL_ECHOPGM("stealthChop"); tmc_debug_loop(TMC_STEALTHCHOP);
  8903. SERIAL_ECHOPGM("msteps\t"); tmc_debug_loop(TMC_MICROSTEPS);
  8904. SERIAL_ECHOPGM("tstep\t"); tmc_debug_loop(TMC_TSTEP);
  8905. SERIAL_ECHOPGM("pwm\nthreshold\t"); tmc_debug_loop(TMC_TPWMTHRS);
  8906. SERIAL_ECHOPGM("[mm/s]\t"); tmc_debug_loop(TMC_TPWMTHRS_MMS);
  8907. SERIAL_ECHOPGM("OT prewarn"); tmc_debug_loop(TMC_OTPW);
  8908. SERIAL_ECHOPGM("OT prewarn has\nbeen triggered"); tmc_debug_loop(TMC_OTPW_TRIGGERED);
  8909. SERIAL_ECHOPGM("off time\t"); tmc_debug_loop(TMC_TOFF);
  8910. SERIAL_ECHOPGM("blank time"); tmc_debug_loop(TMC_TBL);
  8911. SERIAL_ECHOPGM("hysterisis\n-end\t"); tmc_debug_loop(TMC_HEND);
  8912. SERIAL_ECHOPGM("-start\t"); tmc_debug_loop(TMC_HSTRT);
  8913. SERIAL_ECHOPGM("Stallguard thrs"); tmc_debug_loop(TMC_SGT);
  8914. SERIAL_ECHOPGM("DRVSTATUS"); drv_status_loop(TMC_DRV_CODES);
  8915. #if ENABLED(HAVE_TMC2130)
  8916. SERIAL_ECHOPGM("stallguard\t"); drv_status_loop(TMC_STALLGUARD);
  8917. SERIAL_ECHOPGM("sg_result\t"); drv_status_loop(TMC_SG_RESULT);
  8918. SERIAL_ECHOPGM("fsactive\t"); drv_status_loop(TMC_FSACTIVE);
  8919. #endif
  8920. SERIAL_ECHOPGM("stst\t"); drv_status_loop(TMC_STST);
  8921. SERIAL_ECHOPGM("olb\t"); drv_status_loop(TMC_OLB);
  8922. SERIAL_ECHOPGM("ola\t"); drv_status_loop(TMC_OLA);
  8923. SERIAL_ECHOPGM("s2gb\t"); drv_status_loop(TMC_S2GB);
  8924. SERIAL_ECHOPGM("s2ga\t"); drv_status_loop(TMC_S2GA);
  8925. SERIAL_ECHOPGM("otpw\t"); drv_status_loop(TMC_DRV_OTPW);
  8926. SERIAL_ECHOPGM("ot\t"); drv_status_loop(TMC_OT);
  8927. #if ENABLED(HAVE_TMC2208)
  8928. SERIAL_ECHOPGM("157C\t"); drv_status_loop(TMC_T157);
  8929. SERIAL_ECHOPGM("150C\t"); drv_status_loop(TMC_T150);
  8930. SERIAL_ECHOPGM("143C\t"); drv_status_loop(TMC_T143);
  8931. SERIAL_ECHOPGM("120C\t"); drv_status_loop(TMC_T120);
  8932. SERIAL_ECHOPGM("s2vsa\t"); drv_status_loop(TMC_S2VSA);
  8933. SERIAL_ECHOPGM("s2vsb\t"); drv_status_loop(TMC_S2VSB);
  8934. #endif
  8935. SERIAL_ECHOLNPGM("Driver registers:");drv_status_loop(TMC_DRV_STATUS_HEX);
  8936. }
  8937. }
  8938. #endif
  8939. template<typename TMC>
  8940. static void tmc_get_current(TMC &st, const char name[]) {
  8941. SERIAL_ECHO(name);
  8942. SERIAL_ECHOPGM(" axis driver current: ");
  8943. SERIAL_ECHOLN(st.getCurrent());
  8944. }
  8945. template<typename TMC>
  8946. static void tmc_set_current(TMC &st, const char name[], const int mA) {
  8947. st.setCurrent(mA, R_SENSE, HOLD_MULTIPLIER);
  8948. tmc_get_current(st, name);
  8949. }
  8950. template<typename TMC>
  8951. static void tmc_report_otpw(TMC &st, const char name[]) {
  8952. SERIAL_ECHO(name);
  8953. SERIAL_ECHOPGM(" axis temperature prewarn triggered: ");
  8954. serialprintPGM(st.getOTPW() ? PSTR("true") : PSTR("false"));
  8955. SERIAL_EOL();
  8956. }
  8957. template<typename TMC>
  8958. static void tmc_clear_otpw(TMC &st, const char name[]) {
  8959. st.clear_otpw();
  8960. SERIAL_ECHO(name);
  8961. SERIAL_ECHOLNPGM(" prewarn flag cleared");
  8962. }
  8963. template<typename TMC>
  8964. static void tmc_get_pwmthrs(TMC &st, const char name[], const uint16_t spmm) {
  8965. SERIAL_ECHO(name);
  8966. SERIAL_ECHOPGM(" stealthChop max speed set to ");
  8967. SERIAL_ECHOLN(12650000UL * st.microsteps() / (256 * st.TPWMTHRS() * spmm));
  8968. }
  8969. template<typename TMC>
  8970. static void tmc_set_pwmthrs(TMC &st, const char name[], const int32_t thrs, const uint32_t spmm) {
  8971. st.TPWMTHRS(12650000UL * st.microsteps() / (256 * thrs * spmm));
  8972. tmc_get_pwmthrs(st, name, spmm);
  8973. }
  8974. template<typename TMC>
  8975. static void tmc_get_sgt(TMC &st, const char name[]) {
  8976. SERIAL_ECHO(name);
  8977. SERIAL_ECHOPGM(" driver homing sensitivity set to ");
  8978. MYSERIAL.println(st.sgt(), DEC);
  8979. }
  8980. template<typename TMC>
  8981. static void tmc_set_sgt(TMC &st, const char name[], const int8_t sgt_val) {
  8982. st.sgt(sgt_val);
  8983. tmc_get_sgt(st, name);
  8984. }
  8985. /**
  8986. * M906: Set motor current in milliamps using axis codes X, Y, Z, E
  8987. * Report driver currents when no axis specified
  8988. */
  8989. inline void gcode_M906() {
  8990. uint16_t values[XYZE];
  8991. LOOP_XYZE(i)
  8992. values[i] = parser.intval(axis_codes[i]);
  8993. #if X_IS_TRINAMIC
  8994. if (values[X_AXIS]) tmc_set_current(stepperX, extended_axis_codes[TMC_X], values[X_AXIS]);
  8995. else tmc_get_current(stepperX, extended_axis_codes[TMC_X]);
  8996. #endif
  8997. #if X2_IS_TRINAMIC
  8998. if (values[X_AXIS]) tmc_set_current(stepperX2, extended_axis_codes[TMC_X2], values[X_AXIS]);
  8999. else tmc_get_current(stepperX2, extended_axis_codes[TMC_X2]);
  9000. #endif
  9001. #if Y_IS_TRINAMIC
  9002. if (values[Y_AXIS]) tmc_set_current(stepperY, extended_axis_codes[TMC_Y], values[Y_AXIS]);
  9003. else tmc_get_current(stepperY, extended_axis_codes[TMC_Y]);
  9004. #endif
  9005. #if Y2_IS_TRINAMIC
  9006. if (values[Y_AXIS]) tmc_set_current(stepperY2, extended_axis_codes[TMC_Y2], values[Y_AXIS]);
  9007. else tmc_get_current(stepperY2, extended_axis_codes[TMC_Y2]);
  9008. #endif
  9009. #if Z_IS_TRINAMIC
  9010. if (values[Z_AXIS]) tmc_set_current(stepperZ, extended_axis_codes[TMC_Z], values[Z_AXIS]);
  9011. else tmc_get_current(stepperZ, extended_axis_codes[TMC_Z]);
  9012. #endif
  9013. #if Z2_IS_TRINAMIC
  9014. if (values[Z_AXIS]) tmc_set_current(stepperZ2, extended_axis_codes[TMC_Z2], values[Z_AXIS]);
  9015. else tmc_get_current(stepperZ2, extended_axis_codes[TMC_Z2]);
  9016. #endif
  9017. #if E0_IS_TRINAMIC
  9018. if (values[E_AXIS]) tmc_set_current(stepperE0, extended_axis_codes[TMC_E0], values[E_AXIS]);
  9019. else tmc_get_current(stepperE0, extended_axis_codes[TMC_E0]);
  9020. #endif
  9021. #if E1_IS_TRINAMIC
  9022. if (values[E_AXIS]) tmc_set_current(stepperE1, extended_axis_codes[TMC_E1], values[E_AXIS]);
  9023. else tmc_get_current(stepperE1, extended_axis_codes[TMC_E1]);
  9024. #endif
  9025. #if E2_IS_TRINAMIC
  9026. if (values[E_AXIS]) tmc_set_current(stepperE2, extended_axis_codes[TMC_E2], values[E_AXIS]);
  9027. else tmc_get_current(stepperE2, extended_axis_codes[TMC_E2]);
  9028. #endif
  9029. #if E3_IS_TRINAMIC
  9030. if (values[E_AXIS]) tmc_set_current(stepperE3, extended_axis_codes[TMC_E3], values[E_AXIS]);
  9031. else tmc_get_current(stepperE3, extended_axis_codes[TMC_E3]);
  9032. #endif
  9033. #if E4_IS_TRINAMIC
  9034. if (values[E_AXIS]) tmc_set_current(stepperE4, extended_axis_codes[TMC_E4], values[E_AXIS]);
  9035. else tmc_get_current(stepperE4, extended_axis_codes[TMC_E4]);
  9036. #endif
  9037. }
  9038. /**
  9039. * M911: Report TMC stepper driver overtemperature pre-warn flag
  9040. * The flag is held by the library and persist until manually cleared by M912
  9041. */
  9042. inline void gcode_M911() {
  9043. #if ENABLED(X_IS_TMC2130) || (ENABLED(X_IS_TMC2208) && PIN_EXISTS(X_SERIAL_RX)) || ENABLED(IS_TRAMS)
  9044. tmc_report_otpw(stepperX, extended_axis_codes[TMC_X]);
  9045. #endif
  9046. #if ENABLED(Y_IS_TMC2130) || (ENABLED(Y_IS_TMC2208) && PIN_EXISTS(Y_SERIAL_RX)) || ENABLED(IS_TRAMS)
  9047. tmc_report_otpw(stepperY, extended_axis_codes[TMC_Y]);
  9048. #endif
  9049. #if ENABLED(Z_IS_TMC2130) || (ENABLED(Z_IS_TMC2208) && PIN_EXISTS(Z_SERIAL_RX)) || ENABLED(IS_TRAMS)
  9050. tmc_report_otpw(stepperZ, extended_axis_codes[TMC_Z]);
  9051. #endif
  9052. #if ENABLED(E0_IS_TMC2130) || (ENABLED(E0_IS_TMC2208) && PIN_EXISTS(E0_SERIAL_RX)) || ENABLED(IS_TRAMS)
  9053. tmc_report_otpw(stepperE0, extended_axis_codes[TMC_E0]);
  9054. #endif
  9055. }
  9056. /**
  9057. * M912: Clear TMC stepper driver overtemperature pre-warn flag held by the library
  9058. */
  9059. inline void gcode_M912() {
  9060. const bool clearX = parser.seen(axis_codes[X_AXIS]), clearY = parser.seen(axis_codes[Y_AXIS]), clearZ = parser.seen(axis_codes[Z_AXIS]), clearE = parser.seen(axis_codes[E_AXIS]),
  9061. clearAll = (!clearX && !clearY && !clearZ && !clearE) || (clearX && clearY && clearZ && clearE);
  9062. #if ENABLED(X_IS_TMC2130) || ENABLED(IS_TRAMS) || (ENABLED(X_IS_TMC2208) && PIN_EXISTS(X_SERIAL_RX))
  9063. if (clearX || clearAll) tmc_clear_otpw(stepperX, extended_axis_codes[TMC_X]);
  9064. #endif
  9065. #if ENABLED(X2_IS_TMC2130) || (ENABLED(X2_IS_TMC2208) && PIN_EXISTS(X_SERIAL_RX))
  9066. if (clearX || clearAll) tmc_clear_otpw(stepperX, extended_axis_codes[TMC_X]);
  9067. #endif
  9068. #if ENABLED(Y_IS_TMC2130) || (ENABLED(Y_IS_TMC2208) && PIN_EXISTS(Y_SERIAL_RX))
  9069. if (clearY || clearAll) tmc_clear_otpw(stepperY, extended_axis_codes[TMC_Y]);
  9070. #endif
  9071. #if ENABLED(Z_IS_TMC2130) || (ENABLED(Z_IS_TMC2208) && PIN_EXISTS(Z_SERIAL_RX))
  9072. if (clearZ || clearAll) tmc_clear_otpw(stepperZ, extended_axis_codes[TMC_Z]);
  9073. #endif
  9074. #if ENABLED(E0_IS_TMC2130) || (ENABLED(E0_IS_TMC2208) && PIN_EXISTS(E0_SERIAL_RX))
  9075. if (clearE || clearAll) tmc_clear_otpw(stepperE0, extended_axis_codes[TMC_E0]);
  9076. #endif
  9077. }
  9078. /**
  9079. * M913: Set HYBRID_THRESHOLD speed.
  9080. */
  9081. #if ENABLED(HYBRID_THRESHOLD)
  9082. inline void gcode_M913() {
  9083. uint16_t values[XYZE];
  9084. LOOP_XYZE(i)
  9085. values[i] = parser.intval(axis_codes[i]);
  9086. #if X_IS_TRINAMIC
  9087. if (values[X_AXIS]) tmc_set_pwmthrs(stepperX, extended_axis_codes[TMC_X], values[X_AXIS], planner.axis_steps_per_mm[X_AXIS]);
  9088. else tmc_get_pwmthrs(stepperX, extended_axis_codes[TMC_X], planner.axis_steps_per_mm[X_AXIS]);
  9089. #endif
  9090. #if X2_IS_TRINAMIC
  9091. if (values[X_AXIS]) tmc_set_pwmthrs(stepperX2, extended_axis_codes[TMC_X2], values[X_AXIS], planner.axis_steps_per_mm[X_AXIS]);
  9092. else tmc_get_pwmthrs(stepperX, extended_axis_codes[TMC_X2], planner.axis_steps_per_mm[X_AXIS]);
  9093. #endif
  9094. #if Y_IS_TRINAMIC
  9095. if (values[Y_AXIS]) tmc_set_pwmthrs(stepperY, extended_axis_codes[TMC_Y], values[Y_AXIS], planner.axis_steps_per_mm[Y_AXIS]);
  9096. else tmc_get_pwmthrs(stepperY, extended_axis_codes[TMC_Y], planner.axis_steps_per_mm[Y_AXIS]);
  9097. #endif
  9098. #if Y2_IS_TRINAMIC
  9099. if (values[Y_AXIS]) tmc_set_pwmthrs(stepperY2, extended_axis_codes[TMC_Y2], values[Y_AXIS], planner.axis_steps_per_mm[Y_AXIS]);
  9100. else tmc_get_pwmthrs(stepperY, extended_axis_codes[TMC_Y2], planner.axis_steps_per_mm[Y_AXIS]);
  9101. #endif
  9102. #if Z_IS_TRINAMIC
  9103. if (values[Z_AXIS]) tmc_set_pwmthrs(stepperZ, extended_axis_codes[TMC_Z], values[Z_AXIS], planner.axis_steps_per_mm[Z_AXIS]);
  9104. else tmc_get_pwmthrs(stepperZ, extended_axis_codes[TMC_Z], planner.axis_steps_per_mm[Z_AXIS]);
  9105. #endif
  9106. #if Z2_IS_TRINAMIC
  9107. if (values[Z_AXIS]) tmc_set_pwmthrs(stepperZ2, extended_axis_codes[TMC_Z2], values[Z_AXIS], planner.axis_steps_per_mm[Z_AXIS]);
  9108. else tmc_get_pwmthrs(stepperZ, extended_axis_codes[TMC_Z2], planner.axis_steps_per_mm[Z_AXIS]);
  9109. #endif
  9110. #if E0_IS_TRINAMIC
  9111. if (values[E_AXIS]) tmc_set_pwmthrs(stepperE0, extended_axis_codes[TMC_E0], values[E_AXIS], planner.axis_steps_per_mm[E_AXIS]);
  9112. else tmc_get_pwmthrs(stepperE0, extended_axis_codes[TMC_E0], planner.axis_steps_per_mm[E_AXIS]);
  9113. #endif
  9114. #if E1_IS_TRINAMIC
  9115. if (values[E_AXIS]) tmc_set_pwmthrs(stepperE1, extended_axis_codes[TMC_E1], values[E_AXIS], planner.axis_steps_per_mm[E_AXIS]);
  9116. else tmc_get_pwmthrs(stepperE1, extended_axis_codes[TMC_E1], planner.axis_steps_per_mm[E_AXIS]);
  9117. #endif
  9118. #if E2_IS_TRINAMIC
  9119. if (values[E_AXIS]) tmc_set_pwmthrs(stepperE2, extended_axis_codes[TMC_E2], values[E_AXIS], planner.axis_steps_per_mm[E_AXIS]);
  9120. else tmc_get_pwmthrs(stepperE2, extended_axis_codes[TMC_E2], planner.axis_steps_per_mm[E_AXIS]);
  9121. #endif
  9122. #if E3_IS_TRINAMIC
  9123. if (values[E_AXIS]) tmc_set_pwmthrs(stepperE3, extended_axis_codes[TMC_E3], values[E_AXIS], planner.axis_steps_per_mm[E_AXIS]);
  9124. else tmc_get_pwmthrs(stepperE3, extended_axis_codes[TMC_E3], planner.axis_steps_per_mm[E_AXIS]);
  9125. #endif
  9126. #if E4_IS_TRINAMIC
  9127. if (values[E_AXIS]) tmc_set_pwmthrs(stepperE4, extended_axis_codes[TMC_E4], values[E_AXIS], planner.axis_steps_per_mm[E_AXIS]);
  9128. else tmc_get_pwmthrs(stepperE4, extended_axis_codes[TMC_E4], planner.axis_steps_per_mm[E_AXIS]);
  9129. #endif
  9130. }
  9131. #endif // HYBRID_THRESHOLD
  9132. /**
  9133. * M914: Set SENSORLESS_HOMING sensitivity.
  9134. */
  9135. #if ENABLED(SENSORLESS_HOMING)
  9136. inline void gcode_M914() {
  9137. #if ENABLED(X_IS_TMC2130) || ENABLED(IS_TRAMS)
  9138. if (parser.seen(axis_codes[X_AXIS])) tmc_set_sgt(stepperX, extended_axis_codes[TMC_X], parser.value_int());
  9139. else tmc_get_sgt(stepperX, extended_axis_codes[TMC_X]);
  9140. #endif
  9141. #if ENABLED(X2_IS_TMC2130)
  9142. if (parser.seen(axis_codes[X_AXIS])) tmc_set_sgt(stepperX2, extended_axis_codes[TMC_X2], parser.value_int());
  9143. else tmc_get_sgt(stepperX2, extended_axis_codes[TMC_X2]);
  9144. #endif
  9145. #if ENABLED(Y_IS_TMC2130) || ENABLED(IS_TRAMS)
  9146. if (parser.seen(axis_codes[Y_AXIS])) tmc_set_sgt(stepperY, extended_axis_codes[TMC_Y], parser.value_int());
  9147. else tmc_get_sgt(stepperY, extended_axis_codes[TMC_Y]);
  9148. #endif
  9149. #if ENABLED(Y2_IS_TMC2130)
  9150. if (parser.seen(axis_codes[Y_AXIS])) tmc_set_sgt(stepperY2, extended_axis_codes[TMC_Y2], parser.value_int());
  9151. else tmc_get_sgt(stepperY2, extended_axis_codes[TMC_Y2]);
  9152. #endif
  9153. }
  9154. #endif // SENSORLESS_HOMING
  9155. /**
  9156. * TMC Z axis calibration routine
  9157. */
  9158. #if ENABLED(TMC_Z_CALIBRATION) && (Z_IS_TRINAMIC || Z2_IS_TRINAMIC)
  9159. inline void gcode_M915() {
  9160. uint16_t _rms = parser.seenval('S') ? parser.value_int() : CALIBRATION_CURRENT;
  9161. uint16_t _z = parser.seenval('Z') ? parser.value_int() : CALIBRATION_EXTRA_HEIGHT;
  9162. if (!axis_known_position[Z_AXIS]) {
  9163. SERIAL_ECHOLNPGM("\nPlease home Z axis first");
  9164. return;
  9165. }
  9166. uint16_t Z_current_1 = stepperZ.getCurrent();
  9167. uint16_t Z2_current_1 = stepperZ.getCurrent();
  9168. stepperZ.setCurrent(_rms, R_SENSE, HOLD_MULTIPLIER);
  9169. stepperZ2.setCurrent(_rms, R_SENSE, HOLD_MULTIPLIER);
  9170. SERIAL_ECHOPAIR("\nCalibration current: Z", _rms);
  9171. soft_endstops_enabled = false;
  9172. do_blocking_move_to_z(Z_MAX_POS+_z);
  9173. stepperZ.setCurrent(Z_current_1, R_SENSE, HOLD_MULTIPLIER);
  9174. stepperZ2.setCurrent(Z2_current_1, R_SENSE, HOLD_MULTIPLIER);
  9175. do_blocking_move_to_z(Z_MAX_POS);
  9176. soft_endstops_enabled = true;
  9177. SERIAL_ECHOLNPGM("\nHoming Z because we lost steps");
  9178. home_z_safely();
  9179. }
  9180. #endif
  9181. #endif // HAS_TRINAMIC
  9182. /**
  9183. * M907: Set digital trimpot motor current using axis codes X, Y, Z, E, B, S
  9184. */
  9185. inline void gcode_M907() {
  9186. #if HAS_DIGIPOTSS
  9187. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) stepper.digipot_current(i, parser.value_int());
  9188. if (parser.seen('B')) stepper.digipot_current(4, parser.value_int());
  9189. if (parser.seen('S')) for (uint8_t i = 0; i <= 4; i++) stepper.digipot_current(i, parser.value_int());
  9190. #elif HAS_MOTOR_CURRENT_PWM
  9191. #if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
  9192. if (parser.seen('X')) stepper.digipot_current(0, parser.value_int());
  9193. #endif
  9194. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
  9195. if (parser.seen('Z')) stepper.digipot_current(1, parser.value_int());
  9196. #endif
  9197. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
  9198. if (parser.seen('E')) stepper.digipot_current(2, parser.value_int());
  9199. #endif
  9200. #endif
  9201. #if ENABLED(DIGIPOT_I2C)
  9202. // this one uses actual amps in floating point
  9203. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) digipot_i2c_set_current(i, parser.value_float());
  9204. // for each additional extruder (named B,C,D,E..., channels 4,5,6,7...)
  9205. for (uint8_t i = NUM_AXIS; i < DIGIPOT_I2C_NUM_CHANNELS; i++) if (parser.seen('B' + i - (NUM_AXIS))) digipot_i2c_set_current(i, parser.value_float());
  9206. #endif
  9207. #if ENABLED(DAC_STEPPER_CURRENT)
  9208. if (parser.seen('S')) {
  9209. const float dac_percent = parser.value_float();
  9210. for (uint8_t i = 0; i <= 4; i++) dac_current_percent(i, dac_percent);
  9211. }
  9212. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) dac_current_percent(i, parser.value_float());
  9213. #endif
  9214. }
  9215. #if HAS_DIGIPOTSS || ENABLED(DAC_STEPPER_CURRENT)
  9216. /**
  9217. * M908: Control digital trimpot directly (M908 P<pin> S<current>)
  9218. */
  9219. inline void gcode_M908() {
  9220. #if HAS_DIGIPOTSS
  9221. stepper.digitalPotWrite(
  9222. parser.intval('P'),
  9223. parser.intval('S')
  9224. );
  9225. #endif
  9226. #ifdef DAC_STEPPER_CURRENT
  9227. dac_current_raw(
  9228. parser.byteval('P', -1),
  9229. parser.ushortval('S', 0)
  9230. );
  9231. #endif
  9232. }
  9233. #if ENABLED(DAC_STEPPER_CURRENT) // As with Printrbot RevF
  9234. inline void gcode_M909() { dac_print_values(); }
  9235. inline void gcode_M910() { dac_commit_eeprom(); }
  9236. #endif
  9237. #endif // HAS_DIGIPOTSS || DAC_STEPPER_CURRENT
  9238. #if HAS_MICROSTEPS
  9239. // M350 Set microstepping mode. Warning: Steps per unit remains unchanged. S code sets stepping mode for all drivers.
  9240. inline void gcode_M350() {
  9241. if (parser.seen('S')) for (int i = 0; i <= 4; i++) stepper.microstep_mode(i, parser.value_byte());
  9242. LOOP_XYZE(i) if (parser.seen(axis_codes[i])) stepper.microstep_mode(i, parser.value_byte());
  9243. if (parser.seen('B')) stepper.microstep_mode(4, parser.value_byte());
  9244. stepper.microstep_readings();
  9245. }
  9246. /**
  9247. * M351: Toggle MS1 MS2 pins directly with axis codes X Y Z E B
  9248. * S# determines MS1 or MS2, X# sets the pin high/low.
  9249. */
  9250. inline void gcode_M351() {
  9251. if (parser.seenval('S')) switch (parser.value_byte()) {
  9252. case 1:
  9253. LOOP_XYZE(i) if (parser.seenval(axis_codes[i])) stepper.microstep_ms(i, parser.value_byte(), -1);
  9254. if (parser.seenval('B')) stepper.microstep_ms(4, parser.value_byte(), -1);
  9255. break;
  9256. case 2:
  9257. LOOP_XYZE(i) if (parser.seenval(axis_codes[i])) stepper.microstep_ms(i, -1, parser.value_byte());
  9258. if (parser.seenval('B')) stepper.microstep_ms(4, -1, parser.value_byte());
  9259. break;
  9260. }
  9261. stepper.microstep_readings();
  9262. }
  9263. #endif // HAS_MICROSTEPS
  9264. #if HAS_CASE_LIGHT
  9265. #ifndef INVERT_CASE_LIGHT
  9266. #define INVERT_CASE_LIGHT false
  9267. #endif
  9268. uint8_t case_light_brightness; // LCD routine wants INT
  9269. bool case_light_on;
  9270. void update_case_light() {
  9271. pinMode(CASE_LIGHT_PIN, OUTPUT); // digitalWrite doesn't set the port mode
  9272. if (case_light_on) {
  9273. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN))
  9274. analogWrite(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? 255 - case_light_brightness : case_light_brightness);
  9275. else
  9276. WRITE(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? LOW : HIGH);
  9277. }
  9278. else {
  9279. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN))
  9280. analogWrite(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? 255 : 0);
  9281. else
  9282. WRITE(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? HIGH : LOW);
  9283. }
  9284. }
  9285. #endif // HAS_CASE_LIGHT
  9286. /**
  9287. * M355: Turn case light on/off and set brightness
  9288. *
  9289. * P<byte> Set case light brightness (PWM pin required - ignored otherwise)
  9290. *
  9291. * S<bool> Set case light on/off
  9292. *
  9293. * When S turns on the light on a PWM pin then the current brightness level is used/restored
  9294. *
  9295. * M355 P200 S0 turns off the light & sets the brightness level
  9296. * M355 S1 turns on the light with a brightness of 200 (assuming a PWM pin)
  9297. */
  9298. inline void gcode_M355() {
  9299. #if HAS_CASE_LIGHT
  9300. uint8_t args = 0;
  9301. if (parser.seenval('P')) ++args, case_light_brightness = parser.value_byte();
  9302. if (parser.seenval('S')) ++args, case_light_on = parser.value_bool();
  9303. if (args) update_case_light();
  9304. // always report case light status
  9305. SERIAL_ECHO_START();
  9306. if (!case_light_on) {
  9307. SERIAL_ECHOLN("Case light: off");
  9308. }
  9309. else {
  9310. if (!USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) SERIAL_ECHOLN("Case light: on");
  9311. else SERIAL_ECHOLNPAIR("Case light: ", (int)case_light_brightness);
  9312. }
  9313. #else
  9314. SERIAL_ERROR_START();
  9315. SERIAL_ERRORLNPGM(MSG_ERR_M355_NONE);
  9316. #endif // HAS_CASE_LIGHT
  9317. }
  9318. #if ENABLED(MIXING_EXTRUDER)
  9319. /**
  9320. * M163: Set a single mix factor for a mixing extruder
  9321. * This is called "weight" by some systems.
  9322. *
  9323. * S[index] The channel index to set
  9324. * P[float] The mix value
  9325. *
  9326. */
  9327. inline void gcode_M163() {
  9328. const int mix_index = parser.intval('S');
  9329. if (mix_index < MIXING_STEPPERS) {
  9330. float mix_value = parser.floatval('P');
  9331. NOLESS(mix_value, 0.0);
  9332. mixing_factor[mix_index] = RECIPROCAL(mix_value);
  9333. }
  9334. }
  9335. #if MIXING_VIRTUAL_TOOLS > 1
  9336. /**
  9337. * M164: Store the current mix factors as a virtual tool.
  9338. *
  9339. * S[index] The virtual tool to store
  9340. *
  9341. */
  9342. inline void gcode_M164() {
  9343. const int tool_index = parser.intval('S');
  9344. if (tool_index < MIXING_VIRTUAL_TOOLS) {
  9345. normalize_mix();
  9346. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  9347. mixing_virtual_tool_mix[tool_index][i] = mixing_factor[i];
  9348. }
  9349. }
  9350. #endif
  9351. #if ENABLED(DIRECT_MIXING_IN_G1)
  9352. /**
  9353. * M165: Set multiple mix factors for a mixing extruder.
  9354. * Factors that are left out will be set to 0.
  9355. * All factors together must add up to 1.0.
  9356. *
  9357. * A[factor] Mix factor for extruder stepper 1
  9358. * B[factor] Mix factor for extruder stepper 2
  9359. * C[factor] Mix factor for extruder stepper 3
  9360. * D[factor] Mix factor for extruder stepper 4
  9361. * H[factor] Mix factor for extruder stepper 5
  9362. * I[factor] Mix factor for extruder stepper 6
  9363. *
  9364. */
  9365. inline void gcode_M165() { gcode_get_mix(); }
  9366. #endif
  9367. #endif // MIXING_EXTRUDER
  9368. /**
  9369. * M999: Restart after being stopped
  9370. *
  9371. * Default behaviour is to flush the serial buffer and request
  9372. * a resend to the host starting on the last N line received.
  9373. *
  9374. * Sending "M999 S1" will resume printing without flushing the
  9375. * existing command buffer.
  9376. *
  9377. */
  9378. inline void gcode_M999() {
  9379. Running = true;
  9380. lcd_reset_alert_level();
  9381. if (parser.boolval('S')) return;
  9382. // gcode_LastN = Stopped_gcode_LastN;
  9383. FlushSerialRequestResend();
  9384. }
  9385. #if ENABLED(SWITCHING_EXTRUDER)
  9386. #if EXTRUDERS > 3
  9387. #define REQ_ANGLES 4
  9388. #define _SERVO_NR (e < 2 ? SWITCHING_EXTRUDER_SERVO_NR : SWITCHING_EXTRUDER_E23_SERVO_NR)
  9389. #else
  9390. #define REQ_ANGLES 2
  9391. #define _SERVO_NR SWITCHING_EXTRUDER_SERVO_NR
  9392. #endif
  9393. inline void move_extruder_servo(const uint8_t e) {
  9394. constexpr int16_t angles[] = SWITCHING_EXTRUDER_SERVO_ANGLES;
  9395. static_assert(COUNT(angles) == REQ_ANGLES, "SWITCHING_EXTRUDER_SERVO_ANGLES needs " STRINGIFY(REQ_ANGLES) " angles.");
  9396. stepper.synchronize();
  9397. #if EXTRUDERS & 1
  9398. if (e < EXTRUDERS - 1)
  9399. #endif
  9400. {
  9401. MOVE_SERVO(_SERVO_NR, angles[e]);
  9402. safe_delay(500);
  9403. }
  9404. }
  9405. #endif // SWITCHING_EXTRUDER
  9406. #if ENABLED(SWITCHING_NOZZLE)
  9407. inline void move_nozzle_servo(const uint8_t e) {
  9408. const int16_t angles[2] = SWITCHING_NOZZLE_SERVO_ANGLES;
  9409. stepper.synchronize();
  9410. MOVE_SERVO(SWITCHING_NOZZLE_SERVO_NR, angles[e]);
  9411. safe_delay(500);
  9412. }
  9413. #endif
  9414. inline void invalid_extruder_error(const uint8_t e) {
  9415. SERIAL_ECHO_START();
  9416. SERIAL_CHAR('T');
  9417. SERIAL_ECHO_F(e, DEC);
  9418. SERIAL_CHAR(' ');
  9419. SERIAL_ECHOLN(MSG_INVALID_EXTRUDER);
  9420. }
  9421. #if ENABLED(PARKING_EXTRUDER)
  9422. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  9423. #define PE_MAGNET_ON_STATE !PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE
  9424. #else
  9425. #define PE_MAGNET_ON_STATE PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE
  9426. #endif
  9427. void pe_set_magnet(const uint8_t extruder_num, const uint8_t state) {
  9428. switch (extruder_num) {
  9429. case 1: OUT_WRITE(SOL1_PIN, state); break;
  9430. default: OUT_WRITE(SOL0_PIN, state); break;
  9431. }
  9432. #if PARKING_EXTRUDER_SOLENOIDS_DELAY > 0
  9433. dwell(PARKING_EXTRUDER_SOLENOIDS_DELAY);
  9434. #endif
  9435. }
  9436. inline void pe_activate_magnet(const uint8_t extruder_num) { pe_set_magnet(extruder_num, PE_MAGNET_ON_STATE); }
  9437. inline void pe_deactivate_magnet(const uint8_t extruder_num) { pe_set_magnet(extruder_num, !PE_MAGNET_ON_STATE); }
  9438. #endif // PARKING_EXTRUDER
  9439. #if HAS_FANMUX
  9440. void fanmux_switch(const uint8_t e) {
  9441. WRITE(FANMUX0_PIN, TEST(e, 0) ? HIGH : LOW);
  9442. #if PIN_EXISTS(FANMUX1)
  9443. WRITE(FANMUX1_PIN, TEST(e, 1) ? HIGH : LOW);
  9444. #if PIN_EXISTS(FANMUX2)
  9445. WRITE(FANMUX2, TEST(e, 2) ? HIGH : LOW);
  9446. #endif
  9447. #endif
  9448. }
  9449. FORCE_INLINE void fanmux_init(void) {
  9450. SET_OUTPUT(FANMUX0_PIN);
  9451. #if PIN_EXISTS(FANMUX1)
  9452. SET_OUTPUT(FANMUX1_PIN);
  9453. #if PIN_EXISTS(FANMUX2)
  9454. SET_OUTPUT(FANMUX2_PIN);
  9455. #endif
  9456. #endif
  9457. fanmux_switch(0);
  9458. }
  9459. #endif // HAS_FANMUX
  9460. /**
  9461. * Perform a tool-change, which may result in moving the
  9462. * previous tool out of the way and the new tool into place.
  9463. */
  9464. void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool no_move/*=false*/) {
  9465. #if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
  9466. if (tmp_extruder >= MIXING_VIRTUAL_TOOLS)
  9467. return invalid_extruder_error(tmp_extruder);
  9468. // T0-Tnnn: Switch virtual tool by changing the mix
  9469. for (uint8_t j = 0; j < MIXING_STEPPERS; j++)
  9470. mixing_factor[j] = mixing_virtual_tool_mix[tmp_extruder][j];
  9471. #else // !MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
  9472. if (tmp_extruder >= EXTRUDERS)
  9473. return invalid_extruder_error(tmp_extruder);
  9474. #if HOTENDS > 1
  9475. const float old_feedrate_mm_s = fr_mm_s > 0.0 ? fr_mm_s : feedrate_mm_s;
  9476. feedrate_mm_s = fr_mm_s > 0.0 ? fr_mm_s : XY_PROBE_FEEDRATE_MM_S;
  9477. if (tmp_extruder != active_extruder) {
  9478. if (!no_move && axis_unhomed_error()) {
  9479. no_move = true;
  9480. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9481. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("No move on toolchange");
  9482. #endif
  9483. }
  9484. // Save current position to destination, for use later
  9485. set_destination_from_current();
  9486. #if ENABLED(DUAL_X_CARRIAGE)
  9487. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9488. if (DEBUGGING(LEVELING)) {
  9489. SERIAL_ECHOPGM("Dual X Carriage Mode ");
  9490. switch (dual_x_carriage_mode) {
  9491. case DXC_FULL_CONTROL_MODE: SERIAL_ECHOLNPGM("DXC_FULL_CONTROL_MODE"); break;
  9492. case DXC_AUTO_PARK_MODE: SERIAL_ECHOLNPGM("DXC_AUTO_PARK_MODE"); break;
  9493. case DXC_DUPLICATION_MODE: SERIAL_ECHOLNPGM("DXC_DUPLICATION_MODE"); break;
  9494. }
  9495. }
  9496. #endif
  9497. const float xhome = x_home_pos(active_extruder);
  9498. if (dual_x_carriage_mode == DXC_AUTO_PARK_MODE
  9499. && IsRunning()
  9500. && (delayed_move_time || current_position[X_AXIS] != xhome)
  9501. ) {
  9502. float raised_z = current_position[Z_AXIS] + TOOLCHANGE_PARK_ZLIFT;
  9503. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  9504. NOMORE(raised_z, soft_endstop_max[Z_AXIS]);
  9505. #endif
  9506. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9507. if (DEBUGGING(LEVELING)) {
  9508. SERIAL_ECHOLNPAIR("Raise to ", raised_z);
  9509. SERIAL_ECHOLNPAIR("MoveX to ", xhome);
  9510. SERIAL_ECHOLNPAIR("Lower to ", current_position[Z_AXIS]);
  9511. }
  9512. #endif
  9513. // Park old head: 1) raise 2) move to park position 3) lower
  9514. for (uint8_t i = 0; i < 3; i++)
  9515. planner.buffer_line(
  9516. i == 0 ? current_position[X_AXIS] : xhome,
  9517. current_position[Y_AXIS],
  9518. i == 2 ? current_position[Z_AXIS] : raised_z,
  9519. current_position[E_AXIS],
  9520. planner.max_feedrate_mm_s[i == 1 ? X_AXIS : Z_AXIS],
  9521. active_extruder
  9522. );
  9523. stepper.synchronize();
  9524. }
  9525. // Apply Y & Z extruder offset (X offset is used as home pos with Dual X)
  9526. current_position[Y_AXIS] -= hotend_offset[Y_AXIS][active_extruder] - hotend_offset[Y_AXIS][tmp_extruder];
  9527. current_position[Z_AXIS] -= hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder];
  9528. // Activate the new extruder ahead of calling set_axis_is_at_home!
  9529. active_extruder = tmp_extruder;
  9530. // This function resets the max/min values - the current position may be overwritten below.
  9531. set_axis_is_at_home(X_AXIS);
  9532. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9533. if (DEBUGGING(LEVELING)) DEBUG_POS("New Extruder", current_position);
  9534. #endif
  9535. // Only when auto-parking are carriages safe to move
  9536. if (dual_x_carriage_mode != DXC_AUTO_PARK_MODE) no_move = true;
  9537. switch (dual_x_carriage_mode) {
  9538. case DXC_FULL_CONTROL_MODE:
  9539. // New current position is the position of the activated extruder
  9540. current_position[X_AXIS] = inactive_extruder_x_pos;
  9541. // Save the inactive extruder's position (from the old current_position)
  9542. inactive_extruder_x_pos = destination[X_AXIS];
  9543. break;
  9544. case DXC_AUTO_PARK_MODE:
  9545. // record raised toolhead position for use by unpark
  9546. COPY(raised_parked_position, current_position);
  9547. raised_parked_position[Z_AXIS] += TOOLCHANGE_UNPARK_ZLIFT;
  9548. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  9549. NOMORE(raised_parked_position[Z_AXIS], soft_endstop_max[Z_AXIS]);
  9550. #endif
  9551. active_extruder_parked = true;
  9552. delayed_move_time = 0;
  9553. break;
  9554. case DXC_DUPLICATION_MODE:
  9555. // If the new extruder is the left one, set it "parked"
  9556. // This triggers the second extruder to move into the duplication position
  9557. active_extruder_parked = (active_extruder == 0);
  9558. if (active_extruder_parked)
  9559. current_position[X_AXIS] = inactive_extruder_x_pos;
  9560. else
  9561. current_position[X_AXIS] = destination[X_AXIS] + duplicate_extruder_x_offset;
  9562. inactive_extruder_x_pos = destination[X_AXIS];
  9563. extruder_duplication_enabled = false;
  9564. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9565. if (DEBUGGING(LEVELING)) {
  9566. SERIAL_ECHOLNPAIR("Set inactive_extruder_x_pos=", inactive_extruder_x_pos);
  9567. SERIAL_ECHOLNPGM("Clear extruder_duplication_enabled");
  9568. }
  9569. #endif
  9570. break;
  9571. }
  9572. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9573. if (DEBUGGING(LEVELING)) {
  9574. SERIAL_ECHOLNPAIR("Active extruder parked: ", active_extruder_parked ? "yes" : "no");
  9575. DEBUG_POS("New extruder (parked)", current_position);
  9576. }
  9577. #endif
  9578. // No extra case for HAS_ABL in DUAL_X_CARRIAGE. Does that mean they don't work together?
  9579. #else // !DUAL_X_CARRIAGE
  9580. #if ENABLED(PARKING_EXTRUDER) // Dual Parking extruder
  9581. const float z_diff = hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder];
  9582. float z_raise = PARKING_EXTRUDER_SECURITY_RAISE;
  9583. if (!no_move) {
  9584. const float parkingposx[] = PARKING_EXTRUDER_PARKING_X,
  9585. midpos = (parkingposx[0] + parkingposx[1]) * 0.5 + hotend_offset[X_AXIS][active_extruder],
  9586. grabpos = parkingposx[tmp_extruder] + hotend_offset[X_AXIS][active_extruder]
  9587. + (tmp_extruder == 0 ? -(PARKING_EXTRUDER_GRAB_DISTANCE) : PARKING_EXTRUDER_GRAB_DISTANCE);
  9588. /**
  9589. * Steps:
  9590. * 1. Raise Z-Axis to give enough clearance
  9591. * 2. Move to park position of old extruder
  9592. * 3. Disengage magnetic field, wait for delay
  9593. * 4. Move near new extruder
  9594. * 5. Engage magnetic field for new extruder
  9595. * 6. Move to parking incl. offset of new extruder
  9596. * 7. Lower Z-Axis
  9597. */
  9598. // STEP 1
  9599. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9600. SERIAL_ECHOLNPGM("Starting Autopark");
  9601. if (DEBUGGING(LEVELING)) DEBUG_POS("current position:", current_position);
  9602. #endif
  9603. current_position[Z_AXIS] += z_raise;
  9604. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9605. SERIAL_ECHOLNPGM("(1) Raise Z-Axis ");
  9606. if (DEBUGGING(LEVELING)) DEBUG_POS("Moving to Raised Z-Position", current_position);
  9607. #endif
  9608. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
  9609. stepper.synchronize();
  9610. // STEP 2
  9611. current_position[X_AXIS] = parkingposx[active_extruder] + hotend_offset[X_AXIS][active_extruder];
  9612. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9613. SERIAL_ECHOLNPAIR("(2) Park extruder ", active_extruder);
  9614. if (DEBUGGING(LEVELING)) DEBUG_POS("Moving ParkPos", current_position);
  9615. #endif
  9616. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9617. stepper.synchronize();
  9618. // STEP 3
  9619. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9620. SERIAL_ECHOLNPGM("(3) Disengage magnet ");
  9621. #endif
  9622. pe_deactivate_magnet(active_extruder);
  9623. // STEP 4
  9624. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9625. SERIAL_ECHOLNPGM("(4) Move to position near new extruder");
  9626. #endif
  9627. current_position[X_AXIS] += (active_extruder == 0 ? 10 : -10); // move 10mm away from parked extruder
  9628. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9629. if (DEBUGGING(LEVELING)) DEBUG_POS("Moving away from parked extruder", current_position);
  9630. #endif
  9631. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9632. stepper.synchronize();
  9633. // STEP 5
  9634. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9635. SERIAL_ECHOLNPGM("(5) Engage magnetic field");
  9636. #endif
  9637. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  9638. pe_activate_magnet(active_extruder); //just save power for inverted magnets
  9639. #endif
  9640. pe_activate_magnet(tmp_extruder);
  9641. // STEP 6
  9642. current_position[X_AXIS] = grabpos + (tmp_extruder == 0 ? (+10) : (-10));
  9643. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9644. current_position[X_AXIS] = grabpos;
  9645. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9646. SERIAL_ECHOLNPAIR("(6) Unpark extruder ", tmp_extruder);
  9647. if (DEBUGGING(LEVELING)) DEBUG_POS("Move UnparkPos", current_position);
  9648. #endif
  9649. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS]/2, active_extruder);
  9650. stepper.synchronize();
  9651. // Step 7
  9652. current_position[X_AXIS] = midpos - hotend_offset[X_AXIS][tmp_extruder];
  9653. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9654. SERIAL_ECHOLNPGM("(7) Move midway between hotends");
  9655. if (DEBUGGING(LEVELING)) DEBUG_POS("Move midway to new extruder", current_position);
  9656. #endif
  9657. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[X_AXIS], active_extruder);
  9658. stepper.synchronize();
  9659. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9660. SERIAL_ECHOLNPGM("Autopark done.");
  9661. #endif
  9662. }
  9663. else { // nomove == true
  9664. // Only engage magnetic field for new extruder
  9665. pe_activate_magnet(tmp_extruder);
  9666. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  9667. pe_activate_magnet(active_extruder); // Just save power for inverted magnets
  9668. #endif
  9669. }
  9670. current_position[Z_AXIS] -= hotend_offset[Z_AXIS][tmp_extruder] - hotend_offset[Z_AXIS][active_extruder]; // Apply Zoffset
  9671. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9672. if (DEBUGGING(LEVELING)) DEBUG_POS("Applying Z-offset", current_position);
  9673. #endif
  9674. #endif // dualParking extruder
  9675. #if ENABLED(SWITCHING_NOZZLE)
  9676. #define DONT_SWITCH (SWITCHING_EXTRUDER_SERVO_NR == SWITCHING_NOZZLE_SERVO_NR)
  9677. // <0 if the new nozzle is higher, >0 if lower. A bigger raise when lower.
  9678. const float z_diff = hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder],
  9679. z_raise = 0.3 + (z_diff > 0.0 ? z_diff : 0.0);
  9680. // Always raise by some amount (destination copied from current_position earlier)
  9681. current_position[Z_AXIS] += z_raise;
  9682. planner.buffer_line_kinematic(current_position, planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
  9683. move_nozzle_servo(tmp_extruder);
  9684. #endif
  9685. /**
  9686. * Set current_position to the position of the new nozzle.
  9687. * Offsets are based on linear distance, so we need to get
  9688. * the resulting position in coordinate space.
  9689. *
  9690. * - With grid or 3-point leveling, offset XYZ by a tilted vector
  9691. * - With mesh leveling, update Z for the new position
  9692. * - Otherwise, just use the raw linear distance
  9693. *
  9694. * Software endstops are altered here too. Consider a case where:
  9695. * E0 at X=0 ... E1 at X=10
  9696. * When we switch to E1 now X=10, but E1 can't move left.
  9697. * To express this we apply the change in XY to the software endstops.
  9698. * E1 can move farther right than E0, so the right limit is extended.
  9699. *
  9700. * Note that we don't adjust the Z software endstops. Why not?
  9701. * Consider a case where Z=0 (here) and switching to E1 makes Z=1
  9702. * because the bed is 1mm lower at the new position. As long as
  9703. * the first nozzle is out of the way, the carriage should be
  9704. * allowed to move 1mm lower. This technically "breaks" the
  9705. * Z software endstop. But this is technically correct (and
  9706. * there is no viable alternative).
  9707. */
  9708. #if ABL_PLANAR
  9709. // Offset extruder, make sure to apply the bed level rotation matrix
  9710. vector_3 tmp_offset_vec = vector_3(hotend_offset[X_AXIS][tmp_extruder],
  9711. hotend_offset[Y_AXIS][tmp_extruder],
  9712. 0),
  9713. act_offset_vec = vector_3(hotend_offset[X_AXIS][active_extruder],
  9714. hotend_offset[Y_AXIS][active_extruder],
  9715. 0),
  9716. offset_vec = tmp_offset_vec - act_offset_vec;
  9717. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9718. if (DEBUGGING(LEVELING)) {
  9719. tmp_offset_vec.debug(PSTR("tmp_offset_vec"));
  9720. act_offset_vec.debug(PSTR("act_offset_vec"));
  9721. offset_vec.debug(PSTR("offset_vec (BEFORE)"));
  9722. }
  9723. #endif
  9724. offset_vec.apply_rotation(planner.bed_level_matrix.transpose(planner.bed_level_matrix));
  9725. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9726. if (DEBUGGING(LEVELING)) offset_vec.debug(PSTR("offset_vec (AFTER)"));
  9727. #endif
  9728. // Adjustments to the current position
  9729. const float xydiff[2] = { offset_vec.x, offset_vec.y };
  9730. current_position[Z_AXIS] += offset_vec.z;
  9731. #else // !ABL_PLANAR
  9732. const float xydiff[2] = {
  9733. hotend_offset[X_AXIS][tmp_extruder] - hotend_offset[X_AXIS][active_extruder],
  9734. hotend_offset[Y_AXIS][tmp_extruder] - hotend_offset[Y_AXIS][active_extruder]
  9735. };
  9736. #if ENABLED(MESH_BED_LEVELING)
  9737. if (planner.leveling_active) {
  9738. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9739. if (DEBUGGING(LEVELING)) SERIAL_ECHOPAIR("Z before MBL: ", current_position[Z_AXIS]);
  9740. #endif
  9741. float x2 = current_position[X_AXIS] + xydiff[X_AXIS],
  9742. y2 = current_position[Y_AXIS] + xydiff[Y_AXIS],
  9743. z1 = current_position[Z_AXIS], z2 = z1;
  9744. planner.apply_leveling(current_position[X_AXIS], current_position[Y_AXIS], z1);
  9745. planner.apply_leveling(x2, y2, z2);
  9746. current_position[Z_AXIS] += z2 - z1;
  9747. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9748. if (DEBUGGING(LEVELING))
  9749. SERIAL_ECHOLNPAIR(" after: ", current_position[Z_AXIS]);
  9750. #endif
  9751. }
  9752. #endif // MESH_BED_LEVELING
  9753. #endif // !HAS_ABL
  9754. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9755. if (DEBUGGING(LEVELING)) {
  9756. SERIAL_ECHOPAIR("Offset Tool XY by { ", xydiff[X_AXIS]);
  9757. SERIAL_ECHOPAIR(", ", xydiff[Y_AXIS]);
  9758. SERIAL_ECHOLNPGM(" }");
  9759. }
  9760. #endif
  9761. // The newly-selected extruder XY is actually at...
  9762. current_position[X_AXIS] += xydiff[X_AXIS];
  9763. current_position[Y_AXIS] += xydiff[Y_AXIS];
  9764. // Set the new active extruder
  9765. active_extruder = tmp_extruder;
  9766. #endif // !DUAL_X_CARRIAGE
  9767. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9768. if (DEBUGGING(LEVELING)) DEBUG_POS("Sync After Toolchange", current_position);
  9769. #endif
  9770. // Tell the planner the new "current position"
  9771. SYNC_PLAN_POSITION_KINEMATIC();
  9772. // Move to the "old position" (move the extruder into place)
  9773. #if ENABLED(SWITCHING_NOZZLE)
  9774. destination[Z_AXIS] += z_diff; // Include the Z restore with the "move back"
  9775. #endif
  9776. if (!no_move && IsRunning()) {
  9777. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9778. if (DEBUGGING(LEVELING)) DEBUG_POS("Move back", destination);
  9779. #endif
  9780. // Move back to the original (or tweaked) position
  9781. do_blocking_move_to(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS]);
  9782. }
  9783. #if ENABLED(SWITCHING_NOZZLE)
  9784. else {
  9785. // Move back down. (Including when the new tool is higher.)
  9786. do_blocking_move_to_z(destination[Z_AXIS], planner.max_feedrate_mm_s[Z_AXIS]);
  9787. }
  9788. #endif
  9789. } // (tmp_extruder != active_extruder)
  9790. stepper.synchronize();
  9791. #if ENABLED(EXT_SOLENOID) && !ENABLED(PARKING_EXTRUDER)
  9792. disable_all_solenoids();
  9793. enable_solenoid_on_active_extruder();
  9794. #endif // EXT_SOLENOID
  9795. feedrate_mm_s = old_feedrate_mm_s;
  9796. #else // HOTENDS <= 1
  9797. UNUSED(fr_mm_s);
  9798. UNUSED(no_move);
  9799. #if ENABLED(MK2_MULTIPLEXER)
  9800. if (tmp_extruder >= E_STEPPERS)
  9801. return invalid_extruder_error(tmp_extruder);
  9802. select_multiplexed_stepper(tmp_extruder);
  9803. #endif
  9804. // Set the new active extruder
  9805. active_extruder = tmp_extruder;
  9806. #endif // HOTENDS <= 1
  9807. #if ENABLED(SWITCHING_EXTRUDER) && !DONT_SWITCH
  9808. stepper.synchronize();
  9809. move_extruder_servo(active_extruder);
  9810. #endif
  9811. #if HAS_FANMUX
  9812. fanmux_switch(active_extruder);
  9813. #endif
  9814. SERIAL_ECHO_START();
  9815. SERIAL_ECHOLNPAIR(MSG_ACTIVE_EXTRUDER, (int)active_extruder);
  9816. #endif // !MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
  9817. }
  9818. /**
  9819. * T0-T3: Switch tool, usually switching extruders
  9820. *
  9821. * F[units/min] Set the movement feedrate
  9822. * S1 Don't move the tool in XY after change
  9823. */
  9824. inline void gcode_T(const uint8_t tmp_extruder) {
  9825. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9826. if (DEBUGGING(LEVELING)) {
  9827. SERIAL_ECHOPAIR(">>> gcode_T(", tmp_extruder);
  9828. SERIAL_CHAR(')');
  9829. SERIAL_EOL();
  9830. DEBUG_POS("BEFORE", current_position);
  9831. }
  9832. #endif
  9833. #if HOTENDS == 1 || (ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1)
  9834. tool_change(tmp_extruder);
  9835. #elif HOTENDS > 1
  9836. tool_change(
  9837. tmp_extruder,
  9838. MMM_TO_MMS(parser.linearval('F')),
  9839. (tmp_extruder == active_extruder) || parser.boolval('S')
  9840. );
  9841. #endif
  9842. #if ENABLED(DEBUG_LEVELING_FEATURE)
  9843. if (DEBUGGING(LEVELING)) {
  9844. DEBUG_POS("AFTER", current_position);
  9845. SERIAL_ECHOLNPGM("<<< gcode_T");
  9846. }
  9847. #endif
  9848. }
  9849. /**
  9850. * Process the parsed command and dispatch it to its handler
  9851. */
  9852. void process_parsed_command() {
  9853. KEEPALIVE_STATE(IN_HANDLER);
  9854. // Handle a known G, M, or T
  9855. switch (parser.command_letter) {
  9856. case 'G': switch (parser.codenum) {
  9857. // G0, G1
  9858. case 0:
  9859. case 1:
  9860. #if IS_SCARA
  9861. gcode_G0_G1(parser.codenum == 0);
  9862. #else
  9863. gcode_G0_G1();
  9864. #endif
  9865. break;
  9866. // G2, G3
  9867. #if ENABLED(ARC_SUPPORT) && DISABLED(SCARA)
  9868. case 2: // G2: CW ARC
  9869. case 3: // G3: CCW ARC
  9870. gcode_G2_G3(parser.codenum == 2);
  9871. break;
  9872. #endif
  9873. // G4 Dwell
  9874. case 4:
  9875. gcode_G4();
  9876. break;
  9877. #if ENABLED(BEZIER_CURVE_SUPPORT)
  9878. case 5: // G5: Cubic B_spline
  9879. gcode_G5();
  9880. break;
  9881. #endif // BEZIER_CURVE_SUPPORT
  9882. #if ENABLED(FWRETRACT)
  9883. case 10: // G10: retract
  9884. gcode_G10();
  9885. break;
  9886. case 11: // G11: retract_recover
  9887. gcode_G11();
  9888. break;
  9889. #endif // FWRETRACT
  9890. #if ENABLED(NOZZLE_CLEAN_FEATURE)
  9891. case 12:
  9892. gcode_G12(); // G12: Nozzle Clean
  9893. break;
  9894. #endif // NOZZLE_CLEAN_FEATURE
  9895. #if ENABLED(CNC_WORKSPACE_PLANES)
  9896. case 17: // G17: Select Plane XY
  9897. gcode_G17();
  9898. break;
  9899. case 18: // G18: Select Plane ZX
  9900. gcode_G18();
  9901. break;
  9902. case 19: // G19: Select Plane YZ
  9903. gcode_G19();
  9904. break;
  9905. #endif // CNC_WORKSPACE_PLANES
  9906. #if ENABLED(INCH_MODE_SUPPORT)
  9907. case 20: // G20: Inch Mode
  9908. gcode_G20();
  9909. break;
  9910. case 21: // G21: MM Mode
  9911. gcode_G21();
  9912. break;
  9913. #endif // INCH_MODE_SUPPORT
  9914. #if ENABLED(G26_MESH_VALIDATION)
  9915. case 26: // G26: Mesh Validation Pattern generation
  9916. gcode_G26();
  9917. break;
  9918. #endif // G26_MESH_VALIDATION
  9919. #if ENABLED(NOZZLE_PARK_FEATURE)
  9920. case 27: // G27: Nozzle Park
  9921. gcode_G27();
  9922. break;
  9923. #endif // NOZZLE_PARK_FEATURE
  9924. case 28: // G28: Home all axes, one at a time
  9925. gcode_G28(false);
  9926. break;
  9927. #if HAS_LEVELING
  9928. case 29: // G29 Detailed Z probe, probes the bed at 3 or more points,
  9929. // or provides access to the UBL System if enabled.
  9930. gcode_G29();
  9931. break;
  9932. #endif // HAS_LEVELING
  9933. #if HAS_BED_PROBE
  9934. case 30: // G30 Single Z probe
  9935. gcode_G30();
  9936. break;
  9937. #if ENABLED(Z_PROBE_SLED)
  9938. case 31: // G31: dock the sled
  9939. gcode_G31();
  9940. break;
  9941. case 32: // G32: undock the sled
  9942. gcode_G32();
  9943. break;
  9944. #endif // Z_PROBE_SLED
  9945. #endif // HAS_BED_PROBE
  9946. #if ENABLED(DELTA_AUTO_CALIBRATION)
  9947. case 33: // G33: Delta Auto-Calibration
  9948. gcode_G33();
  9949. break;
  9950. #endif // DELTA_AUTO_CALIBRATION
  9951. #if ENABLED(G38_PROBE_TARGET)
  9952. case 38: // G38.2 & G38.3
  9953. if (parser.subcode == 2 || parser.subcode == 3)
  9954. gcode_G38(parser.subcode == 2);
  9955. break;
  9956. #endif
  9957. case 90: // G90
  9958. relative_mode = false;
  9959. break;
  9960. case 91: // G91
  9961. relative_mode = true;
  9962. break;
  9963. case 92: // G92
  9964. gcode_G92();
  9965. break;
  9966. #if HAS_MESH
  9967. case 42:
  9968. gcode_G42();
  9969. break;
  9970. #endif
  9971. #if ENABLED(DEBUG_GCODE_PARSER)
  9972. case 800:
  9973. parser.debug(); // GCode Parser Test for G
  9974. break;
  9975. #endif
  9976. }
  9977. break;
  9978. case 'M': switch (parser.codenum) {
  9979. #if HAS_RESUME_CONTINUE
  9980. case 0: // M0: Unconditional stop - Wait for user button press on LCD
  9981. case 1: // M1: Conditional stop - Wait for user button press on LCD
  9982. gcode_M0_M1();
  9983. break;
  9984. #endif // ULTIPANEL
  9985. #if ENABLED(SPINDLE_LASER_ENABLE)
  9986. case 3:
  9987. gcode_M3_M4(true); // M3: turn spindle/laser on, set laser/spindle power/speed, set rotation direction CW
  9988. break; // synchronizes with movement commands
  9989. case 4:
  9990. gcode_M3_M4(false); // M4: turn spindle/laser on, set laser/spindle power/speed, set rotation direction CCW
  9991. break; // synchronizes with movement commands
  9992. case 5:
  9993. gcode_M5(); // M5 - turn spindle/laser off
  9994. break; // synchronizes with movement commands
  9995. #endif
  9996. case 17: // M17: Enable all stepper motors
  9997. gcode_M17();
  9998. break;
  9999. #if ENABLED(SDSUPPORT)
  10000. case 20: // M20: list SD card
  10001. gcode_M20(); break;
  10002. case 21: // M21: init SD card
  10003. gcode_M21(); break;
  10004. case 22: // M22: release SD card
  10005. gcode_M22(); break;
  10006. case 23: // M23: Select file
  10007. gcode_M23(); break;
  10008. case 24: // M24: Start SD print
  10009. gcode_M24(); break;
  10010. case 25: // M25: Pause SD print
  10011. gcode_M25(); break;
  10012. case 26: // M26: Set SD index
  10013. gcode_M26(); break;
  10014. case 27: // M27: Get SD status
  10015. gcode_M27(); break;
  10016. case 28: // M28: Start SD write
  10017. gcode_M28(); break;
  10018. case 29: // M29: Stop SD write
  10019. gcode_M29(); break;
  10020. case 30: // M30 <filename> Delete File
  10021. gcode_M30(); break;
  10022. case 32: // M32: Select file and start SD print
  10023. gcode_M32(); break;
  10024. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  10025. case 33: // M33: Get the long full path to a file or folder
  10026. gcode_M33(); break;
  10027. #endif
  10028. #if ENABLED(SDCARD_SORT_ALPHA) && ENABLED(SDSORT_GCODE)
  10029. case 34: // M34: Set SD card sorting options
  10030. gcode_M34(); break;
  10031. #endif // SDCARD_SORT_ALPHA && SDSORT_GCODE
  10032. case 928: // M928: Start SD write
  10033. gcode_M928(); break;
  10034. #endif // SDSUPPORT
  10035. case 31: // M31: Report time since the start of SD print or last M109
  10036. gcode_M31(); break;
  10037. case 42: // M42: Change pin state
  10038. gcode_M42(); break;
  10039. #if ENABLED(PINS_DEBUGGING)
  10040. case 43: // M43: Read pin state
  10041. gcode_M43(); break;
  10042. #endif
  10043. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  10044. case 48: // M48: Z probe repeatability test
  10045. gcode_M48();
  10046. break;
  10047. #endif // Z_MIN_PROBE_REPEATABILITY_TEST
  10048. #if ENABLED(G26_MESH_VALIDATION)
  10049. case 49: // M49: Turn on or off G26 debug flag for verbose output
  10050. gcode_M49();
  10051. break;
  10052. #endif // G26_MESH_VALIDATION
  10053. #if ENABLED(ULTRA_LCD) && ENABLED(LCD_SET_PROGRESS_MANUALLY)
  10054. case 73: // M73: Set print progress percentage
  10055. gcode_M73(); break;
  10056. #endif
  10057. case 75: // M75: Start print timer
  10058. gcode_M75(); break;
  10059. case 76: // M76: Pause print timer
  10060. gcode_M76(); break;
  10061. case 77: // M77: Stop print timer
  10062. gcode_M77(); break;
  10063. #if ENABLED(PRINTCOUNTER)
  10064. case 78: // M78: Show print statistics
  10065. gcode_M78(); break;
  10066. #endif
  10067. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  10068. case 100: // M100: Free Memory Report
  10069. gcode_M100();
  10070. break;
  10071. #endif
  10072. case 104: // M104: Set hot end temperature
  10073. gcode_M104();
  10074. break;
  10075. case 110: // M110: Set Current Line Number
  10076. gcode_M110();
  10077. break;
  10078. case 111: // M111: Set debug level
  10079. gcode_M111();
  10080. break;
  10081. #if DISABLED(EMERGENCY_PARSER)
  10082. case 108: // M108: Cancel Waiting
  10083. gcode_M108();
  10084. break;
  10085. case 112: // M112: Emergency Stop
  10086. gcode_M112();
  10087. break;
  10088. case 410: // M410 quickstop - Abort all the planned moves.
  10089. gcode_M410();
  10090. break;
  10091. #endif
  10092. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  10093. case 113: // M113: Set Host Keepalive interval
  10094. gcode_M113();
  10095. break;
  10096. #endif
  10097. case 140: // M140: Set bed temperature
  10098. gcode_M140();
  10099. break;
  10100. case 105: // M105: Report current temperature
  10101. gcode_M105();
  10102. KEEPALIVE_STATE(NOT_BUSY);
  10103. return; // "ok" already printed
  10104. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  10105. case 155: // M155: Set temperature auto-report interval
  10106. gcode_M155();
  10107. break;
  10108. #endif
  10109. case 109: // M109: Wait for hotend temperature to reach target
  10110. gcode_M109();
  10111. break;
  10112. #if HAS_TEMP_BED
  10113. case 190: // M190: Wait for bed temperature to reach target
  10114. gcode_M190();
  10115. break;
  10116. #endif // HAS_TEMP_BED
  10117. #if FAN_COUNT > 0
  10118. case 106: // M106: Fan On
  10119. gcode_M106();
  10120. break;
  10121. case 107: // M107: Fan Off
  10122. gcode_M107();
  10123. break;
  10124. #endif // FAN_COUNT > 0
  10125. #if ENABLED(PARK_HEAD_ON_PAUSE)
  10126. case 125: // M125: Store current position and move to filament change position
  10127. gcode_M125(); break;
  10128. #endif
  10129. #if ENABLED(BARICUDA)
  10130. // PWM for HEATER_1_PIN
  10131. #if HAS_HEATER_1
  10132. case 126: // M126: valve open
  10133. gcode_M126();
  10134. break;
  10135. case 127: // M127: valve closed
  10136. gcode_M127();
  10137. break;
  10138. #endif // HAS_HEATER_1
  10139. // PWM for HEATER_2_PIN
  10140. #if HAS_HEATER_2
  10141. case 128: // M128: valve open
  10142. gcode_M128();
  10143. break;
  10144. case 129: // M129: valve closed
  10145. gcode_M129();
  10146. break;
  10147. #endif // HAS_HEATER_2
  10148. #endif // BARICUDA
  10149. #if HAS_POWER_SWITCH
  10150. case 80: // M80: Turn on Power Supply
  10151. gcode_M80();
  10152. break;
  10153. #endif // HAS_POWER_SWITCH
  10154. case 81: // M81: Turn off Power, including Power Supply, if possible
  10155. gcode_M81();
  10156. break;
  10157. case 82: // M82: Set E axis normal mode (same as other axes)
  10158. gcode_M82();
  10159. break;
  10160. case 83: // M83: Set E axis relative mode
  10161. gcode_M83();
  10162. break;
  10163. case 18: // M18 => M84
  10164. case 84: // M84: Disable all steppers or set timeout
  10165. gcode_M18_M84();
  10166. break;
  10167. case 85: // M85: Set inactivity stepper shutdown timeout
  10168. gcode_M85();
  10169. break;
  10170. case 92: // M92: Set the steps-per-unit for one or more axes
  10171. gcode_M92();
  10172. break;
  10173. case 114: // M114: Report current position
  10174. gcode_M114();
  10175. break;
  10176. case 115: // M115: Report capabilities
  10177. gcode_M115();
  10178. break;
  10179. case 117: // M117: Set LCD message text, if possible
  10180. gcode_M117();
  10181. break;
  10182. case 118: // M118: Display a message in the host console
  10183. gcode_M118();
  10184. break;
  10185. case 119: // M119: Report endstop states
  10186. gcode_M119();
  10187. break;
  10188. case 120: // M120: Enable endstops
  10189. gcode_M120();
  10190. break;
  10191. case 121: // M121: Disable endstops
  10192. gcode_M121();
  10193. break;
  10194. #if ENABLED(ULTIPANEL)
  10195. case 145: // M145: Set material heatup parameters
  10196. gcode_M145();
  10197. break;
  10198. #endif
  10199. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  10200. case 149: // M149: Set temperature units
  10201. gcode_M149();
  10202. break;
  10203. #endif
  10204. #if HAS_COLOR_LEDS
  10205. case 150: // M150: Set Status LED Color
  10206. gcode_M150();
  10207. break;
  10208. #endif // HAS_COLOR_LEDS
  10209. #if ENABLED(MIXING_EXTRUDER)
  10210. case 163: // M163: Set a component weight for mixing extruder
  10211. gcode_M163();
  10212. break;
  10213. #if MIXING_VIRTUAL_TOOLS > 1
  10214. case 164: // M164: Save current mix as a virtual extruder
  10215. gcode_M164();
  10216. break;
  10217. #endif
  10218. #if ENABLED(DIRECT_MIXING_IN_G1)
  10219. case 165: // M165: Set multiple mix weights
  10220. gcode_M165();
  10221. break;
  10222. #endif
  10223. #endif
  10224. case 200: // M200: Set filament diameter, E to cubic units
  10225. gcode_M200();
  10226. break;
  10227. case 201: // M201: Set max acceleration for print moves (units/s^2)
  10228. gcode_M201();
  10229. break;
  10230. #if 0 // Not used for Sprinter/grbl gen6
  10231. case 202: // M202
  10232. gcode_M202();
  10233. break;
  10234. #endif
  10235. case 203: // M203: Set max feedrate (units/sec)
  10236. gcode_M203();
  10237. break;
  10238. case 204: // M204: Set acceleration
  10239. gcode_M204();
  10240. break;
  10241. case 205: // M205: Set advanced settings
  10242. gcode_M205();
  10243. break;
  10244. #if HAS_M206_COMMAND
  10245. case 206: // M206: Set home offsets
  10246. gcode_M206();
  10247. break;
  10248. #endif
  10249. #if ENABLED(DELTA)
  10250. case 665: // M665: Set delta configurations
  10251. gcode_M665();
  10252. break;
  10253. #endif
  10254. #if ENABLED(DELTA) || ENABLED(X_DUAL_ENDSTOPS) || ENABLED(Y_DUAL_ENDSTOPS) || ENABLED(Z_DUAL_ENDSTOPS)
  10255. case 666: // M666: Set delta or dual endstop adjustment
  10256. gcode_M666();
  10257. break;
  10258. #endif
  10259. #if ENABLED(FWRETRACT)
  10260. case 207: // M207: Set Retract Length, Feedrate, and Z lift
  10261. gcode_M207();
  10262. break;
  10263. case 208: // M208: Set Recover (unretract) Additional Length and Feedrate
  10264. gcode_M208();
  10265. break;
  10266. case 209: // M209: Turn Automatic Retract Detection on/off
  10267. if (MIN_AUTORETRACT <= MAX_AUTORETRACT) gcode_M209();
  10268. break;
  10269. #endif // FWRETRACT
  10270. case 211: // M211: Enable, Disable, and/or Report software endstops
  10271. gcode_M211();
  10272. break;
  10273. #if HOTENDS > 1
  10274. case 218: // M218: Set a tool offset
  10275. gcode_M218();
  10276. break;
  10277. #endif // HOTENDS > 1
  10278. case 220: // M220: Set Feedrate Percentage: S<percent> ("FR" on your LCD)
  10279. gcode_M220();
  10280. break;
  10281. case 221: // M221: Set Flow Percentage
  10282. gcode_M221();
  10283. break;
  10284. case 226: // M226: Wait until a pin reaches a state
  10285. gcode_M226();
  10286. break;
  10287. #if HAS_SERVOS
  10288. case 280: // M280: Set servo position absolute
  10289. gcode_M280();
  10290. break;
  10291. #endif // HAS_SERVOS
  10292. #if ENABLED(BABYSTEPPING)
  10293. case 290: // M290: Babystepping
  10294. gcode_M290();
  10295. break;
  10296. #endif // BABYSTEPPING
  10297. #if HAS_BUZZER
  10298. case 300: // M300: Play beep tone
  10299. gcode_M300();
  10300. break;
  10301. #endif // HAS_BUZZER
  10302. #if ENABLED(PIDTEMP)
  10303. case 301: // M301: Set hotend PID parameters
  10304. gcode_M301();
  10305. break;
  10306. #endif // PIDTEMP
  10307. #if ENABLED(PIDTEMPBED)
  10308. case 304: // M304: Set bed PID parameters
  10309. gcode_M304();
  10310. break;
  10311. #endif // PIDTEMPBED
  10312. #if defined(CHDK) || HAS_PHOTOGRAPH
  10313. case 240: // M240: Trigger a camera by emulating a Canon RC-1 : http://www.doc-diy.net/photo/rc-1_hacked/
  10314. gcode_M240();
  10315. break;
  10316. #endif // CHDK || PHOTOGRAPH_PIN
  10317. #if HAS_LCD_CONTRAST
  10318. case 250: // M250: Set LCD contrast
  10319. gcode_M250();
  10320. break;
  10321. #endif // HAS_LCD_CONTRAST
  10322. #if ENABLED(EXPERIMENTAL_I2CBUS)
  10323. case 260: // M260: Send data to an i2c slave
  10324. gcode_M260();
  10325. break;
  10326. case 261: // M261: Request data from an i2c slave
  10327. gcode_M261();
  10328. break;
  10329. #endif // EXPERIMENTAL_I2CBUS
  10330. #if ENABLED(PREVENT_COLD_EXTRUSION)
  10331. case 302: // M302: Allow cold extrudes (set the minimum extrude temperature)
  10332. gcode_M302();
  10333. break;
  10334. #endif // PREVENT_COLD_EXTRUSION
  10335. case 303: // M303: PID autotune
  10336. gcode_M303();
  10337. break;
  10338. #if ENABLED(MORGAN_SCARA)
  10339. case 360: // M360: SCARA Theta pos1
  10340. if (gcode_M360()) return;
  10341. break;
  10342. case 361: // M361: SCARA Theta pos2
  10343. if (gcode_M361()) return;
  10344. break;
  10345. case 362: // M362: SCARA Psi pos1
  10346. if (gcode_M362()) return;
  10347. break;
  10348. case 363: // M363: SCARA Psi pos2
  10349. if (gcode_M363()) return;
  10350. break;
  10351. case 364: // M364: SCARA Psi pos3 (90 deg to Theta)
  10352. if (gcode_M364()) return;
  10353. break;
  10354. #endif // SCARA
  10355. case 400: // M400: Finish all moves
  10356. gcode_M400();
  10357. break;
  10358. #if HAS_BED_PROBE
  10359. case 401: // M401: Deploy probe
  10360. gcode_M401();
  10361. break;
  10362. case 402: // M402: Stow probe
  10363. gcode_M402();
  10364. break;
  10365. #endif // HAS_BED_PROBE
  10366. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  10367. case 404: // M404: Enter the nominal filament width (3mm, 1.75mm ) N<3.0> or display nominal filament width
  10368. gcode_M404();
  10369. break;
  10370. case 405: // M405: Turn on filament sensor for control
  10371. gcode_M405();
  10372. break;
  10373. case 406: // M406: Turn off filament sensor for control
  10374. gcode_M406();
  10375. break;
  10376. case 407: // M407: Display measured filament diameter
  10377. gcode_M407();
  10378. break;
  10379. #endif // FILAMENT_WIDTH_SENSOR
  10380. #if HAS_LEVELING
  10381. case 420: // M420: Enable/Disable Bed Leveling
  10382. gcode_M420();
  10383. break;
  10384. #endif
  10385. #if HAS_MESH
  10386. case 421: // M421: Set a Mesh Bed Leveling Z coordinate
  10387. gcode_M421();
  10388. break;
  10389. #endif
  10390. #if HAS_M206_COMMAND
  10391. case 428: // M428: Apply current_position to home_offset
  10392. gcode_M428();
  10393. break;
  10394. #endif
  10395. case 500: // M500: Store settings in EEPROM
  10396. gcode_M500();
  10397. break;
  10398. case 501: // M501: Read settings from EEPROM
  10399. gcode_M501();
  10400. break;
  10401. case 502: // M502: Revert to default settings
  10402. gcode_M502();
  10403. break;
  10404. #if DISABLED(DISABLE_M503)
  10405. case 503: // M503: print settings currently in memory
  10406. gcode_M503();
  10407. break;
  10408. #endif
  10409. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  10410. case 540: // M540: Set abort on endstop hit for SD printing
  10411. gcode_M540();
  10412. break;
  10413. #endif
  10414. #if HAS_BED_PROBE
  10415. case 851: // M851: Set Z Probe Z Offset
  10416. gcode_M851();
  10417. break;
  10418. #endif // HAS_BED_PROBE
  10419. #if ENABLED(SKEW_CORRECTION_GCODE)
  10420. case 852: // M852: Set Skew factors
  10421. gcode_M852();
  10422. break;
  10423. #endif
  10424. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  10425. case 600: // M600: Pause for filament change
  10426. gcode_M600();
  10427. break;
  10428. #endif // ADVANCED_PAUSE_FEATURE
  10429. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  10430. case 605: // M605: Set Dual X Carriage movement mode
  10431. gcode_M605();
  10432. break;
  10433. #endif // DUAL_X_CARRIAGE
  10434. #if ENABLED(MK2_MULTIPLEXER)
  10435. case 702: // M702: Unload all extruders
  10436. gcode_M702();
  10437. break;
  10438. #endif
  10439. #if ENABLED(LIN_ADVANCE)
  10440. case 900: // M900: Set advance K factor.
  10441. gcode_M900();
  10442. break;
  10443. #endif
  10444. case 907: // M907: Set digital trimpot motor current using axis codes.
  10445. gcode_M907();
  10446. break;
  10447. #if HAS_DIGIPOTSS || ENABLED(DAC_STEPPER_CURRENT)
  10448. case 908: // M908: Control digital trimpot directly.
  10449. gcode_M908();
  10450. break;
  10451. #if ENABLED(DAC_STEPPER_CURRENT) // As with Printrbot RevF
  10452. case 909: // M909: Print digipot/DAC current value
  10453. gcode_M909();
  10454. break;
  10455. case 910: // M910: Commit digipot/DAC value to external EEPROM
  10456. gcode_M910();
  10457. break;
  10458. #endif
  10459. #endif // HAS_DIGIPOTSS || DAC_STEPPER_CURRENT
  10460. #if ENABLED(HAVE_TMC2130) || ENABLED(HAVE_TMC2208)
  10461. case 906: // M906: Set motor current in milliamps using axis codes X, Y, Z, E
  10462. gcode_M906();
  10463. break;
  10464. case 911: // M911: Report TMC prewarn triggered flags
  10465. gcode_M911();
  10466. break;
  10467. case 912: // M911: Clear TMC prewarn triggered flags
  10468. gcode_M912();
  10469. break;
  10470. #if ENABLED(TMC_DEBUG)
  10471. case 122: // Debug TMC steppers
  10472. gcode_M122();
  10473. break;
  10474. #endif
  10475. #if ENABLED(HYBRID_THRESHOLD)
  10476. case 913: // M913: Set HYBRID_THRESHOLD speed.
  10477. gcode_M913();
  10478. break;
  10479. #endif
  10480. #if ENABLED(SENSORLESS_HOMING)
  10481. case 914: // M914: Set SENSORLESS_HOMING sensitivity.
  10482. gcode_M914();
  10483. break;
  10484. #endif
  10485. #if ENABLED(TMC_Z_CALIBRATION) && (Z_IS_TRINAMIC || Z2_IS_TRINAMIC)
  10486. case 915: // M915: TMC Z axis calibration routine
  10487. gcode_M915();
  10488. break;
  10489. #endif
  10490. #endif
  10491. #if HAS_MICROSTEPS
  10492. case 350: // M350: Set microstepping mode. Warning: Steps per unit remains unchanged. S code sets stepping mode for all drivers.
  10493. gcode_M350();
  10494. break;
  10495. case 351: // M351: Toggle MS1 MS2 pins directly, S# determines MS1 or MS2, X# sets the pin high/low.
  10496. gcode_M351();
  10497. break;
  10498. #endif // HAS_MICROSTEPS
  10499. case 355: // M355 set case light brightness
  10500. gcode_M355();
  10501. break;
  10502. #if ENABLED(DEBUG_GCODE_PARSER)
  10503. case 800:
  10504. parser.debug(); // GCode Parser Test for M
  10505. break;
  10506. #endif
  10507. #if ENABLED(I2C_POSITION_ENCODERS)
  10508. case 860: // M860 Report encoder module position
  10509. gcode_M860();
  10510. break;
  10511. case 861: // M861 Report encoder module status
  10512. gcode_M861();
  10513. break;
  10514. case 862: // M862 Perform axis test
  10515. gcode_M862();
  10516. break;
  10517. case 863: // M863 Calibrate steps/mm
  10518. gcode_M863();
  10519. break;
  10520. case 864: // M864 Change module address
  10521. gcode_M864();
  10522. break;
  10523. case 865: // M865 Check module firmware version
  10524. gcode_M865();
  10525. break;
  10526. case 866: // M866 Report axis error count
  10527. gcode_M866();
  10528. break;
  10529. case 867: // M867 Toggle error correction
  10530. gcode_M867();
  10531. break;
  10532. case 868: // M868 Set error correction threshold
  10533. gcode_M868();
  10534. break;
  10535. case 869: // M869 Report axis error
  10536. gcode_M869();
  10537. break;
  10538. #endif // I2C_POSITION_ENCODERS
  10539. case 999: // M999: Restart after being Stopped
  10540. gcode_M999();
  10541. break;
  10542. }
  10543. break;
  10544. case 'T':
  10545. gcode_T(parser.codenum);
  10546. break;
  10547. default: parser.unknown_command_error();
  10548. }
  10549. KEEPALIVE_STATE(NOT_BUSY);
  10550. ok_to_send();
  10551. }
  10552. void process_next_command() {
  10553. char * const current_command = command_queue[cmd_queue_index_r];
  10554. if (DEBUGGING(ECHO)) {
  10555. SERIAL_ECHO_START();
  10556. SERIAL_ECHOLN(current_command);
  10557. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  10558. SERIAL_ECHOPAIR("slot:", cmd_queue_index_r);
  10559. M100_dump_routine(" Command Queue:", (const char*)command_queue, (const char*)(command_queue + sizeof(command_queue)));
  10560. #endif
  10561. }
  10562. // Parse the next command in the queue
  10563. parser.parse(current_command);
  10564. process_parsed_command();
  10565. }
  10566. /**
  10567. * Send a "Resend: nnn" message to the host to
  10568. * indicate that a command needs to be re-sent.
  10569. */
  10570. void FlushSerialRequestResend() {
  10571. //char command_queue[cmd_queue_index_r][100]="Resend:";
  10572. MYSERIAL.flush();
  10573. SERIAL_PROTOCOLPGM(MSG_RESEND);
  10574. SERIAL_PROTOCOLLN(gcode_LastN + 1);
  10575. ok_to_send();
  10576. }
  10577. /**
  10578. * Send an "ok" message to the host, indicating
  10579. * that a command was successfully processed.
  10580. *
  10581. * If ADVANCED_OK is enabled also include:
  10582. * N<int> Line number of the command, if any
  10583. * P<int> Planner space remaining
  10584. * B<int> Block queue space remaining
  10585. */
  10586. void ok_to_send() {
  10587. refresh_cmd_timeout();
  10588. if (!send_ok[cmd_queue_index_r]) return;
  10589. SERIAL_PROTOCOLPGM(MSG_OK);
  10590. #if ENABLED(ADVANCED_OK)
  10591. char* p = command_queue[cmd_queue_index_r];
  10592. if (*p == 'N') {
  10593. SERIAL_PROTOCOL(' ');
  10594. SERIAL_ECHO(*p++);
  10595. while (NUMERIC_SIGNED(*p))
  10596. SERIAL_ECHO(*p++);
  10597. }
  10598. SERIAL_PROTOCOLPGM(" P"); SERIAL_PROTOCOL(int(BLOCK_BUFFER_SIZE - planner.movesplanned() - 1));
  10599. SERIAL_PROTOCOLPGM(" B"); SERIAL_PROTOCOL(BUFSIZE - commands_in_queue);
  10600. #endif
  10601. SERIAL_EOL();
  10602. }
  10603. #if HAS_SOFTWARE_ENDSTOPS
  10604. /**
  10605. * Constrain the given coordinates to the software endstops.
  10606. *
  10607. * For DELTA/SCARA the XY constraint is based on the smallest
  10608. * radius within the set software endstops.
  10609. */
  10610. void clamp_to_software_endstops(float target[XYZ]) {
  10611. if (!soft_endstops_enabled) return;
  10612. #if IS_KINEMATIC
  10613. const float dist_2 = HYPOT2(target[X_AXIS], target[Y_AXIS]);
  10614. if (dist_2 > soft_endstop_radius_2) {
  10615. const float ratio = soft_endstop_radius / SQRT(dist_2); // 200 / 300 = 0.66
  10616. target[X_AXIS] *= ratio;
  10617. target[Y_AXIS] *= ratio;
  10618. }
  10619. #else
  10620. #if ENABLED(MIN_SOFTWARE_ENDSTOP_X)
  10621. NOLESS(target[X_AXIS], soft_endstop_min[X_AXIS]);
  10622. #endif
  10623. #if ENABLED(MIN_SOFTWARE_ENDSTOP_Y)
  10624. NOLESS(target[Y_AXIS], soft_endstop_min[Y_AXIS]);
  10625. #endif
  10626. #if ENABLED(MAX_SOFTWARE_ENDSTOP_X)
  10627. NOMORE(target[X_AXIS], soft_endstop_max[X_AXIS]);
  10628. #endif
  10629. #if ENABLED(MAX_SOFTWARE_ENDSTOP_Y)
  10630. NOMORE(target[Y_AXIS], soft_endstop_max[Y_AXIS]);
  10631. #endif
  10632. #endif
  10633. #if ENABLED(MIN_SOFTWARE_ENDSTOP_Z)
  10634. NOLESS(target[Z_AXIS], soft_endstop_min[Z_AXIS]);
  10635. #endif
  10636. #if ENABLED(MAX_SOFTWARE_ENDSTOP_Z)
  10637. NOMORE(target[Z_AXIS], soft_endstop_max[Z_AXIS]);
  10638. #endif
  10639. }
  10640. #endif
  10641. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  10642. #if ENABLED(ABL_BILINEAR_SUBDIVISION)
  10643. #define ABL_BG_SPACING(A) bilinear_grid_spacing_virt[A]
  10644. #define ABL_BG_FACTOR(A) bilinear_grid_factor_virt[A]
  10645. #define ABL_BG_POINTS_X ABL_GRID_POINTS_VIRT_X
  10646. #define ABL_BG_POINTS_Y ABL_GRID_POINTS_VIRT_Y
  10647. #define ABL_BG_GRID(X,Y) z_values_virt[X][Y]
  10648. #else
  10649. #define ABL_BG_SPACING(A) bilinear_grid_spacing[A]
  10650. #define ABL_BG_FACTOR(A) bilinear_grid_factor[A]
  10651. #define ABL_BG_POINTS_X GRID_MAX_POINTS_X
  10652. #define ABL_BG_POINTS_Y GRID_MAX_POINTS_Y
  10653. #define ABL_BG_GRID(X,Y) z_values[X][Y]
  10654. #endif
  10655. // Get the Z adjustment for non-linear bed leveling
  10656. float bilinear_z_offset(const float raw[XYZ]) {
  10657. static float z1, d2, z3, d4, L, D, ratio_x, ratio_y,
  10658. last_x = -999.999, last_y = -999.999;
  10659. // Whole units for the grid line indices. Constrained within bounds.
  10660. static int8_t gridx, gridy, nextx, nexty,
  10661. last_gridx = -99, last_gridy = -99;
  10662. // XY relative to the probed area
  10663. const float rx = raw[X_AXIS] - bilinear_start[X_AXIS],
  10664. ry = raw[Y_AXIS] - bilinear_start[Y_AXIS];
  10665. #if ENABLED(EXTRAPOLATE_BEYOND_GRID)
  10666. // Keep using the last grid box
  10667. #define FAR_EDGE_OR_BOX 2
  10668. #else
  10669. // Just use the grid far edge
  10670. #define FAR_EDGE_OR_BOX 1
  10671. #endif
  10672. if (last_x != rx) {
  10673. last_x = rx;
  10674. ratio_x = rx * ABL_BG_FACTOR(X_AXIS);
  10675. const float gx = constrain(FLOOR(ratio_x), 0, ABL_BG_POINTS_X - FAR_EDGE_OR_BOX);
  10676. ratio_x -= gx; // Subtract whole to get the ratio within the grid box
  10677. #if DISABLED(EXTRAPOLATE_BEYOND_GRID)
  10678. // Beyond the grid maintain height at grid edges
  10679. NOLESS(ratio_x, 0); // Never < 0.0. (> 1.0 is ok when nextx==gridx.)
  10680. #endif
  10681. gridx = gx;
  10682. nextx = min(gridx + 1, ABL_BG_POINTS_X - 1);
  10683. }
  10684. if (last_y != ry || last_gridx != gridx) {
  10685. if (last_y != ry) {
  10686. last_y = ry;
  10687. ratio_y = ry * ABL_BG_FACTOR(Y_AXIS);
  10688. const float gy = constrain(FLOOR(ratio_y), 0, ABL_BG_POINTS_Y - FAR_EDGE_OR_BOX);
  10689. ratio_y -= gy;
  10690. #if DISABLED(EXTRAPOLATE_BEYOND_GRID)
  10691. // Beyond the grid maintain height at grid edges
  10692. NOLESS(ratio_y, 0); // Never < 0.0. (> 1.0 is ok when nexty==gridy.)
  10693. #endif
  10694. gridy = gy;
  10695. nexty = min(gridy + 1, ABL_BG_POINTS_Y - 1);
  10696. }
  10697. if (last_gridx != gridx || last_gridy != gridy) {
  10698. last_gridx = gridx;
  10699. last_gridy = gridy;
  10700. // Z at the box corners
  10701. z1 = ABL_BG_GRID(gridx, gridy); // left-front
  10702. d2 = ABL_BG_GRID(gridx, nexty) - z1; // left-back (delta)
  10703. z3 = ABL_BG_GRID(nextx, gridy); // right-front
  10704. d4 = ABL_BG_GRID(nextx, nexty) - z3; // right-back (delta)
  10705. }
  10706. // Bilinear interpolate. Needed since ry or gridx has changed.
  10707. L = z1 + d2 * ratio_y; // Linear interp. LF -> LB
  10708. const float R = z3 + d4 * ratio_y; // Linear interp. RF -> RB
  10709. D = R - L;
  10710. }
  10711. const float offset = L + ratio_x * D; // the offset almost always changes
  10712. /*
  10713. static float last_offset = 0;
  10714. if (FABS(last_offset - offset) > 0.2) {
  10715. SERIAL_ECHOPGM("Sudden Shift at ");
  10716. SERIAL_ECHOPAIR("x=", rx);
  10717. SERIAL_ECHOPAIR(" / ", bilinear_grid_spacing[X_AXIS]);
  10718. SERIAL_ECHOLNPAIR(" -> gridx=", gridx);
  10719. SERIAL_ECHOPAIR(" y=", ry);
  10720. SERIAL_ECHOPAIR(" / ", bilinear_grid_spacing[Y_AXIS]);
  10721. SERIAL_ECHOLNPAIR(" -> gridy=", gridy);
  10722. SERIAL_ECHOPAIR(" ratio_x=", ratio_x);
  10723. SERIAL_ECHOLNPAIR(" ratio_y=", ratio_y);
  10724. SERIAL_ECHOPAIR(" z1=", z1);
  10725. SERIAL_ECHOPAIR(" z2=", z2);
  10726. SERIAL_ECHOPAIR(" z3=", z3);
  10727. SERIAL_ECHOLNPAIR(" z4=", z4);
  10728. SERIAL_ECHOPAIR(" L=", L);
  10729. SERIAL_ECHOPAIR(" R=", R);
  10730. SERIAL_ECHOLNPAIR(" offset=", offset);
  10731. }
  10732. last_offset = offset;
  10733. //*/
  10734. return offset;
  10735. }
  10736. #endif // AUTO_BED_LEVELING_BILINEAR
  10737. #if ENABLED(DELTA)
  10738. /**
  10739. * Recalculate factors used for delta kinematics whenever
  10740. * settings have been changed (e.g., by M665).
  10741. */
  10742. void recalc_delta_settings() {
  10743. const float trt[ABC] = DELTA_RADIUS_TRIM_TOWER,
  10744. drt[ABC] = DELTA_DIAGONAL_ROD_TRIM_TOWER;
  10745. delta_tower[A_AXIS][X_AXIS] = cos(RADIANS(210 + delta_tower_angle_trim[A_AXIS])) * (delta_radius + trt[A_AXIS]); // front left tower
  10746. delta_tower[A_AXIS][Y_AXIS] = sin(RADIANS(210 + delta_tower_angle_trim[A_AXIS])) * (delta_radius + trt[A_AXIS]);
  10747. delta_tower[B_AXIS][X_AXIS] = cos(RADIANS(330 + delta_tower_angle_trim[B_AXIS])) * (delta_radius + trt[B_AXIS]); // front right tower
  10748. delta_tower[B_AXIS][Y_AXIS] = sin(RADIANS(330 + delta_tower_angle_trim[B_AXIS])) * (delta_radius + trt[B_AXIS]);
  10749. delta_tower[C_AXIS][X_AXIS] = cos(RADIANS( 90 + delta_tower_angle_trim[C_AXIS])) * (delta_radius + trt[C_AXIS]); // back middle tower
  10750. delta_tower[C_AXIS][Y_AXIS] = sin(RADIANS( 90 + delta_tower_angle_trim[C_AXIS])) * (delta_radius + trt[C_AXIS]);
  10751. delta_diagonal_rod_2_tower[A_AXIS] = sq(delta_diagonal_rod + drt[A_AXIS]);
  10752. delta_diagonal_rod_2_tower[B_AXIS] = sq(delta_diagonal_rod + drt[B_AXIS]);
  10753. delta_diagonal_rod_2_tower[C_AXIS] = sq(delta_diagonal_rod + drt[C_AXIS]);
  10754. update_software_endstops(Z_AXIS);
  10755. axis_homed[X_AXIS] = axis_homed[Y_AXIS] = axis_homed[Z_AXIS] = false;
  10756. }
  10757. #if ENABLED(DELTA_FAST_SQRT)
  10758. /**
  10759. * Fast inverse sqrt from Quake III Arena
  10760. * See: https://en.wikipedia.org/wiki/Fast_inverse_square_root
  10761. */
  10762. float Q_rsqrt(const float number) {
  10763. long i;
  10764. float x2, y;
  10765. const float threehalfs = 1.5f;
  10766. x2 = number * 0.5f;
  10767. y = number;
  10768. i = * ( long * ) &y; // evil floating point bit level hacking
  10769. i = 0x5F3759DF - ( i >> 1 ); // what the f***?
  10770. y = * ( float * ) &i;
  10771. y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
  10772. // y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
  10773. return y;
  10774. }
  10775. #endif
  10776. /**
  10777. * Delta Inverse Kinematics
  10778. *
  10779. * Calculate the tower positions for a given machine
  10780. * position, storing the result in the delta[] array.
  10781. *
  10782. * This is an expensive calculation, requiring 3 square
  10783. * roots per segmented linear move, and strains the limits
  10784. * of a Mega2560 with a Graphical Display.
  10785. *
  10786. * Suggested optimizations include:
  10787. *
  10788. * - Disable the home_offset (M206) and/or position_shift (G92)
  10789. * features to remove up to 12 float additions.
  10790. *
  10791. * - Use a fast-inverse-sqrt function and add the reciprocal.
  10792. * (see above)
  10793. */
  10794. #define DELTA_DEBUG() do { \
  10795. SERIAL_ECHOPAIR("cartesian X:", raw[X_AXIS]); \
  10796. SERIAL_ECHOPAIR(" Y:", raw[Y_AXIS]); \
  10797. SERIAL_ECHOLNPAIR(" Z:", raw[Z_AXIS]); \
  10798. SERIAL_ECHOPAIR("delta A:", delta[A_AXIS]); \
  10799. SERIAL_ECHOPAIR(" B:", delta[B_AXIS]); \
  10800. SERIAL_ECHOLNPAIR(" C:", delta[C_AXIS]); \
  10801. }while(0)
  10802. void inverse_kinematics(const float raw[XYZ]) {
  10803. DELTA_RAW_IK();
  10804. // DELTA_DEBUG();
  10805. }
  10806. /**
  10807. * Calculate the highest Z position where the
  10808. * effector has the full range of XY motion.
  10809. */
  10810. float delta_safe_distance_from_top() {
  10811. float cartesian[XYZ] = { 0, 0, 0 };
  10812. inverse_kinematics(cartesian);
  10813. float distance = delta[A_AXIS];
  10814. cartesian[Y_AXIS] = DELTA_PRINTABLE_RADIUS;
  10815. inverse_kinematics(cartesian);
  10816. return FABS(distance - delta[A_AXIS]);
  10817. }
  10818. /**
  10819. * Delta Forward Kinematics
  10820. *
  10821. * See the Wikipedia article "Trilateration"
  10822. * https://en.wikipedia.org/wiki/Trilateration
  10823. *
  10824. * Establish a new coordinate system in the plane of the
  10825. * three carriage points. This system has its origin at
  10826. * tower1, with tower2 on the X axis. Tower3 is in the X-Y
  10827. * plane with a Z component of zero.
  10828. * We will define unit vectors in this coordinate system
  10829. * in our original coordinate system. Then when we calculate
  10830. * the Xnew, Ynew and Znew values, we can translate back into
  10831. * the original system by moving along those unit vectors
  10832. * by the corresponding values.
  10833. *
  10834. * Variable names matched to Marlin, c-version, and avoid the
  10835. * use of any vector library.
  10836. *
  10837. * by Andreas Hardtung 2016-06-07
  10838. * based on a Java function from "Delta Robot Kinematics V3"
  10839. * by Steve Graves
  10840. *
  10841. * The result is stored in the cartes[] array.
  10842. */
  10843. void forward_kinematics_DELTA(float z1, float z2, float z3) {
  10844. // Create a vector in old coordinates along x axis of new coordinate
  10845. const float p12[] = {
  10846. delta_tower[B_AXIS][X_AXIS] - delta_tower[A_AXIS][X_AXIS],
  10847. delta_tower[B_AXIS][Y_AXIS] - delta_tower[A_AXIS][Y_AXIS],
  10848. z2 - z1
  10849. },
  10850. // Get the Magnitude of vector.
  10851. d = SQRT(sq(p12[0]) + sq(p12[1]) + sq(p12[2])),
  10852. // Create unit vector by dividing by magnitude.
  10853. ex[3] = { p12[0] / d, p12[1] / d, p12[2] / d },
  10854. // Get the vector from the origin of the new system to the third point.
  10855. p13[3] = {
  10856. delta_tower[C_AXIS][X_AXIS] - delta_tower[A_AXIS][X_AXIS],
  10857. delta_tower[C_AXIS][Y_AXIS] - delta_tower[A_AXIS][Y_AXIS],
  10858. z3 - z1
  10859. },
  10860. // Use the dot product to find the component of this vector on the X axis.
  10861. i = ex[0] * p13[0] + ex[1] * p13[1] + ex[2] * p13[2],
  10862. // Create a vector along the x axis that represents the x component of p13.
  10863. iex[] = { ex[0] * i, ex[1] * i, ex[2] * i };
  10864. // Subtract the X component from the original vector leaving only Y. We use the
  10865. // variable that will be the unit vector after we scale it.
  10866. float ey[3] = { p13[0] - iex[0], p13[1] - iex[1], p13[2] - iex[2] };
  10867. // The magnitude of Y component
  10868. const float j = SQRT(sq(ey[0]) + sq(ey[1]) + sq(ey[2]));
  10869. // Convert to a unit vector
  10870. ey[0] /= j; ey[1] /= j; ey[2] /= j;
  10871. // The cross product of the unit x and y is the unit z
  10872. // float[] ez = vectorCrossProd(ex, ey);
  10873. const float ez[3] = {
  10874. ex[1] * ey[2] - ex[2] * ey[1],
  10875. ex[2] * ey[0] - ex[0] * ey[2],
  10876. ex[0] * ey[1] - ex[1] * ey[0]
  10877. },
  10878. // We now have the d, i and j values defined in Wikipedia.
  10879. // Plug them into the equations defined in Wikipedia for Xnew, Ynew and Znew
  10880. Xnew = (delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[B_AXIS] + sq(d)) / (d * 2),
  10881. Ynew = ((delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[C_AXIS] + HYPOT2(i, j)) / 2 - i * Xnew) / j,
  10882. Znew = SQRT(delta_diagonal_rod_2_tower[A_AXIS] - HYPOT2(Xnew, Ynew));
  10883. // Start from the origin of the old coordinates and add vectors in the
  10884. // old coords that represent the Xnew, Ynew and Znew to find the point
  10885. // in the old system.
  10886. cartes[X_AXIS] = delta_tower[A_AXIS][X_AXIS] + ex[0] * Xnew + ey[0] * Ynew - ez[0] * Znew;
  10887. cartes[Y_AXIS] = delta_tower[A_AXIS][Y_AXIS] + ex[1] * Xnew + ey[1] * Ynew - ez[1] * Znew;
  10888. cartes[Z_AXIS] = z1 + ex[2] * Xnew + ey[2] * Ynew - ez[2] * Znew;
  10889. }
  10890. void forward_kinematics_DELTA(float point[ABC]) {
  10891. forward_kinematics_DELTA(point[A_AXIS], point[B_AXIS], point[C_AXIS]);
  10892. }
  10893. #endif // DELTA
  10894. /**
  10895. * Get the stepper positions in the cartes[] array.
  10896. * Forward kinematics are applied for DELTA and SCARA.
  10897. *
  10898. * The result is in the current coordinate space with
  10899. * leveling applied. The coordinates need to be run through
  10900. * unapply_leveling to obtain machine coordinates suitable
  10901. * for current_position, etc.
  10902. */
  10903. void get_cartesian_from_steppers() {
  10904. #if ENABLED(DELTA)
  10905. forward_kinematics_DELTA(
  10906. stepper.get_axis_position_mm(A_AXIS),
  10907. stepper.get_axis_position_mm(B_AXIS),
  10908. stepper.get_axis_position_mm(C_AXIS)
  10909. );
  10910. #else
  10911. #if IS_SCARA
  10912. forward_kinematics_SCARA(
  10913. stepper.get_axis_position_degrees(A_AXIS),
  10914. stepper.get_axis_position_degrees(B_AXIS)
  10915. );
  10916. #else
  10917. cartes[X_AXIS] = stepper.get_axis_position_mm(X_AXIS);
  10918. cartes[Y_AXIS] = stepper.get_axis_position_mm(Y_AXIS);
  10919. #endif
  10920. cartes[Z_AXIS] = stepper.get_axis_position_mm(Z_AXIS);
  10921. #endif
  10922. }
  10923. /**
  10924. * Set the current_position for an axis based on
  10925. * the stepper positions, removing any leveling that
  10926. * may have been applied.
  10927. *
  10928. * To prevent small shifts in axis position always call
  10929. * SYNC_PLAN_POSITION_KINEMATIC after updating axes with this.
  10930. *
  10931. * To keep hosts in sync, always call report_current_position
  10932. * after updating the current_position.
  10933. */
  10934. void set_current_from_steppers_for_axis(const AxisEnum axis) {
  10935. get_cartesian_from_steppers();
  10936. #if PLANNER_LEVELING
  10937. planner.unapply_leveling(cartes);
  10938. #endif
  10939. if (axis == ALL_AXES)
  10940. COPY(current_position, cartes);
  10941. else
  10942. current_position[axis] = cartes[axis];
  10943. }
  10944. #if IS_CARTESIAN
  10945. #if ENABLED(SEGMENT_LEVELED_MOVES)
  10946. /**
  10947. * Prepare a segmented move on a CARTESIAN setup.
  10948. *
  10949. * This calls planner.buffer_line several times, adding
  10950. * small incremental moves. This allows the planner to
  10951. * apply more detailed bed leveling to the full move.
  10952. */
  10953. inline void segmented_line_to_destination(const float &fr_mm_s, const float segment_size=LEVELED_SEGMENT_LENGTH) {
  10954. const float xdiff = destination[X_AXIS] - current_position[X_AXIS],
  10955. ydiff = destination[Y_AXIS] - current_position[Y_AXIS];
  10956. // If the move is only in Z/E don't split up the move
  10957. if (!xdiff && !ydiff) {
  10958. planner.buffer_line_kinematic(destination, fr_mm_s, active_extruder);
  10959. return;
  10960. }
  10961. // Remaining cartesian distances
  10962. const float zdiff = destination[Z_AXIS] - current_position[Z_AXIS],
  10963. ediff = destination[E_AXIS] - current_position[E_AXIS];
  10964. // Get the linear distance in XYZ
  10965. // If the move is very short, check the E move distance
  10966. // No E move either? Game over.
  10967. float cartesian_mm = SQRT(sq(xdiff) + sq(ydiff) + sq(zdiff));
  10968. if (UNEAR_ZERO(cartesian_mm)) cartesian_mm = FABS(ediff);
  10969. if (UNEAR_ZERO(cartesian_mm)) return;
  10970. // The length divided by the segment size
  10971. // At least one segment is required
  10972. uint16_t segments = cartesian_mm / segment_size;
  10973. NOLESS(segments, 1);
  10974. // The approximate length of each segment
  10975. const float inv_segments = 1.0 / float(segments),
  10976. segment_distance[XYZE] = {
  10977. xdiff * inv_segments,
  10978. ydiff * inv_segments,
  10979. zdiff * inv_segments,
  10980. ediff * inv_segments
  10981. };
  10982. // SERIAL_ECHOPAIR("mm=", cartesian_mm);
  10983. // SERIAL_ECHOLNPAIR(" segments=", segments);
  10984. // Get the raw current position as starting point
  10985. float raw[XYZE];
  10986. COPY(raw, current_position);
  10987. // Calculate and execute the segments
  10988. while (--segments) {
  10989. static millis_t next_idle_ms = millis() + 200UL;
  10990. thermalManager.manage_heater(); // This returns immediately if not really needed.
  10991. if (ELAPSED(millis(), next_idle_ms)) {
  10992. next_idle_ms = millis() + 200UL;
  10993. idle();
  10994. }
  10995. LOOP_XYZE(i) raw[i] += segment_distance[i];
  10996. planner.buffer_line_kinematic(raw, fr_mm_s, active_extruder);
  10997. }
  10998. // Since segment_distance is only approximate,
  10999. // the final move must be to the exact destination.
  11000. planner.buffer_line_kinematic(destination, fr_mm_s, active_extruder);
  11001. }
  11002. #elif ENABLED(MESH_BED_LEVELING)
  11003. /**
  11004. * Prepare a mesh-leveled linear move in a Cartesian setup,
  11005. * splitting the move where it crosses mesh borders.
  11006. */
  11007. void mesh_line_to_destination(const float fr_mm_s, uint8_t x_splits=0xFF, uint8_t y_splits=0xFF) {
  11008. // Get current and destination cells for this line
  11009. int cx1 = mbl.cell_index_x(current_position[X_AXIS]),
  11010. cy1 = mbl.cell_index_y(current_position[Y_AXIS]),
  11011. cx2 = mbl.cell_index_x(destination[X_AXIS]),
  11012. cy2 = mbl.cell_index_y(destination[Y_AXIS]);
  11013. NOMORE(cx1, GRID_MAX_POINTS_X - 2);
  11014. NOMORE(cy1, GRID_MAX_POINTS_Y - 2);
  11015. NOMORE(cx2, GRID_MAX_POINTS_X - 2);
  11016. NOMORE(cy2, GRID_MAX_POINTS_Y - 2);
  11017. // Start and end in the same cell? No split needed.
  11018. if (cx1 == cx2 && cy1 == cy2) {
  11019. buffer_line_to_destination(fr_mm_s);
  11020. set_current_from_destination();
  11021. return;
  11022. }
  11023. #define MBL_SEGMENT_END(A) (current_position[A ##_AXIS] + (destination[A ##_AXIS] - current_position[A ##_AXIS]) * normalized_dist)
  11024. float normalized_dist, end[XYZE];
  11025. const int8_t gcx = max(cx1, cx2), gcy = max(cy1, cy2);
  11026. // Crosses on the X and not already split on this X?
  11027. // The x_splits flags are insurance against rounding errors.
  11028. if (cx2 != cx1 && TEST(x_splits, gcx)) {
  11029. // Split on the X grid line
  11030. CBI(x_splits, gcx);
  11031. COPY(end, destination);
  11032. destination[X_AXIS] = mbl.index_to_xpos[gcx];
  11033. normalized_dist = (destination[X_AXIS] - current_position[X_AXIS]) / (end[X_AXIS] - current_position[X_AXIS]);
  11034. destination[Y_AXIS] = MBL_SEGMENT_END(Y);
  11035. }
  11036. // Crosses on the Y and not already split on this Y?
  11037. else if (cy2 != cy1 && TEST(y_splits, gcy)) {
  11038. // Split on the Y grid line
  11039. CBI(y_splits, gcy);
  11040. COPY(end, destination);
  11041. destination[Y_AXIS] = mbl.index_to_ypos[gcy];
  11042. normalized_dist = (destination[Y_AXIS] - current_position[Y_AXIS]) / (end[Y_AXIS] - current_position[Y_AXIS]);
  11043. destination[X_AXIS] = MBL_SEGMENT_END(X);
  11044. }
  11045. else {
  11046. // Must already have been split on these border(s)
  11047. // This should be a rare case.
  11048. buffer_line_to_destination(fr_mm_s);
  11049. set_current_from_destination();
  11050. return;
  11051. }
  11052. destination[Z_AXIS] = MBL_SEGMENT_END(Z);
  11053. destination[E_AXIS] = MBL_SEGMENT_END(E);
  11054. // Do the split and look for more borders
  11055. mesh_line_to_destination(fr_mm_s, x_splits, y_splits);
  11056. // Restore destination from stack
  11057. COPY(destination, end);
  11058. mesh_line_to_destination(fr_mm_s, x_splits, y_splits);
  11059. }
  11060. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  11061. #define CELL_INDEX(A,V) ((V - bilinear_start[A##_AXIS]) * ABL_BG_FACTOR(A##_AXIS))
  11062. /**
  11063. * Prepare a bilinear-leveled linear move on Cartesian,
  11064. * splitting the move where it crosses grid borders.
  11065. */
  11066. void bilinear_line_to_destination(const float fr_mm_s, uint16_t x_splits=0xFFFF, uint16_t y_splits=0xFFFF) {
  11067. // Get current and destination cells for this line
  11068. int cx1 = CELL_INDEX(X, current_position[X_AXIS]),
  11069. cy1 = CELL_INDEX(Y, current_position[Y_AXIS]),
  11070. cx2 = CELL_INDEX(X, destination[X_AXIS]),
  11071. cy2 = CELL_INDEX(Y, destination[Y_AXIS]);
  11072. cx1 = constrain(cx1, 0, ABL_BG_POINTS_X - 2);
  11073. cy1 = constrain(cy1, 0, ABL_BG_POINTS_Y - 2);
  11074. cx2 = constrain(cx2, 0, ABL_BG_POINTS_X - 2);
  11075. cy2 = constrain(cy2, 0, ABL_BG_POINTS_Y - 2);
  11076. // Start and end in the same cell? No split needed.
  11077. if (cx1 == cx2 && cy1 == cy2) {
  11078. buffer_line_to_destination(fr_mm_s);
  11079. set_current_from_destination();
  11080. return;
  11081. }
  11082. #define LINE_SEGMENT_END(A) (current_position[A ##_AXIS] + (destination[A ##_AXIS] - current_position[A ##_AXIS]) * normalized_dist)
  11083. float normalized_dist, end[XYZE];
  11084. const int8_t gcx = max(cx1, cx2), gcy = max(cy1, cy2);
  11085. // Crosses on the X and not already split on this X?
  11086. // The x_splits flags are insurance against rounding errors.
  11087. if (cx2 != cx1 && TEST(x_splits, gcx)) {
  11088. // Split on the X grid line
  11089. CBI(x_splits, gcx);
  11090. COPY(end, destination);
  11091. destination[X_AXIS] = bilinear_start[X_AXIS] + ABL_BG_SPACING(X_AXIS) * gcx;
  11092. normalized_dist = (destination[X_AXIS] - current_position[X_AXIS]) / (end[X_AXIS] - current_position[X_AXIS]);
  11093. destination[Y_AXIS] = LINE_SEGMENT_END(Y);
  11094. }
  11095. // Crosses on the Y and not already split on this Y?
  11096. else if (cy2 != cy1 && TEST(y_splits, gcy)) {
  11097. // Split on the Y grid line
  11098. CBI(y_splits, gcy);
  11099. COPY(end, destination);
  11100. destination[Y_AXIS] = bilinear_start[Y_AXIS] + ABL_BG_SPACING(Y_AXIS) * gcy;
  11101. normalized_dist = (destination[Y_AXIS] - current_position[Y_AXIS]) / (end[Y_AXIS] - current_position[Y_AXIS]);
  11102. destination[X_AXIS] = LINE_SEGMENT_END(X);
  11103. }
  11104. else {
  11105. // Must already have been split on these border(s)
  11106. // This should be a rare case.
  11107. buffer_line_to_destination(fr_mm_s);
  11108. set_current_from_destination();
  11109. return;
  11110. }
  11111. destination[Z_AXIS] = LINE_SEGMENT_END(Z);
  11112. destination[E_AXIS] = LINE_SEGMENT_END(E);
  11113. // Do the split and look for more borders
  11114. bilinear_line_to_destination(fr_mm_s, x_splits, y_splits);
  11115. // Restore destination from stack
  11116. COPY(destination, end);
  11117. bilinear_line_to_destination(fr_mm_s, x_splits, y_splits);
  11118. }
  11119. #endif // AUTO_BED_LEVELING_BILINEAR
  11120. #endif // IS_CARTESIAN
  11121. #if !UBL_SEGMENTED
  11122. #if IS_KINEMATIC
  11123. /**
  11124. * Prepare a linear move in a DELTA or SCARA setup.
  11125. *
  11126. * This calls planner.buffer_line several times, adding
  11127. * small incremental moves for DELTA or SCARA.
  11128. *
  11129. * For Unified Bed Leveling (Delta or Segmented Cartesian)
  11130. * the ubl.prepare_segmented_line_to method replaces this.
  11131. */
  11132. inline bool prepare_kinematic_move_to(const float (&rtarget)[XYZE]) {
  11133. // Get the top feedrate of the move in the XY plane
  11134. const float _feedrate_mm_s = MMS_SCALED(feedrate_mm_s);
  11135. const float xdiff = rtarget[X_AXIS] - current_position[X_AXIS],
  11136. ydiff = rtarget[Y_AXIS] - current_position[Y_AXIS];
  11137. // If the move is only in Z/E don't split up the move
  11138. if (!xdiff && !ydiff) {
  11139. planner.buffer_line_kinematic(rtarget, _feedrate_mm_s, active_extruder);
  11140. return false;
  11141. }
  11142. // Fail if attempting move outside printable radius
  11143. if (!position_is_reachable(rtarget[X_AXIS], rtarget[Y_AXIS])) return true;
  11144. // Remaining cartesian distances
  11145. const float zdiff = rtarget[Z_AXIS] - current_position[Z_AXIS],
  11146. ediff = rtarget[E_AXIS] - current_position[E_AXIS];
  11147. // Get the linear distance in XYZ
  11148. // If the move is very short, check the E move distance
  11149. // No E move either? Game over.
  11150. float cartesian_mm = SQRT(sq(xdiff) + sq(ydiff) + sq(zdiff));
  11151. if (UNEAR_ZERO(cartesian_mm)) cartesian_mm = FABS(ediff);
  11152. if (UNEAR_ZERO(cartesian_mm)) return true;
  11153. // Minimum number of seconds to move the given distance
  11154. const float seconds = cartesian_mm / _feedrate_mm_s;
  11155. // The number of segments-per-second times the duration
  11156. // gives the number of segments
  11157. uint16_t segments = delta_segments_per_second * seconds;
  11158. // For SCARA minimum segment size is 0.25mm
  11159. #if IS_SCARA
  11160. NOMORE(segments, cartesian_mm * 4);
  11161. #endif
  11162. // At least one segment is required
  11163. NOLESS(segments, 1);
  11164. // The approximate length of each segment
  11165. const float inv_segments = 1.0 / float(segments),
  11166. segment_distance[XYZE] = {
  11167. xdiff * inv_segments,
  11168. ydiff * inv_segments,
  11169. zdiff * inv_segments,
  11170. ediff * inv_segments
  11171. };
  11172. // SERIAL_ECHOPAIR("mm=", cartesian_mm);
  11173. // SERIAL_ECHOPAIR(" seconds=", seconds);
  11174. // SERIAL_ECHOLNPAIR(" segments=", segments);
  11175. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  11176. // SCARA needs to scale the feed rate from mm/s to degrees/s
  11177. const float inv_segment_length = min(10.0, float(segments) / cartesian_mm), // 1/mm/segs
  11178. inverse_secs = inv_segment_length * _feedrate_mm_s;
  11179. float oldA = stepper.get_axis_position_degrees(A_AXIS),
  11180. oldB = stepper.get_axis_position_degrees(B_AXIS);
  11181. #endif
  11182. // Get the current position as starting point
  11183. float raw[XYZE];
  11184. COPY(raw, current_position);
  11185. // Calculate and execute the segments
  11186. while (--segments) {
  11187. static millis_t next_idle_ms = millis() + 200UL;
  11188. thermalManager.manage_heater(); // This returns immediately if not really needed.
  11189. if (ELAPSED(millis(), next_idle_ms)) {
  11190. next_idle_ms = millis() + 200UL;
  11191. idle();
  11192. }
  11193. LOOP_XYZE(i) raw[i] += segment_distance[i];
  11194. #if ENABLED(DELTA)
  11195. DELTA_RAW_IK(); // Delta can inline its kinematics
  11196. #else
  11197. inverse_kinematics(raw);
  11198. #endif
  11199. ADJUST_DELTA(raw); // Adjust Z if bed leveling is enabled
  11200. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  11201. // For SCARA scale the feed rate from mm/s to degrees/s
  11202. // Use ratio between the length of the move and the larger angle change
  11203. const float adiff = abs(delta[A_AXIS] - oldA),
  11204. bdiff = abs(delta[B_AXIS] - oldB);
  11205. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], raw[E_AXIS], max(adiff, bdiff) * inverse_secs, active_extruder);
  11206. oldA = delta[A_AXIS];
  11207. oldB = delta[B_AXIS];
  11208. #else
  11209. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], raw[E_AXIS], _feedrate_mm_s, active_extruder);
  11210. #endif
  11211. }
  11212. // Since segment_distance is only approximate,
  11213. // the final move must be to the exact destination.
  11214. #if IS_SCARA && ENABLED(SCARA_FEEDRATE_SCALING)
  11215. // For SCARA scale the feed rate from mm/s to degrees/s
  11216. // With segments > 1 length is 1 segment, otherwise total length
  11217. inverse_kinematics(rtarget);
  11218. ADJUST_DELTA(rtarget);
  11219. const float adiff = abs(delta[A_AXIS] - oldA),
  11220. bdiff = abs(delta[B_AXIS] - oldB);
  11221. planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], raw[E_AXIS], max(adiff, bdiff) * inverse_secs, active_extruder);
  11222. #else
  11223. planner.buffer_line_kinematic(rtarget, _feedrate_mm_s, active_extruder);
  11224. #endif
  11225. return false;
  11226. }
  11227. #else // !IS_KINEMATIC
  11228. /**
  11229. * Prepare a linear move in a Cartesian setup.
  11230. *
  11231. * When a mesh-based leveling system is active, moves are segmented
  11232. * according to the configuration of the leveling system.
  11233. *
  11234. * Returns true if current_position[] was set to destination[]
  11235. */
  11236. inline bool prepare_move_to_destination_cartesian() {
  11237. #if HAS_MESH
  11238. if (planner.leveling_active && planner.leveling_active_at_z(destination[Z_AXIS])) {
  11239. #if ENABLED(AUTO_BED_LEVELING_UBL)
  11240. ubl.line_to_destination_cartesian(MMS_SCALED(feedrate_mm_s), active_extruder); // UBL's motion routine needs to know about
  11241. return true; // all moves, including Z-only moves.
  11242. #elif ENABLED(SEGMENT_LEVELED_MOVES)
  11243. segmented_line_to_destination(MMS_SCALED(feedrate_mm_s));
  11244. return false;
  11245. #else
  11246. /**
  11247. * For MBL and ABL-BILINEAR only segment moves when X or Y are involved.
  11248. * Otherwise fall through to do a direct single move.
  11249. */
  11250. if (current_position[X_AXIS] != destination[X_AXIS] || current_position[Y_AXIS] != destination[Y_AXIS]) {
  11251. #if ENABLED(MESH_BED_LEVELING)
  11252. mesh_line_to_destination(MMS_SCALED(feedrate_mm_s));
  11253. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  11254. bilinear_line_to_destination(MMS_SCALED(feedrate_mm_s));
  11255. #endif
  11256. return true;
  11257. }
  11258. #endif
  11259. }
  11260. #endif // HAS_MESH
  11261. buffer_line_to_destination(MMS_SCALED(feedrate_mm_s));
  11262. return false;
  11263. }
  11264. #endif // !IS_KINEMATIC
  11265. #endif // !UBL_SEGMENTED
  11266. #if ENABLED(DUAL_X_CARRIAGE)
  11267. /**
  11268. * Unpark the carriage, if needed
  11269. */
  11270. inline bool dual_x_carriage_unpark() {
  11271. if (active_extruder_parked)
  11272. switch (dual_x_carriage_mode) {
  11273. case DXC_FULL_CONTROL_MODE: break;
  11274. case DXC_AUTO_PARK_MODE:
  11275. if (current_position[E_AXIS] == destination[E_AXIS]) {
  11276. // This is a travel move (with no extrusion)
  11277. // Skip it, but keep track of the current position
  11278. // (so it can be used as the start of the next non-travel move)
  11279. if (delayed_move_time != 0xFFFFFFFFUL) {
  11280. set_current_from_destination();
  11281. NOLESS(raised_parked_position[Z_AXIS], destination[Z_AXIS]);
  11282. delayed_move_time = millis();
  11283. return true;
  11284. }
  11285. }
  11286. // unpark extruder: 1) raise, 2) move into starting XY position, 3) lower
  11287. for (uint8_t i = 0; i < 3; i++)
  11288. planner.buffer_line(
  11289. i == 0 ? raised_parked_position[X_AXIS] : current_position[X_AXIS],
  11290. i == 0 ? raised_parked_position[Y_AXIS] : current_position[Y_AXIS],
  11291. i == 2 ? current_position[Z_AXIS] : raised_parked_position[Z_AXIS],
  11292. current_position[E_AXIS],
  11293. i == 1 ? PLANNER_XY_FEEDRATE() : planner.max_feedrate_mm_s[Z_AXIS],
  11294. active_extruder
  11295. );
  11296. delayed_move_time = 0;
  11297. active_extruder_parked = false;
  11298. #if ENABLED(DEBUG_LEVELING_FEATURE)
  11299. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Clear active_extruder_parked");
  11300. #endif
  11301. break;
  11302. case DXC_DUPLICATION_MODE:
  11303. if (active_extruder == 0) {
  11304. #if ENABLED(DEBUG_LEVELING_FEATURE)
  11305. if (DEBUGGING(LEVELING)) {
  11306. SERIAL_ECHOPAIR("Set planner X", inactive_extruder_x_pos);
  11307. SERIAL_ECHOLNPAIR(" ... Line to X", current_position[X_AXIS] + duplicate_extruder_x_offset);
  11308. }
  11309. #endif
  11310. // move duplicate extruder into correct duplication position.
  11311. planner.set_position_mm(
  11312. inactive_extruder_x_pos,
  11313. current_position[Y_AXIS],
  11314. current_position[Z_AXIS],
  11315. current_position[E_AXIS]
  11316. );
  11317. planner.buffer_line(
  11318. current_position[X_AXIS] + duplicate_extruder_x_offset,
  11319. current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS],
  11320. planner.max_feedrate_mm_s[X_AXIS], 1
  11321. );
  11322. SYNC_PLAN_POSITION_KINEMATIC();
  11323. stepper.synchronize();
  11324. extruder_duplication_enabled = true;
  11325. active_extruder_parked = false;
  11326. #if ENABLED(DEBUG_LEVELING_FEATURE)
  11327. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Set extruder_duplication_enabled\nClear active_extruder_parked");
  11328. #endif
  11329. }
  11330. else {
  11331. #if ENABLED(DEBUG_LEVELING_FEATURE)
  11332. if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("Active extruder not 0");
  11333. #endif
  11334. }
  11335. break;
  11336. }
  11337. return false;
  11338. }
  11339. #endif // DUAL_X_CARRIAGE
  11340. /**
  11341. * Prepare a single move and get ready for the next one
  11342. *
  11343. * This may result in several calls to planner.buffer_line to
  11344. * do smaller moves for DELTA, SCARA, mesh moves, etc.
  11345. *
  11346. * Make sure current_position[E] and destination[E] are good
  11347. * before calling or cold/lengthy extrusion may get missed.
  11348. */
  11349. void prepare_move_to_destination() {
  11350. clamp_to_software_endstops(destination);
  11351. refresh_cmd_timeout();
  11352. #if ENABLED(PREVENT_COLD_EXTRUSION) || ENABLED(PREVENT_LENGTHY_EXTRUDE)
  11353. if (!DEBUGGING(DRYRUN)) {
  11354. if (destination[E_AXIS] != current_position[E_AXIS]) {
  11355. #if ENABLED(PREVENT_COLD_EXTRUSION)
  11356. if (thermalManager.tooColdToExtrude(active_extruder)) {
  11357. current_position[E_AXIS] = destination[E_AXIS]; // Behave as if the move really took place, but ignore E part
  11358. SERIAL_ECHO_START();
  11359. SERIAL_ECHOLNPGM(MSG_ERR_COLD_EXTRUDE_STOP);
  11360. }
  11361. #endif // PREVENT_COLD_EXTRUSION
  11362. #if ENABLED(PREVENT_LENGTHY_EXTRUDE)
  11363. if (FABS(destination[E_AXIS] - current_position[E_AXIS]) * planner.e_factor[active_extruder] > (EXTRUDE_MAXLENGTH)) {
  11364. current_position[E_AXIS] = destination[E_AXIS]; // Behave as if the move really took place, but ignore E part
  11365. SERIAL_ECHO_START();
  11366. SERIAL_ECHOLNPGM(MSG_ERR_LONG_EXTRUDE_STOP);
  11367. }
  11368. #endif // PREVENT_LENGTHY_EXTRUDE
  11369. }
  11370. }
  11371. #endif
  11372. #if ENABLED(DUAL_X_CARRIAGE)
  11373. if (dual_x_carriage_unpark()) return;
  11374. #endif
  11375. if (
  11376. #if UBL_SEGMENTED
  11377. ubl.prepare_segmented_line_to(destination, MMS_SCALED(feedrate_mm_s))
  11378. #elif IS_KINEMATIC
  11379. prepare_kinematic_move_to(destination)
  11380. #else
  11381. prepare_move_to_destination_cartesian()
  11382. #endif
  11383. ) return;
  11384. set_current_from_destination();
  11385. }
  11386. #if ENABLED(ARC_SUPPORT)
  11387. #if N_ARC_CORRECTION < 1
  11388. #undef N_ARC_CORRECTION
  11389. #define N_ARC_CORRECTION 1
  11390. #endif
  11391. /**
  11392. * Plan an arc in 2 dimensions
  11393. *
  11394. * The arc is approximated by generating many small linear segments.
  11395. * The length of each segment is configured in MM_PER_ARC_SEGMENT (Default 1mm)
  11396. * Arcs should only be made relatively large (over 5mm), as larger arcs with
  11397. * larger segments will tend to be more efficient. Your slicer should have
  11398. * options for G2/G3 arc generation. In future these options may be GCode tunable.
  11399. */
  11400. void plan_arc(
  11401. const float (&cart)[XYZE], // Destination position
  11402. const float (&offset)[2], // Center of rotation relative to current_position
  11403. const bool clockwise // Clockwise?
  11404. ) {
  11405. #if ENABLED(CNC_WORKSPACE_PLANES)
  11406. AxisEnum p_axis, q_axis, l_axis;
  11407. switch (workspace_plane) {
  11408. default:
  11409. case PLANE_XY: p_axis = X_AXIS; q_axis = Y_AXIS; l_axis = Z_AXIS; break;
  11410. case PLANE_ZX: p_axis = Z_AXIS; q_axis = X_AXIS; l_axis = Y_AXIS; break;
  11411. case PLANE_YZ: p_axis = Y_AXIS; q_axis = Z_AXIS; l_axis = X_AXIS; break;
  11412. }
  11413. #else
  11414. constexpr AxisEnum p_axis = X_AXIS, q_axis = Y_AXIS, l_axis = Z_AXIS;
  11415. #endif
  11416. // Radius vector from center to current location
  11417. float r_P = -offset[0], r_Q = -offset[1];
  11418. const float radius = HYPOT(r_P, r_Q),
  11419. center_P = current_position[p_axis] - r_P,
  11420. center_Q = current_position[q_axis] - r_Q,
  11421. rt_X = cart[p_axis] - center_P,
  11422. rt_Y = cart[q_axis] - center_Q,
  11423. linear_travel = cart[l_axis] - current_position[l_axis],
  11424. extruder_travel = cart[E_AXIS] - current_position[E_AXIS];
  11425. // CCW angle of rotation between position and target from the circle center. Only one atan2() trig computation required.
  11426. float angular_travel = ATAN2(r_P * rt_Y - r_Q * rt_X, r_P * rt_X + r_Q * rt_Y);
  11427. if (angular_travel < 0) angular_travel += RADIANS(360);
  11428. if (clockwise) angular_travel -= RADIANS(360);
  11429. // Make a circle if the angular rotation is 0 and the target is current position
  11430. if (angular_travel == 0 && current_position[p_axis] == cart[p_axis] && current_position[q_axis] == cart[q_axis])
  11431. angular_travel = RADIANS(360);
  11432. const float mm_of_travel = HYPOT(angular_travel * radius, FABS(linear_travel));
  11433. if (mm_of_travel < 0.001) return;
  11434. uint16_t segments = FLOOR(mm_of_travel / (MM_PER_ARC_SEGMENT));
  11435. NOLESS(segments, 1);
  11436. /**
  11437. * Vector rotation by transformation matrix: r is the original vector, r_T is the rotated vector,
  11438. * and phi is the angle of rotation. Based on the solution approach by Jens Geisler.
  11439. * r_T = [cos(phi) -sin(phi);
  11440. * sin(phi) cos(phi)] * r ;
  11441. *
  11442. * For arc generation, the center of the circle is the axis of rotation and the radius vector is
  11443. * defined from the circle center to the initial position. Each line segment is formed by successive
  11444. * vector rotations. This requires only two cos() and sin() computations to form the rotation
  11445. * matrix for the duration of the entire arc. Error may accumulate from numerical round-off, since
  11446. * all double numbers are single precision on the Arduino. (True double precision will not have
  11447. * round off issues for CNC applications.) Single precision error can accumulate to be greater than
  11448. * tool precision in some cases. Therefore, arc path correction is implemented.
  11449. *
  11450. * Small angle approximation may be used to reduce computation overhead further. This approximation
  11451. * holds for everything, but very small circles and large MM_PER_ARC_SEGMENT values. In other words,
  11452. * theta_per_segment would need to be greater than 0.1 rad and N_ARC_CORRECTION would need to be large
  11453. * to cause an appreciable drift error. N_ARC_CORRECTION~=25 is more than small enough to correct for
  11454. * numerical drift error. N_ARC_CORRECTION may be on the order a hundred(s) before error becomes an
  11455. * issue for CNC machines with the single precision Arduino calculations.
  11456. *
  11457. * This approximation also allows plan_arc to immediately insert a line segment into the planner
  11458. * without the initial overhead of computing cos() or sin(). By the time the arc needs to be applied
  11459. * a correction, the planner should have caught up to the lag caused by the initial plan_arc overhead.
  11460. * This is important when there are successive arc motions.
  11461. */
  11462. // Vector rotation matrix values
  11463. float arc_target[XYZE];
  11464. const float theta_per_segment = angular_travel / segments,
  11465. linear_per_segment = linear_travel / segments,
  11466. extruder_per_segment = extruder_travel / segments,
  11467. sin_T = theta_per_segment,
  11468. cos_T = 1 - 0.5 * sq(theta_per_segment); // Small angle approximation
  11469. // Initialize the linear axis
  11470. arc_target[l_axis] = current_position[l_axis];
  11471. // Initialize the extruder axis
  11472. arc_target[E_AXIS] = current_position[E_AXIS];
  11473. const float fr_mm_s = MMS_SCALED(feedrate_mm_s);
  11474. millis_t next_idle_ms = millis() + 200UL;
  11475. #if N_ARC_CORRECTION > 1
  11476. int8_t arc_recalc_count = N_ARC_CORRECTION;
  11477. #endif
  11478. for (uint16_t i = 1; i < segments; i++) { // Iterate (segments-1) times
  11479. thermalManager.manage_heater();
  11480. if (ELAPSED(millis(), next_idle_ms)) {
  11481. next_idle_ms = millis() + 200UL;
  11482. idle();
  11483. }
  11484. #if N_ARC_CORRECTION > 1
  11485. if (--arc_recalc_count) {
  11486. // Apply vector rotation matrix to previous r_P / 1
  11487. const float r_new_Y = r_P * sin_T + r_Q * cos_T;
  11488. r_P = r_P * cos_T - r_Q * sin_T;
  11489. r_Q = r_new_Y;
  11490. }
  11491. else
  11492. #endif
  11493. {
  11494. #if N_ARC_CORRECTION > 1
  11495. arc_recalc_count = N_ARC_CORRECTION;
  11496. #endif
  11497. // Arc correction to radius vector. Computed only every N_ARC_CORRECTION increments.
  11498. // Compute exact location by applying transformation matrix from initial radius vector(=-offset).
  11499. // To reduce stuttering, the sin and cos could be computed at different times.
  11500. // For now, compute both at the same time.
  11501. const float cos_Ti = cos(i * theta_per_segment), sin_Ti = sin(i * theta_per_segment);
  11502. r_P = -offset[0] * cos_Ti + offset[1] * sin_Ti;
  11503. r_Q = -offset[0] * sin_Ti - offset[1] * cos_Ti;
  11504. }
  11505. // Update arc_target location
  11506. arc_target[p_axis] = center_P + r_P;
  11507. arc_target[q_axis] = center_Q + r_Q;
  11508. arc_target[l_axis] += linear_per_segment;
  11509. arc_target[E_AXIS] += extruder_per_segment;
  11510. clamp_to_software_endstops(arc_target);
  11511. planner.buffer_line_kinematic(arc_target, fr_mm_s, active_extruder);
  11512. }
  11513. // Ensure last segment arrives at target location.
  11514. planner.buffer_line_kinematic(cart, fr_mm_s, active_extruder);
  11515. // As far as the parser is concerned, the position is now == target. In reality the
  11516. // motion control system might still be processing the action and the real tool position
  11517. // in any intermediate location.
  11518. set_current_from_destination();
  11519. } // plan_arc
  11520. #endif // ARC_SUPPORT
  11521. #if ENABLED(BEZIER_CURVE_SUPPORT)
  11522. void plan_cubic_move(const float (&offset)[4]) {
  11523. cubic_b_spline(current_position, destination, offset, MMS_SCALED(feedrate_mm_s), active_extruder);
  11524. // As far as the parser is concerned, the position is now == destination. In reality the
  11525. // motion control system might still be processing the action and the real tool position
  11526. // in any intermediate location.
  11527. set_current_from_destination();
  11528. }
  11529. #endif // BEZIER_CURVE_SUPPORT
  11530. #if ENABLED(USE_CONTROLLER_FAN)
  11531. void controllerFan() {
  11532. static millis_t lastMotorOn = 0, // Last time a motor was turned on
  11533. nextMotorCheck = 0; // Last time the state was checked
  11534. const millis_t ms = millis();
  11535. if (ELAPSED(ms, nextMotorCheck)) {
  11536. nextMotorCheck = ms + 2500UL; // Not a time critical function, so only check every 2.5s
  11537. if (X_ENABLE_READ == X_ENABLE_ON || Y_ENABLE_READ == Y_ENABLE_ON || Z_ENABLE_READ == Z_ENABLE_ON || thermalManager.soft_pwm_amount_bed > 0
  11538. || E0_ENABLE_READ == E_ENABLE_ON // If any of the drivers are enabled...
  11539. #if E_STEPPERS > 1
  11540. || E1_ENABLE_READ == E_ENABLE_ON
  11541. #if HAS_X2_ENABLE
  11542. || X2_ENABLE_READ == X_ENABLE_ON
  11543. #endif
  11544. #if E_STEPPERS > 2
  11545. || E2_ENABLE_READ == E_ENABLE_ON
  11546. #if E_STEPPERS > 3
  11547. || E3_ENABLE_READ == E_ENABLE_ON
  11548. #if E_STEPPERS > 4
  11549. || E4_ENABLE_READ == E_ENABLE_ON
  11550. #endif // E_STEPPERS > 4
  11551. #endif // E_STEPPERS > 3
  11552. #endif // E_STEPPERS > 2
  11553. #endif // E_STEPPERS > 1
  11554. ) {
  11555. lastMotorOn = ms; //... set time to NOW so the fan will turn on
  11556. }
  11557. // Fan off if no steppers have been enabled for CONTROLLERFAN_SECS seconds
  11558. uint8_t speed = (!lastMotorOn || ELAPSED(ms, lastMotorOn + (CONTROLLERFAN_SECS) * 1000UL)) ? 0 : CONTROLLERFAN_SPEED;
  11559. // allows digital or PWM fan output to be used (see M42 handling)
  11560. WRITE(CONTROLLER_FAN_PIN, speed);
  11561. analogWrite(CONTROLLER_FAN_PIN, speed);
  11562. }
  11563. }
  11564. #endif // USE_CONTROLLER_FAN
  11565. #if ENABLED(MORGAN_SCARA)
  11566. /**
  11567. * Morgan SCARA Forward Kinematics. Results in cartes[].
  11568. * Maths and first version by QHARLEY.
  11569. * Integrated into Marlin and slightly restructured by Joachim Cerny.
  11570. */
  11571. void forward_kinematics_SCARA(const float &a, const float &b) {
  11572. float a_sin = sin(RADIANS(a)) * L1,
  11573. a_cos = cos(RADIANS(a)) * L1,
  11574. b_sin = sin(RADIANS(b)) * L2,
  11575. b_cos = cos(RADIANS(b)) * L2;
  11576. cartes[X_AXIS] = a_cos + b_cos + SCARA_OFFSET_X; //theta
  11577. cartes[Y_AXIS] = a_sin + b_sin + SCARA_OFFSET_Y; //theta+phi
  11578. /*
  11579. SERIAL_ECHOPAIR("SCARA FK Angle a=", a);
  11580. SERIAL_ECHOPAIR(" b=", b);
  11581. SERIAL_ECHOPAIR(" a_sin=", a_sin);
  11582. SERIAL_ECHOPAIR(" a_cos=", a_cos);
  11583. SERIAL_ECHOPAIR(" b_sin=", b_sin);
  11584. SERIAL_ECHOLNPAIR(" b_cos=", b_cos);
  11585. SERIAL_ECHOPAIR(" cartes[X_AXIS]=", cartes[X_AXIS]);
  11586. SERIAL_ECHOLNPAIR(" cartes[Y_AXIS]=", cartes[Y_AXIS]);
  11587. //*/
  11588. }
  11589. /**
  11590. * Morgan SCARA Inverse Kinematics. Results in delta[].
  11591. *
  11592. * See http://forums.reprap.org/read.php?185,283327
  11593. *
  11594. * Maths and first version by QHARLEY.
  11595. * Integrated into Marlin and slightly restructured by Joachim Cerny.
  11596. */
  11597. void inverse_kinematics(const float raw[XYZ]) {
  11598. static float C2, S2, SK1, SK2, THETA, PSI;
  11599. float sx = raw[X_AXIS] - SCARA_OFFSET_X, // Translate SCARA to standard X Y
  11600. sy = raw[Y_AXIS] - SCARA_OFFSET_Y; // With scaling factor.
  11601. if (L1 == L2)
  11602. C2 = HYPOT2(sx, sy) / L1_2_2 - 1;
  11603. else
  11604. C2 = (HYPOT2(sx, sy) - (L1_2 + L2_2)) / (2.0 * L1 * L2);
  11605. S2 = SQRT(1 - sq(C2));
  11606. // Unrotated Arm1 plus rotated Arm2 gives the distance from Center to End
  11607. SK1 = L1 + L2 * C2;
  11608. // Rotated Arm2 gives the distance from Arm1 to Arm2
  11609. SK2 = L2 * S2;
  11610. // Angle of Arm1 is the difference between Center-to-End angle and the Center-to-Elbow
  11611. THETA = ATAN2(SK1, SK2) - ATAN2(sx, sy);
  11612. // Angle of Arm2
  11613. PSI = ATAN2(S2, C2);
  11614. delta[A_AXIS] = DEGREES(THETA); // theta is support arm angle
  11615. delta[B_AXIS] = DEGREES(THETA + PSI); // equal to sub arm angle (inverted motor)
  11616. delta[C_AXIS] = raw[Z_AXIS];
  11617. /*
  11618. DEBUG_POS("SCARA IK", raw);
  11619. DEBUG_POS("SCARA IK", delta);
  11620. SERIAL_ECHOPAIR(" SCARA (x,y) ", sx);
  11621. SERIAL_ECHOPAIR(",", sy);
  11622. SERIAL_ECHOPAIR(" C2=", C2);
  11623. SERIAL_ECHOPAIR(" S2=", S2);
  11624. SERIAL_ECHOPAIR(" Theta=", THETA);
  11625. SERIAL_ECHOLNPAIR(" Phi=", PHI);
  11626. //*/
  11627. }
  11628. #endif // MORGAN_SCARA
  11629. #if ENABLED(TEMP_STAT_LEDS)
  11630. static bool red_led = false;
  11631. static millis_t next_status_led_update_ms = 0;
  11632. void handle_status_leds(void) {
  11633. if (ELAPSED(millis(), next_status_led_update_ms)) {
  11634. next_status_led_update_ms += 500; // Update every 0.5s
  11635. float max_temp = 0.0;
  11636. #if HAS_TEMP_BED
  11637. max_temp = MAX3(max_temp, thermalManager.degTargetBed(), thermalManager.degBed());
  11638. #endif
  11639. HOTEND_LOOP()
  11640. max_temp = MAX3(max_temp, thermalManager.degHotend(e), thermalManager.degTargetHotend(e));
  11641. const bool new_led = (max_temp > 55.0) ? true : (max_temp < 54.0) ? false : red_led;
  11642. if (new_led != red_led) {
  11643. red_led = new_led;
  11644. #if PIN_EXISTS(STAT_LED_RED)
  11645. WRITE(STAT_LED_RED_PIN, new_led ? HIGH : LOW);
  11646. #if PIN_EXISTS(STAT_LED_BLUE)
  11647. WRITE(STAT_LED_BLUE_PIN, new_led ? LOW : HIGH);
  11648. #endif
  11649. #else
  11650. WRITE(STAT_LED_BLUE_PIN, new_led ? HIGH : LOW);
  11651. #endif
  11652. }
  11653. }
  11654. }
  11655. #endif
  11656. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  11657. void handle_filament_runout() {
  11658. if (!filament_ran_out) {
  11659. filament_ran_out = true;
  11660. enqueue_and_echo_commands_P(PSTR(FILAMENT_RUNOUT_SCRIPT));
  11661. stepper.synchronize();
  11662. }
  11663. }
  11664. #endif // FILAMENT_RUNOUT_SENSOR
  11665. #if ENABLED(FAST_PWM_FAN)
  11666. void setPwmFrequency(uint8_t pin, int val) {
  11667. val &= 0x07;
  11668. switch (digitalPinToTimer(pin)) {
  11669. #ifdef TCCR0A
  11670. #if !AVR_AT90USB1286_FAMILY
  11671. case TIMER0A:
  11672. #endif
  11673. case TIMER0B: //_SET_CS(0, val);
  11674. break;
  11675. #endif
  11676. #ifdef TCCR1A
  11677. case TIMER1A: case TIMER1B: //_SET_CS(1, val);
  11678. break;
  11679. #endif
  11680. #if defined(TCCR2) || defined(TCCR2A)
  11681. #ifdef TCCR2
  11682. case TIMER2:
  11683. #endif
  11684. #ifdef TCCR2A
  11685. case TIMER2A: case TIMER2B:
  11686. #endif
  11687. _SET_CS(2, val); break;
  11688. #endif
  11689. #ifdef TCCR3A
  11690. case TIMER3A: case TIMER3B: case TIMER3C: _SET_CS(3, val); break;
  11691. #endif
  11692. #ifdef TCCR4A
  11693. case TIMER4A: case TIMER4B: case TIMER4C: _SET_CS(4, val); break;
  11694. #endif
  11695. #ifdef TCCR5A
  11696. case TIMER5A: case TIMER5B: case TIMER5C: _SET_CS(5, val); break;
  11697. #endif
  11698. }
  11699. }
  11700. #endif // FAST_PWM_FAN
  11701. void enable_all_steppers() {
  11702. enable_X();
  11703. enable_Y();
  11704. enable_Z();
  11705. enable_E0();
  11706. enable_E1();
  11707. enable_E2();
  11708. enable_E3();
  11709. enable_E4();
  11710. }
  11711. void disable_e_steppers() {
  11712. disable_E0();
  11713. disable_E1();
  11714. disable_E2();
  11715. disable_E3();
  11716. disable_E4();
  11717. }
  11718. void disable_all_steppers() {
  11719. disable_X();
  11720. disable_Y();
  11721. disable_Z();
  11722. disable_e_steppers();
  11723. }
  11724. #if ENABLED(MONITOR_DRIVER_STATUS)
  11725. /*
  11726. * Check for over temperature or short to ground error flags.
  11727. * Report and log warning of overtemperature condition.
  11728. * Reduce driver current in a persistent otpw condition.
  11729. * Keep track of otpw counter so we don't reduce current on a single instance,
  11730. * and so we don't repeatedly report warning before the condition is cleared.
  11731. */
  11732. struct TMC_driver_data {
  11733. uint32_t drv_status;
  11734. bool is_otpw;
  11735. bool is_ot;
  11736. bool is_error;
  11737. };
  11738. #if ENABLED(HAVE_TMC2130)
  11739. static uint32_t get_pwm_scale(TMC2130Stepper &st) { return st.PWM_SCALE(); }
  11740. static uint8_t get_status_response(TMC2130Stepper &st) { return st.status_response&0xF; }
  11741. static TMC_driver_data get_driver_data(TMC2130Stepper &st) {
  11742. constexpr uint32_t OTPW_bm = 0x4000000UL;
  11743. constexpr uint8_t OTPW_bp = 26;
  11744. constexpr uint32_t OT_bm = 0x2000000UL;
  11745. constexpr uint8_t OT_bp = 25;
  11746. constexpr uint8_t DRIVER_ERROR_bm = 0x2UL;
  11747. constexpr uint8_t DRIVER_ERROR_bp = 1;
  11748. TMC_driver_data data;
  11749. data.drv_status = st.DRV_STATUS();
  11750. data.is_otpw = (data.drv_status & OTPW_bm)>>OTPW_bp;
  11751. data.is_ot = (data.drv_status & OT_bm)>>OT_bp;
  11752. data.is_error = (st.status_response & DRIVER_ERROR_bm)>>DRIVER_ERROR_bp;
  11753. return data;
  11754. }
  11755. #endif
  11756. #if ENABLED(HAVE_TMC2208)
  11757. static uint32_t get_pwm_scale(TMC2208Stepper &st) { return st.pwm_scale_sum(); }
  11758. static uint8_t get_status_response(TMC2208Stepper &st) {
  11759. uint32_t drv_status = st.DRV_STATUS();
  11760. uint8_t gstat = st.GSTAT();
  11761. uint8_t response = 0;
  11762. response |= (drv_status >> (31-3)) & 0b1000;
  11763. response |= gstat & 0b11;
  11764. return response;
  11765. }
  11766. static TMC_driver_data get_driver_data(TMC2208Stepper &st) {
  11767. constexpr uint32_t OTPW_bm = 0b1ul;
  11768. constexpr uint8_t OTPW_bp = 0;
  11769. constexpr uint32_t OT_bm = 0b10ul;
  11770. constexpr uint8_t OT_bp = 1;
  11771. TMC_driver_data data;
  11772. data.drv_status = st.DRV_STATUS();
  11773. data.is_otpw = (data.drv_status & OTPW_bm)>>OTPW_bp;
  11774. data.is_ot = (data.drv_status & OT_bm)>>OT_bp;
  11775. data.is_error = st.drv_err();
  11776. return data;
  11777. }
  11778. #endif
  11779. template<typename TMC>
  11780. uint8_t monitor_tmc_driver(TMC &st, const char axisID, uint8_t otpw_cnt) {
  11781. TMC_driver_data data = get_driver_data(st);
  11782. #if ENABLED(STOP_ON_ERROR)
  11783. if (data.is_error) {
  11784. SERIAL_EOL();
  11785. SERIAL_ECHO(axisID);
  11786. SERIAL_ECHO(" driver error detected:");
  11787. if (data.is_ot) SERIAL_ECHO("\novertemperature");
  11788. if (st.s2ga()) SERIAL_ECHO("\nshort to ground (coil A)");
  11789. if (st.s2gb()) SERIAL_ECHO("\nshort to ground (coil B)");
  11790. SERIAL_EOL();
  11791. #if ENABLED(TMC_DEBUG)
  11792. gcode_M122();
  11793. #endif
  11794. kill(PSTR("Driver error"));
  11795. }
  11796. #endif
  11797. // Report if a warning was triggered
  11798. if (data.is_otpw && otpw_cnt==0) {
  11799. char timestamp[10];
  11800. duration_t elapsed = print_job_timer.duration();
  11801. const bool has_days = (elapsed.value > 60*60*24L);
  11802. (void)elapsed.toDigital(timestamp, has_days);
  11803. SERIAL_EOL();
  11804. SERIAL_ECHO(timestamp);
  11805. SERIAL_ECHOPGM(": ");
  11806. SERIAL_ECHO(axisID);
  11807. SERIAL_ECHOPGM(" driver overtemperature warning! (");
  11808. SERIAL_ECHO(st.getCurrent());
  11809. SERIAL_ECHOLN("mA)");
  11810. }
  11811. #if CURRENT_STEP_DOWN > 0
  11812. // Decrease current if is_otpw is true and driver is enabled and there's been more then 4 warnings
  11813. if (data.is_otpw && !st.isEnabled() && otpw_cnt > 4) {
  11814. st.setCurrent(st.getCurrent() - CURRENT_STEP_DOWN, R_SENSE, HOLD_MULTIPLIER);
  11815. #if ENABLED(REPORT_CURRENT_CHANGE)
  11816. SERIAL_ECHO(axisID);
  11817. SERIAL_ECHOLNPAIR(" current decreased to ", st.getCurrent());
  11818. #endif
  11819. }
  11820. #endif
  11821. if (data.is_otpw) {
  11822. otpw_cnt++;
  11823. st.flag_otpw = true;
  11824. }
  11825. else if (otpw_cnt>0) otpw_cnt--;
  11826. if (report_tmc_status) {
  11827. const uint32_t pwm_scale = get_pwm_scale(st);
  11828. SERIAL_ECHO(axisID);
  11829. SERIAL_ECHOPAIR(":", pwm_scale);
  11830. SERIAL_ECHO(" |0b"); MYSERIAL.print(get_status_response(st), BIN);
  11831. SERIAL_ECHO("| ");
  11832. if (data.is_error) SERIAL_ECHO('E');
  11833. else if (data.is_ot) SERIAL_ECHO('O');
  11834. else if (data.is_otpw) SERIAL_ECHO('W');
  11835. else if (otpw_cnt>0) MYSERIAL.print(otpw_cnt, DEC);
  11836. else if (st.flag_otpw) SERIAL_ECHO('F');
  11837. SERIAL_ECHO("\t");
  11838. }
  11839. return otpw_cnt;
  11840. }
  11841. void monitor_tmc_driver() {
  11842. static millis_t next_cOT = 0;
  11843. if (ELAPSED(millis(), next_cOT)) {
  11844. next_cOT = millis() + 500;
  11845. #if ENABLED(X_IS_TMC2130)|| (ENABLED(X_IS_TMC2208) && defined(X_HARDWARE_SERIAL)) || ENABLED(IS_TRAMS)
  11846. static uint8_t x_otpw_cnt = 0;
  11847. x_otpw_cnt = monitor_tmc_driver(stepperX, axis_codes[X_AXIS], x_otpw_cnt);
  11848. #endif
  11849. #if ENABLED(Y_IS_TMC2130)|| (ENABLED(Y_IS_TMC2208) && defined(Y_HARDWARE_SERIAL)) || ENABLED(IS_TRAMS)
  11850. static uint8_t y_otpw_cnt = 0;
  11851. y_otpw_cnt = monitor_tmc_driver(stepperY, axis_codes[Y_AXIS], y_otpw_cnt);
  11852. #endif
  11853. #if ENABLED(Z_IS_TMC2130)|| (ENABLED(Z_IS_TMC2208) && defined(Z_HARDWARE_SERIAL)) || ENABLED(IS_TRAMS)
  11854. static uint8_t z_otpw_cnt = 0;
  11855. z_otpw_cnt = monitor_tmc_driver(stepperZ, axis_codes[Z_AXIS], z_otpw_cnt);
  11856. #endif
  11857. #if ENABLED(X2_IS_TMC2130) || (ENABLED(X2_IS_TMC2208) && defined(X2_HARDWARE_SERIAL))
  11858. static uint8_t x2_otpw_cnt = 0;
  11859. x2_otpw_cnt = monitor_tmc_driver(stepperX2, axis_codes[X_AXIS], x2_otpw_cnt);
  11860. #endif
  11861. #if ENABLED(Y2_IS_TMC2130) || (ENABLED(Y2_IS_TMC2208) && defined(Y2_HARDWARE_SERIAL))
  11862. static uint8_t y2_otpw_cnt = 0;
  11863. y2_otpw_cnt = monitor_tmc_driver(stepperY2, axis_codes[Y_AXIS], y2_otpw_cnt);
  11864. #endif
  11865. #if ENABLED(Z2_IS_TMC2130) || (ENABLED(Z2_IS_TMC2208) && defined(Z2_HARDWARE_SERIAL))
  11866. static uint8_t z2_otpw_cnt = 0;
  11867. z2_otpw_cnt = monitor_tmc_driver(stepperZ2, axis_codes[Z_AXIS], z2_otpw_cnt);
  11868. #endif
  11869. #if ENABLED(E0_IS_TMC2130)|| (ENABLED(E0_IS_TMC2208) && defined(E0_HARDWARE_SERIAL)) || ENABLED(IS_TRAMS)
  11870. static uint8_t e0_otpw_cnt = 0;
  11871. e0_otpw_cnt = monitor_tmc_driver(stepperE0, axis_codes[E_AXIS], e0_otpw_cnt);
  11872. #endif
  11873. #if ENABLED(E1_IS_TMC2130) || (ENABLED(E1_IS_TMC2208) && defined(E1_HARDWARE_SERIAL))
  11874. static uint8_t e1_otpw_cnt = 0;
  11875. e1_otpw_cnt = monitor_tmc_driver(stepperE1, axis_codes[E_AXIS], e1_otpw_cnt);
  11876. #endif
  11877. #if ENABLED(E2_IS_TMC2130) || (ENABLED(E2_IS_TMC2208) && defined(E2_HARDWARE_SERIAL))
  11878. static uint8_t e2_otpw_cnt = 0;
  11879. e2_otpw_cnt = monitor_tmc_driver(stepperE2, axis_codes[E_AXIS], e2_otpw_cnt);
  11880. #endif
  11881. #if ENABLED(E3_IS_TMC2130) || (ENABLED(E3_IS_TMC2208) && defined(E3_HARDWARE_SERIAL))
  11882. static uint8_t e3_otpw_cnt = 0;
  11883. e3_otpw_cnt = monitor_tmc_driver(stepperE3, axis_codes[E_AXIS], e3_otpw_cnt);
  11884. #endif
  11885. #if ENABLED(E4_IS_TMC2130) || (ENABLED(E4_IS_TMC2208) && defined(E4_HARDWARE_SERIAL))
  11886. static uint8_t e4_otpw_cnt = 0;
  11887. e4_otpw_cnt = monitor_tmc_driver(stepperE4, axis_codes[E_AXIS], e4_otpw_cnt);
  11888. #endif
  11889. if (report_tmc_status) SERIAL_EOL();
  11890. }
  11891. }
  11892. #endif // MONITOR_DRIVER_STATUS
  11893. /**
  11894. * Manage several activities:
  11895. * - Check for Filament Runout
  11896. * - Keep the command buffer full
  11897. * - Check for maximum inactive time between commands
  11898. * - Check for maximum inactive time between stepper commands
  11899. * - Check if pin CHDK needs to go LOW
  11900. * - Check for KILL button held down
  11901. * - Check for HOME button held down
  11902. * - Check if cooling fan needs to be switched on
  11903. * - Check if an idle but hot extruder needs filament extruded (EXTRUDER_RUNOUT_PREVENT)
  11904. */
  11905. void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
  11906. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  11907. if ((IS_SD_PRINTING || print_job_timer.isRunning()) && (READ(FIL_RUNOUT_PIN) == FIL_RUNOUT_INVERTING))
  11908. handle_filament_runout();
  11909. #endif
  11910. if (commands_in_queue < BUFSIZE) get_available_commands();
  11911. const millis_t ms = millis();
  11912. if (max_inactive_time && ELAPSED(ms, previous_cmd_ms + max_inactive_time)) {
  11913. SERIAL_ERROR_START();
  11914. SERIAL_ECHOLNPAIR(MSG_KILL_INACTIVE_TIME, parser.command_ptr);
  11915. kill(PSTR(MSG_KILLED));
  11916. }
  11917. // Prevent steppers timing-out in the middle of M600
  11918. #if ENABLED(ADVANCED_PAUSE_FEATURE) && ENABLED(PAUSE_PARK_NO_STEPPER_TIMEOUT)
  11919. #define MOVE_AWAY_TEST !move_away_flag
  11920. #else
  11921. #define MOVE_AWAY_TEST true
  11922. #endif
  11923. if (MOVE_AWAY_TEST && stepper_inactive_time && ELAPSED(ms, previous_cmd_ms + stepper_inactive_time)
  11924. && !ignore_stepper_queue && !planner.blocks_queued()) {
  11925. #if ENABLED(DISABLE_INACTIVE_X)
  11926. disable_X();
  11927. #endif
  11928. #if ENABLED(DISABLE_INACTIVE_Y)
  11929. disable_Y();
  11930. #endif
  11931. #if ENABLED(DISABLE_INACTIVE_Z)
  11932. disable_Z();
  11933. #endif
  11934. #if ENABLED(DISABLE_INACTIVE_E)
  11935. disable_e_steppers();
  11936. #endif
  11937. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTRA_LCD) // Only needed with an LCD
  11938. ubl.lcd_map_control = defer_return_to_status = false;
  11939. #endif
  11940. }
  11941. #ifdef CHDK // Check if pin should be set to LOW after M240 set it to HIGH
  11942. if (chdkActive && ELAPSED(ms, chdkHigh + CHDK_DELAY)) {
  11943. chdkActive = false;
  11944. WRITE(CHDK, LOW);
  11945. }
  11946. #endif
  11947. #if HAS_KILL
  11948. // Check if the kill button was pressed and wait just in case it was an accidental
  11949. // key kill key press
  11950. // -------------------------------------------------------------------------------
  11951. static int killCount = 0; // make the inactivity button a bit less responsive
  11952. const int KILL_DELAY = 750;
  11953. if (!READ(KILL_PIN))
  11954. killCount++;
  11955. else if (killCount > 0)
  11956. killCount--;
  11957. // Exceeded threshold and we can confirm that it was not accidental
  11958. // KILL the machine
  11959. // ----------------------------------------------------------------
  11960. if (killCount >= KILL_DELAY) {
  11961. SERIAL_ERROR_START();
  11962. SERIAL_ERRORLNPGM(MSG_KILL_BUTTON);
  11963. kill(PSTR(MSG_KILLED));
  11964. }
  11965. #endif
  11966. #if HAS_HOME
  11967. // Check to see if we have to home, use poor man's debouncer
  11968. // ---------------------------------------------------------
  11969. static int homeDebounceCount = 0; // poor man's debouncing count
  11970. const int HOME_DEBOUNCE_DELAY = 2500;
  11971. if (!IS_SD_PRINTING && !READ(HOME_PIN)) {
  11972. if (!homeDebounceCount) {
  11973. enqueue_and_echo_commands_P(PSTR("G28"));
  11974. LCD_MESSAGEPGM(MSG_AUTO_HOME);
  11975. }
  11976. if (homeDebounceCount < HOME_DEBOUNCE_DELAY)
  11977. homeDebounceCount++;
  11978. else
  11979. homeDebounceCount = 0;
  11980. }
  11981. #endif
  11982. #if ENABLED(USE_CONTROLLER_FAN)
  11983. controllerFan(); // Check if fan should be turned on to cool stepper drivers down
  11984. #endif
  11985. #if ENABLED(EXTRUDER_RUNOUT_PREVENT)
  11986. if (ELAPSED(ms, previous_cmd_ms + (EXTRUDER_RUNOUT_SECONDS) * 1000UL)
  11987. && thermalManager.degHotend(active_extruder) > EXTRUDER_RUNOUT_MINTEMP) {
  11988. #if ENABLED(SWITCHING_EXTRUDER)
  11989. const bool oldstatus = E0_ENABLE_READ;
  11990. enable_E0();
  11991. #else // !SWITCHING_EXTRUDER
  11992. bool oldstatus;
  11993. switch (active_extruder) {
  11994. default: oldstatus = E0_ENABLE_READ; enable_E0(); break;
  11995. #if E_STEPPERS > 1
  11996. case 1: oldstatus = E1_ENABLE_READ; enable_E1(); break;
  11997. #if E_STEPPERS > 2
  11998. case 2: oldstatus = E2_ENABLE_READ; enable_E2(); break;
  11999. #if E_STEPPERS > 3
  12000. case 3: oldstatus = E3_ENABLE_READ; enable_E3(); break;
  12001. #if E_STEPPERS > 4
  12002. case 4: oldstatus = E4_ENABLE_READ; enable_E4(); break;
  12003. #endif // E_STEPPERS > 4
  12004. #endif // E_STEPPERS > 3
  12005. #endif // E_STEPPERS > 2
  12006. #endif // E_STEPPERS > 1
  12007. }
  12008. #endif // !SWITCHING_EXTRUDER
  12009. previous_cmd_ms = ms; // refresh_cmd_timeout()
  12010. const float olde = current_position[E_AXIS];
  12011. current_position[E_AXIS] += EXTRUDER_RUNOUT_EXTRUDE;
  12012. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(EXTRUDER_RUNOUT_SPEED), active_extruder);
  12013. current_position[E_AXIS] = olde;
  12014. planner.set_e_position_mm(olde);
  12015. stepper.synchronize();
  12016. #if ENABLED(SWITCHING_EXTRUDER)
  12017. E0_ENABLE_WRITE(oldstatus);
  12018. #else
  12019. switch (active_extruder) {
  12020. case 0: E0_ENABLE_WRITE(oldstatus); break;
  12021. #if E_STEPPERS > 1
  12022. case 1: E1_ENABLE_WRITE(oldstatus); break;
  12023. #if E_STEPPERS > 2
  12024. case 2: E2_ENABLE_WRITE(oldstatus); break;
  12025. #if E_STEPPERS > 3
  12026. case 3: E3_ENABLE_WRITE(oldstatus); break;
  12027. #if E_STEPPERS > 4
  12028. case 4: E4_ENABLE_WRITE(oldstatus); break;
  12029. #endif // E_STEPPERS > 4
  12030. #endif // E_STEPPERS > 3
  12031. #endif // E_STEPPERS > 2
  12032. #endif // E_STEPPERS > 1
  12033. }
  12034. #endif // !SWITCHING_EXTRUDER
  12035. }
  12036. #endif // EXTRUDER_RUNOUT_PREVENT
  12037. #if ENABLED(DUAL_X_CARRIAGE)
  12038. // handle delayed move timeout
  12039. if (delayed_move_time && ELAPSED(ms, delayed_move_time + 1000UL) && IsRunning()) {
  12040. // travel moves have been received so enact them
  12041. delayed_move_time = 0xFFFFFFFFUL; // force moves to be done
  12042. set_destination_from_current();
  12043. prepare_move_to_destination();
  12044. }
  12045. #endif
  12046. #if ENABLED(TEMP_STAT_LEDS)
  12047. handle_status_leds();
  12048. #endif
  12049. #if ENABLED(MONITOR_DRIVER_STATUS)
  12050. monitor_tmc_driver();
  12051. #endif
  12052. planner.check_axes_activity();
  12053. }
  12054. /**
  12055. * Standard idle routine keeps the machine alive
  12056. */
  12057. void idle(
  12058. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  12059. bool no_stepper_sleep/*=false*/
  12060. #endif
  12061. ) {
  12062. #if ENABLED(MAX7219_DEBUG)
  12063. Max7219_idle_tasks();
  12064. #endif // MAX7219_DEBUG
  12065. lcd_update();
  12066. host_keepalive();
  12067. #if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
  12068. thermalManager.auto_report_temperatures();
  12069. #endif
  12070. manage_inactivity(
  12071. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  12072. no_stepper_sleep
  12073. #endif
  12074. );
  12075. thermalManager.manage_heater();
  12076. #if ENABLED(PRINTCOUNTER)
  12077. print_job_timer.tick();
  12078. #endif
  12079. #if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
  12080. buzzer.tick();
  12081. #endif
  12082. #if ENABLED(I2C_POSITION_ENCODERS)
  12083. if (planner.blocks_queued() &&
  12084. ( (blockBufferIndexRef != planner.block_buffer_head) ||
  12085. ((lastUpdateMillis + I2CPE_MIN_UPD_TIME_MS) < millis())) ) {
  12086. blockBufferIndexRef = planner.block_buffer_head;
  12087. I2CPEM.update();
  12088. lastUpdateMillis = millis();
  12089. }
  12090. #endif
  12091. }
  12092. /**
  12093. * Kill all activity and lock the machine.
  12094. * After this the machine will need to be reset.
  12095. */
  12096. void kill(const char* lcd_msg) {
  12097. SERIAL_ERROR_START();
  12098. SERIAL_ERRORLNPGM(MSG_ERR_KILLED);
  12099. thermalManager.disable_all_heaters();
  12100. disable_all_steppers();
  12101. #if ENABLED(ULTRA_LCD)
  12102. kill_screen(lcd_msg);
  12103. #else
  12104. UNUSED(lcd_msg);
  12105. #endif
  12106. _delay_ms(600); // Wait a short time (allows messages to get out before shutting down.
  12107. cli(); // Stop interrupts
  12108. _delay_ms(250); //Wait to ensure all interrupts routines stopped
  12109. thermalManager.disable_all_heaters(); //turn off heaters again
  12110. #ifdef ACTION_ON_KILL
  12111. SERIAL_ECHOLNPGM("//action:" ACTION_ON_KILL);
  12112. #endif
  12113. #if HAS_POWER_SWITCH
  12114. SET_INPUT(PS_ON_PIN);
  12115. #endif
  12116. suicide();
  12117. while (1) {
  12118. #if ENABLED(USE_WATCHDOG)
  12119. watchdog_reset();
  12120. #endif
  12121. } // Wait for reset
  12122. }
  12123. /**
  12124. * Turn off heaters and stop the print in progress
  12125. * After a stop the machine may be resumed with M999
  12126. */
  12127. void stop() {
  12128. thermalManager.disable_all_heaters(); // 'unpause' taken care of in here
  12129. #if ENABLED(PROBING_FANS_OFF)
  12130. if (fans_paused) fans_pause(false); // put things back the way they were
  12131. #endif
  12132. if (IsRunning()) {
  12133. Stopped_gcode_LastN = gcode_LastN; // Save last g_code for restart
  12134. SERIAL_ERROR_START();
  12135. SERIAL_ERRORLNPGM(MSG_ERR_STOPPED);
  12136. LCD_MESSAGEPGM(MSG_STOPPED);
  12137. safe_delay(350); // allow enough time for messages to get out before stopping
  12138. Running = false;
  12139. }
  12140. }
  12141. /**
  12142. * Marlin entry-point: Set up before the program loop
  12143. * - Set up the kill pin, filament runout, power hold
  12144. * - Start the serial port
  12145. * - Print startup messages and diagnostics
  12146. * - Get EEPROM or default settings
  12147. * - Initialize managers for:
  12148. * • temperature
  12149. * • planner
  12150. * • watchdog
  12151. * • stepper
  12152. * • photo pin
  12153. * • servos
  12154. * • LCD controller
  12155. * • Digipot I2C
  12156. * • Z probe sled
  12157. * • status LEDs
  12158. */
  12159. void setup() {
  12160. #if ENABLED(MAX7219_DEBUG)
  12161. Max7219_init();
  12162. #endif
  12163. #if ENABLED(DISABLE_JTAG)
  12164. // Disable JTAG on AT90USB chips to free up pins for IO
  12165. MCUCR = 0x80;
  12166. MCUCR = 0x80;
  12167. #endif
  12168. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  12169. setup_filrunoutpin();
  12170. #endif
  12171. setup_killpin();
  12172. setup_powerhold();
  12173. #if HAS_STEPPER_RESET
  12174. disableStepperDrivers();
  12175. #endif
  12176. MYSERIAL.begin(BAUDRATE);
  12177. SERIAL_PROTOCOLLNPGM("start");
  12178. SERIAL_ECHO_START();
  12179. #if ENABLED(HAVE_TMC2208)
  12180. tmc2208_serial_begin();
  12181. #endif
  12182. // Check startup - does nothing if bootloader sets MCUSR to 0
  12183. byte mcu = MCUSR;
  12184. if (mcu & 1) SERIAL_ECHOLNPGM(MSG_POWERUP);
  12185. if (mcu & 2) SERIAL_ECHOLNPGM(MSG_EXTERNAL_RESET);
  12186. if (mcu & 4) SERIAL_ECHOLNPGM(MSG_BROWNOUT_RESET);
  12187. if (mcu & 8) SERIAL_ECHOLNPGM(MSG_WATCHDOG_RESET);
  12188. if (mcu & 32) SERIAL_ECHOLNPGM(MSG_SOFTWARE_RESET);
  12189. MCUSR = 0;
  12190. SERIAL_ECHOPGM(MSG_MARLIN);
  12191. SERIAL_CHAR(' ');
  12192. SERIAL_ECHOLNPGM(SHORT_BUILD_VERSION);
  12193. SERIAL_EOL();
  12194. #if defined(STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
  12195. SERIAL_ECHO_START();
  12196. SERIAL_ECHOPGM(MSG_CONFIGURATION_VER);
  12197. SERIAL_ECHOPGM(STRING_DISTRIBUTION_DATE);
  12198. SERIAL_ECHOLNPGM(MSG_AUTHOR STRING_CONFIG_H_AUTHOR);
  12199. SERIAL_ECHO_START();
  12200. SERIAL_ECHOLNPGM("Compiled: " __DATE__);
  12201. #endif
  12202. SERIAL_ECHO_START();
  12203. SERIAL_ECHOPAIR(MSG_FREE_MEMORY, freeMemory());
  12204. SERIAL_ECHOLNPAIR(MSG_PLANNER_BUFFER_BYTES, (int)sizeof(block_t)*BLOCK_BUFFER_SIZE);
  12205. // Send "ok" after commands by default
  12206. for (int8_t i = 0; i < BUFSIZE; i++) send_ok[i] = true;
  12207. // Load data from EEPROM if available (or use defaults)
  12208. // This also updates variables in the planner, elsewhere
  12209. (void)settings.load();
  12210. #if HAS_M206_COMMAND
  12211. // Initialize current position based on home_offset
  12212. COPY(current_position, home_offset);
  12213. #else
  12214. ZERO(current_position);
  12215. #endif
  12216. // Vital to init stepper/planner equivalent for current_position
  12217. SYNC_PLAN_POSITION_KINEMATIC();
  12218. thermalManager.init(); // Initialize temperature loop
  12219. #if ENABLED(USE_WATCHDOG)
  12220. watchdog_init();
  12221. #endif
  12222. stepper.init(); // Initialize stepper, this enables interrupts!
  12223. servo_init();
  12224. #if HAS_PHOTOGRAPH
  12225. OUT_WRITE(PHOTOGRAPH_PIN, LOW);
  12226. #endif
  12227. #if HAS_CASE_LIGHT
  12228. case_light_on = CASE_LIGHT_DEFAULT_ON;
  12229. case_light_brightness = CASE_LIGHT_DEFAULT_BRIGHTNESS;
  12230. update_case_light();
  12231. #endif
  12232. #if ENABLED(SPINDLE_LASER_ENABLE)
  12233. OUT_WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // init spindle to off
  12234. #if SPINDLE_DIR_CHANGE
  12235. OUT_WRITE(SPINDLE_DIR_PIN, SPINDLE_INVERT_DIR ? 255 : 0); // init rotation to clockwise (M3)
  12236. #endif
  12237. #if ENABLED(SPINDLE_LASER_PWM)
  12238. SET_OUTPUT(SPINDLE_LASER_PWM_PIN);
  12239. analogWrite(SPINDLE_LASER_PWM_PIN, SPINDLE_LASER_PWM_INVERT ? 255 : 0); // set to lowest speed
  12240. #endif
  12241. #endif
  12242. #if HAS_BED_PROBE
  12243. endstops.enable_z_probe(false);
  12244. #endif
  12245. #if ENABLED(USE_CONTROLLER_FAN)
  12246. SET_OUTPUT(CONTROLLER_FAN_PIN); //Set pin used for driver cooling fan
  12247. #endif
  12248. #if HAS_STEPPER_RESET
  12249. enableStepperDrivers();
  12250. #endif
  12251. #if ENABLED(DIGIPOT_I2C)
  12252. digipot_i2c_init();
  12253. #endif
  12254. #if ENABLED(DAC_STEPPER_CURRENT)
  12255. dac_init();
  12256. #endif
  12257. #if (ENABLED(Z_PROBE_SLED) || ENABLED(SOLENOID_PROBE)) && HAS_SOLENOID_1
  12258. OUT_WRITE(SOL1_PIN, LOW); // turn it off
  12259. #endif
  12260. #if HAS_HOME
  12261. SET_INPUT_PULLUP(HOME_PIN);
  12262. #endif
  12263. #if PIN_EXISTS(STAT_LED_RED)
  12264. OUT_WRITE(STAT_LED_RED_PIN, LOW); // turn it off
  12265. #endif
  12266. #if PIN_EXISTS(STAT_LED_BLUE)
  12267. OUT_WRITE(STAT_LED_BLUE_PIN, LOW); // turn it off
  12268. #endif
  12269. #if HAS_COLOR_LEDS
  12270. leds.setup();
  12271. #endif
  12272. #if ENABLED(RGB_LED) || ENABLED(RGBW_LED)
  12273. SET_OUTPUT(RGB_LED_R_PIN);
  12274. SET_OUTPUT(RGB_LED_G_PIN);
  12275. SET_OUTPUT(RGB_LED_B_PIN);
  12276. #if ENABLED(RGBW_LED)
  12277. SET_OUTPUT(RGB_LED_W_PIN);
  12278. #endif
  12279. #endif
  12280. #if ENABLED(MK2_MULTIPLEXER)
  12281. SET_OUTPUT(E_MUX0_PIN);
  12282. SET_OUTPUT(E_MUX1_PIN);
  12283. SET_OUTPUT(E_MUX2_PIN);
  12284. #endif
  12285. #if HAS_FANMUX
  12286. fanmux_init();
  12287. #endif
  12288. lcd_init();
  12289. #if ENABLED(SHOW_BOOTSCREEN)
  12290. lcd_bootscreen();
  12291. #endif
  12292. #if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
  12293. // Virtual Tools 0, 1, 2, 3 = Filament 1, 2, 3, 4, etc.
  12294. for (uint8_t t = 0; t < MIXING_VIRTUAL_TOOLS && t < MIXING_STEPPERS; t++)
  12295. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  12296. mixing_virtual_tool_mix[t][i] = (t == i) ? 1.0 : 0.0;
  12297. // Remaining virtual tools are 100% filament 1
  12298. #if MIXING_STEPPERS < MIXING_VIRTUAL_TOOLS
  12299. for (uint8_t t = MIXING_STEPPERS; t < MIXING_VIRTUAL_TOOLS; t++)
  12300. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  12301. mixing_virtual_tool_mix[t][i] = (i == 0) ? 1.0 : 0.0;
  12302. #endif
  12303. // Initialize mixing to tool 0 color
  12304. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  12305. mixing_factor[i] = mixing_virtual_tool_mix[0][i];
  12306. #endif
  12307. #if ENABLED(BLTOUCH)
  12308. // Make sure any BLTouch error condition is cleared
  12309. bltouch_command(BLTOUCH_RESET);
  12310. set_bltouch_deployed(true);
  12311. set_bltouch_deployed(false);
  12312. #endif
  12313. #if ENABLED(I2C_POSITION_ENCODERS)
  12314. I2CPEM.init();
  12315. #endif
  12316. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  12317. i2c.onReceive(i2c_on_receive);
  12318. i2c.onRequest(i2c_on_request);
  12319. #endif
  12320. #if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
  12321. setup_endstop_interrupts();
  12322. #endif
  12323. #if ENABLED(SWITCHING_EXTRUDER) && !DONT_SWITCH
  12324. move_extruder_servo(0); // Initialize extruder servo
  12325. #endif
  12326. #if ENABLED(SWITCHING_NOZZLE)
  12327. move_nozzle_servo(0); // Initialize nozzle servo
  12328. #endif
  12329. #if ENABLED(PARKING_EXTRUDER)
  12330. #if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
  12331. pe_activate_magnet(0);
  12332. pe_activate_magnet(1);
  12333. #else
  12334. pe_deactivate_magnet(0);
  12335. pe_deactivate_magnet(1);
  12336. #endif
  12337. #endif
  12338. #if ENABLED(MKS_12864OLED)
  12339. SET_OUTPUT(LCD_PINS_DC);
  12340. OUT_WRITE(LCD_PINS_RS, LOW);
  12341. delay(1000);
  12342. WRITE(LCD_PINS_RS, HIGH);
  12343. #endif
  12344. }
  12345. /**
  12346. * The main Marlin program loop
  12347. *
  12348. * - Save or log commands to SD
  12349. * - Process available commands (if not saving)
  12350. * - Call heater manager
  12351. * - Call inactivity manager
  12352. * - Call endstop manager
  12353. * - Call LCD update
  12354. */
  12355. void loop() {
  12356. if (commands_in_queue < BUFSIZE) get_available_commands();
  12357. #if ENABLED(SDSUPPORT)
  12358. card.checkautostart(false);
  12359. #endif
  12360. if (commands_in_queue) {
  12361. #if ENABLED(SDSUPPORT)
  12362. if (card.saving) {
  12363. char* command = command_queue[cmd_queue_index_r];
  12364. if (strstr_P(command, PSTR("M29"))) {
  12365. // M29 closes the file
  12366. card.closefile();
  12367. SERIAL_PROTOCOLLNPGM(MSG_FILE_SAVED);
  12368. #if ENABLED(SERIAL_STATS_DROPPED_RX)
  12369. SERIAL_ECHOLNPAIR("Dropped bytes: ", customizedSerial.dropped());
  12370. #endif
  12371. #if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
  12372. SERIAL_ECHOLNPAIR("Max RX Queue Size: ", customizedSerial.rxMaxEnqueued());
  12373. #endif
  12374. ok_to_send();
  12375. }
  12376. else {
  12377. // Write the string from the read buffer to SD
  12378. card.write_command(command);
  12379. if (card.logging)
  12380. process_next_command(); // The card is saving because it's logging
  12381. else
  12382. ok_to_send();
  12383. }
  12384. }
  12385. else
  12386. process_next_command();
  12387. #else
  12388. process_next_command();
  12389. #endif // SDSUPPORT
  12390. // The queue may be reset by a command handler or by code invoked by idle() within a handler
  12391. if (commands_in_queue) {
  12392. --commands_in_queue;
  12393. if (++cmd_queue_index_r >= BUFSIZE) cmd_queue_index_r = 0;
  12394. }
  12395. }
  12396. endstops.report_state();
  12397. idle();
  12398. }