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.

MarlinCore.cpp 47KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://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/grbl/grbl
  28. */
  29. #include "MarlinCore.h"
  30. #if ENABLED(MARLIN_DEV_MODE)
  31. #warning "WARNING! Disable MARLIN_DEV_MODE for the final build!"
  32. #endif
  33. #include "HAL/shared/Delay.h"
  34. #include "HAL/shared/esp_wifi.h"
  35. #include "HAL/shared/cpu_exception/exception_hook.h"
  36. #ifdef ARDUINO
  37. #include <pins_arduino.h>
  38. #endif
  39. #include <math.h>
  40. #include "core/utility.h"
  41. #include "module/motion.h"
  42. #include "module/planner.h"
  43. #include "module/endstops.h"
  44. #include "module/temperature.h"
  45. #include "module/settings.h"
  46. #include "module/printcounter.h" // PrintCounter or Stopwatch
  47. #include "module/stepper.h"
  48. #include "module/stepper/indirection.h"
  49. #include "gcode/gcode.h"
  50. #include "gcode/parser.h"
  51. #include "gcode/queue.h"
  52. #include "feature/pause.h"
  53. #include "sd/cardreader.h"
  54. #include "lcd/marlinui.h"
  55. #if HAS_TOUCH_BUTTONS
  56. #include "lcd/touch/touch_buttons.h"
  57. #endif
  58. #if HAS_TFT_LVGL_UI
  59. #include "lcd/extui/mks_ui/tft_lvgl_configuration.h"
  60. #include "lcd/extui/mks_ui/draw_ui.h"
  61. #include "lcd/extui/mks_ui/mks_hardware.h"
  62. #include <lvgl.h>
  63. #endif
  64. #if ENABLED(DWIN_CREALITY_LCD)
  65. #include "lcd/e3v2/creality/dwin.h"
  66. #include "lcd/e3v2/creality/rotary_encoder.h"
  67. #elif ENABLED(DWIN_CREALITY_LCD_JYERSUI)
  68. #include "lcd/e3v2/jyersui/dwin.h"
  69. #include "lcd/e3v2/jyersui/rotary_encoder.h"
  70. #endif
  71. #if ENABLED(EXTENSIBLE_UI)
  72. #include "lcd/extui/ui_api.h"
  73. #endif
  74. #if HAS_ETHERNET
  75. #include "feature/ethernet.h"
  76. #endif
  77. #if ENABLED(IIC_BL24CXX_EEPROM)
  78. #include "libs/BL24CXX.h"
  79. #endif
  80. #if ENABLED(DIRECT_STEPPING)
  81. #include "feature/direct_stepping.h"
  82. #endif
  83. #if ENABLED(HOST_ACTION_COMMANDS)
  84. #include "feature/host_actions.h"
  85. #endif
  86. #if USE_BEEPER
  87. #include "libs/buzzer.h"
  88. #endif
  89. #if ENABLED(EXTERNAL_CLOSED_LOOP_CONTROLLER)
  90. #include "feature/closedloop.h"
  91. #endif
  92. #if HAS_MOTOR_CURRENT_I2C
  93. #include "feature/digipot/digipot.h"
  94. #endif
  95. #if ENABLED(MIXING_EXTRUDER)
  96. #include "feature/mixing.h"
  97. #endif
  98. #if ENABLED(MAX7219_DEBUG)
  99. #include "feature/max7219.h"
  100. #endif
  101. #if HAS_COLOR_LEDS
  102. #include "feature/leds/leds.h"
  103. #endif
  104. #if ENABLED(BLTOUCH)
  105. #include "feature/bltouch.h"
  106. #endif
  107. #if ENABLED(POLL_JOG)
  108. #include "feature/joystick.h"
  109. #endif
  110. #if HAS_SERVOS
  111. #include "module/servo.h"
  112. #endif
  113. #if HAS_MOTOR_CURRENT_DAC
  114. #include "feature/dac/stepper_dac.h"
  115. #endif
  116. #if ENABLED(EXPERIMENTAL_I2CBUS)
  117. #include "feature/twibus.h"
  118. #endif
  119. #if ENABLED(I2C_POSITION_ENCODERS)
  120. #include "feature/encoder_i2c.h"
  121. #endif
  122. #if HAS_TRINAMIC_CONFIG && DISABLED(PSU_DEFAULT_OFF)
  123. #include "feature/tmc_util.h"
  124. #endif
  125. #if HAS_CUTTER
  126. #include "feature/spindle_laser.h"
  127. #endif
  128. #if ENABLED(SDSUPPORT)
  129. CardReader card;
  130. #endif
  131. #if ENABLED(G38_PROBE_TARGET)
  132. uint8_t G38_move; // = 0
  133. bool G38_did_trigger; // = false
  134. #endif
  135. #if ENABLED(DELTA)
  136. #include "module/delta.h"
  137. #elif IS_SCARA
  138. #include "module/scara.h"
  139. #endif
  140. #if HAS_LEVELING
  141. #include "feature/bedlevel/bedlevel.h"
  142. #endif
  143. #if ENABLED(GCODE_REPEAT_MARKERS)
  144. #include "feature/repeat.h"
  145. #endif
  146. #if ENABLED(POWER_LOSS_RECOVERY)
  147. #include "feature/powerloss.h"
  148. #endif
  149. #if ENABLED(CANCEL_OBJECTS)
  150. #include "feature/cancel_object.h"
  151. #endif
  152. #if HAS_FILAMENT_SENSOR
  153. #include "feature/runout.h"
  154. #endif
  155. #if EITHER(PROBE_TARE, HAS_Z_SERVO_PROBE)
  156. #include "module/probe.h"
  157. #endif
  158. #if ENABLED(HOTEND_IDLE_TIMEOUT)
  159. #include "feature/hotend_idle.h"
  160. #endif
  161. #if ENABLED(TEMP_STAT_LEDS)
  162. #include "feature/leds/tempstat.h"
  163. #endif
  164. #if ENABLED(CASE_LIGHT_ENABLE)
  165. #include "feature/caselight.h"
  166. #endif
  167. #if HAS_FANMUX
  168. #include "feature/fanmux.h"
  169. #endif
  170. #include "module/tool_change.h"
  171. #if ENABLED(USE_CONTROLLER_FAN)
  172. #include "feature/controllerfan.h"
  173. #endif
  174. #if HAS_PRUSA_MMU2
  175. #include "feature/mmu/mmu2.h"
  176. #endif
  177. #if HAS_L64XX
  178. #include "libs/L64XX/L64XX_Marlin.h"
  179. #endif
  180. #if ENABLED(PASSWORD_FEATURE)
  181. #include "feature/password/password.h"
  182. #endif
  183. #if ENABLED(DGUS_LCD_UI_MKS)
  184. #include "lcd/extui/dgus/DGUSScreenHandler.h"
  185. #endif
  186. #if HAS_DRIVER_SAFE_POWER_PROTECT
  187. #include "feature/stepper_driver_safety.h"
  188. #endif
  189. #if ENABLED(PSU_CONTROL)
  190. #include "feature/power.h"
  191. #endif
  192. PGMSTR(M112_KILL_STR, "M112 Shutdown");
  193. MarlinState marlin_state = MF_INITIALIZING;
  194. // For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
  195. bool wait_for_heatup = true;
  196. // For M0/M1, this flag may be cleared (by M108) to exit the wait-for-user loop
  197. #if HAS_RESUME_CONTINUE
  198. bool wait_for_user; // = false;
  199. void wait_for_user_response(millis_t ms/*=0*/, const bool no_sleep/*=false*/) {
  200. UNUSED(no_sleep);
  201. KEEPALIVE_STATE(PAUSED_FOR_USER);
  202. wait_for_user = true;
  203. if (ms) ms += millis(); // expire time
  204. while (wait_for_user && !(ms && ELAPSED(millis(), ms)))
  205. idle(TERN_(ADVANCED_PAUSE_FEATURE, no_sleep));
  206. wait_for_user = false;
  207. }
  208. #endif
  209. /**
  210. * ***************************************************************************
  211. * ******************************** FUNCTIONS ********************************
  212. * ***************************************************************************
  213. */
  214. /**
  215. * Stepper Reset (RigidBoard, et.al.)
  216. */
  217. #if HAS_STEPPER_RESET
  218. void disableStepperDrivers() { OUT_WRITE(STEPPER_RESET_PIN, LOW); } // Drive down to keep motor driver chips in reset
  219. void enableStepperDrivers() { SET_INPUT(STEPPER_RESET_PIN); } // Set to input, allowing pullups to pull the pin high
  220. #endif
  221. /**
  222. * Sensitive pin test for M42, M226
  223. */
  224. #include "pins/sensitive_pins.h"
  225. #pragma GCC diagnostic push
  226. #pragma GCC diagnostic ignored "-Wnarrowing"
  227. #ifndef RUNTIME_ONLY_ANALOG_TO_DIGITAL
  228. template <pin_t ...D>
  229. constexpr pin_t OnlyPins<_SP_END, D...>::table[sizeof...(D)];
  230. #endif
  231. bool pin_is_protected(const pin_t pin) {
  232. #ifdef RUNTIME_ONLY_ANALOG_TO_DIGITAL
  233. static const pin_t sensitive_pins[] PROGMEM = { SENSITIVE_PINS };
  234. const size_t pincount = COUNT(sensitive_pins);
  235. #else
  236. static constexpr size_t pincount = OnlyPins<SENSITIVE_PINS>::size;
  237. static const pin_t (&sensitive_pins)[pincount] PROGMEM = OnlyPins<SENSITIVE_PINS>::table;
  238. #endif
  239. LOOP_L_N(i, pincount) {
  240. const pin_t * const pptr = &sensitive_pins[i];
  241. if (pin == (sizeof(pin_t) == 2 ? (pin_t)pgm_read_word(pptr) : (pin_t)pgm_read_byte(pptr))) return true;
  242. }
  243. return false;
  244. }
  245. #pragma GCC diagnostic pop
  246. void enable_e_steppers() {
  247. #define _ENA_E(N) ENABLE_AXIS_E##N();
  248. REPEAT(E_STEPPERS, _ENA_E)
  249. }
  250. void enable_all_steppers() {
  251. TERN_(AUTO_POWER_CONTROL, powerManager.power_on());
  252. ENABLE_AXIS_X();
  253. ENABLE_AXIS_Y();
  254. ENABLE_AXIS_Z();
  255. ENABLE_AXIS_I(); // Marlin 6-axis support by DerAndere (https://github.com/DerAndere1/Marlin/wiki)
  256. ENABLE_AXIS_J();
  257. ENABLE_AXIS_K();
  258. enable_e_steppers();
  259. TERN_(EXTENSIBLE_UI, ExtUI::onSteppersEnabled());
  260. }
  261. void disable_e_steppers() {
  262. #define _DIS_E(N) DISABLE_AXIS_E##N();
  263. REPEAT(E_STEPPERS, _DIS_E)
  264. }
  265. void disable_e_stepper(const uint8_t e) {
  266. #define _CASE_DIS_E(N) case N: DISABLE_AXIS_E##N(); break;
  267. switch (e) {
  268. REPEAT(E_STEPPERS, _CASE_DIS_E)
  269. }
  270. }
  271. void disable_all_steppers() {
  272. DISABLE_AXIS_X();
  273. DISABLE_AXIS_Y();
  274. DISABLE_AXIS_Z();
  275. DISABLE_AXIS_I();
  276. DISABLE_AXIS_J();
  277. DISABLE_AXIS_K();
  278. disable_e_steppers();
  279. TERN_(EXTENSIBLE_UI, ExtUI::onSteppersDisabled());
  280. }
  281. /**
  282. * A Print Job exists when the timer is running or SD is printing
  283. */
  284. bool printJobOngoing() { return print_job_timer.isRunning() || IS_SD_PRINTING(); }
  285. /**
  286. * Printing is active when a job is underway but not paused
  287. */
  288. bool printingIsActive() { return !did_pause_print && printJobOngoing(); }
  289. /**
  290. * Printing is paused according to SD or host indicators
  291. */
  292. bool printingIsPaused() {
  293. return did_pause_print || print_job_timer.isPaused() || IS_SD_PAUSED();
  294. }
  295. void startOrResumeJob() {
  296. if (!printingIsPaused()) {
  297. TERN_(GCODE_REPEAT_MARKERS, repeat.reset());
  298. TERN_(CANCEL_OBJECTS, cancelable.reset());
  299. TERN_(LCD_SHOW_E_TOTAL, e_move_accumulator = 0);
  300. #if BOTH(LCD_SET_PROGRESS_MANUALLY, USE_M73_REMAINING_TIME)
  301. ui.reset_remaining_time();
  302. #endif
  303. }
  304. print_job_timer.start();
  305. }
  306. #if ENABLED(SDSUPPORT)
  307. inline void abortSDPrinting() {
  308. IF_DISABLED(NO_SD_AUTOSTART, card.autofile_cancel());
  309. card.abortFilePrintNow(TERN_(SD_RESORT, true));
  310. queue.clear();
  311. quickstop_stepper();
  312. print_job_timer.abort();
  313. IF_DISABLED(SD_ABORT_NO_COOLDOWN, thermalManager.disable_all_heaters());
  314. TERN(HAS_CUTTER, cutter.kill(), thermalManager.zero_fan_speeds()); // Full cutter shutdown including ISR control
  315. wait_for_heatup = false;
  316. TERN_(POWER_LOSS_RECOVERY, recovery.purge());
  317. #ifdef EVENT_GCODE_SD_ABORT
  318. queue.inject_P(PSTR(EVENT_GCODE_SD_ABORT));
  319. #endif
  320. TERN_(PASSWORD_AFTER_SD_PRINT_ABORT, password.lock_machine());
  321. }
  322. inline void finishSDPrinting() {
  323. if (queue.enqueue_one_P(PSTR("M1001"))) { // Keep trying until it gets queued
  324. marlin_state = MF_RUNNING; // Signal to stop trying
  325. TERN_(PASSWORD_AFTER_SD_PRINT_END, password.lock_machine());
  326. TERN_(DGUS_LCD_UI_MKS, ScreenHandler.SDPrintingFinished());
  327. }
  328. }
  329. #endif // SDSUPPORT
  330. /**
  331. * Minimal management of Marlin's core activities:
  332. * - Keep the command buffer full
  333. * - Check for maximum inactive time between commands
  334. * - Check for maximum inactive time between stepper commands
  335. * - Check if CHDK_PIN needs to go LOW
  336. * - Check for KILL button held down
  337. * - Check for HOME button held down
  338. * - Check for CUSTOM USER button held down
  339. * - Check if cooling fan needs to be switched on
  340. * - Check if an idle but hot extruder needs filament extruded (EXTRUDER_RUNOUT_PREVENT)
  341. * - Pulse FET_SAFETY_PIN if it exists
  342. */
  343. inline void manage_inactivity(const bool no_stepper_sleep=false) {
  344. queue.get_available_commands();
  345. const millis_t ms = millis();
  346. // Prevent steppers timing-out
  347. const bool do_reset_timeout = no_stepper_sleep
  348. || TERN0(PAUSE_PARK_NO_STEPPER_TIMEOUT, did_pause_print);
  349. // Reset both the M18/M84 activity timeout and the M85 max 'kill' timeout
  350. if (do_reset_timeout) gcode.reset_stepper_timeout(ms);
  351. if (gcode.stepper_max_timed_out(ms)) {
  352. SERIAL_ERROR_MSG(STR_KILL_INACTIVE_TIME, parser.command_ptr);
  353. kill();
  354. }
  355. // M18 / M84 : Handle steppers inactive time timeout
  356. if (gcode.stepper_inactive_time) {
  357. static bool already_shutdown_steppers; // = false
  358. // Any moves in the planner? Resets both the M18/M84
  359. // activity timeout and the M85 max 'kill' timeout
  360. if (planner.has_blocks_queued())
  361. gcode.reset_stepper_timeout(ms);
  362. else if (!do_reset_timeout && gcode.stepper_inactive_timeout()) {
  363. if (!already_shutdown_steppers) {
  364. already_shutdown_steppers = true; // L6470 SPI will consume 99% of free time without this
  365. // Individual axes will be disabled if configured
  366. if (ENABLED(DISABLE_INACTIVE_X)) DISABLE_AXIS_X();
  367. if (ENABLED(DISABLE_INACTIVE_Y)) DISABLE_AXIS_Y();
  368. if (ENABLED(DISABLE_INACTIVE_Z)) DISABLE_AXIS_Z();
  369. if (ENABLED(DISABLE_INACTIVE_I)) DISABLE_AXIS_I();
  370. if (ENABLED(DISABLE_INACTIVE_J)) DISABLE_AXIS_J();
  371. if (ENABLED(DISABLE_INACTIVE_K)) DISABLE_AXIS_K();
  372. if (ENABLED(DISABLE_INACTIVE_E)) disable_e_steppers();
  373. TERN_(AUTO_BED_LEVELING_UBL, ubl.steppers_were_disabled());
  374. }
  375. }
  376. else
  377. already_shutdown_steppers = false;
  378. }
  379. #if ENABLED(PHOTO_GCODE) && PIN_EXISTS(CHDK)
  380. // Check if CHDK should be set to LOW (after M240 set it HIGH)
  381. extern millis_t chdk_timeout;
  382. if (chdk_timeout && ELAPSED(ms, chdk_timeout)) {
  383. chdk_timeout = 0;
  384. WRITE(CHDK_PIN, LOW);
  385. }
  386. #endif
  387. #if HAS_KILL
  388. // Check if the kill button was pressed and wait just in case it was an accidental
  389. // key kill key press
  390. // -------------------------------------------------------------------------------
  391. static int killCount = 0; // make the inactivity button a bit less responsive
  392. const int KILL_DELAY = 750;
  393. if (kill_state())
  394. killCount++;
  395. else if (killCount > 0)
  396. killCount--;
  397. // Exceeded threshold and we can confirm that it was not accidental
  398. // KILL the machine
  399. // ----------------------------------------------------------------
  400. if (killCount >= KILL_DELAY) {
  401. SERIAL_ERROR_MSG(STR_KILL_BUTTON);
  402. kill();
  403. }
  404. #endif
  405. #if HAS_FREEZE_PIN
  406. Stepper::frozen = !READ(FREEZE_PIN);
  407. #endif
  408. #if HAS_HOME
  409. // Handle a standalone HOME button
  410. constexpr millis_t HOME_DEBOUNCE_DELAY = 1000UL;
  411. static millis_t next_home_key_ms; // = 0
  412. if (!IS_SD_PRINTING() && !READ(HOME_PIN)) { // HOME_PIN goes LOW when pressed
  413. if (ELAPSED(ms, next_home_key_ms)) {
  414. next_home_key_ms = ms + HOME_DEBOUNCE_DELAY;
  415. LCD_MESSAGEPGM(MSG_AUTO_HOME);
  416. queue.inject_P(G28_STR);
  417. }
  418. }
  419. #endif
  420. #if ENABLED(CUSTOM_USER_BUTTONS)
  421. // Handle a custom user button if defined
  422. const bool printer_not_busy = !printingIsActive();
  423. #define HAS_CUSTOM_USER_BUTTON(N) (PIN_EXISTS(BUTTON##N) && defined(BUTTON##N##_HIT_STATE) && defined(BUTTON##N##_GCODE))
  424. #define HAS_BETTER_USER_BUTTON(N) HAS_CUSTOM_USER_BUTTON(N) && defined(BUTTON##N##_DESC)
  425. #define _CHECK_CUSTOM_USER_BUTTON(N, CODE) do{ \
  426. constexpr millis_t CUB_DEBOUNCE_DELAY_##N = 250UL; \
  427. static millis_t next_cub_ms_##N; \
  428. if (BUTTON##N##_HIT_STATE == READ(BUTTON##N##_PIN) \
  429. && (ENABLED(BUTTON##N##_WHEN_PRINTING) || printer_not_busy)) { \
  430. if (ELAPSED(ms, next_cub_ms_##N)) { \
  431. next_cub_ms_##N = ms + CUB_DEBOUNCE_DELAY_##N; \
  432. CODE; \
  433. queue.inject_P(PSTR(BUTTON##N##_GCODE)); \
  434. } \
  435. } \
  436. }while(0)
  437. #define CHECK_CUSTOM_USER_BUTTON(N) _CHECK_CUSTOM_USER_BUTTON(N, NOOP)
  438. #define CHECK_BETTER_USER_BUTTON(N) _CHECK_CUSTOM_USER_BUTTON(N, if (strlen(BUTTON##N##_DESC)) LCD_MESSAGEPGM_P(PSTR(BUTTON##N##_DESC)))
  439. #if HAS_BETTER_USER_BUTTON(1)
  440. CHECK_BETTER_USER_BUTTON(1);
  441. #elif HAS_CUSTOM_USER_BUTTON(1)
  442. CHECK_CUSTOM_USER_BUTTON(1);
  443. #endif
  444. #if HAS_BETTER_USER_BUTTON(2)
  445. CHECK_BETTER_USER_BUTTON(2);
  446. #elif HAS_CUSTOM_USER_BUTTON(2)
  447. CHECK_CUSTOM_USER_BUTTON(2);
  448. #endif
  449. #if HAS_BETTER_USER_BUTTON(3)
  450. CHECK_BETTER_USER_BUTTON(3);
  451. #elif HAS_CUSTOM_USER_BUTTON(3)
  452. CHECK_CUSTOM_USER_BUTTON(3);
  453. #endif
  454. #if HAS_BETTER_USER_BUTTON(4)
  455. CHECK_BETTER_USER_BUTTON(4);
  456. #elif HAS_CUSTOM_USER_BUTTON(4)
  457. CHECK_CUSTOM_USER_BUTTON(4);
  458. #endif
  459. #if HAS_BETTER_USER_BUTTON(5)
  460. CHECK_BETTER_USER_BUTTON(5);
  461. #elif HAS_CUSTOM_USER_BUTTON(5)
  462. CHECK_CUSTOM_USER_BUTTON(5);
  463. #endif
  464. #if HAS_BETTER_USER_BUTTON(6)
  465. CHECK_BETTER_USER_BUTTON(6);
  466. #elif HAS_CUSTOM_USER_BUTTON(6)
  467. CHECK_CUSTOM_USER_BUTTON(6);
  468. #endif
  469. #if HAS_BETTER_USER_BUTTON(7)
  470. CHECK_BETTER_USER_BUTTON(7);
  471. #elif HAS_CUSTOM_USER_BUTTON(7)
  472. CHECK_CUSTOM_USER_BUTTON(7);
  473. #endif
  474. #if HAS_BETTER_USER_BUTTON(8)
  475. CHECK_BETTER_USER_BUTTON(8);
  476. #elif HAS_CUSTOM_USER_BUTTON(8)
  477. CHECK_CUSTOM_USER_BUTTON(8);
  478. #endif
  479. #if HAS_BETTER_USER_BUTTON(9)
  480. CHECK_BETTER_USER_BUTTON(9);
  481. #elif HAS_CUSTOM_USER_BUTTON(9)
  482. CHECK_CUSTOM_USER_BUTTON(9);
  483. #endif
  484. #if HAS_BETTER_USER_BUTTON(10)
  485. CHECK_BETTER_USER_BUTTON(10);
  486. #elif HAS_CUSTOM_USER_BUTTON(10)
  487. CHECK_CUSTOM_USER_BUTTON(10);
  488. #endif
  489. #if HAS_BETTER_USER_BUTTON(11)
  490. CHECK_BETTER_USER_BUTTON(11);
  491. #elif HAS_CUSTOM_USER_BUTTON(11)
  492. CHECK_CUSTOM_USER_BUTTON(11);
  493. #endif
  494. #if HAS_BETTER_USER_BUTTON(12)
  495. CHECK_BETTER_USER_BUTTON(12);
  496. #elif HAS_CUSTOM_USER_BUTTON(12)
  497. CHECK_CUSTOM_USER_BUTTON(12);
  498. #endif
  499. #if HAS_BETTER_USER_BUTTON(13)
  500. CHECK_BETTER_USER_BUTTON(13);
  501. #elif HAS_CUSTOM_USER_BUTTON(13)
  502. CHECK_CUSTOM_USER_BUTTON(13);
  503. #endif
  504. #if HAS_BETTER_USER_BUTTON(14)
  505. CHECK_BETTER_USER_BUTTON(14);
  506. #elif HAS_CUSTOM_USER_BUTTON(14)
  507. CHECK_CUSTOM_USER_BUTTON(14);
  508. #endif
  509. #if HAS_BETTER_USER_BUTTON(15)
  510. CHECK_BETTER_USER_BUTTON(15);
  511. #elif HAS_CUSTOM_USER_BUTTON(15)
  512. CHECK_CUSTOM_USER_BUTTON(15);
  513. #endif
  514. #if HAS_BETTER_USER_BUTTON(16)
  515. CHECK_BETTER_USER_BUTTON(16);
  516. #elif HAS_CUSTOM_USER_BUTTON(16)
  517. CHECK_CUSTOM_USER_BUTTON(16);
  518. #endif
  519. #if HAS_BETTER_USER_BUTTON(17)
  520. CHECK_BETTER_USER_BUTTON(17);
  521. #elif HAS_CUSTOM_USER_BUTTON(17)
  522. CHECK_CUSTOM_USER_BUTTON(17);
  523. #endif
  524. #if HAS_BETTER_USER_BUTTON(18)
  525. CHECK_BETTER_USER_BUTTON(18);
  526. #elif HAS_CUSTOM_USER_BUTTON(18)
  527. CHECK_CUSTOM_USER_BUTTON(18);
  528. #endif
  529. #if HAS_BETTER_USER_BUTTON(19)
  530. CHECK_BETTER_USER_BUTTON(19);
  531. #elif HAS_CUSTOM_USER_BUTTON(19)
  532. CHECK_CUSTOM_USER_BUTTON(19);
  533. #endif
  534. #if HAS_BETTER_USER_BUTTON(20)
  535. CHECK_BETTER_USER_BUTTON(20);
  536. #elif HAS_CUSTOM_USER_BUTTON(20)
  537. CHECK_CUSTOM_USER_BUTTON(20);
  538. #endif
  539. #if HAS_BETTER_USER_BUTTON(21)
  540. CHECK_BETTER_USER_BUTTON(21);
  541. #elif HAS_CUSTOM_USER_BUTTON(21)
  542. CHECK_CUSTOM_USER_BUTTON(21);
  543. #endif
  544. #if HAS_BETTER_USER_BUTTON(22)
  545. CHECK_BETTER_USER_BUTTON(22);
  546. #elif HAS_CUSTOM_USER_BUTTON(22)
  547. CHECK_CUSTOM_USER_BUTTON(22);
  548. #endif
  549. #if HAS_BETTER_USER_BUTTON(23)
  550. CHECK_BETTER_USER_BUTTON(23);
  551. #elif HAS_CUSTOM_USER_BUTTON(23)
  552. CHECK_CUSTOM_USER_BUTTON(23);
  553. #endif
  554. #if HAS_BETTER_USER_BUTTON(24)
  555. CHECK_BETTER_USER_BUTTON(24);
  556. #elif HAS_CUSTOM_USER_BUTTON(24)
  557. CHECK_CUSTOM_USER_BUTTON(24);
  558. #endif
  559. #if HAS_BETTER_USER_BUTTON(25)
  560. CHECK_BETTER_USER_BUTTON(25);
  561. #elif HAS_CUSTOM_USER_BUTTON(25)
  562. CHECK_CUSTOM_USER_BUTTON(25);
  563. #endif
  564. #endif
  565. TERN_(USE_CONTROLLER_FAN, controllerFan.update()); // Check if fan should be turned on to cool stepper drivers down
  566. TERN_(AUTO_POWER_CONTROL, powerManager.check(!ui.on_status_screen() || printJobOngoing() || printingIsPaused()));
  567. TERN_(HOTEND_IDLE_TIMEOUT, hotend_idle.check());
  568. #if ENABLED(EXTRUDER_RUNOUT_PREVENT)
  569. if (thermalManager.degHotend(active_extruder) > (EXTRUDER_RUNOUT_MINTEMP)
  570. && ELAPSED(ms, gcode.previous_move_ms + SEC_TO_MS(EXTRUDER_RUNOUT_SECONDS))
  571. && !planner.has_blocks_queued()
  572. ) {
  573. #if ENABLED(SWITCHING_EXTRUDER)
  574. bool oldstatus;
  575. switch (active_extruder) {
  576. default: oldstatus = E0_ENABLE_READ(); ENABLE_AXIS_E0(); break;
  577. #if E_STEPPERS > 1
  578. case 2: case 3: oldstatus = E1_ENABLE_READ(); ENABLE_AXIS_E1(); break;
  579. #if E_STEPPERS > 2
  580. case 4: case 5: oldstatus = E2_ENABLE_READ(); ENABLE_AXIS_E2(); break;
  581. #if E_STEPPERS > 3
  582. case 6: case 7: oldstatus = E3_ENABLE_READ(); ENABLE_AXIS_E3(); break;
  583. #endif // E_STEPPERS > 3
  584. #endif // E_STEPPERS > 2
  585. #endif // E_STEPPERS > 1
  586. }
  587. #else // !SWITCHING_EXTRUDER
  588. bool oldstatus;
  589. switch (active_extruder) {
  590. default:
  591. #define _CASE_EN(N) case N: oldstatus = E##N##_ENABLE_READ(); ENABLE_AXIS_E##N(); break;
  592. REPEAT(E_STEPPERS, _CASE_EN);
  593. }
  594. #endif
  595. const float olde = current_position.e;
  596. current_position.e += EXTRUDER_RUNOUT_EXTRUDE;
  597. line_to_current_position(MMM_TO_MMS(EXTRUDER_RUNOUT_SPEED));
  598. current_position.e = olde;
  599. planner.set_e_position_mm(olde);
  600. planner.synchronize();
  601. #if ENABLED(SWITCHING_EXTRUDER)
  602. switch (active_extruder) {
  603. default: oldstatus = E0_ENABLE_WRITE(oldstatus); break;
  604. #if E_STEPPERS > 1
  605. case 2: case 3: oldstatus = E1_ENABLE_WRITE(oldstatus); break;
  606. #if E_STEPPERS > 2
  607. case 4: case 5: oldstatus = E2_ENABLE_WRITE(oldstatus); break;
  608. #endif // E_STEPPERS > 2
  609. #endif // E_STEPPERS > 1
  610. }
  611. #else // !SWITCHING_EXTRUDER
  612. switch (active_extruder) {
  613. #define _CASE_RESTORE(N) case N: E##N##_ENABLE_WRITE(oldstatus); break;
  614. REPEAT(E_STEPPERS, _CASE_RESTORE);
  615. }
  616. #endif // !SWITCHING_EXTRUDER
  617. gcode.reset_stepper_timeout(ms);
  618. }
  619. #endif // EXTRUDER_RUNOUT_PREVENT
  620. #if ENABLED(DUAL_X_CARRIAGE)
  621. // handle delayed move timeout
  622. if (delayed_move_time && ELAPSED(ms, delayed_move_time) && IsRunning()) {
  623. // travel moves have been received so enact them
  624. delayed_move_time = 0xFFFFFFFFUL; // force moves to be done
  625. destination = current_position;
  626. prepare_line_to_destination();
  627. planner.synchronize();
  628. }
  629. #endif
  630. TERN_(TEMP_STAT_LEDS, handle_status_leds());
  631. TERN_(MONITOR_DRIVER_STATUS, monitor_tmc_drivers());
  632. TERN_(MONITOR_L6470_DRIVER_STATUS, L64xxManager.monitor_driver());
  633. // Limit check_axes_activity frequency to 10Hz
  634. static millis_t next_check_axes_ms = 0;
  635. if (ELAPSED(ms, next_check_axes_ms)) {
  636. planner.check_axes_activity();
  637. next_check_axes_ms = ms + 100UL;
  638. }
  639. #if PIN_EXISTS(FET_SAFETY)
  640. static millis_t FET_next;
  641. if (ELAPSED(ms, FET_next)) {
  642. FET_next = ms + FET_SAFETY_DELAY; // 2µs pulse every FET_SAFETY_DELAY mS
  643. OUT_WRITE(FET_SAFETY_PIN, !FET_SAFETY_INVERTED);
  644. DELAY_US(2);
  645. WRITE(FET_SAFETY_PIN, FET_SAFETY_INVERTED);
  646. }
  647. #endif
  648. }
  649. /**
  650. * Standard idle routine keeps the machine alive:
  651. * - Core Marlin activities
  652. * - Manage heaters (and Watchdog)
  653. * - Max7219 heartbeat, animation, etc.
  654. *
  655. * Only after setup() is complete:
  656. * - Handle filament runout sensors
  657. * - Run HAL idle tasks
  658. * - Handle Power-Loss Recovery
  659. * - Run StallGuard endstop checks
  660. * - Handle SD Card insert / remove
  661. * - Handle USB Flash Drive insert / remove
  662. * - Announce Host Keepalive state (if any)
  663. * - Update the Print Job Timer state
  664. * - Update the Beeper queue
  665. * - Read Buttons and Update the LCD
  666. * - Run i2c Position Encoders
  667. * - Auto-report Temperatures / SD Status
  668. * - Update the Průša MMU2
  669. * - Handle Joystick jogging
  670. */
  671. void idle(bool no_stepper_sleep/*=false*/) {
  672. #if ENABLED(MARLIN_DEV_MODE)
  673. static uint16_t idle_depth = 0;
  674. if (++idle_depth > 5) SERIAL_ECHOLNPAIR("idle() call depth: ", idle_depth);
  675. #endif
  676. // Core Marlin activities
  677. manage_inactivity(no_stepper_sleep);
  678. // Manage Heaters (and Watchdog)
  679. thermalManager.manage_heater();
  680. // Max7219 heartbeat, animation, etc
  681. TERN_(MAX7219_DEBUG, max7219.idle_tasks());
  682. // Return if setup() isn't completed
  683. if (marlin_state == MF_INITIALIZING) goto IDLE_DONE;
  684. // TODO: Still causing errors
  685. (void)check_tool_sensor_stats(active_extruder, true);
  686. // Handle filament runout sensors
  687. TERN_(HAS_FILAMENT_SENSOR, runout.run());
  688. // Run HAL idle tasks
  689. TERN_(HAL_IDLETASK, HAL_idletask());
  690. // Check network connection
  691. TERN_(HAS_ETHERNET, ethernet.check());
  692. // Handle Power-Loss Recovery
  693. #if ENABLED(POWER_LOSS_RECOVERY) && PIN_EXISTS(POWER_LOSS)
  694. if (IS_SD_PRINTING()) recovery.outage();
  695. #endif
  696. // Run StallGuard endstop checks
  697. #if ENABLED(SPI_ENDSTOPS)
  698. if (endstops.tmc_spi_homing.any && TERN1(IMPROVE_HOMING_RELIABILITY, ELAPSED(millis(), sg_guard_period)))
  699. LOOP_L_N(i, 4) if (endstops.tmc_spi_homing_check()) break; // Read SGT 4 times per idle loop
  700. #endif
  701. // Handle SD Card insert / remove
  702. TERN_(SDSUPPORT, card.manage_media());
  703. // Handle USB Flash Drive insert / remove
  704. TERN_(USB_FLASH_DRIVE_SUPPORT, card.diskIODriver()->idle());
  705. // Announce Host Keepalive state (if any)
  706. TERN_(HOST_KEEPALIVE_FEATURE, gcode.host_keepalive());
  707. // Update the Print Job Timer state
  708. TERN_(PRINTCOUNTER, print_job_timer.tick());
  709. // Update the Beeper queue
  710. TERN_(USE_BEEPER, buzzer.tick());
  711. // Handle UI input / draw events
  712. TERN(DWIN_CREALITY_LCD, DWIN_Update(), ui.update());
  713. // Run i2c Position Encoders
  714. #if ENABLED(I2C_POSITION_ENCODERS)
  715. {
  716. static millis_t i2cpem_next_update_ms;
  717. if (planner.has_blocks_queued()) {
  718. const millis_t ms = millis();
  719. if (ELAPSED(ms, i2cpem_next_update_ms)) {
  720. I2CPEM.update();
  721. i2cpem_next_update_ms = ms + I2CPE_MIN_UPD_TIME_MS;
  722. }
  723. }
  724. }
  725. #endif
  726. // Auto-report Temperatures / SD Status
  727. #if HAS_AUTO_REPORTING
  728. if (!gcode.autoreport_paused) {
  729. TERN_(AUTO_REPORT_TEMPERATURES, thermalManager.auto_reporter.tick());
  730. TERN_(AUTO_REPORT_SD_STATUS, card.auto_reporter.tick());
  731. TERN_(AUTO_REPORT_POSITION, position_auto_reporter.tick());
  732. TERN_(BUFFER_MONITORING, queue.auto_report_buffer_statistics());
  733. }
  734. #endif
  735. // Update the Průša MMU2
  736. TERN_(HAS_PRUSA_MMU2, mmu2.mmu_loop());
  737. // Handle Joystick jogging
  738. TERN_(POLL_JOG, joystick.inject_jog_moves());
  739. // Direct Stepping
  740. TERN_(DIRECT_STEPPING, page_manager.write_responses());
  741. // Update the LVGL interface
  742. TERN_(HAS_TFT_LVGL_UI, LV_TASK_HANDLER());
  743. IDLE_DONE:
  744. TERN_(MARLIN_DEV_MODE, idle_depth--);
  745. return;
  746. }
  747. /**
  748. * Kill all activity and lock the machine.
  749. * After this the machine will need to be reset.
  750. */
  751. void kill(PGM_P const lcd_error/*=nullptr*/, PGM_P const lcd_component/*=nullptr*/, const bool steppers_off/*=false*/) {
  752. thermalManager.disable_all_heaters();
  753. TERN_(HAS_CUTTER, cutter.kill()); // Full cutter shutdown including ISR control
  754. // Echo the LCD message to serial for extra context
  755. if (lcd_error) { SERIAL_ECHO_START(); SERIAL_ECHOLNPGM_P(lcd_error); }
  756. #if HAS_DISPLAY
  757. ui.kill_screen(lcd_error ?: GET_TEXT(MSG_KILLED), lcd_component ?: NUL_STR);
  758. #else
  759. UNUSED(lcd_error); UNUSED(lcd_component);
  760. #endif
  761. TERN_(HAS_TFT_LVGL_UI, lv_draw_error_message(lcd_error));
  762. // "Error:Printer halted. kill() called!"
  763. SERIAL_ERROR_MSG(STR_ERR_KILLED);
  764. #ifdef ACTION_ON_KILL
  765. host_action_kill();
  766. #endif
  767. minkill(steppers_off);
  768. }
  769. void minkill(const bool steppers_off/*=false*/) {
  770. // Wait a short time (allows messages to get out before shutting down.
  771. for (int i = 1000; i--;) DELAY_US(600);
  772. cli(); // Stop interrupts
  773. // Wait to ensure all interrupts stopped
  774. for (int i = 1000; i--;) DELAY_US(250);
  775. // Reiterate heaters off
  776. thermalManager.disable_all_heaters();
  777. TERN_(HAS_CUTTER, cutter.kill()); // Reiterate cutter shutdown
  778. // Power off all steppers (for M112) or just the E steppers
  779. steppers_off ? disable_all_steppers() : disable_e_steppers();
  780. TERN_(PSU_CONTROL, powerManager.power_off());
  781. TERN_(HAS_SUICIDE, suicide());
  782. #if EITHER(HAS_KILL, SOFT_RESET_ON_KILL)
  783. // Wait for both KILL and ENC to be released
  784. while (TERN0(HAS_KILL, kill_state()) || TERN0(SOFT_RESET_ON_KILL, ui.button_pressed()))
  785. watchdog_refresh();
  786. // Wait for either KILL or ENC to be pressed again
  787. while (TERN1(HAS_KILL, !kill_state()) && TERN1(SOFT_RESET_ON_KILL, !ui.button_pressed()))
  788. watchdog_refresh();
  789. // Reboot the board
  790. HAL_reboot();
  791. #else
  792. for (;;) watchdog_refresh(); // Wait for RESET button or power-cycle
  793. #endif
  794. }
  795. /**
  796. * Turn off heaters and stop the print in progress
  797. * After a stop the machine may be resumed with M999
  798. */
  799. void stop() {
  800. thermalManager.disable_all_heaters(); // 'unpause' taken care of in here
  801. print_job_timer.stop();
  802. #if EITHER(PROBING_FANS_OFF, ADVANCED_PAUSE_FANS_PAUSE)
  803. thermalManager.set_fans_paused(false); // Un-pause fans for safety
  804. #endif
  805. if (!IsStopped()) {
  806. SERIAL_ERROR_MSG(STR_ERR_STOPPED);
  807. LCD_MESSAGEPGM(MSG_STOPPED);
  808. safe_delay(350); // allow enough time for messages to get out before stopping
  809. marlin_state = MF_STOPPED;
  810. }
  811. }
  812. inline void tmc_standby_setup() {
  813. #if PIN_EXISTS(X_STDBY)
  814. SET_INPUT_PULLDOWN(X_STDBY_PIN);
  815. #endif
  816. #if PIN_EXISTS(X2_STDBY)
  817. SET_INPUT_PULLDOWN(X2_STDBY_PIN);
  818. #endif
  819. #if PIN_EXISTS(Y_STDBY)
  820. SET_INPUT_PULLDOWN(Y_STDBY_PIN);
  821. #endif
  822. #if PIN_EXISTS(Y2_STDBY)
  823. SET_INPUT_PULLDOWN(Y2_STDBY_PIN);
  824. #endif
  825. #if PIN_EXISTS(Z_STDBY)
  826. SET_INPUT_PULLDOWN(Z_STDBY_PIN);
  827. #endif
  828. #if PIN_EXISTS(Z2_STDBY)
  829. SET_INPUT_PULLDOWN(Z2_STDBY_PIN);
  830. #endif
  831. #if PIN_EXISTS(Z3_STDBY)
  832. SET_INPUT_PULLDOWN(Z3_STDBY_PIN);
  833. #endif
  834. #if PIN_EXISTS(Z4_STDBY)
  835. SET_INPUT_PULLDOWN(Z4_STDBY_PIN);
  836. #endif
  837. #if PIN_EXISTS(I_STDBY)
  838. SET_INPUT_PULLDOWN(I_STDBY_PIN);
  839. #endif
  840. #if PIN_EXISTS(J_STDBY)
  841. SET_INPUT_PULLDOWN(J_STDBY_PIN);
  842. #endif
  843. #if PIN_EXISTS(K_STDBY)
  844. SET_INPUT_PULLDOWN(K_STDBY_PIN);
  845. #endif
  846. #if PIN_EXISTS(E0_STDBY)
  847. SET_INPUT_PULLDOWN(E0_STDBY_PIN);
  848. #endif
  849. #if PIN_EXISTS(E1_STDBY)
  850. SET_INPUT_PULLDOWN(E1_STDBY_PIN);
  851. #endif
  852. #if PIN_EXISTS(E2_STDBY)
  853. SET_INPUT_PULLDOWN(E2_STDBY_PIN);
  854. #endif
  855. #if PIN_EXISTS(E3_STDBY)
  856. SET_INPUT_PULLDOWN(E3_STDBY_PIN);
  857. #endif
  858. #if PIN_EXISTS(E4_STDBY)
  859. SET_INPUT_PULLDOWN(E4_STDBY_PIN);
  860. #endif
  861. #if PIN_EXISTS(E5_STDBY)
  862. SET_INPUT_PULLDOWN(E5_STDBY_PIN);
  863. #endif
  864. #if PIN_EXISTS(E6_STDBY)
  865. SET_INPUT_PULLDOWN(E6_STDBY_PIN);
  866. #endif
  867. #if PIN_EXISTS(E7_STDBY)
  868. SET_INPUT_PULLDOWN(E7_STDBY_PIN);
  869. #endif
  870. }
  871. /**
  872. * Marlin Firmware entry-point. Abandon Hope All Ye Who Enter Here.
  873. * Setup before the program loop:
  874. *
  875. * - Call any special pre-init set for the board
  876. * - Put TMC drivers into Low Power Standby mode
  877. * - Init the serial ports (so setup can be debugged)
  878. * - Set up the kill and suicide pins
  879. * - Prepare (disable) board JTAG and Debug ports
  880. * - Init serial for a connected MKS TFT with WiFi
  881. * - Install Marlin custom Exception Handlers, if set.
  882. * - Init Marlin's HAL interfaces (for SPI, i2c, etc.)
  883. * - Init some optional hardware and features:
  884. * • MAX Thermocouple pins
  885. * • Duet Smart Effector
  886. * • Filament Runout Sensor
  887. * • TMC220x Stepper Drivers (Serial)
  888. * • PSU control
  889. * • Power-loss Recovery
  890. * • L64XX Stepper Drivers (SPI)
  891. * • Stepper Driver Reset: DISABLE
  892. * • TMC Stepper Drivers (SPI)
  893. * • Run BOARD_INIT if defined
  894. * • ESP WiFi
  895. * - Get the Reset Reason and report it
  896. * - Print startup messages and diagnostics
  897. * - Calibrate the HAL DELAY for precise timing
  898. * - Init the buzzer, possibly a custom timer
  899. * - Init more optional hardware:
  900. * • Color LED illumination
  901. * • Neopixel illumination
  902. * • Controller Fan
  903. * • Creality DWIN LCD (show boot image)
  904. * • Tare the Probe if possible
  905. * - Mount the (most likely external) SD Card
  906. * - Load settings from EEPROM (or use defaults)
  907. * - Init the Ethernet Port
  908. * - Init Touch Buttons (for emulated DOGLCD)
  909. * - Adjust the (certainly wrong) current position by the home offset
  910. * - Init the Planner::position (steps) based on current (native) position
  911. * - Initialize more managers and peripherals:
  912. * • Temperatures
  913. * • Print Job Timer
  914. * • Endstops and Endstop Interrupts
  915. * • Stepper ISR - Kind of Important!
  916. * • Servos
  917. * • Servo-based Probe
  918. * • Photograph Pin
  919. * • Laser/Spindle tool Power / PWM
  920. * • Coolant Control
  921. * • Bed Probe
  922. * • Stepper Driver Reset: ENABLE
  923. * • Digipot I2C - Stepper driver current control
  924. * • Stepper DAC - Stepper driver current control
  925. * • Solenoid (probe, or for other use)
  926. * • Home Pin
  927. * • Custom User Buttons
  928. * • Red/Blue Status LEDs
  929. * • Case Light
  930. * • Prusa MMU filament changer
  931. * • Fan Multiplexer
  932. * • Mixing Extruder
  933. * • BLTouch Probe
  934. * • I2C Position Encoders
  935. * • Custom I2C Bus handlers
  936. * • Enhanced tools or extruders:
  937. * • Switching Extruder
  938. * • Switching Nozzle
  939. * • Parking Extruder
  940. * • Magnetic Parking Extruder
  941. * • Switching Toolhead
  942. * • Electromagnetic Switching Toolhead
  943. * • Watchdog Timer - Also Kind of Important!
  944. * • Closed Loop Controller
  945. * - Run Startup Commands, if defined
  946. * - Tell host to close Host Prompts
  947. * - Test Trinamic driver connections
  948. * - Init Prusa MMU2 filament changer
  949. * - Init and test BL24Cxx EEPROM
  950. * - Init Creality DWIN encoder, show faux progress bar
  951. * - Reset Status Message / Show Service Messages
  952. * - Init MAX7219 LED Matrix
  953. * - Init Direct Stepping (Klipper-style motion control)
  954. * - Init TFT LVGL UI (with 3D Graphics)
  955. * - Apply Password Lock - Hold for Authentication
  956. * - Open Touch Screen Calibration screen, if not calibrated
  957. * - Set Marlin to RUNNING State
  958. */
  959. void setup() {
  960. #ifdef FASTIO_INIT
  961. FASTIO_INIT();
  962. #endif
  963. #ifdef BOARD_PREINIT
  964. BOARD_PREINIT(); // Low-level init (before serial init)
  965. #endif
  966. tmc_standby_setup(); // TMC Low Power Standby pins must be set early or they're not usable
  967. #if ENABLED(MARLIN_DEV_MODE)
  968. auto log_current_ms = [&](PGM_P const msg) {
  969. SERIAL_ECHO_START();
  970. SERIAL_CHAR('['); SERIAL_ECHO(millis()); SERIAL_ECHOPGM("] ");
  971. SERIAL_ECHOLNPGM_P(msg);
  972. };
  973. #define SETUP_LOG(M) log_current_ms(PSTR(M))
  974. #else
  975. #define SETUP_LOG(...) NOOP
  976. #endif
  977. #define SETUP_RUN(C) do{ SETUP_LOG(STRINGIFY(C)); C; }while(0)
  978. MYSERIAL1.begin(BAUDRATE);
  979. millis_t serial_connect_timeout = millis() + 1000UL;
  980. while (!MYSERIAL1.connected() && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
  981. #if HAS_MULTI_SERIAL && !HAS_ETHERNET
  982. #ifndef BAUDRATE_2
  983. #define BAUDRATE_2 BAUDRATE
  984. #endif
  985. MYSERIAL2.begin(BAUDRATE_2);
  986. serial_connect_timeout = millis() + 1000UL;
  987. while (!MYSERIAL2.connected() && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
  988. #ifdef SERIAL_PORT_3
  989. #ifndef BAUDRATE_3
  990. #define BAUDRATE_3 BAUDRATE
  991. #endif
  992. MYSERIAL3.begin(BAUDRATE_3);
  993. serial_connect_timeout = millis() + 1000UL;
  994. while (!MYSERIAL3.connected() && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
  995. #endif
  996. #endif
  997. SERIAL_ECHOLNPGM("start");
  998. // Set up these pins early to prevent suicide
  999. #if HAS_KILL
  1000. SETUP_LOG("KILL_PIN");
  1001. #if KILL_PIN_STATE
  1002. SET_INPUT_PULLDOWN(KILL_PIN);
  1003. #else
  1004. SET_INPUT_PULLUP(KILL_PIN);
  1005. #endif
  1006. #endif
  1007. #if HAS_FREEZE_PIN
  1008. SETUP_LOG("FREEZE_PIN");
  1009. SET_INPUT_PULLUP(FREEZE_PIN);
  1010. #endif
  1011. #if HAS_SUICIDE
  1012. SETUP_LOG("SUICIDE_PIN");
  1013. OUT_WRITE(SUICIDE_PIN, !SUICIDE_PIN_STATE);
  1014. #endif
  1015. #ifdef JTAGSWD_RESET
  1016. SETUP_LOG("JTAGSWD_RESET");
  1017. JTAGSWD_RESET();
  1018. #endif
  1019. #if EITHER(DISABLE_DEBUG, DISABLE_JTAG)
  1020. delay(10);
  1021. // Disable any hardware debug to free up pins for IO
  1022. #if ENABLED(DISABLE_DEBUG) && defined(JTAGSWD_DISABLE)
  1023. SETUP_LOG("JTAGSWD_DISABLE");
  1024. JTAGSWD_DISABLE();
  1025. #elif defined(JTAG_DISABLE)
  1026. SETUP_LOG("JTAG_DISABLE");
  1027. JTAG_DISABLE();
  1028. #else
  1029. #error "DISABLE_(DEBUG|JTAG) is not supported for the selected MCU/Board."
  1030. #endif
  1031. #endif
  1032. TERN_(DYNAMIC_VECTORTABLE, hook_cpu_exceptions()); // If supported, install Marlin exception handlers at runtime
  1033. SETUP_RUN(HAL_init());
  1034. // Init and disable SPI thermocouples; this is still needed
  1035. #if TEMP_SENSOR_0_IS_MAX_TC || (TEMP_SENSOR_REDUNDANT_IS_MAX_TC && REDUNDANT_TEMP_MATCH(SOURCE, E0))
  1036. OUT_WRITE(TEMP_0_CS_PIN, HIGH); // Disable
  1037. #endif
  1038. #if TEMP_SENSOR_1_IS_MAX_TC || (TEMP_SENSOR_REDUNDANT_IS_MAX_TC && REDUNDANT_TEMP_MATCH(SOURCE, E1))
  1039. OUT_WRITE(TEMP_1_CS_PIN, HIGH);
  1040. #endif
  1041. #if ENABLED(DUET_SMART_EFFECTOR) && PIN_EXISTS(SMART_EFFECTOR_MOD)
  1042. OUT_WRITE(SMART_EFFECTOR_MOD_PIN, LOW); // Put Smart Effector into NORMAL mode
  1043. #endif
  1044. #if HAS_FILAMENT_SENSOR
  1045. SETUP_RUN(runout.setup());
  1046. #endif
  1047. #if HAS_TMC220x
  1048. SETUP_RUN(tmc_serial_begin());
  1049. #endif
  1050. #if ENABLED(PSU_CONTROL)
  1051. SETUP_LOG("PSU_CONTROL");
  1052. powerManager.init();
  1053. #endif
  1054. #if ENABLED(POWER_LOSS_RECOVERY)
  1055. SETUP_RUN(recovery.setup());
  1056. #endif
  1057. #if HAS_L64XX
  1058. SETUP_RUN(L64xxManager.init()); // Set up SPI, init drivers
  1059. #endif
  1060. #if HAS_STEPPER_RESET
  1061. SETUP_RUN(disableStepperDrivers());
  1062. #endif
  1063. #if HAS_TMC_SPI
  1064. #if DISABLED(TMC_USE_SW_SPI)
  1065. SETUP_RUN(SPI.begin());
  1066. #endif
  1067. SETUP_RUN(tmc_init_cs_pins());
  1068. #endif
  1069. #ifdef BOARD_INIT
  1070. SETUP_LOG("BOARD_INIT");
  1071. BOARD_INIT();
  1072. #endif
  1073. SETUP_RUN(esp_wifi_init());
  1074. // Check startup - does nothing if bootloader sets MCUSR to 0
  1075. const byte mcu = HAL_get_reset_source();
  1076. if (mcu & RST_POWER_ON) SERIAL_ECHOLNPGM(STR_POWERUP);
  1077. if (mcu & RST_EXTERNAL) SERIAL_ECHOLNPGM(STR_EXTERNAL_RESET);
  1078. if (mcu & RST_BROWN_OUT) SERIAL_ECHOLNPGM(STR_BROWNOUT_RESET);
  1079. if (mcu & RST_WATCHDOG) SERIAL_ECHOLNPGM(STR_WATCHDOG_RESET);
  1080. if (mcu & RST_SOFTWARE) SERIAL_ECHOLNPGM(STR_SOFTWARE_RESET);
  1081. HAL_clear_reset_source();
  1082. SERIAL_ECHOLNPGM("Marlin " SHORT_BUILD_VERSION);
  1083. #if defined(STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
  1084. SERIAL_ECHO_MSG(
  1085. " Last Updated: " STRING_DISTRIBUTION_DATE
  1086. " | Author: " STRING_CONFIG_H_AUTHOR
  1087. );
  1088. #endif
  1089. SERIAL_ECHO_MSG(" Compiled: " __DATE__);
  1090. SERIAL_ECHO_MSG(STR_FREE_MEMORY, freeMemory(), STR_PLANNER_BUFFER_BYTES, sizeof(block_t) * (BLOCK_BUFFER_SIZE));
  1091. // Some HAL need precise delay adjustment
  1092. calibrate_delay_loop();
  1093. // Init buzzer pin(s)
  1094. #if USE_BEEPER
  1095. SETUP_RUN(buzzer.init());
  1096. #endif
  1097. // Set up LEDs early
  1098. #if HAS_COLOR_LEDS
  1099. SETUP_RUN(leds.setup());
  1100. #endif
  1101. #if ENABLED(NEOPIXEL2_SEPARATE)
  1102. SETUP_RUN(leds2.setup());
  1103. #endif
  1104. #if ENABLED(USE_CONTROLLER_FAN) // Set up fan controller to initialize also the default configurations.
  1105. SETUP_RUN(controllerFan.setup());
  1106. #endif
  1107. // UI must be initialized before EEPROM
  1108. // (because EEPROM code calls the UI).
  1109. #if ENABLED(DWIN_CREALITY_LCD)
  1110. SETUP_RUN(DWIN_Startup());
  1111. #else
  1112. SETUP_RUN(ui.init());
  1113. #if BOTH(HAS_WIRED_LCD, SHOW_BOOTSCREEN)
  1114. SETUP_RUN(ui.show_bootscreen());
  1115. const millis_t bootscreen_ms = millis();
  1116. #endif
  1117. SETUP_RUN(ui.reset_status()); // Load welcome message early. (Retained if no errors exist.)
  1118. #endif
  1119. #if PIN_EXISTS(SAFE_POWER)
  1120. #if HAS_DRIVER_SAFE_POWER_PROTECT
  1121. SETUP_RUN(stepper_driver_backward_check());
  1122. #else
  1123. SETUP_LOG("SAFE_POWER");
  1124. OUT_WRITE(SAFE_POWER_PIN, HIGH);
  1125. #endif
  1126. #endif
  1127. #if ENABLED(PROBE_TARE)
  1128. SETUP_RUN(probe.tare_init());
  1129. #endif
  1130. #if BOTH(SDSUPPORT, SDCARD_EEPROM_EMULATION)
  1131. SETUP_RUN(card.mount()); // Mount media with settings before first_load
  1132. #endif
  1133. SETUP_RUN(settings.first_load()); // Load data from EEPROM if available (or use defaults)
  1134. // This also updates variables in the planner, elsewhere
  1135. #if HAS_ETHERNET
  1136. SETUP_RUN(ethernet.init());
  1137. #endif
  1138. #if HAS_TOUCH_BUTTONS
  1139. SETUP_RUN(touch.init());
  1140. #endif
  1141. TERN_(HAS_M206_COMMAND, current_position += home_offset); // Init current position based on home_offset
  1142. sync_plan_position(); // Vital to init stepper/planner equivalent for current_position
  1143. SETUP_RUN(thermalManager.init()); // Initialize temperature loop
  1144. SETUP_RUN(print_job_timer.init()); // Initial setup of print job timer
  1145. SETUP_RUN(endstops.init()); // Init endstops and pullups
  1146. SETUP_RUN(stepper.init()); // Init stepper. This enables interrupts!
  1147. #if HAS_SERVOS
  1148. SETUP_RUN(servo_init());
  1149. #endif
  1150. #if HAS_Z_SERVO_PROBE
  1151. SETUP_RUN(probe.servo_probe_init());
  1152. #endif
  1153. #if HAS_PHOTOGRAPH
  1154. OUT_WRITE(PHOTOGRAPH_PIN, LOW);
  1155. #endif
  1156. #if HAS_CUTTER
  1157. SETUP_RUN(cutter.init());
  1158. #endif
  1159. #if ENABLED(COOLANT_MIST)
  1160. OUT_WRITE(COOLANT_MIST_PIN, COOLANT_MIST_INVERT); // Init Mist Coolant OFF
  1161. #endif
  1162. #if ENABLED(COOLANT_FLOOD)
  1163. OUT_WRITE(COOLANT_FLOOD_PIN, COOLANT_FLOOD_INVERT); // Init Flood Coolant OFF
  1164. #endif
  1165. #if HAS_BED_PROBE
  1166. SETUP_RUN(endstops.enable_z_probe(false));
  1167. #endif
  1168. #if HAS_STEPPER_RESET
  1169. SETUP_RUN(enableStepperDrivers());
  1170. #endif
  1171. #if HAS_MOTOR_CURRENT_I2C
  1172. SETUP_RUN(digipot_i2c.init());
  1173. #endif
  1174. #if HAS_MOTOR_CURRENT_DAC
  1175. SETUP_RUN(stepper_dac.init());
  1176. #endif
  1177. #if EITHER(Z_PROBE_SLED, SOLENOID_PROBE) && HAS_SOLENOID_1
  1178. OUT_WRITE(SOL1_PIN, LOW); // OFF
  1179. #endif
  1180. #if HAS_HOME
  1181. SET_INPUT_PULLUP(HOME_PIN);
  1182. #endif
  1183. #if ENABLED(CUSTOM_USER_BUTTONS)
  1184. #define INIT_CUSTOM_USER_BUTTON_PIN(N) do{ SET_INPUT(BUTTON##N##_PIN); WRITE(BUTTON##N##_PIN, !BUTTON##N##_HIT_STATE); }while(0)
  1185. #if HAS_CUSTOM_USER_BUTTON(1)
  1186. INIT_CUSTOM_USER_BUTTON_PIN(1);
  1187. #endif
  1188. #if HAS_CUSTOM_USER_BUTTON(2)
  1189. INIT_CUSTOM_USER_BUTTON_PIN(2);
  1190. #endif
  1191. #if HAS_CUSTOM_USER_BUTTON(3)
  1192. INIT_CUSTOM_USER_BUTTON_PIN(3);
  1193. #endif
  1194. #if HAS_CUSTOM_USER_BUTTON(4)
  1195. INIT_CUSTOM_USER_BUTTON_PIN(4);
  1196. #endif
  1197. #if HAS_CUSTOM_USER_BUTTON(5)
  1198. INIT_CUSTOM_USER_BUTTON_PIN(5);
  1199. #endif
  1200. #if HAS_CUSTOM_USER_BUTTON(6)
  1201. INIT_CUSTOM_USER_BUTTON_PIN(6);
  1202. #endif
  1203. #if HAS_CUSTOM_USER_BUTTON(7)
  1204. INIT_CUSTOM_USER_BUTTON_PIN(7);
  1205. #endif
  1206. #if HAS_CUSTOM_USER_BUTTON(8)
  1207. INIT_CUSTOM_USER_BUTTON_PIN(8);
  1208. #endif
  1209. #if HAS_CUSTOM_USER_BUTTON(9)
  1210. INIT_CUSTOM_USER_BUTTON_PIN(9);
  1211. #endif
  1212. #if HAS_CUSTOM_USER_BUTTON(10)
  1213. INIT_CUSTOM_USER_BUTTON_PIN(10);
  1214. #endif
  1215. #if HAS_CUSTOM_USER_BUTTON(11)
  1216. INIT_CUSTOM_USER_BUTTON_PIN(11);
  1217. #endif
  1218. #if HAS_CUSTOM_USER_BUTTON(12)
  1219. INIT_CUSTOM_USER_BUTTON_PIN(12);
  1220. #endif
  1221. #if HAS_CUSTOM_USER_BUTTON(13)
  1222. INIT_CUSTOM_USER_BUTTON_PIN(13);
  1223. #endif
  1224. #if HAS_CUSTOM_USER_BUTTON(14)
  1225. INIT_CUSTOM_USER_BUTTON_PIN(14);
  1226. #endif
  1227. #if HAS_CUSTOM_USER_BUTTON(15)
  1228. INIT_CUSTOM_USER_BUTTON_PIN(15);
  1229. #endif
  1230. #if HAS_CUSTOM_USER_BUTTON(16)
  1231. INIT_CUSTOM_USER_BUTTON_PIN(16);
  1232. #endif
  1233. #if HAS_CUSTOM_USER_BUTTON(17)
  1234. INIT_CUSTOM_USER_BUTTON_PIN(17);
  1235. #endif
  1236. #if HAS_CUSTOM_USER_BUTTON(18)
  1237. INIT_CUSTOM_USER_BUTTON_PIN(18);
  1238. #endif
  1239. #if HAS_CUSTOM_USER_BUTTON(19)
  1240. INIT_CUSTOM_USER_BUTTON_PIN(19);
  1241. #endif
  1242. #if HAS_CUSTOM_USER_BUTTON(20)
  1243. INIT_CUSTOM_USER_BUTTON_PIN(20);
  1244. #endif
  1245. #if HAS_CUSTOM_USER_BUTTON(21)
  1246. INIT_CUSTOM_USER_BUTTON_PIN(21);
  1247. #endif
  1248. #if HAS_CUSTOM_USER_BUTTON(22)
  1249. INIT_CUSTOM_USER_BUTTON_PIN(22);
  1250. #endif
  1251. #if HAS_CUSTOM_USER_BUTTON(23)
  1252. INIT_CUSTOM_USER_BUTTON_PIN(23);
  1253. #endif
  1254. #if HAS_CUSTOM_USER_BUTTON(24)
  1255. INIT_CUSTOM_USER_BUTTON_PIN(24);
  1256. #endif
  1257. #if HAS_CUSTOM_USER_BUTTON(25)
  1258. INIT_CUSTOM_USER_BUTTON_PIN(25);
  1259. #endif
  1260. #endif
  1261. #if PIN_EXISTS(STAT_LED_RED)
  1262. OUT_WRITE(STAT_LED_RED_PIN, LOW); // OFF
  1263. #endif
  1264. #if PIN_EXISTS(STAT_LED_BLUE)
  1265. OUT_WRITE(STAT_LED_BLUE_PIN, LOW); // OFF
  1266. #endif
  1267. #if ENABLED(CASE_LIGHT_ENABLE)
  1268. SETUP_RUN(caselight.init());
  1269. #endif
  1270. #if HAS_PRUSA_MMU1
  1271. SETUP_RUN(mmu_init());
  1272. #endif
  1273. #if HAS_FANMUX
  1274. SETUP_RUN(fanmux_init());
  1275. #endif
  1276. #if ENABLED(MIXING_EXTRUDER)
  1277. SETUP_RUN(mixer.init());
  1278. #endif
  1279. #if ENABLED(BLTOUCH)
  1280. SETUP_RUN(bltouch.init(/*set_voltage=*/true));
  1281. #endif
  1282. #if ENABLED(I2C_POSITION_ENCODERS)
  1283. SETUP_RUN(I2CPEM.init());
  1284. #endif
  1285. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  1286. SETUP_LOG("i2c...");
  1287. i2c.onReceive(i2c_on_receive);
  1288. i2c.onRequest(i2c_on_request);
  1289. #endif
  1290. #if DO_SWITCH_EXTRUDER
  1291. SETUP_RUN(move_extruder_servo(0)); // Initialize extruder servo
  1292. #endif
  1293. #if ENABLED(SWITCHING_NOZZLE)
  1294. SETUP_LOG("SWITCHING_NOZZLE");
  1295. // Initialize nozzle servo(s)
  1296. #if SWITCHING_NOZZLE_TWO_SERVOS
  1297. lower_nozzle(0);
  1298. raise_nozzle(1);
  1299. #else
  1300. move_nozzle_servo(0);
  1301. #endif
  1302. #endif
  1303. #if ENABLED(PARKING_EXTRUDER)
  1304. SETUP_RUN(pe_solenoid_init());
  1305. #elif ENABLED(MAGNETIC_PARKING_EXTRUDER)
  1306. SETUP_RUN(mpe_settings_init());
  1307. #elif ENABLED(SWITCHING_TOOLHEAD)
  1308. SETUP_RUN(swt_init());
  1309. #elif ENABLED(ELECTROMAGNETIC_SWITCHING_TOOLHEAD)
  1310. SETUP_RUN(est_init());
  1311. #endif
  1312. #if ENABLED(USE_WATCHDOG)
  1313. SETUP_RUN(watchdog_init()); // Reinit watchdog after HAL_get_reset_source call
  1314. #endif
  1315. #if ENABLED(EXTERNAL_CLOSED_LOOP_CONTROLLER)
  1316. SETUP_RUN(closedloop.init());
  1317. #endif
  1318. #ifdef STARTUP_COMMANDS
  1319. SETUP_LOG("STARTUP_COMMANDS");
  1320. queue.inject_P(PSTR(STARTUP_COMMANDS));
  1321. #endif
  1322. #if ENABLED(HOST_PROMPT_SUPPORT)
  1323. SETUP_RUN(host_action_prompt_end());
  1324. #endif
  1325. #if HAS_TRINAMIC_CONFIG && DISABLED(PSU_DEFAULT_OFF)
  1326. SETUP_RUN(test_tmc_connection());
  1327. #endif
  1328. #if HAS_DRIVER_SAFE_POWER_PROTECT
  1329. SETUP_RUN(stepper_driver_backward_report());
  1330. #endif
  1331. #if HAS_PRUSA_MMU2
  1332. SETUP_RUN(mmu2.init());
  1333. #endif
  1334. #if ENABLED(IIC_BL24CXX_EEPROM)
  1335. BL24CXX::init();
  1336. const uint8_t err = BL24CXX::check();
  1337. SERIAL_ECHO_TERNARY(err, "BL24CXX Check ", "failed", "succeeded", "!\n");
  1338. #endif
  1339. #if ENABLED(DWIN_CREALITY_LCD)
  1340. Encoder_Configuration();
  1341. HMI_Init();
  1342. HMI_SetLanguageCache();
  1343. HMI_StartFrame(true);
  1344. DWIN_StatusChanged_P(GET_TEXT(WELCOME_MSG));
  1345. #endif
  1346. #if HAS_SERVICE_INTERVALS && DISABLED(DWIN_CREALITY_LCD)
  1347. ui.reset_status(true); // Show service messages or keep current status
  1348. #endif
  1349. #if ENABLED(MAX7219_DEBUG)
  1350. SETUP_RUN(max7219.init());
  1351. #endif
  1352. #if ENABLED(DIRECT_STEPPING)
  1353. SETUP_RUN(page_manager.init());
  1354. #endif
  1355. #if HAS_TFT_LVGL_UI
  1356. #if ENABLED(SDSUPPORT)
  1357. if (!card.isMounted()) SETUP_RUN(card.mount()); // Mount SD to load graphics and fonts
  1358. #endif
  1359. SETUP_RUN(tft_lvgl_init());
  1360. #endif
  1361. #if BOTH(HAS_WIRED_LCD, SHOW_BOOTSCREEN)
  1362. const millis_t elapsed = millis() - bootscreen_ms;
  1363. #if ENABLED(MARLIN_DEV_MODE)
  1364. SERIAL_ECHOLNPAIR("elapsed=", elapsed);
  1365. #endif
  1366. SETUP_RUN(ui.bootscreen_completion(elapsed));
  1367. #endif
  1368. #if ENABLED(PASSWORD_ON_STARTUP)
  1369. SETUP_RUN(password.lock_machine()); // Will not proceed until correct password provided
  1370. #endif
  1371. #if BOTH(HAS_LCD_MENU, TOUCH_SCREEN_CALIBRATION) && EITHER(TFT_CLASSIC_UI, TFT_COLOR_UI)
  1372. ui.check_touch_calibration();
  1373. #endif
  1374. marlin_state = MF_RUNNING;
  1375. SETUP_LOG("setup() completed.");
  1376. }
  1377. /**
  1378. * The main Marlin program loop
  1379. *
  1380. * - Call idle() to handle all tasks between G-code commands
  1381. * Note that no G-codes from the queue can be executed during idle()
  1382. * but many G-codes can be called directly anytime like macros.
  1383. * - Check whether SD card auto-start is needed now.
  1384. * - Check whether SD print finishing is needed now.
  1385. * - Run one G-code command from the immediate or main command queue
  1386. * and open up one space. Commands in the main queue may come from sd
  1387. * card, host, or by direct injection. The queue will continue to fill
  1388. * as long as idle() or manage_inactivity() are being called.
  1389. */
  1390. void loop() {
  1391. do {
  1392. idle();
  1393. #if ENABLED(SDSUPPORT)
  1394. if (card.flag.abort_sd_printing) abortSDPrinting();
  1395. if (marlin_state == MF_SD_COMPLETE) finishSDPrinting();
  1396. #endif
  1397. queue.advance();
  1398. endstops.event_handler();
  1399. TERN_(HAS_TFT_LVGL_UI, printer_state_polling());
  1400. } while (ENABLED(__AVR__)); // Loop forever on slower (AVR) boards
  1401. }