-
-
Notifications
You must be signed in to change notification settings - Fork 19.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] M0 injection on end of SD card causing nozzle to linger heated on model #14774
Comments
Marlin just reads through the gcode, there is no such thing as an 'end gcode' as far as it is concerned. Does your end gcode tell the print head to move out of the way? |
This is a bug report not a support request. Your understanding of Marlin's functionality is dated. If you look at the code I posted you can see where the g code is inserted. This insertion was not an issue quite recently. I have an idea about what's causing the improper end of SD file detection and will mess with it tonight if I have time. To clarify it previously completed all the g code in an sd file then the g code was inserted at the proper place after the file was complete. Now the inserted command comes too soon. Personally I think this feature is useless and should just be removed. If not removed it needs a far better method of detecting end of SD files. Bare minimum it needs a define to disable this behavior. |
This should help to clarify things I have attached g code and the capture from the serial. Important part of the log:
Important part of the g code:
This means that M0 is getting injected before it even gets to the "end g code" section. |
I like the use of host prompts to diagnose :) |
It looks like |
I hat "click to continue" anyway, so I did the following:
|
@mikeshub is the problem still there? |
Lack of Activity |
Looks like this code works in my case, so far. Heated nozzle stopped on printed part with original marlin code. #if ENABLED(PRINTER_EVENT_LEDS)
printerEventLEDs.onPrintCompleted();
#if HAS_RESUME_CONTINUE
enqueue_now_P(PSTR("M0 S"
//inject_P(PSTR("M0 S"
#if HAS_LCD_MENU
"1800"
#else
"60"
#endif
)); |
@tol2cj — We have a winner! It's amazing how long an issue can go before someone with moxie comes along with the correct cause and the correct solution. Indeed, the command injection was out of order, and your solution makes sure that heaters and other things in your ending g-code (which tends to be near the end of the file) gets executed, whereas previously the Mea culpa, however! When I did a reform and audit of the G-code injection stuff, I totally missed this one. |
Fixes #14774 Co-Authored-By: tol2cj <[email protected]>
Hi, I have a doubt about "mine solution", today is not working. Why there is
"Q" parameter after the "M0", now?
|
I am so sorry, I have tested that on too short g-code. Preseted solution is not correct. Because I am not as versed in Marlin code I am going to comment out block of |
Fixes MarlinFirmware#14774 Co-Authored-By: tol2cj <[email protected]>
* Add sanity-check for new Advanced Pause option Followup to MarlinFirmware#16372 * Include macros for delta ABC * Update Russian language (MarlinFirmware#16745) * Fix BTT SKR 1.4 extra endstop pins (MarlinFirmware#16738) * Option for Trigorilla 1.4 with add-on endstops board (MarlinFirmware#16737) * Consistent M112 with Emergency Parser (MarlinFirmware#16747) * Improve mfadd helper script - Use the original branch name if none is supplied - Set the remote tracking to the source - Accept User/Branch or User:Branch syntax * Clean up i2c encoder, sanitize serial * Misc cleanup, whitespace * Encapsulate probe as singleton class (MarlinFirmware#16751) * G34 automatic point assignment (MarlinFirmware#16473) * Fix Temperature::over_autostart_threshold (MarlinFirmware#16749) * Update Russian language (MarlinFirmware#16750) * Fix CURRENT_STEP_DOWN compile error * Drop obsolete SD special char handling See MarlinFirmware#14035 * Probe singleton patch Followup to MarlinFirmware#16751 * Fix RGB / Neopixel white color bug See MarlinFirmware#16752 * Suppress a compile warning * More 8-extruder fixups * Add EXP labels to SKR pins * Fix LPC build with USE_WATCHDOG off * Minor string storage optimization * Apply REPEAT, RREPEAT, and loop macros (MarlinFirmware#16757) * Revert breaking change to _FAN_PWM macro * Add Z_AFTER_HOMING to raise Z more in G28 (MarlinFirmware#16755) * Corner Leveling: Add inset for each side (MarlinFirmware#16759) * (c) 2020 * Tweak mfqp script * Use a different Configurations branch for CI * Fix LCD Z Move character LCD display line (MarlinFirmware#16772) * Fix warning for ESP32 (MarlinFirmware#16771) * [cron] Bump distribution date * Force T0 in UBL G29 on all multi-hotend setups (MarlinFirmware#16774) * Keep secure credentials in a separate config file (MarlinFirmware#16773) * STM32duino - Use SDIO for onboard SD (MarlinFirmware#16756) * Fix E stepper stays on bug Fixes MarlinFirmware#16753 * Fix Arduino IDE compile for DUE Fixes MarlinFirmware#16767 * Fix CALIBRATION_GCODE pin handling * Upgrade an ifdef * More updates for 8 extruders, REPEAT * [cron] Bump distribution date (2020-02-05) * Add MKS Base 1.6 board (MarlinFirmware#16783) * Direct download link for configs * [cron] Bump distribution date (2020-02-06) * Split up MKS_RUMBA32 into two variants (MarlinFirmware#16781) * G26: Allow to set retraction for UBL mesh test (MarlinFirmware#16511) * Remove extraneous Serial init (MarlinFirmware#16794) * Fix probe with multi-endstops (MarlinFirmware#16793) * [cron] Bump distribution date (2020-02-07) * [cron] Bump distribution date (2020-02-08) * Clean up Makefle indentation * Add .editorconfig file * Tweak ABL logging, document probing * [cron] Bump distribution date (2020-02-09) * Coolstep for TMC2130, 2209, 5130, 5160 (MarlinFirmware#16790) * Better probe fail handling (MarlinFirmware#16811) * Adafruit Grand Central M4 fixes (MarlinFirmware#16812) * Minor HAL cleanup * Move MSG_MARLIN * Show print time with PRINTER_EVENT_LEDS * Tweak parser warning * Bump config version to 020004 (MarlinFirmware#16816) * Add PID, probe offsets to ExtUI (MarlinFirmware#16792) * [cron] Bump distribution date (2020-02-10) * Tweak LPC1768 upload py script * Add mftest -b (auto-build) and -u (upload) - Implement the equivalent of auto-build for the shell environment by using the MOTHERBOARD setting to look up the env: entries. * Revert change to AXIS_DRIVER_TYPE_X2 - Revisit this to figure out why it breaks * Revert "Coolstep for TMC2130, 2209, 5130, 5160" Reverting MarlinFirmware#16790 as not ready for primetime. * Add a caution to drivers.h * Update MKS BASE and v1.6 pins (MarlinFirmware#16806) * Add g-code quoted strings, improve stream code (MarlinFirmware#16818) * Fix out-of-order M0 after SD printing Fixes MarlinFirmware#14774 Co-Authored-By: tol2cj <[email protected]> * Fix out-of-order M0 after SD printing Fixes MarlinFirmware#14774 Co-Authored-By: tol2cj <[email protected]> * Enable hotend / bed PID separately in ExtUI (MarlinFirmware#16827) * Fix MKS Robin Nano platformio.ini entry (MarlinFirmware#16826) * Unify step pulse timing of ISR / babystep (MarlinFirmware#16813) * [cron] Bump distribution date (2020-02-11) * Update SAMD51 EEPROM repo link (MarlinFirmware#16832) * Undo driver type auto-assignment for now Good general concept but needs more time to develop and group with a stepper suite. * No Z sensorless req'd if homing with probe Fixes MarlinFirmware#16674 * Recommend Z Safe Homing Co-Authored-By: Vertabreaker <[email protected]> * Use prior babystep delay method (MarlinFirmware#16833) * Function-style critical section macros * Fix up tests * Simplify old safe homing sanity check * Prevent pin glitches on out commutation (MarlinFirmware#16835) Better for switching from pulled input to output and also set real output (with no input enabled). * [cron] Bump distribution date (2020-02-12) * Define MarlinSerial instances for DGUS (MarlinFirmware#16841) * No limit needed on this raise Remove an extraneous limit from MarlinFirmware#16811. * [cron] Bump distribution date (2020-02-13) * [cron] Bump distribution date (2020-02-14) * Fix G-code line parsing (MarlinFirmware#16840) * Ping the job timer in M140 (MarlinFirmware#16849) * Remove unused queue.stopped_N (MarlinFirmware#16850) * Don't assert safe homing for delta/scara * Fix ESP32 warning, specify supported version * Add ESPAsyncTCP to lib_ignore (MarlinFirmware#16844) * Add RAMPS 1.4.4 to AGCM4 (MarlinFirmware#16606) * Clean up host actions code (MarlinFirmware#16856) * Optimize "Dismiss" string * Clean up stepper and babystep (MarlinFirmware#16857) * Fysetc S6 pins / LCD updates (MarlinFirmware#16830) * [cron] Bump distribution date (2020-02-15) * Fix mftest -b and -u. Add --help. * Fix a BORG compile warning * Fix byte-to-percent display Fixes MarlinFirmware#16866 * Conceal float rounding errors on display Fix MarlinFirmware#16866 * [cron] Bump distribution date (2020-02-16) * Double ADC read frequency (MarlinFirmware#16864) * EXPERIMENTAL integrated BABYSTEPPING (MarlinFirmware#16829) * Show '*' for zero 'stst' flag * Require TMCStepper 0.6.2 * Defer updated ADC * Move SAMD51 Temperature timer to RTC (MarlinFirmware#16868) * Fix unknown command on empty lines (MarlinFirmware#16867) * Fix mftest -b -u line match * Update French language (MarlinFirmware#16877) * Put ESP32 I2S stepper task and Marlin on the same core (MarlinFirmware#16874) * Fix babystep include, typos in stepper.cpp Fix MarlinFirmware#16881 * [cron] Bump distribution date (2020-02-17) * [cron] Bump distribution date (2020-02-18) * [cron] Bump distribution date (2020-02-19) * [cron] Bump distribution date (2020-02-20) * Serial redirect for Move Command when stopping (MarlinFirmware#16906) * [cron] Bump distribution date (2020-02-21) * Single envs for specific boards * Inline manage_inactivity, tweak autoreport_paused * Function for CONFIG_ECHO_HEADING * Show end prompt with Print Event LEDs * Add a note on EEPROM todo * Tweak process_line_done for speed * More EEPROM cleanup * Followup to autoreport patch (MarlinFirmware#16914) See a1f026f * Disable spreadcycle in tmc_enable_stallguard<2209> (MarlinFirmware#16890) * Fix EEPROM errors with EXTRUDERS == 0 (MarlinFirmware#16898) * Add PICA shields support (MarlinFirmware#16891) * Tweak pins spacing, comments * Version 2.0.4 Release * [cron] Bump distribution date (2020-02-22) * Use moves_free in ok_to_send * Hotfix for Babystepping * CoreXY Babystepping hotfix * Use moves_free in ok_to_send * [cron] Bump distribution date (2020-02-22) * Hotfix for Babystepping * [ESP32] Allow user to define pins for hardware Serial1 and Serial2 (MarlinFirmware#16918) * CoreXY Babystepping hotfix * Version 2.0.4.1 Release * [cron] Bump distribution date (2020-02-23) * Finish Custom User Menu sanity-check (MarlinFirmware#16917) * Followup to babystep hotfix * Fix M0/M1 broken wait loop (MarlinFirmware#16921) * Define ANET_FULL_GRAPHICS_LCD pins for SKR 1.4 (MarlinFirmware#16928) * Version 2.0.4.2 Release * Suppress "packed member" warning * Suppress "packed member" warning * Commit last SD line before fileHasFinished * Allow LCD_PIXEL_WIDTH/HEIGHT override * Allow USE_GCODE_SUBCODES for debugging * Sync Italian language (MarlinFirmware#16935) * Reduce default TMC baudrate to 57600 with Software Serial (MarlinFirmware#16930) * [cron] Bump distribution date (2020-02-24) * Fix AXIS_HAS_SW_SERIAL * Simplified E_AXIS_HAS macro * "Init. Media" => "Attach Media" * Fix Babystepping loop (again) * BS_TOTAL_AXIS => BS_TOTAL_IND * Allow Z_SAFE_HOMING_POINT outside bed (MarlinFirmware#16945) * Restore tabs in Makefile (MarlinFirmware#16944) * Fix card_eof error * Version 2.0.4.3 Release * Allow Z_SAFE_HOMING_POINT outside bed (MarlinFirmware#16945) * Restore tabs in Makefile (MarlinFirmware#16944) * Fix card_eof error * [cron] Bump distribution date (2020-02-25) * Update POWER_LOSS_PIN comment (MarlinFirmware#16957) * Update Italian language (MarlinFirmware#16947) * Fix LCD cutter/bed icons overlapping (MarlinFirmware#16956) * Fix SKR 1.4 Turbo SD_DETECT_PIN (MarlinFirmware#16955) * Fix the wait loop in M0 / M1 * [cron] Bump distribution date (2020-02-26) * Ensure proper SD print completion (MarlinFirmware#16967) * HAS_SDCARD_CONNECTION is more obsolete * Fix GTR10 overlapping defines (MarlinFirmware#16976) * Toolchange improvements (MarlinFirmware#16979) * Language: "failsafe" => "Defaults" * Use a STR_ prefix for non-translated strings * Set LCD status for EEPROM errors (MarlinFirmware#16977) * More serial strings * Add LPC1768 Serial ports for pinsDebug (MarlinFirmware#16980) * Correct SKR expansion port pins (MarlinFirmware#16974) * String optimize followup * Fix Trinamic pulse rate auto-assignment (MarlinFirmware#16966) * Allow weird probe values in G33 * Serial strings in macros * Sanity check for LPC serial pin conflict (MarlinFirmware#16981) * Allow servo features in combination (MarlinFirmware#16960) * Add TRAVEL_EXTRA_XYJERK option See MarlinFirmware#16949 Co-Authored-By: josedpedroso <[email protected]> * Quick-homing sensorless back-off (MarlinFirmware#16872) * Prevent park_point compile error * More extra travel jerk changes Co-Authored-By: josedpedroso <[email protected]> * Fix unified status bed temp display * Allow print recovery after parking * Case-insensitive g-code option (MarlinFirmware#16932) * Define DIAG pins for MKS SGen-L * Handle print completed LED event in M0 * [cron] Bump distribution date (2020-02-27) * Fix planner.cpp compile (MarlinFirmware#16996) * Update Slovak language (MarlinFirmware#17002) * Version 2.0.4.4 Release Co-authored-by: Scott Lahteine <[email protected]> Co-authored-by: Acenotass <[email protected]> Co-authored-by: rebel1 <[email protected]> Co-authored-by: Jason Smith <[email protected]> Co-authored-by: Scott Lahteine <[email protected]> Co-authored-by: InsanityAutomation <[email protected]> Co-authored-by: ellensp <[email protected]> Co-authored-by: felixstorm <[email protected]> Co-authored-by: Bob Kuhn <[email protected]> Co-authored-by: thisiskeithb <[email protected]> Co-authored-by: Tanguy Pruvot <[email protected]> Co-authored-by: Robby Candra <[email protected]> Co-authored-by: Robert Stein <[email protected]> Co-authored-by: Fabio Santos <[email protected]> Co-authored-by: Giuliano Zaro <[email protected]> Co-authored-by: Daniel Mazurkiewicz <[email protected]> Co-authored-by: tol2cj <[email protected]> Co-authored-by: proferabg <[email protected]> Co-authored-by: darksiah <[email protected]> Co-authored-by: Vertabreaker <[email protected]> Co-authored-by: Gaston Dombiak <[email protected]> Co-authored-by: vivian-ng <[email protected]> Co-authored-by: George Fu <[email protected]> Co-authored-by: Karl Andersson <[email protected]> Co-authored-by: Jamie <[email protected]> Co-authored-by: ZMiguel Alves <[email protected]> Co-authored-by: Marcio T <[email protected]> Co-authored-by: josedpedroso <[email protected]> Co-authored-by: Makoto Schoppert <[email protected]> Co-authored-by: Roman Moravčík <[email protected]>
Fixes MarlinFirmware#14774 Co-Authored-By: tol2cj <[email protected]>
Fixes MarlinFirmware#14774 Co-Authored-By: tol2cj <[email protected]>
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Fixes MarlinFirmware#14774 Co-Authored-By: tol2cj <[email protected]>
commit 0700a3d Author: Emanuel Garcês <[email protected]> Date: Sat Jun 12 23:39:16 2021 +0100 Increase bed probing speed commit 2d8be4d Author: Emanuel Garcês <[email protected]> Date: Sat Jun 12 22:36:51 2021 +0100 Bed PID Values commit 97dacdf Author: Emanuel Garcês <[email protected]> Date: Sat Jun 12 19:27:43 2021 +0100 Enable PID Bed commit 360babe Author: Emanuel Garcês <[email protected]> Date: Sat Jun 12 17:51:42 2021 +0100 Increase probing speed commit e858fb1 Merge: d44de6b 6131d2c Author: Emanuel Garcês <[email protected]> Date: Sat Jun 12 17:48:40 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit d44de6b Author: Emanuel Garcês <[email protected]> Date: Sun May 16 18:11:22 2021 +0100 Can't enable both restore and enable leveling after g28 commit cb7e49b Merge: bca0621 533ba2a Author: Emanuel Garcês <[email protected]> Date: Sun May 16 18:03:26 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit bca0621 Merge: 1bea497 376f0be Author: Emanuel Garcês <[email protected]> Date: Sat May 15 12:30:52 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit 1bea497 Merge: b2d6922 05c25b8 Author: Emanuel Garcês <[email protected]> Date: Sun May 2 01:46:22 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit b2d6922 Merge: 598713f 2e0a1f1 Author: Emanuel Garcês <[email protected]> Date: Wed Apr 28 19:28:27 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit 598713f Merge: 9cf1a89 ba2cadb Author: Emanuel Garcês <[email protected]> Date: Mon Jan 4 15:44:36 2021 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit 9cf1a89 Merge: 765affa 0d080ce Author: Emanuel Garcês <[email protected]> Date: Tue Dec 1 18:17:56 2020 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit 765affa Author: Emanuel Garcês <[email protected]> Date: Wed Nov 25 09:51:58 2020 +0000 Fixes commit 0af91b7 Merge: 19c518c 04c4c60 Author: Emanuel Garcês <[email protected]> Date: Wed Nov 25 09:49:08 2020 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit 19c518c Author: Emanuel Garcês <[email protected]> Date: Wed Nov 25 09:07:40 2020 +0000 Fix for no longer being able to compile commit e9de4af Merge: de254ee 65983b4 Author: Emanuel Garcês <[email protected]> Date: Tue Nov 24 23:59:55 2020 +0000 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit de254ee Author: Emanuel Garcês <[email protected]> Date: Tue Nov 24 23:58:25 2020 +0000 Revert "Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing" This reverts commit d3d3db6, reversing changes made to 3b7ae51. commit 65983b4 Author: ellensp <[email protected]> Date: Wed Nov 25 11:14:22 2020 +1300 Set "lcd_move_e" index to fix the label (MarlinFirmware#20263) commit d3d3db6 Merge: 3b7ae51 1d631b7 Author: Emanuel Garcês <[email protected]> Date: Sun Nov 22 16:44:17 2020 +0000 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 1d631b7 Author: Simone Primarosa <[email protected]> Date: Sat Nov 21 02:53:04 2020 +0100 Fix bad SET_FAST_PWM_FREQ calls (MarlinFirmware#20227) commit 072b157 Author: phcay <[email protected]> Date: Sat Nov 14 02:24:08 2020 +0100 Fix extraneous Linear Advance DIR change (MarlinFirmware#20131) commit 3b7ae51 Merge: 8cc5b8d ba2939b Author: Emanuel Garcês <[email protected]> Date: Fri Oct 30 21:42:34 2020 +0000 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit ba2939b Author: thinkyhead <[email protected]> Date: Fri Oct 30 00:10:04 2020 +0000 Fix bilinear_line_to_destination definition See MarlinFirmware#19431 commit 8cc5b8d Merge: 9d21742 ee7476a Author: Emanuel Garcês <[email protected]> Date: Wed Oct 28 09:11:20 2020 +0000 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit ee7476a Author: Jason Smith <[email protected]> Date: Tue Oct 27 15:48:06 2020 -0700 Update "Bug Report" template (MarlinFirmware#19906) commit 88a2ac9 Author: Scott Lahteine <[email protected]> Date: Wed Oct 14 23:55:20 2020 -0500 Marlin 2.0.7.2 commit 3ccb380 Author: Jason Smith <[email protected]> Date: Fri Oct 16 14:04:51 2020 -0700 Fix SAMD Serial name macro (MarlinFirmware#19765) commit cc7fbab Author: Serhiy-K <[email protected]> Date: Sat Oct 17 00:21:21 2020 +0300 Fix HAL/STM32 FastIO for analog pins (MarlinFirmware#19735) commit 28a9708 Author: Scott Lahteine <[email protected]> Date: Wed Oct 21 18:08:57 2020 -0500 Don't define IS_ULTIPANEL empty commit 9d21742 Merge: 0a2462f 0a0f211 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 17 11:58:32 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit d896ded Author: Jason Smith <[email protected]> Date: Tue Oct 13 16:03:09 2020 -0700 Add NUCLEO-F767ZI dev board (MarlinFirmware#19373) Co-authored-by: Lorenzo Delana <[email protected]> commit 0a0f211 Author: Jason Smith <[email protected]> Date: Fri Oct 16 14:04:51 2020 -0700 Fix SAMD Serial name macro (MarlinFirmware#19765) commit 0070901 Author: Keith Bennett <[email protected]> Date: Tue Oct 13 16:13:25 2020 -0700 If needed, home before G34 (MarlinFirmware#19713) commit 86cb079 Author: Serhiy-K <[email protected]> Date: Sat Oct 17 00:21:21 2020 +0300 Fix HAL/STM32 FastIO for analog pins (MarlinFirmware#19735) commit 1b4d038 Author: Scott Lahteine <[email protected]> Date: Wed Oct 14 23:55:20 2020 -0500 Marlin 2.0.7.2 commit b7d9b05 Author: Victor Oliveira <[email protected]> Date: Tue Oct 13 13:58:50 2020 -0300 TFT followup fixes (MarlinFirmware#19710) commit f7f1224 Author: Victor Oliveira <[email protected]> Date: Tue Oct 13 20:12:34 2020 -0300 Watchdog Refresh for LVGL Asset Load (MarlinFirmware#19724) commit fd8d83b Author: Jason Smith <[email protected]> Date: Wed Oct 14 11:43:36 2020 -0700 Fix mega2560ext environment (MarlinFirmware#19730) commit 52fc0b8 Author: thinkyhead <[email protected]> Date: Thu Oct 15 00:15:10 2020 +0000 [cron] Bump distribution date (2020-10-15) commit ba045d6 Author: thinkyhead <[email protected]> Date: Wed Oct 14 00:15:03 2020 +0000 [cron] Bump distribution date (2020-10-14) commit 54bdcb4 Author: Jason Smith <[email protected]> Date: Wed Oct 14 11:50:03 2020 -0700 Fix SET_SOFT_ENDSTOP_LOOSE w/out soft endstops (MarlinFirmware#19734) commit 2a26663 Author: Scott Lahteine <[email protected]> Date: Tue Oct 13 14:54:56 2020 -0500 Simple bool in soft_endstops_t commit 3bba5d5 Author: thinkyhead <[email protected]> Date: Tue Oct 13 00:15:19 2020 +0000 [cron] Bump distribution date (2020-10-13) commit 5d07d83 Author: thinkyhead <[email protected]> Date: Mon Oct 12 00:15:08 2020 +0000 [cron] Bump distribution date (2020-10-12) commit 37f97bc Author: Jason Smith <[email protected]> Date: Sun Oct 11 17:06:57 2020 -0700 Fix various errors, warnings in example config builds (MarlinFirmware#19686) Co-authored-by: Scott Lahteine <[email protected]> commit 6d31bbe Author: thinkyhead <[email protected]> Date: Sun Oct 11 00:15:24 2020 +0000 [cron] Bump distribution date (2020-10-11) commit e2e1776 Author: Victor Oliveira <[email protected]> Date: Sat Oct 10 13:47:28 2020 -0300 Restore correct STM32 port-bits code (MarlinFirmware#19678) commit bd196e7 Author: Serhiy-K <[email protected]> Date: Sat Oct 10 13:01:46 2020 +0300 Fixes for TFTGLCD Panel, FastIO (MarlinFirmware#19614) commit dffe7b9 Author: Earle F. Philhower, III <[email protected]> Date: Mon Oct 12 14:48:04 2020 -0700 Add loose soft endstop state, apply to UBL fine-tune (MarlinFirmware#19681) Co-authored-by: Scott Lahteine <[email protected]> commit 2b326eb Author: Jason Smith <[email protected]> Date: Mon Oct 12 14:39:31 2020 -0700 Add D100 Watchdog Test (MarlinFirmware#19697) commit f4ff6a6 Author: Jason Smith <[email protected]> Date: Sun Oct 11 22:40:39 2020 -0700 Allow MAX31865 resistance values configuration (MarlinFirmware#19695) commit cc915a2 Author: qwewer0 <[email protected]> Date: Mon Oct 12 04:30:18 2020 +0200 Add REPORT_TRAMMING_MM option (MarlinFirmware#19682) Co-authored-by: Scott Lahteine <[email protected]> commit 600870f Author: Jason Smith <[email protected]> Date: Sun Oct 11 17:42:50 2020 -0700 Fix motion compile w/out probe-oriented settings (MarlinFirmware#19684) commit 04882e2 Author: Jason Smith <[email protected]> Date: Sun Oct 11 17:23:23 2020 -0700 Fix I2C_ADDRESS sign warning (MarlinFirmware#19685) commit c6cf3da Author: Jason Smith <[email protected]> Date: Sun Oct 11 17:06:57 2020 -0700 Fix various errors, warnings in example config builds (MarlinFirmware#19686) Co-authored-by: Scott Lahteine <[email protected]> commit 8a5c378 Author: Jason Smith <[email protected]> Date: Sun Oct 11 16:13:01 2020 -0700 Fix at90usb1286 build (MarlinFirmware#19687) * Skip check for USBCON during dependency detection * Ignore incompatible Teensy_ADC library, which requires Teensy >= 3 * Add IS_AT90USB Co-authored-by: Scott Lahteine <[email protected]> commit beb17d8 Author: Scott Lahteine <[email protected]> Date: Sun Oct 11 14:58:35 2020 -0500 Digipots refactor / cleanup (MarlinFirmware#19690) commit 4ee717f Author: Scott Lahteine <[email protected]> Date: Sat Oct 10 12:07:00 2020 -0500 Save PLR on resume from pause (MarlinFirmware#19676) Co-Authored-By: shahab <[email protected]> commit e680196 Author: Victor Oliveira <[email protected]> Date: Sat Oct 10 13:47:28 2020 -0300 Restore correct STM32 port-bits code (MarlinFirmware#19678) commit ce92abf Author: Serhiy-K <[email protected]> Date: Sat Oct 10 13:01:46 2020 +0300 Fixes for TFTGLCD Panel, FastIO (MarlinFirmware#19614) commit 50410aa Author: Victor Oliveira <[email protected]> Date: Mon Oct 12 20:01:03 2020 -0300 Fix UTF8 handling for Color UI (MarlinFirmware#19708) commit 35c40bc Author: Victor Oliveira <[email protected]> Date: Sun Oct 11 21:26:16 2020 -0300 Implement wait_for_user for Color UI (MarlinFirmware#19694) commit aae644c Author: Victor Oliveira <[email protected]> Date: Sun Oct 11 21:31:21 2020 -0300 Option to prevent (extra) Watchdog init on STM32 (MarlinFirmware#19693) commit ce830f8 Author: Scott Lahteine <[email protected]> Date: Mon Oct 12 00:59:30 2020 -0500 Fix screen click reading too often (MarlinFirmware#19696) Co-authored-by: andreibobirica <[email protected]> commit d3d423a Author: Keith Bennett <[email protected]> Date: Mon Oct 12 14:52:56 2020 -0700 Sanity-check mutually-exclusive G34 features (MarlinFirmware#19706) commit 8b060a3 Author: InsanityAutomation <[email protected]> Date: Sun Oct 11 22:34:27 2020 -0400 G34 Mechanical Gantry Calibration (like Prusa M915) (MarlinFirmware#18972) Co-authored-by: Scott Lahteine <[email protected]> commit faae900 Author: Victor Oliveira <[email protected]> Date: Mon Oct 12 18:38:07 2020 -0300 TFT Refactoring (MarlinFirmware#19192) * split tft folder in two: tft for color ui; tft_io for shared tft code * after the files got moved, now the code was moved to the right place * classic ui using TFT IO init lcd codes * feature to compile tft_io when enabled * compiling fix * lvgl spi tft working with tft io init codes * there is no need for separeted fsmc and spi class in lvgl anymore, as tft io handle everything * remove debug * base for TFT rotation and mirroring API, and ILI9488 support * ST7796S rotate and mirror support * ST7789V rotate and mirror support * ST7735 rotate and mirror support * ILI9341 rotate and mirror support * ILI9328 rotate and mirror support * R61505 rotate and mirror support * MKS TFT definitions * more configs for mks tfts * update config * naming typo * to configure the user interface * ANYCUBIC_TFT35 * tft configs * support for SSD1963 * tft display types * updated conditionals lcd; first board fully working with the new code - all 3 ui! * compatiblity * changed name * move classic ui file name * rename TURN -> ROTATE * GRAPHICAL_TFT_ROTATE_180 deprecated * first fsmc board fully working - chitu v5 * mks robin nano v1.2 + tft 35 ok! * right pin name * anycubic tft tested in a TRIGORILLA_PRO * chitu v6 * nano 32 tft orientation * mks tft43 * mks tft43 rotation * fixed LONGER LK tft setup * GRAPHICAL_TFT_UPSCALE defined by the display type * better offsets defaults * Update Configuration.h * Update tft_fsmc.cpp * Update Conditionals_LCD.h * Tweak comments * update nano tests * Revert "update nano tests" This reverts commit a071ebb. * default tft * outdated comments * to not break non-vscode builds * upscale tft 35 * support tft 180 rotation for color ui * Each TFT Driver is responsible for its default color mode. * use auto detect in mks displays, because some of them could be shipped with diferent drivers * extra s * unused code * wrong -1 * missing mirror options * Smaller regex pattern * Comment updates * Clean up old defines * Apply pins formatting * GRAPHICAL_TFT_ROTATE_180 => TFT_ROTATE_180 * MKS_ROBIN_TFT_V1_1R * merge fix * correct resolution * auto is default, dont need be there, and it will allow the user to configure it even for named displays * to not use rotation with MKS_ROBIN_TFT_V1_1R * i like () in macros * avoid sleepy commits * default for st7789 is rgb * nano follow up * to allow ili9328 rotation * default is rgb * boards merge follow up * to match bootloader orientation * HAS_TOUCH_XPT2046 is not hal specific anymore * lets not forget LPC * 180 rotation for ili9328 and R61505 * Clean up whitespace Co-authored-by: Scott Lahteine <[email protected]> Co-authored-by: Scott Lahteine <[email protected]> commit 11662bf Author: Scott Lahteine <[email protected]> Date: Sat Oct 10 01:17:34 2020 -0500 Marlin 2.0.7.1 commit 887e263 Author: Serhiy-K <[email protected]> Date: Sat Oct 10 13:01:46 2020 +0300 Fixes for TFTGLCD Panel, FastIO (MarlinFirmware#19614) commit 958f05e Author: ellensp <[email protected]> Date: Sat Oct 10 22:39:12 2020 +1300 HAS_CHARACTER_LCD => HAS_MARLINUI_HD44780 (MarlinFirmware#19673) commit 9126a2e Author: thinkyhead <[email protected]> Date: Sat Oct 10 00:14:40 2020 +0000 [cron] Bump distribution date (2020-10-10) commit 5070fae Author: Scott Lahteine <[email protected]> Date: Fri Oct 9 16:50:17 2020 -0500 Batch appercase hex values commit 454f9d6 Author: Scott Lahteine <[email protected]> Date: Fri Oct 9 16:42:23 2020 -0500 Optional `M42`/`M226`; Add more features filters (MarlinFirmware#19664) commit 59b6b32 Author: Victor Oliveira <[email protected]> Date: Fri Oct 9 08:25:23 2020 -0300 Support for Debug Codes - Dnnn (MarlinFirmware#19225) Co-authored-by: Scott Lahteine <[email protected]> commit 6d9709e Author: 石立枫 <[email protected]> Date: Fri Oct 9 19:09:27 2020 +0800 Support for FLY MINI (MarlinFirmware#19185) commit 7a48495 Author: Keith Bennett <[email protected]> Date: Fri Oct 9 00:52:06 2020 -0700 Fix touch ifndefs (MarlinFirmware#19661) commit 78060f5 Author: Giuliano Zaro <[email protected]> Date: Fri Oct 9 09:51:25 2020 +0200 Update Italian language (MarlinFirmware#19654) commit 3fca19f Author: thinkyhead <[email protected]> Date: Fri Oct 9 00:14:12 2020 +0000 [cron] Bump distribution date (2020-10-09) commit b8700e0 Author: Samantaz Fox <[email protected]> Date: Fri Oct 9 01:40:54 2020 +0200 Fix and improve Makefile / CMake (MarlinFirmware#19640) commit d66bc5c Author: Scott Lahteine <[email protected]> Date: Thu Oct 8 16:59:54 2020 -0500 Permit touch calibration override commit fb28c60 Author: Scott Lahteine <[email protected]> Date: Thu Oct 8 15:17:19 2020 -0500 Use 0xFF (not 'ff') for byte transfer commit 0f9d57e Author: ellensp <[email protected]> Date: Thu Oct 8 20:30:31 2020 +1300 Apply env:mega2560ext to relevant boards (MarlinFirmware#19624) commit 3237784 Author: qwewer0 <[email protected]> Date: Thu Oct 8 03:43:08 2020 +0200 Update PROBE_OFFSET_WIZARD comment (MarlinFirmware#19652) commit 0975c48 Author: thinkyhead <[email protected]> Date: Thu Oct 8 00:12:06 2020 +0000 [cron] Bump distribution date (2020-10-08) commit d07ad63 Author: qwewer0 <[email protected]> Date: Wed Oct 7 20:01:01 2020 +0200 More accessible PROBE_OFFSET_WIZARD (MarlinFirmware#19647) commit 1a5a3cf Author: ellensp <[email protected]> Date: Thu Oct 8 07:00:08 2020 +1300 Restore ° to 6x9 small info font (MarlinFirmware#19645) commit 6f69011 Author: Scott Lahteine <[email protected]> Date: Tue Oct 6 19:42:03 2020 -0500 Chamber vent/fan followup commit 9cc6297 Author: Scott Lahteine <[email protected]> Date: Tue Oct 6 19:17:18 2020 -0500 Fix small font section directive, mixer warning commit cf53bc2 Author: thinkyhead <[email protected]> Date: Wed Oct 7 00:14:42 2020 +0000 [cron] Bump distribution date (2020-10-07) commit f4f4ea0 Author: Scott Lahteine <[email protected]> Date: Tue Oct 6 01:28:08 2020 -0500 Update language fonts commit 2b845e5 Author: ladismrkolj <[email protected]> Date: Wed Oct 7 01:36:01 2020 +0200 Add Chamber servo vent, auto fan (MarlinFirmware#19519) commit 6fcbf11 Author: signetica <[email protected]> Date: Tue Oct 6 15:58:28 2020 -0600 Fix Ender-3 V2 DWIN Stop SD Print (MarlinFirmware#19642) Co-authored-by: Scott Lahteine <[email protected]> commit 8a69147 Author: Scott Lahteine <[email protected]> Date: Tue Oct 6 02:59:51 2020 -0500 Improve retract / unretract labels commit f8ceede Author: thinkyhead <[email protected]> Date: Tue Oct 6 00:14:30 2020 +0000 [cron] Bump distribution date (2020-10-06) commit a4e4226 Author: Scott Lahteine <[email protected]> Date: Mon Oct 5 01:09:32 2020 -0500 Trailing whitespace commit e76fd6b Author: Scott Lahteine <[email protected]> Date: Mon Oct 5 01:07:41 2020 -0500 Sync config to examples commit 437bee4 Author: Mathew Winters <[email protected]> Date: Mon Oct 5 18:31:20 2020 +1300 Z Probe Offset Wizard (MarlinFirmware#18866) commit 31238de Author: Cory Ory <[email protected]> Date: Mon Oct 5 01:51:21 2020 +0100 Allow bypass for cold E movement (MarlinFirmware#19606) commit cb8c99c Author: thinkyhead <[email protected]> Date: Mon Oct 5 00:14:33 2020 +0000 [cron] Bump distribution date (2020-10-05) commit 2fe81d0 Author: Ryan V1 <[email protected]> Date: Sun Oct 4 15:41:41 2020 -0700 Fix Archim1 stepper timing (with new variant) (MarlinFirmware#19596) commit fb7d7ee Author: Scott Lahteine <[email protected]> Date: Sun Oct 4 17:29:12 2020 -0500 Add HAS_FAST_MOVES commit d99fdcf Author: ellensp <[email protected]> Date: Mon Oct 5 10:47:06 2020 +1300 Fix Z_AFTER_HOMING without probe (MarlinFirmware#19607) commit e4d2234 Author: Scott Lahteine <[email protected]> Date: Sun Oct 4 15:45:13 2020 -0500 Move SF_ARC_FIX option commit bea919d Author: Speaka <[email protected]> Date: Sun Oct 4 21:50:12 2020 +0200 Fix German translation purging/unloading (MarlinFirmware#19615) commit 2fb22cc Author: Scott Lahteine <[email protected]> Date: Sun Oct 4 14:46:55 2020 -0500 Shared singlenozzle item commit d4b6542 Author: Scott Lahteine <[email protected]> Date: Sun Oct 4 14:29:02 2020 -0500 Fix Tune/Fan edit items - Fixes MarlinFirmware#19617 - Followup to MarlinFirmware#18400 commit 7d47ee7 Author: thinkyhead <[email protected]> Date: Sun Oct 4 00:14:30 2020 +0000 [cron] Bump distribution date (2020-10-04) commit 6ceacd6 Author: thinkyhead <[email protected]> Date: Sat Oct 3 00:14:05 2020 +0000 [cron] Bump distribution date (2020-10-03) commit 2ce6741 Author: Ryan V1 <[email protected]> Date: Fri Oct 2 15:31:33 2020 -0700 Fix 'bossac' upload on Windows (MarlinFirmware#19545) commit 2213eb3 Author: Marcio T <[email protected]> Date: Fri Oct 2 16:30:32 2020 -0600 Touch UI support for X2, Y2 and Z2 (MarlinFirmware#19538) commit b947590 Author: ellensp <[email protected]> Date: Sat Oct 3 11:28:08 2020 +1300 Fix wrappers on HAL/STM32F1 .cpp files (MarlinFirmware#19581) Co-authored-by: Scott Lahteine <[email protected]> commit 20bcaa7 Author: ellensp <[email protected]> Date: Sat Oct 3 11:19:43 2020 +1300 Fix TEMP_ADC_PROBE support for STM32F1 (MarlinFirmware#19582) Co-authored-by: ellensp <[email protected]> commit 9834a36 Author: ellensp <[email protected]> Date: Sat Oct 3 11:12:17 2020 +1300 Fix compile of MMU2 with S-mode disabled (MarlinFirmware#19584) commit 90801f8 Author: bilsef <[email protected]> Date: Fri Oct 2 15:08:50 2020 -0700 Fix onboard SD card support for Teensy 3.6 & 4.1 (MarlinFirmware#19593) commit 4d1357e Author: Scott Lahteine <[email protected]> Date: Fri Oct 2 17:05:45 2020 -0500 Adjust HAL platform defines, comments commit 8d090cb Author: Scott Lahteine <[email protected]> Date: Fri Oct 2 17:04:23 2020 -0500 Replace tabs with spaces commit ec5b78d Author: Victor Oliveira <[email protected]> Date: Thu Oct 1 22:52:42 2020 -0300 Minor SPI fixes, systick_callback for STM32F1 HAL compatibility (MarlinFirmware#19565) commit d33317e Author: thinkyhead <[email protected]> Date: Fri Oct 2 00:13:10 2020 +0000 [cron] Bump distribution date (2020-10-02) commit f8375a3 Author: swissnorp <[email protected]> Date: Fri Oct 2 01:17:11 2020 +0200 G35 workaround for Pronterface "feature" (MarlinFirmware#19577) commit 5a02959 Author: Stéphane <[email protected]> Date: Fri Oct 2 01:09:39 2020 +0200 Fix Anycubic i3 Mega target temperature display (MarlinFirmware#19572) Also includes a workaround for missing (probably un-fetched) long name in file listing commit cc123bc Author: Ilya <[email protected]> Date: Thu Oct 1 15:51:11 2020 -0700 No move on Park = No move on Resume (MarlinFirmware#19569) commit 4f6a060 Author: Roman Moravčík <[email protected]> Date: Fri Oct 2 00:47:24 2020 +0200 Update Slovak language (MarlinFirmware#19561) commit b89700e Author: Victor Oliveira <[email protected]> Date: Wed Sep 30 22:14:19 2020 -0300 Fix Buzzer (pin) init for uninitialized FastIO (MarlinFirmware#19559) commit ca853fb Author: Victor Oliveira <[email protected]> Date: Wed Sep 30 22:06:32 2020 -0300 Fix Move Screen with disabled Touch (MarlinFirmware#19558) commit 1ba2548 Author: thinkyhead <[email protected]> Date: Thu Oct 1 00:14:15 2020 +0000 [cron] Bump distribution date (2020-10-01) commit 1332be7 Author: thinkyhead <[email protected]> Date: Wed Sep 30 00:13:59 2020 +0000 [cron] Bump distribution date (2020-09-30) commit 0a2462f Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 21:28:59 2020 +0100 Enable probe offset wizard commit 6c2c7b7 Merge: 3bb4169 e4c23f8 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 21:20:09 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 3bb4169 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 21:13:18 2020 +0100 Revert "Fully disabled software endstops" This reverts commit f928250. commit e4c23f8 Author: Scott Lahteine <[email protected]> Date: Sat Oct 10 01:17:34 2020 -0500 Marlin 2.0.7.1 commit a14e26c Author: Serhiy-K <[email protected]> Date: Sat Oct 10 13:01:46 2020 +0300 Fixes for TFTGLCD Panel, FastIO (MarlinFirmware#19614) commit f928250 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 19:37:13 2020 +0100 Fully disabled software endstops commit d1d9c39 Merge: 642eadb e817773 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 19:36:09 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 9ab7c05 Author: ellensp <[email protected]> Date: Sat Oct 10 22:39:12 2020 +1300 HAS_CHARACTER_LCD => HAS_MARLINUI_HD44780 (MarlinFirmware#19673) commit 23da765 Merge: a7f3343 8e03a4c Author: Scott Lahteine <[email protected]> Date: Sat Oct 10 00:26:40 2020 -0500 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit a7f3343 Author: Victor Oliveira <[email protected]> Date: Sat Oct 10 01:35:41 2020 -0300 Keep HAL tasks running during PID Autotune (MarlinFirmware#19671) commit e817773 Author: Scott Lahteine <[email protected]> Date: Mon Sep 28 21:02:09 2020 -0500 Marlin 2.0.7 commit aac0326 Merge: a52afd2 41774ec Author: Scott Lahteine <[email protected]> Date: Mon Sep 28 20:59:49 2020 -0500 Merge bugfix-2.0.x into 2.0.x commit a52afd2 Author: Jason Smith <[email protected]> Date: Thu Sep 17 04:35:10 2020 -0700 Update stale issue message and parameters (MarlinFirmware#19412) * Update stale issue bot * Update close-stale.yml * Update close-stale.yml Co-authored-by: Scott Lahteine <[email protected]> commit 642eadb Merge: b331993 9913333 Author: Emanuel Garcês <[email protected]> Date: Fri Sep 4 15:57:52 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 9913333 Author: Keith Bennett <[email protected]> Date: Thu Sep 3 21:27:59 2020 -0700 Auto-label Feature Requests (MarlinFirmware#19258) commit b331993 Author: Emanuel Garcês <[email protected]> Date: Tue Sep 1 09:37:58 2020 +0100 More fixes commit dbeb1e2 Merge: e62d5a8 ca194ca Author: Emanuel Garcês <[email protected]> Date: Fri Aug 28 10:02:28 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit ca194ca Author: Scott Lahteine <[email protected]> Date: Thu Aug 27 22:19:41 2020 -0500 Version 2.0.6.1 commit b90e7c4 Merge: 96e29cd 6ac8f5a Author: Scott Lahteine <[email protected]> Date: Thu Aug 27 22:17:50 2020 -0500 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit e62d5a8 Author: Emanuel Garcês <[email protected]> Date: Wed Aug 26 23:06:45 2020 +0100 Change homing commit a40bf60 Merge: 218234a 96e29cd Author: Emanuel Garcês <[email protected]> Date: Sun Aug 16 11:35:29 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 96e29cd Author: Julius Mumme <[email protected]> Date: Sun Aug 16 05:50:28 2020 +0200 Fix IS_PROBE_PIN macro (MarlinFirmware#19024) commit 218234a Author: Emanuel Garcês <[email protected]> Date: Thu Aug 13 12:34:59 2020 +0100 P3Steel Probing fix commit 128e24f Author: Emanuel Garcês <[email protected]> Date: Sat Aug 8 16:37:38 2020 +0100 Changed Z-Endstop to optical commit 9e1f806 Author: Emanuel Garcês <[email protected]> Date: Sat Aug 8 10:21:39 2020 +0100 Disable min software endstop for usage with nozzle probe commit 92f6530 Merge: 674f3e8 fd9c698 Author: Emanuel Garcês <[email protected]> Date: Sat Aug 8 10:20:50 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit fd9c698 Author: ellensp <[email protected]> Date: Sat Aug 8 10:59:09 2020 +1200 HW PWM sanity checks for SPINDLE_LASER_FREQUENCY (MarlinFirmware#18947) commit da144dc Author: Roman Moravčík <[email protected]> Date: Tue Aug 4 07:32:47 2020 +0200 Update Slovak language (MarlinFirmware#18884) commit 1d92bad Author: Giuliano Zaro <[email protected]> Date: Tue Aug 4 07:32:25 2020 +0200 Update Italian language (MarlinFirmware#18886) commit 242064f Author: swissnorp <[email protected]> Date: Thu Aug 6 05:38:23 2020 +0200 Move Cancel Object menu, fix canceled item index (MarlinFirmware#18930) commit ad2d1b6 Author: cbaugher <[email protected]> Date: Fri Aug 7 18:06:25 2020 -0500 Fix Z height after tool change (MarlinFirmware#18951) commit 674f3e8 Merge: ba6ec79 978e0e4 Author: Emanuel Garcês <[email protected]> Date: Wed Aug 5 12:50:33 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 978e0e4 Author: Claus Näveke <[email protected]> Date: Mon Aug 3 03:17:43 2020 +0200 No mks_robin extra_scripts in Trigorilla build (MarlinFirmware#18872) commit 02a500d Author: ellensp <[email protected]> Date: Mon Aug 3 13:16:12 2020 +1200 Fix Spindle/Laser PWM DC (MarlinFirmware#18871) commit fa5ca86 Author: FLYmaker <[email protected]> Date: Mon Aug 3 09:13:57 2020 +0800 Fix FLYF407ZG pins (MarlinFirmware#18865) commit 01359cf Author: Sebastien Andrivet <[email protected]> Date: Mon Aug 3 03:10:16 2020 +0200 Fix Duplicator i3 Plus pin diagram (MarlinFirmware#18862) commit 37b56d6 Author: Scott Lahteine <[email protected]> Date: Thu Jul 30 02:07:29 2020 -0500 Add monitor_flags commit ad59adf Author: Scott Lahteine <[email protected]> Date: Tue Jul 28 18:13:20 2020 -0500 Update include_tree commit 121cd42 Author: Scott Lahteine <[email protected]> Date: Wed Jul 29 20:50:10 2020 -0500 In G28 Z is sort-of known commit cf1c57a Author: Scott Lahteine <[email protected]> Date: Wed Jul 29 20:43:35 2020 -0500 Fix UNKNOWN_Z_NO_RAISE in G28 Bug introduced in 73fc077 commit 5804761 Author: swissnorp <[email protected]> Date: Wed Jul 29 04:28:58 2020 +0200 Fix Cancel Objects index display (zero-based) (MarlinFirmware#18841) commit 3dd21a2 Author: natemason <[email protected]> Date: Wed Jul 29 09:18:02 2020 +0800 Add TEMP_PROBE_PIN for Einsy Rambo (MarlinFirmware#18823) commit b160e8b Author: MoellerDi <[email protected]> Date: Wed Jul 29 03:19:12 2020 +0200 Fix NEOPIXEL_LED compile w/out PRINTER_EVENT_LEDS (MarlinFirmware#18824) commit de37196 Author: Victor Oliveira <[email protected]> Date: Tue Jul 28 23:15:17 2020 -0300 DISABLE_DEBUG required to free Robin nano Z_DIR_PIN (MarlinFirmware#18832) commit ba6ec79 Merge: 7648242 84b96d3 Author: Emanuel Garcês <[email protected]> Date: Tue Jul 28 14:59:29 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 84b96d3 Merge: 92076c6 5d14c37 Author: Scott Lahteine <[email protected]> Date: Mon Jul 27 20:16:34 2020 -0500 Hotfix for first round of post-release hiccups commit 92076c6 Author: Scott Lahteine <[email protected]> Date: Sun Jul 26 20:03:06 2020 -0500 Marlin Release 2.0.6 commit 5e5daf1 Merge: 8b637e4 de68b37 Author: Scott Lahteine <[email protected]> Date: Sun Jul 26 20:01:40 2020 -0500 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into release_206 commit 7648242 Merge: dd57745 8b637e4 Author: Emanuel Garcês <[email protected]> Date: Sat Jul 25 11:34:44 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 8b637e4 Author: Scott Lahteine <[email protected]> Date: Thu Jul 23 20:59:43 2020 -0500 Update links, README, contributing, etc. commit dd57745 Merge: 94aba28 b73ac40 Author: Emanuel Garcês <[email protected]> Date: Thu Jul 16 17:06:35 2020 +0100 Merge branch '2.0.x' into P3Steel-Testing commit 94aba28 Author: Emanuel Garcês <[email protected]> Date: Thu Jul 16 16:45:42 2020 +0100 P3Steel Settings commit b73ac40 Author: Chris Pepper <[email protected]> Date: Tue Jul 14 15:15:19 2020 +0100 LPC fix NeoPixel fork commit 7ed66d0 Author: Scott Lahteine <[email protected]> Date: Sun Jul 12 22:35:13 2020 -0500 [email protected] for LPC commit c1b2379 Author: Scott Lahteine <[email protected]> Date: Sat Jul 11 07:38:19 2020 -0500 Specify supported library versions commit 5e0958e Author: Scott Lahteine <[email protected]> Date: Sat Jul 11 07:14:54 2020 -0500 Fix pid_debug_flag commit 5513e67 Author: Scott Lahteine <[email protected]> Date: Wed Jul 8 19:36:09 2020 -0500 2.0.5.4 : Use ststm32 < 6.2 commit 354a9e5 Author: Scott Lahteine <[email protected]> Date: Wed Jul 8 04:38:35 2020 -0500 Lock threads updated commit ee4910c Author: Scott Lahteine <[email protected]> Date: Sun Jul 5 19:56:33 2020 -0500 Temporarily use patched lock-threads commit 697ef26 Author: Scott Lahteine <[email protected]> Date: Sun Jul 5 15:45:14 2020 -0500 Add CI for pushed commits Co-Authored-By: thisiskeithb <[email protected]> commit 481b8ff Author: Scott Lahteine <[email protected]> Date: Sun Jul 5 15:23:07 2020 -0500 Limit actions to main commit 7bf89f2 Author: Scott Lahteine <[email protected]> Date: Sat Jul 4 17:28:23 2020 -0500 Two lock-closed per day commit ed71108 Author: Scott Lahteine <[email protected]> Date: Thu Jul 2 18:10:33 2020 -0500 Patch Bad PR action commit 842dea4 Author: Scott Lahteine <[email protected]> Date: Tue Jun 30 18:18:58 2020 -0500 Updated lock / unlock actions commit a73e610 Author: Scott Lahteine <[email protected]> Date: Tue Jun 23 19:58:00 2020 -0500 Add Close / Lock actions commit c352aeb Author: Daniel Aléxis <[email protected]> Date: Tue Jun 9 21:27:57 2020 +0100 Remove "dev" branch reference (for now) (MarlinFirmware#18242) commit e4d8336 Author: Mathias Gartner <[email protected]> Date: Sat May 2 23:15:49 2020 +0200 Fix XYZ types multiplication/division (MarlinFirmware#17826) commit 0518dec Author: thisiskeithb <[email protected]> Date: Wed Apr 1 12:16:01 2020 -0700 Correct link to Configurations (MarlinFirmware#17370) commit 015c4e6 Author: Scott Lahteine <[email protected]> Date: Tue Mar 31 14:40:06 2020 -0500 Version 2.0.5.3 commit 0f9a14d Merge: 7124b21 e7f020f Author: Scott Lahteine <[email protected]> Date: Tue Mar 31 14:43:42 2020 -0500 Merge latest patches commit 7124b21 Author: Scott Lahteine <[email protected]> Date: Tue Mar 24 16:22:12 2020 -0500 Version 2.0.5.2 commit efc1926 Merge: d37bfa3 68face8 Author: Scott Lahteine <[email protected]> Date: Tue Mar 24 17:10:53 2020 -0500 Merge patches from bugfix-2.0.x commit d37bfa3 Author: Scott Lahteine <[email protected]> Date: Mon Mar 16 17:52:41 2020 -0500 Version 2.0.5.1 Release commit 129b1bb Merge: 8dbbcfd f6e80d5 Author: Scott Lahteine <[email protected]> Date: Mon Mar 16 17:50:43 2020 -0500 Merge nightly patches commit 8dbbcfd Author: Scott Lahteine <[email protected]> Date: Sat Mar 14 00:49:12 2020 -0500 Version 2.0.5 Release commit fa48fbb Merge: d6e767e 8b2d55e Author: Scott Lahteine <[email protected]> Date: Sat Mar 14 00:35:11 2020 -0500 Merge bugfix-2.0.x into 2.0.x commit d6e767e Author: Scott Lahteine <[email protected]> Date: Wed Feb 26 13:00:26 2020 -0600 Version 2.0.4.4 Release commit b29aae6 Merge: 1955eea 9f8ee31 Author: Scott Lahteine <[email protected]> Date: Thu Feb 27 04:14:33 2020 -0600 Merge 'bugfix-2.0.x' into 2.0.x commit 1955eea Author: Scott Lahteine <[email protected]> Date: Mon Feb 24 06:13:18 2020 -0600 Version 2.0.4.3 Release commit 42fa9fc Author: Scott Lahteine <[email protected]> Date: Mon Feb 24 10:58:54 2020 -0600 Fix card_eof error commit 130d039 Author: Marcio T <[email protected]> Date: Mon Feb 24 09:42:12 2020 -0700 Restore tabs in Makefile (MarlinFirmware#16944) commit c5f1ff9 Author: Marcio T <[email protected]> Date: Mon Feb 24 09:40:12 2020 -0700 Allow Z_SAFE_HOMING_POINT outside bed (MarlinFirmware#16945) commit 089cc68 Merge: 2b759b9 a254354 Author: Scott Lahteine <[email protected]> Date: Mon Feb 24 06:12:15 2020 -0600 Merge nightly patches commit 2b759b9 Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 19:26:52 2020 -0600 Suppress "packed member" warning commit 5f27f7d Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 18:49:59 2020 -0600 Version 2.0.4.2 Release commit 282f467 Merge: c41f3f8 2471a8b Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 18:47:09 2020 -0600 Merge nightly patches commit c41f3f8 Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 02:58:05 2020 -0600 Version 2.0.4.1 Release commit 8670df0 Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 02:52:59 2020 -0600 CoreXY Babystepping hotfix commit 730690e Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 02:52:21 2020 -0600 Hotfix for Babystepping commit 3543873 Author: Scott Lahteine <[email protected]> Date: Fri Feb 21 07:24:58 2020 -0600 Use moves_free in ok_to_send commit c505626 Author: thinkyhead <[email protected]> Date: Sat Feb 22 00:03:47 2020 +0000 [cron] Bump distribution date (2020-02-22) commit 7e8505f Author: Scott Lahteine <[email protected]> Date: Fri Feb 21 08:38:14 2020 -0600 Version 2.0.4 Release commit f9aec26 Merge: dd6a7ca 5d16497 Author: Scott Lahteine <[email protected]> Date: Fri Feb 21 08:37:02 2020 -0600 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit dd6a7ca Author: Scott Lahteine <[email protected]> Date: Mon Feb 10 16:33:21 2020 -0600 Fix out-of-order M0 after SD printing Fixes MarlinFirmware#14774 Co-Authored-By: tol2cj <[email protected]> commit 62b9d7d Author: Scott Lahteine <[email protected]> Date: Wed Feb 5 00:47:24 2020 -0600 Direct link to version configs commit d83382e Author: Scott Lahteine <[email protected]> Date: Tue Feb 4 09:41:26 2020 -0600 Add "PR Bad Target" workflow action commit 4c76314 Author: Scott Lahteine <[email protected]> Date: Mon Feb 3 19:31:41 2020 -0600 Scheduled action to bump the date on bugfix-2.0.x commit 64ab254 Author: Scott Lahteine <[email protected]> Date: Mon Feb 3 18:06:04 2020 -0600 Use a different Configurations branch for CI commit e6a7be9 Author: Scott Lahteine <[email protected]> Date: Thu Jan 30 18:18:46 2020 -0600 Version 2.0.3 commit 1525c25 Merge: 016e4c0 dabf393 Author: Scott Lahteine <[email protected]> Date: Fri Jan 31 04:23:45 2020 -0600 Merge commit 'dabf3939209fd8ea7f6a6327d764c16743aa22aa' into look_at_201 commit 016e4c0 Author: Scott Lahteine <[email protected]> Date: Mon Jan 27 05:34:56 2020 -0600 Version 2.0.2 commit be64261 Merge: ee17051 8bd6b60 Author: Scott Lahteine <[email protected]> Date: Fri Jan 31 04:22:09 2020 -0600 Merge commit '8bd6b60a0141fa892984f2d5b61f06eadbbf9a5f' into look_at_201 commit ee17051 Author: Scott Lahteine <[email protected]> Date: Tue Dec 24 00:06:32 2019 -0600 Version 2.0.1 commit 0673f33 Merge: ac7ee4b 1c9ccce Author: Scott Lahteine <[email protected]> Date: Tue Dec 24 00:05:04 2019 -0600 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit ac7ee4b Author: Scott Lahteine <[email protected]> Date: Sun Dec 1 13:56:18 2019 -0600 Release version 2.0.0
commit 7615ea4fbadcfff007bbf526bd291fb6177ca291 Merge: 0b2d0e4 a006752 Author: Emanuel Garcês <[email protected]> Date: Sun Jun 20 12:00:11 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 0b2d0e4 Author: Emanuel Garcês <[email protected]> Date: Sun May 16 18:49:40 2021 +0100 Update configuration.h commit 13f190b Merge: 743cf11 533ba2a Author: Emanuel Garcês <[email protected]> Date: Sun May 16 18:41:53 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 743cf11 Merge: b7db397 376f0be Author: Emanuel Garcês <[email protected]> Date: Sat May 15 12:36:51 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit b7db397 Author: Emanuel Garcês <[email protected]> Date: Wed Dec 9 15:40:24 2020 +0000 Updated the touchscreen calibration commit c7476aa Merge: 0f2aae7 465840e Author: Emanuel Garcês <[email protected]> Date: Fri Dec 4 11:40:42 2020 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 0f2aae7 Merge: e26103f 0d080ce Author: Emanuel Garcês <[email protected]> Date: Tue Dec 1 18:16:58 2020 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit e26103f Merge: 0e065ae 48b0abc Author: Emanuel Garcês <[email protected]> Date: Sun Nov 22 17:31:18 2020 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 0e065ae Author: Emanuel Garcês <[email protected]> Date: Sat Nov 14 11:19:43 2020 +0000 Fixed fan declaration commit 0a5651c Merge: 568fca2 0465e0a Author: Emanuel Garcês <[email protected]> Date: Sat Nov 14 11:09:14 2020 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 568fca2 Author: Emanuel Garcês <[email protected]> Date: Sat Nov 14 11:05:44 2020 +0000 Decreased controller fan, dor noise related issues. commit c9e2277 Merge: 3656bc2 a4a487b Author: Emanuel Garcês <[email protected]> Date: Sat Oct 31 08:30:58 2020 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 3656bc2 Merge: 205e3bc 12dec25 Author: Emanuel Garcês <[email protected]> Date: Wed Oct 28 09:10:44 2020 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 205e3bc Author: Emanuel Garcês <[email protected]> Date: Sat Oct 17 12:16:48 2020 +0100 version numbers were incorrect commit eb0f051 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 17 12:03:41 2020 +0100 Disable babystep total - not working with colorui commit 81a8ec6 Merge: 4c31951 263f29a Author: Emanuel Garcês <[email protected]> Date: Sat Oct 17 12:00:09 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 4c31951 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 23:49:00 2020 +0100 Changes for dual extrusion commit 6ac7d0a Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 21:31:15 2020 +0100 Enable probe offset wizard commit 8cf0a83 Merge: 23309ea e4c23f8 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 21:25:23 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into X5SA-2E-Bugfix-ColorUI commit e4c23f8 Author: Scott Lahteine <[email protected]> Date: Sat Oct 10 01:17:34 2020 -0500 Marlin 2.0.7.1 commit a14e26c Author: Serhiy-K <[email protected]> Date: Sat Oct 10 13:01:46 2020 +0300 Fixes for TFTGLCD Panel, FastIO (MarlinFirmware#19614) commit 9ab7c05 Author: ellensp <[email protected]> Date: Sat Oct 10 22:39:12 2020 +1300 HAS_CHARACTER_LCD => HAS_MARLINUI_HD44780 (MarlinFirmware#19673) commit 23da765 Merge: a7f3343 8e03a4c Author: Scott Lahteine <[email protected]> Date: Sat Oct 10 00:26:40 2020 -0500 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit a7f3343 Author: Victor Oliveira <[email protected]> Date: Sat Oct 10 01:35:41 2020 -0300 Keep HAL tasks running during PID Autotune (MarlinFirmware#19671) commit e817773 Author: Scott Lahteine <[email protected]> Date: Mon Sep 28 21:02:09 2020 -0500 Marlin 2.0.7 commit aac0326 Merge: a52afd2 41774ec Author: Scott Lahteine <[email protected]> Date: Mon Sep 28 20:59:49 2020 -0500 Merge bugfix-2.0.x into 2.0.x commit a52afd2 Author: Jason Smith <[email protected]> Date: Thu Sep 17 04:35:10 2020 -0700 Update stale issue message and parameters (MarlinFirmware#19412) * Update stale issue bot * Update close-stale.yml * Update close-stale.yml Co-authored-by: Scott Lahteine <[email protected]> commit 23309ea Merge: b8ce0ca 1917ed8 Author: Emanuel Garcês <[email protected]> Date: Sat Sep 12 15:41:37 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit b8ce0ca Merge: daf5ed2 1d6a927 Author: Emanuel Garcês <[email protected]> Date: Fri Sep 4 12:53:39 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 9913333 Author: Keith Bennett <[email protected]> Date: Thu Sep 3 21:27:59 2020 -0700 Auto-label Feature Requests (MarlinFirmware#19258) commit daf5ed2 Merge: 8672e36 2979da7 Author: Emanuel Garcês <[email protected]> Date: Tue Sep 1 16:10:54 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 8672e36 Merge: c48c8f8 6ac8f5a Author: Emanuel Garcês <[email protected]> Date: Fri Aug 28 09:52:25 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit ca194ca Author: Scott Lahteine <[email protected]> Date: Thu Aug 27 22:19:41 2020 -0500 Version 2.0.6.1 commit b90e7c4 Merge: 96e29cd 6ac8f5a Author: Scott Lahteine <[email protected]> Date: Thu Aug 27 22:17:50 2020 -0500 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit c48c8f8 Merge: 0ad4c86 195d20c Author: Emanuel Garcês <[email protected]> Date: Wed Aug 26 22:57:03 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 0ad4c86 Author: Emanuel Garcês <[email protected]> Date: Wed Aug 26 22:56:32 2020 +0100 Changes to the runout sensor commit 0e5e47f Merge: 6111a37 c488070 Author: Emanuel Garcês <[email protected]> Date: Mon Aug 24 11:15:02 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 6111a37 Author: Emanuel Garcês <[email protected]> Date: Wed Aug 19 12:29:17 2020 +0100 Disabled Linear Advance to enable S Curve acceleration commit 281e3e9 Author: Emanuel Garcês <[email protected]> Date: Wed Aug 19 10:57:41 2020 +0100 Added Junction deviation and S curve acceleration commit 813838c Merge: 58a9945 d3c5161 Author: Emanuel Garcês <[email protected]> Date: Wed Aug 19 10:56:51 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 58a9945 Merge: fbfe586 c55f477 Author: Emanuel Garcês <[email protected]> Date: Tue Aug 18 22:06:17 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit fbfe586 Author: Emanuel Garcês <[email protected]> Date: Mon Aug 17 14:43:33 2020 +0100 Updated config values commit 871530d Merge: b263177 ed775ac Author: Emanuel Garcês <[email protected]> Date: Mon Aug 17 13:18:01 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit b263177 Merge: a6b5c71 19818a9 Author: Emanuel Garcês <[email protected]> Date: Sun Aug 16 11:36:26 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 96e29cd Author: Julius Mumme <[email protected]> Date: Sun Aug 16 05:50:28 2020 +0200 Fix IS_PROBE_PIN macro (MarlinFirmware#19024) commit a6b5c71 Author: Emanuel Garcês <[email protected]> Date: Thu Aug 13 12:51:49 2020 +0100 Added PID Autotune menu commit 3565e10 Merge: 2f1c1bb 3b9e0c3 Author: Emanuel Garcês <[email protected]> Date: Thu Aug 13 12:38:15 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-ColorUI commit 2f1c1bb Author: Emanuel Garcês <[email protected]> Date: Tue Aug 11 09:50:51 2020 +0100 Changes to build Color UI commit 142cb2e Merge: 32f694b bd690f1 Author: Emanuel Garcês <[email protected]> Date: Tue Aug 11 09:28:54 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-2.0.x commit 32f694b Merge: ae3df4e 911cdd4 Author: Emanuel Garcês <[email protected]> Date: Tue Aug 11 00:24:39 2020 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into X5SA-2E-Bugfix-2.0.x commit ae3df4e Author: Emanuel Garcês <[email protected]> Date: Mon Aug 10 00:13:58 2020 +0100 QOL Adjustments commit cfc143e Author: Emanuel Garcês <[email protected]> Date: Sun Aug 9 20:16:46 2020 +0100 X5SA-2E Multiple fixes commit c88bf98 Author: Emanuel Garcês <[email protected]> Date: Sun Aug 9 20:06:10 2020 +0100 X5SA-2E Initial Config commit fd9c698 Author: ellensp <[email protected]> Date: Sat Aug 8 10:59:09 2020 +1200 HW PWM sanity checks for SPINDLE_LASER_FREQUENCY (MarlinFirmware#18947) commit da144dc Author: Roman Moravčík <[email protected]> Date: Tue Aug 4 07:32:47 2020 +0200 Update Slovak language (MarlinFirmware#18884) commit 1d92bad Author: Giuliano Zaro <[email protected]> Date: Tue Aug 4 07:32:25 2020 +0200 Update Italian language (MarlinFirmware#18886) commit 242064f Author: swissnorp <[email protected]> Date: Thu Aug 6 05:38:23 2020 +0200 Move Cancel Object menu, fix canceled item index (MarlinFirmware#18930) commit ad2d1b6 Author: cbaugher <[email protected]> Date: Fri Aug 7 18:06:25 2020 -0500 Fix Z height after tool change (MarlinFirmware#18951) commit 978e0e4 Author: Claus Näveke <[email protected]> Date: Mon Aug 3 03:17:43 2020 +0200 No mks_robin extra_scripts in Trigorilla build (MarlinFirmware#18872) commit 02a500d Author: ellensp <[email protected]> Date: Mon Aug 3 13:16:12 2020 +1200 Fix Spindle/Laser PWM DC (MarlinFirmware#18871) commit fa5ca86 Author: FLYmaker <[email protected]> Date: Mon Aug 3 09:13:57 2020 +0800 Fix FLYF407ZG pins (MarlinFirmware#18865) commit 01359cf Author: Sebastien Andrivet <[email protected]> Date: Mon Aug 3 03:10:16 2020 +0200 Fix Duplicator i3 Plus pin diagram (MarlinFirmware#18862) commit 37b56d6 Author: Scott Lahteine <[email protected]> Date: Thu Jul 30 02:07:29 2020 -0500 Add monitor_flags commit ad59adf Author: Scott Lahteine <[email protected]> Date: Tue Jul 28 18:13:20 2020 -0500 Update include_tree commit 121cd42 Author: Scott Lahteine <[email protected]> Date: Wed Jul 29 20:50:10 2020 -0500 In G28 Z is sort-of known commit cf1c57a Author: Scott Lahteine <[email protected]> Date: Wed Jul 29 20:43:35 2020 -0500 Fix UNKNOWN_Z_NO_RAISE in G28 Bug introduced in 73fc077 commit 5804761 Author: swissnorp <[email protected]> Date: Wed Jul 29 04:28:58 2020 +0200 Fix Cancel Objects index display (zero-based) (MarlinFirmware#18841) commit 3dd21a2 Author: natemason <[email protected]> Date: Wed Jul 29 09:18:02 2020 +0800 Add TEMP_PROBE_PIN for Einsy Rambo (MarlinFirmware#18823) commit b160e8b Author: MoellerDi <[email protected]> Date: Wed Jul 29 03:19:12 2020 +0200 Fix NEOPIXEL_LED compile w/out PRINTER_EVENT_LEDS (MarlinFirmware#18824) commit de37196 Author: Victor Oliveira <[email protected]> Date: Tue Jul 28 23:15:17 2020 -0300 DISABLE_DEBUG required to free Robin nano Z_DIR_PIN (MarlinFirmware#18832) commit 84b96d3 Merge: 92076c6 5d14c37 Author: Scott Lahteine <[email protected]> Date: Mon Jul 27 20:16:34 2020 -0500 Hotfix for first round of post-release hiccups commit 92076c6 Author: Scott Lahteine <[email protected]> Date: Sun Jul 26 20:03:06 2020 -0500 Marlin Release 2.0.6 commit 5e5daf1 Merge: 8b637e4 de68b37 Author: Scott Lahteine <[email protected]> Date: Sun Jul 26 20:01:40 2020 -0500 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into release_206 commit 8b637e4 Author: Scott Lahteine <[email protected]> Date: Thu Jul 23 20:59:43 2020 -0500 Update links, README, contributing, etc. commit b73ac40 Author: Chris Pepper <[email protected]> Date: Tue Jul 14 15:15:19 2020 +0100 LPC fix NeoPixel fork commit 7ed66d0 Author: Scott Lahteine <[email protected]> Date: Sun Jul 12 22:35:13 2020 -0500 [email protected] for LPC commit c1b2379 Author: Scott Lahteine <[email protected]> Date: Sat Jul 11 07:38:19 2020 -0500 Specify supported library versions commit 5e0958e Author: Scott Lahteine <[email protected]> Date: Sat Jul 11 07:14:54 2020 -0500 Fix pid_debug_flag commit 5513e67 Author: Scott Lahteine <[email protected]> Date: Wed Jul 8 19:36:09 2020 -0500 2.0.5.4 : Use ststm32 < 6.2 commit 354a9e5 Author: Scott Lahteine <[email protected]> Date: Wed Jul 8 04:38:35 2020 -0500 Lock threads updated commit ee4910c Author: Scott Lahteine <[email protected]> Date: Sun Jul 5 19:56:33 2020 -0500 Temporarily use patched lock-threads commit 697ef26 Author: Scott Lahteine <[email protected]> Date: Sun Jul 5 15:45:14 2020 -0500 Add CI for pushed commits Co-Authored-By: thisiskeithb <[email protected]> commit 481b8ff Author: Scott Lahteine <[email protected]> Date: Sun Jul 5 15:23:07 2020 -0500 Limit actions to main commit 7bf89f2 Author: Scott Lahteine <[email protected]> Date: Sat Jul 4 17:28:23 2020 -0500 Two lock-closed per day commit ed71108 Author: Scott Lahteine <[email protected]> Date: Thu Jul 2 18:10:33 2020 -0500 Patch Bad PR action commit 842dea4 Author: Scott Lahteine <[email protected]> Date: Tue Jun 30 18:18:58 2020 -0500 Updated lock / unlock actions commit a73e610 Author: Scott Lahteine <[email protected]> Date: Tue Jun 23 19:58:00 2020 -0500 Add Close / Lock actions commit c352aeb Author: Daniel Aléxis <[email protected]> Date: Tue Jun 9 21:27:57 2020 +0100 Remove "dev" branch reference (for now) (MarlinFirmware#18242) commit e4d8336 Author: Mathias Gartner <[email protected]> Date: Sat May 2 23:15:49 2020 +0200 Fix XYZ types multiplication/division (MarlinFirmware#17826) commit 0518dec Author: thisiskeithb <[email protected]> Date: Wed Apr 1 12:16:01 2020 -0700 Correct link to Configurations (MarlinFirmware#17370) commit 015c4e6 Author: Scott Lahteine <[email protected]> Date: Tue Mar 31 14:40:06 2020 -0500 Version 2.0.5.3 commit 0f9a14d Merge: 7124b21 e7f020f Author: Scott Lahteine <[email protected]> Date: Tue Mar 31 14:43:42 2020 -0500 Merge latest patches commit 7124b21 Author: Scott Lahteine <[email protected]> Date: Tue Mar 24 16:22:12 2020 -0500 Version 2.0.5.2 commit efc1926 Merge: d37bfa3 68face8 Author: Scott Lahteine <[email protected]> Date: Tue Mar 24 17:10:53 2020 -0500 Merge patches from bugfix-2.0.x commit d37bfa3 Author: Scott Lahteine <[email protected]> Date: Mon Mar 16 17:52:41 2020 -0500 Version 2.0.5.1 Release commit 129b1bb Merge: 8dbbcfd f6e80d5 Author: Scott Lahteine <[email protected]> Date: Mon Mar 16 17:50:43 2020 -0500 Merge nightly patches commit 8dbbcfd Author: Scott Lahteine <[email protected]> Date: Sat Mar 14 00:49:12 2020 -0500 Version 2.0.5 Release commit fa48fbb Merge: d6e767e 8b2d55e Author: Scott Lahteine <[email protected]> Date: Sat Mar 14 00:35:11 2020 -0500 Merge bugfix-2.0.x into 2.0.x commit d6e767e Author: Scott Lahteine <[email protected]> Date: Wed Feb 26 13:00:26 2020 -0600 Version 2.0.4.4 Release commit b29aae6 Merge: 1955eea 9f8ee31 Author: Scott Lahteine <[email protected]> Date: Thu Feb 27 04:14:33 2020 -0600 Merge 'bugfix-2.0.x' into 2.0.x commit 1955eea Author: Scott Lahteine <[email protected]> Date: Mon Feb 24 06:13:18 2020 -0600 Version 2.0.4.3 Release commit 42fa9fc Author: Scott Lahteine <[email protected]> Date: Mon Feb 24 10:58:54 2020 -0600 Fix card_eof error commit 130d039 Author: Marcio T <[email protected]> Date: Mon Feb 24 09:42:12 2020 -0700 Restore tabs in Makefile (MarlinFirmware#16944) commit c5f1ff9 Author: Marcio T <[email protected]> Date: Mon Feb 24 09:40:12 2020 -0700 Allow Z_SAFE_HOMING_POINT outside bed (MarlinFirmware#16945) commit 089cc68 Merge: 2b759b9 a254354 Author: Scott Lahteine <[email protected]> Date: Mon Feb 24 06:12:15 2020 -0600 Merge nightly patches commit 2b759b9 Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 19:26:52 2020 -0600 Suppress "packed member" warning commit 5f27f7d Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 18:49:59 2020 -0600 Version 2.0.4.2 Release commit 282f467 Merge: c41f3f8 2471a8b Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 18:47:09 2020 -0600 Merge nightly patches commit c41f3f8 Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 02:58:05 2020 -0600 Version 2.0.4.1 Release commit 8670df0 Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 02:52:59 2020 -0600 CoreXY Babystepping hotfix commit 730690e Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 02:52:21 2020 -0600 Hotfix for Babystepping commit 3543873 Author: Scott Lahteine <[email protected]> Date: Fri Feb 21 07:24:58 2020 -0600 Use moves_free in ok_to_send commit c505626 Author: thinkyhead <[email protected]> Date: Sat Feb 22 00:03:47 2020 +0000 [cron] Bump distribution date (2020-02-22) commit 7e8505f Author: Scott Lahteine <[email protected]> Date: Fri Feb 21 08:38:14 2020 -0600 Version 2.0.4 Release commit f9aec26 Merge: dd6a7ca 5d16497 Author: Scott Lahteine <[email protected]> Date: Fri Feb 21 08:37:02 2020 -0600 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit dd6a7ca Author: Scott Lahteine <[email protected]> Date: Mon Feb 10 16:33:21 2020 -0600 Fix out-of-order M0 after SD printing Fixes MarlinFirmware#14774 Co-Authored-By: tol2cj <[email protected]> commit 62b9d7d Author: Scott Lahteine <[email protected]> Date: Wed Feb 5 00:47:24 2020 -0600 Direct link to version configs commit d83382e Author: Scott Lahteine <[email protected]> Date: Tue Feb 4 09:41:26 2020 -0600 Add "PR Bad Target" workflow action commit 4c76314 Author: Scott Lahteine <[email protected]> Date: Mon Feb 3 19:31:41 2020 -0600 Scheduled action to bump the date on bugfix-2.0.x commit 64ab254 Author: Scott Lahteine <[email protected]> Date: Mon Feb 3 18:06:04 2020 -0600 Use a different Configurations branch for CI commit e6a7be9 Author: Scott Lahteine <[email protected]> Date: Thu Jan 30 18:18:46 2020 -0600 Version 2.0.3 commit 1525c25 Merge: 016e4c0 dabf393 Author: Scott Lahteine <[email protected]> Date: Fri Jan 31 04:23:45 2020 -0600 Merge commit 'dabf3939209fd8ea7f6a6327d764c16743aa22aa' into look_at_201 commit 016e4c0 Author: Scott Lahteine <[email protected]> Date: Mon Jan 27 05:34:56 2020 -0600 Version 2.0.2 commit be64261 Merge: ee17051 8bd6b60 Author: Scott Lahteine <[email protected]> Date: Fri Jan 31 04:22:09 2020 -0600 Merge commit '8bd6b60a0141fa892984f2d5b61f06eadbbf9a5f' into look_at_201 commit ee17051 Author: Scott Lahteine <[email protected]> Date: Tue Dec 24 00:06:32 2019 -0600 Version 2.0.1 commit 0673f33 Merge: ac7ee4b 1c9ccce Author: Scott Lahteine <[email protected]> Date: Tue Dec 24 00:05:04 2019 -0600 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit ac7ee4b Author: Scott Lahteine <[email protected]> Date: Sun Dec 1 13:56:18 2019 -0600 Release version 2.0.0
commit 311f61bf53c55345b25801a5d40418d93bada946 Merge: 0700a3d a006752 Author: Emanuel Garcês <[email protected]> Date: Sun Jun 20 11:57:22 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit 0700a3d Author: Emanuel Garcês <[email protected]> Date: Sat Jun 12 23:39:16 2021 +0100 Increase bed probing speed commit 2d8be4d Author: Emanuel Garcês <[email protected]> Date: Sat Jun 12 22:36:51 2021 +0100 Bed PID Values commit 97dacdf Author: Emanuel Garcês <[email protected]> Date: Sat Jun 12 19:27:43 2021 +0100 Enable PID Bed commit 360babe Author: Emanuel Garcês <[email protected]> Date: Sat Jun 12 17:51:42 2021 +0100 Increase probing speed commit e858fb1 Merge: d44de6b 6131d2c Author: Emanuel Garcês <[email protected]> Date: Sat Jun 12 17:48:40 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit d44de6b Author: Emanuel Garcês <[email protected]> Date: Sun May 16 18:11:22 2021 +0100 Can't enable both restore and enable leveling after g28 commit cb7e49b Merge: bca0621 533ba2a Author: Emanuel Garcês <[email protected]> Date: Sun May 16 18:03:26 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit bca0621 Merge: 1bea497 376f0be Author: Emanuel Garcês <[email protected]> Date: Sat May 15 12:30:52 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit 1bea497 Merge: b2d6922 05c25b8 Author: Emanuel Garcês <[email protected]> Date: Sun May 2 01:46:22 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit b2d6922 Merge: 598713f 2e0a1f1 Author: Emanuel Garcês <[email protected]> Date: Wed Apr 28 19:28:27 2021 +0100 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit 598713f Merge: 9cf1a89 ba2cadb Author: Emanuel Garcês <[email protected]> Date: Mon Jan 4 15:44:36 2021 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit 9cf1a89 Merge: 765affa 0d080ce Author: Emanuel Garcês <[email protected]> Date: Tue Dec 1 18:17:56 2020 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit 765affa Author: Emanuel Garcês <[email protected]> Date: Wed Nov 25 09:51:58 2020 +0000 Fixes commit 0af91b7 Merge: 19c518c 04c4c60 Author: Emanuel Garcês <[email protected]> Date: Wed Nov 25 09:49:08 2020 +0000 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into P3Steel-Bugfix commit 19c518c Author: Emanuel Garcês <[email protected]> Date: Wed Nov 25 09:07:40 2020 +0000 Fix for no longer being able to compile commit e9de4af Merge: de254ee 65983b4 Author: Emanuel Garcês <[email protected]> Date: Tue Nov 24 23:59:55 2020 +0000 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit de254ee Author: Emanuel Garcês <[email protected]> Date: Tue Nov 24 23:58:25 2020 +0000 Revert "Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing" This reverts commit d3d3db6, reversing changes made to 3b7ae51. commit 65983b4 Author: ellensp <[email protected]> Date: Wed Nov 25 11:14:22 2020 +1300 Set "lcd_move_e" index to fix the label (MarlinFirmware#20263) commit d3d3db6 Merge: 3b7ae51 1d631b7 Author: Emanuel Garcês <[email protected]> Date: Sun Nov 22 16:44:17 2020 +0000 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 1d631b7 Author: Simone Primarosa <[email protected]> Date: Sat Nov 21 02:53:04 2020 +0100 Fix bad SET_FAST_PWM_FREQ calls (MarlinFirmware#20227) commit 072b157 Author: phcay <[email protected]> Date: Sat Nov 14 02:24:08 2020 +0100 Fix extraneous Linear Advance DIR change (MarlinFirmware#20131) commit 3b7ae51 Merge: 8cc5b8d ba2939b Author: Emanuel Garcês <[email protected]> Date: Fri Oct 30 21:42:34 2020 +0000 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit ba2939b Author: thinkyhead <[email protected]> Date: Fri Oct 30 00:10:04 2020 +0000 Fix bilinear_line_to_destination definition See MarlinFirmware#19431 commit 8cc5b8d Merge: 9d21742 ee7476a Author: Emanuel Garcês <[email protected]> Date: Wed Oct 28 09:11:20 2020 +0000 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit ee7476a Author: Jason Smith <[email protected]> Date: Tue Oct 27 15:48:06 2020 -0700 Update "Bug Report" template (MarlinFirmware#19906) commit 88a2ac9 Author: Scott Lahteine <[email protected]> Date: Wed Oct 14 23:55:20 2020 -0500 Marlin 2.0.7.2 commit 3ccb380 Author: Jason Smith <[email protected]> Date: Fri Oct 16 14:04:51 2020 -0700 Fix SAMD Serial name macro (MarlinFirmware#19765) commit cc7fbab Author: Serhiy-K <[email protected]> Date: Sat Oct 17 00:21:21 2020 +0300 Fix HAL/STM32 FastIO for analog pins (MarlinFirmware#19735) commit 28a9708 Author: Scott Lahteine <[email protected]> Date: Wed Oct 21 18:08:57 2020 -0500 Don't define IS_ULTIPANEL empty commit 9d21742 Merge: 0a2462f 0a0f211 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 17 11:58:32 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit d896ded Author: Jason Smith <[email protected]> Date: Tue Oct 13 16:03:09 2020 -0700 Add NUCLEO-F767ZI dev board (MarlinFirmware#19373) Co-authored-by: Lorenzo Delana <[email protected]> commit 0a0f211 Author: Jason Smith <[email protected]> Date: Fri Oct 16 14:04:51 2020 -0700 Fix SAMD Serial name macro (MarlinFirmware#19765) commit 0070901 Author: Keith Bennett <[email protected]> Date: Tue Oct 13 16:13:25 2020 -0700 If needed, home before G34 (MarlinFirmware#19713) commit 86cb079 Author: Serhiy-K <[email protected]> Date: Sat Oct 17 00:21:21 2020 +0300 Fix HAL/STM32 FastIO for analog pins (MarlinFirmware#19735) commit 1b4d038 Author: Scott Lahteine <[email protected]> Date: Wed Oct 14 23:55:20 2020 -0500 Marlin 2.0.7.2 commit b7d9b05 Author: Victor Oliveira <[email protected]> Date: Tue Oct 13 13:58:50 2020 -0300 TFT followup fixes (MarlinFirmware#19710) commit f7f1224 Author: Victor Oliveira <[email protected]> Date: Tue Oct 13 20:12:34 2020 -0300 Watchdog Refresh for LVGL Asset Load (MarlinFirmware#19724) commit fd8d83b Author: Jason Smith <[email protected]> Date: Wed Oct 14 11:43:36 2020 -0700 Fix mega2560ext environment (MarlinFirmware#19730) commit 52fc0b8 Author: thinkyhead <[email protected]> Date: Thu Oct 15 00:15:10 2020 +0000 [cron] Bump distribution date (2020-10-15) commit ba045d6 Author: thinkyhead <[email protected]> Date: Wed Oct 14 00:15:03 2020 +0000 [cron] Bump distribution date (2020-10-14) commit 54bdcb4 Author: Jason Smith <[email protected]> Date: Wed Oct 14 11:50:03 2020 -0700 Fix SET_SOFT_ENDSTOP_LOOSE w/out soft endstops (MarlinFirmware#19734) commit 2a26663 Author: Scott Lahteine <[email protected]> Date: Tue Oct 13 14:54:56 2020 -0500 Simple bool in soft_endstops_t commit 3bba5d5 Author: thinkyhead <[email protected]> Date: Tue Oct 13 00:15:19 2020 +0000 [cron] Bump distribution date (2020-10-13) commit 5d07d83 Author: thinkyhead <[email protected]> Date: Mon Oct 12 00:15:08 2020 +0000 [cron] Bump distribution date (2020-10-12) commit 37f97bc Author: Jason Smith <[email protected]> Date: Sun Oct 11 17:06:57 2020 -0700 Fix various errors, warnings in example config builds (MarlinFirmware#19686) Co-authored-by: Scott Lahteine <[email protected]> commit 6d31bbe Author: thinkyhead <[email protected]> Date: Sun Oct 11 00:15:24 2020 +0000 [cron] Bump distribution date (2020-10-11) commit e2e1776 Author: Victor Oliveira <[email protected]> Date: Sat Oct 10 13:47:28 2020 -0300 Restore correct STM32 port-bits code (MarlinFirmware#19678) commit bd196e7 Author: Serhiy-K <[email protected]> Date: Sat Oct 10 13:01:46 2020 +0300 Fixes for TFTGLCD Panel, FastIO (MarlinFirmware#19614) commit dffe7b9 Author: Earle F. Philhower, III <[email protected]> Date: Mon Oct 12 14:48:04 2020 -0700 Add loose soft endstop state, apply to UBL fine-tune (MarlinFirmware#19681) Co-authored-by: Scott Lahteine <[email protected]> commit 2b326eb Author: Jason Smith <[email protected]> Date: Mon Oct 12 14:39:31 2020 -0700 Add D100 Watchdog Test (MarlinFirmware#19697) commit f4ff6a6 Author: Jason Smith <[email protected]> Date: Sun Oct 11 22:40:39 2020 -0700 Allow MAX31865 resistance values configuration (MarlinFirmware#19695) commit cc915a2 Author: qwewer0 <[email protected]> Date: Mon Oct 12 04:30:18 2020 +0200 Add REPORT_TRAMMING_MM option (MarlinFirmware#19682) Co-authored-by: Scott Lahteine <[email protected]> commit 600870f Author: Jason Smith <[email protected]> Date: Sun Oct 11 17:42:50 2020 -0700 Fix motion compile w/out probe-oriented settings (MarlinFirmware#19684) commit 04882e2 Author: Jason Smith <[email protected]> Date: Sun Oct 11 17:23:23 2020 -0700 Fix I2C_ADDRESS sign warning (MarlinFirmware#19685) commit c6cf3da Author: Jason Smith <[email protected]> Date: Sun Oct 11 17:06:57 2020 -0700 Fix various errors, warnings in example config builds (MarlinFirmware#19686) Co-authored-by: Scott Lahteine <[email protected]> commit 8a5c378 Author: Jason Smith <[email protected]> Date: Sun Oct 11 16:13:01 2020 -0700 Fix at90usb1286 build (MarlinFirmware#19687) * Skip check for USBCON during dependency detection * Ignore incompatible Teensy_ADC library, which requires Teensy >= 3 * Add IS_AT90USB Co-authored-by: Scott Lahteine <[email protected]> commit beb17d8 Author: Scott Lahteine <[email protected]> Date: Sun Oct 11 14:58:35 2020 -0500 Digipots refactor / cleanup (MarlinFirmware#19690) commit 4ee717f Author: Scott Lahteine <[email protected]> Date: Sat Oct 10 12:07:00 2020 -0500 Save PLR on resume from pause (MarlinFirmware#19676) Co-Authored-By: shahab <[email protected]> commit e680196 Author: Victor Oliveira <[email protected]> Date: Sat Oct 10 13:47:28 2020 -0300 Restore correct STM32 port-bits code (MarlinFirmware#19678) commit ce92abf Author: Serhiy-K <[email protected]> Date: Sat Oct 10 13:01:46 2020 +0300 Fixes for TFTGLCD Panel, FastIO (MarlinFirmware#19614) commit 50410aa Author: Victor Oliveira <[email protected]> Date: Mon Oct 12 20:01:03 2020 -0300 Fix UTF8 handling for Color UI (MarlinFirmware#19708) commit 35c40bc Author: Victor Oliveira <[email protected]> Date: Sun Oct 11 21:26:16 2020 -0300 Implement wait_for_user for Color UI (MarlinFirmware#19694) commit aae644c Author: Victor Oliveira <[email protected]> Date: Sun Oct 11 21:31:21 2020 -0300 Option to prevent (extra) Watchdog init on STM32 (MarlinFirmware#19693) commit ce830f8 Author: Scott Lahteine <[email protected]> Date: Mon Oct 12 00:59:30 2020 -0500 Fix screen click reading too often (MarlinFirmware#19696) Co-authored-by: andreibobirica <[email protected]> commit d3d423a Author: Keith Bennett <[email protected]> Date: Mon Oct 12 14:52:56 2020 -0700 Sanity-check mutually-exclusive G34 features (MarlinFirmware#19706) commit 8b060a3 Author: InsanityAutomation <[email protected]> Date: Sun Oct 11 22:34:27 2020 -0400 G34 Mechanical Gantry Calibration (like Prusa M915) (MarlinFirmware#18972) Co-authored-by: Scott Lahteine <[email protected]> commit faae900 Author: Victor Oliveira <[email protected]> Date: Mon Oct 12 18:38:07 2020 -0300 TFT Refactoring (MarlinFirmware#19192) * split tft folder in two: tft for color ui; tft_io for shared tft code * after the files got moved, now the code was moved to the right place * classic ui using TFT IO init lcd codes * feature to compile tft_io when enabled * compiling fix * lvgl spi tft working with tft io init codes * there is no need for separeted fsmc and spi class in lvgl anymore, as tft io handle everything * remove debug * base for TFT rotation and mirroring API, and ILI9488 support * ST7796S rotate and mirror support * ST7789V rotate and mirror support * ST7735 rotate and mirror support * ILI9341 rotate and mirror support * ILI9328 rotate and mirror support * R61505 rotate and mirror support * MKS TFT definitions * more configs for mks tfts * update config * naming typo * to configure the user interface * ANYCUBIC_TFT35 * tft configs * support for SSD1963 * tft display types * updated conditionals lcd; first board fully working with the new code - all 3 ui! * compatiblity * changed name * move classic ui file name * rename TURN -> ROTATE * GRAPHICAL_TFT_ROTATE_180 deprecated * first fsmc board fully working - chitu v5 * mks robin nano v1.2 + tft 35 ok! * right pin name * anycubic tft tested in a TRIGORILLA_PRO * chitu v6 * nano 32 tft orientation * mks tft43 * mks tft43 rotation * fixed LONGER LK tft setup * GRAPHICAL_TFT_UPSCALE defined by the display type * better offsets defaults * Update Configuration.h * Update tft_fsmc.cpp * Update Conditionals_LCD.h * Tweak comments * update nano tests * Revert "update nano tests" This reverts commit a071ebb. * default tft * outdated comments * to not break non-vscode builds * upscale tft 35 * support tft 180 rotation for color ui * Each TFT Driver is responsible for its default color mode. * use auto detect in mks displays, because some of them could be shipped with diferent drivers * extra s * unused code * wrong -1 * missing mirror options * Smaller regex pattern * Comment updates * Clean up old defines * Apply pins formatting * GRAPHICAL_TFT_ROTATE_180 => TFT_ROTATE_180 * MKS_ROBIN_TFT_V1_1R * merge fix * correct resolution * auto is default, dont need be there, and it will allow the user to configure it even for named displays * to not use rotation with MKS_ROBIN_TFT_V1_1R * i like () in macros * avoid sleepy commits * default for st7789 is rgb * nano follow up * to allow ili9328 rotation * default is rgb * boards merge follow up * to match bootloader orientation * HAS_TOUCH_XPT2046 is not hal specific anymore * lets not forget LPC * 180 rotation for ili9328 and R61505 * Clean up whitespace Co-authored-by: Scott Lahteine <[email protected]> Co-authored-by: Scott Lahteine <[email protected]> commit 11662bf Author: Scott Lahteine <[email protected]> Date: Sat Oct 10 01:17:34 2020 -0500 Marlin 2.0.7.1 commit 887e263 Author: Serhiy-K <[email protected]> Date: Sat Oct 10 13:01:46 2020 +0300 Fixes for TFTGLCD Panel, FastIO (MarlinFirmware#19614) commit 958f05e Author: ellensp <[email protected]> Date: Sat Oct 10 22:39:12 2020 +1300 HAS_CHARACTER_LCD => HAS_MARLINUI_HD44780 (MarlinFirmware#19673) commit 9126a2e Author: thinkyhead <[email protected]> Date: Sat Oct 10 00:14:40 2020 +0000 [cron] Bump distribution date (2020-10-10) commit 5070fae Author: Scott Lahteine <[email protected]> Date: Fri Oct 9 16:50:17 2020 -0500 Batch appercase hex values commit 454f9d6 Author: Scott Lahteine <[email protected]> Date: Fri Oct 9 16:42:23 2020 -0500 Optional `M42`/`M226`; Add more features filters (MarlinFirmware#19664) commit 59b6b32 Author: Victor Oliveira <[email protected]> Date: Fri Oct 9 08:25:23 2020 -0300 Support for Debug Codes - Dnnn (MarlinFirmware#19225) Co-authored-by: Scott Lahteine <[email protected]> commit 6d9709e Author: 石立枫 <[email protected]> Date: Fri Oct 9 19:09:27 2020 +0800 Support for FLY MINI (MarlinFirmware#19185) commit 7a48495 Author: Keith Bennett <[email protected]> Date: Fri Oct 9 00:52:06 2020 -0700 Fix touch ifndefs (MarlinFirmware#19661) commit 78060f5 Author: Giuliano Zaro <[email protected]> Date: Fri Oct 9 09:51:25 2020 +0200 Update Italian language (MarlinFirmware#19654) commit 3fca19f Author: thinkyhead <[email protected]> Date: Fri Oct 9 00:14:12 2020 +0000 [cron] Bump distribution date (2020-10-09) commit b8700e0 Author: Samantaz Fox <[email protected]> Date: Fri Oct 9 01:40:54 2020 +0200 Fix and improve Makefile / CMake (MarlinFirmware#19640) commit d66bc5c Author: Scott Lahteine <[email protected]> Date: Thu Oct 8 16:59:54 2020 -0500 Permit touch calibration override commit fb28c60 Author: Scott Lahteine <[email protected]> Date: Thu Oct 8 15:17:19 2020 -0500 Use 0xFF (not 'ff') for byte transfer commit 0f9d57e Author: ellensp <[email protected]> Date: Thu Oct 8 20:30:31 2020 +1300 Apply env:mega2560ext to relevant boards (MarlinFirmware#19624) commit 3237784 Author: qwewer0 <[email protected]> Date: Thu Oct 8 03:43:08 2020 +0200 Update PROBE_OFFSET_WIZARD comment (MarlinFirmware#19652) commit 0975c48 Author: thinkyhead <[email protected]> Date: Thu Oct 8 00:12:06 2020 +0000 [cron] Bump distribution date (2020-10-08) commit d07ad63 Author: qwewer0 <[email protected]> Date: Wed Oct 7 20:01:01 2020 +0200 More accessible PROBE_OFFSET_WIZARD (MarlinFirmware#19647) commit 1a5a3cf Author: ellensp <[email protected]> Date: Thu Oct 8 07:00:08 2020 +1300 Restore ° to 6x9 small info font (MarlinFirmware#19645) commit 6f69011 Author: Scott Lahteine <[email protected]> Date: Tue Oct 6 19:42:03 2020 -0500 Chamber vent/fan followup commit 9cc6297 Author: Scott Lahteine <[email protected]> Date: Tue Oct 6 19:17:18 2020 -0500 Fix small font section directive, mixer warning commit cf53bc2 Author: thinkyhead <[email protected]> Date: Wed Oct 7 00:14:42 2020 +0000 [cron] Bump distribution date (2020-10-07) commit f4f4ea0 Author: Scott Lahteine <[email protected]> Date: Tue Oct 6 01:28:08 2020 -0500 Update language fonts commit 2b845e5 Author: ladismrkolj <[email protected]> Date: Wed Oct 7 01:36:01 2020 +0200 Add Chamber servo vent, auto fan (MarlinFirmware#19519) commit 6fcbf11 Author: signetica <[email protected]> Date: Tue Oct 6 15:58:28 2020 -0600 Fix Ender-3 V2 DWIN Stop SD Print (MarlinFirmware#19642) Co-authored-by: Scott Lahteine <[email protected]> commit 8a69147 Author: Scott Lahteine <[email protected]> Date: Tue Oct 6 02:59:51 2020 -0500 Improve retract / unretract labels commit f8ceede Author: thinkyhead <[email protected]> Date: Tue Oct 6 00:14:30 2020 +0000 [cron] Bump distribution date (2020-10-06) commit a4e4226 Author: Scott Lahteine <[email protected]> Date: Mon Oct 5 01:09:32 2020 -0500 Trailing whitespace commit e76fd6b Author: Scott Lahteine <[email protected]> Date: Mon Oct 5 01:07:41 2020 -0500 Sync config to examples commit 437bee4 Author: Mathew Winters <[email protected]> Date: Mon Oct 5 18:31:20 2020 +1300 Z Probe Offset Wizard (MarlinFirmware#18866) commit 31238de Author: Cory Ory <[email protected]> Date: Mon Oct 5 01:51:21 2020 +0100 Allow bypass for cold E movement (MarlinFirmware#19606) commit cb8c99c Author: thinkyhead <[email protected]> Date: Mon Oct 5 00:14:33 2020 +0000 [cron] Bump distribution date (2020-10-05) commit 2fe81d0 Author: Ryan V1 <[email protected]> Date: Sun Oct 4 15:41:41 2020 -0700 Fix Archim1 stepper timing (with new variant) (MarlinFirmware#19596) commit fb7d7ee Author: Scott Lahteine <[email protected]> Date: Sun Oct 4 17:29:12 2020 -0500 Add HAS_FAST_MOVES commit d99fdcf Author: ellensp <[email protected]> Date: Mon Oct 5 10:47:06 2020 +1300 Fix Z_AFTER_HOMING without probe (MarlinFirmware#19607) commit e4d2234 Author: Scott Lahteine <[email protected]> Date: Sun Oct 4 15:45:13 2020 -0500 Move SF_ARC_FIX option commit bea919d Author: Speaka <[email protected]> Date: Sun Oct 4 21:50:12 2020 +0200 Fix German translation purging/unloading (MarlinFirmware#19615) commit 2fb22cc Author: Scott Lahteine <[email protected]> Date: Sun Oct 4 14:46:55 2020 -0500 Shared singlenozzle item commit d4b6542 Author: Scott Lahteine <[email protected]> Date: Sun Oct 4 14:29:02 2020 -0500 Fix Tune/Fan edit items - Fixes MarlinFirmware#19617 - Followup to MarlinFirmware#18400 commit 7d47ee7 Author: thinkyhead <[email protected]> Date: Sun Oct 4 00:14:30 2020 +0000 [cron] Bump distribution date (2020-10-04) commit 6ceacd6 Author: thinkyhead <[email protected]> Date: Sat Oct 3 00:14:05 2020 +0000 [cron] Bump distribution date (2020-10-03) commit 2ce6741 Author: Ryan V1 <[email protected]> Date: Fri Oct 2 15:31:33 2020 -0700 Fix 'bossac' upload on Windows (MarlinFirmware#19545) commit 2213eb3 Author: Marcio T <[email protected]> Date: Fri Oct 2 16:30:32 2020 -0600 Touch UI support for X2, Y2 and Z2 (MarlinFirmware#19538) commit b947590 Author: ellensp <[email protected]> Date: Sat Oct 3 11:28:08 2020 +1300 Fix wrappers on HAL/STM32F1 .cpp files (MarlinFirmware#19581) Co-authored-by: Scott Lahteine <[email protected]> commit 20bcaa7 Author: ellensp <[email protected]> Date: Sat Oct 3 11:19:43 2020 +1300 Fix TEMP_ADC_PROBE support for STM32F1 (MarlinFirmware#19582) Co-authored-by: ellensp <[email protected]> commit 9834a36 Author: ellensp <[email protected]> Date: Sat Oct 3 11:12:17 2020 +1300 Fix compile of MMU2 with S-mode disabled (MarlinFirmware#19584) commit 90801f8 Author: bilsef <[email protected]> Date: Fri Oct 2 15:08:50 2020 -0700 Fix onboard SD card support for Teensy 3.6 & 4.1 (MarlinFirmware#19593) commit 4d1357e Author: Scott Lahteine <[email protected]> Date: Fri Oct 2 17:05:45 2020 -0500 Adjust HAL platform defines, comments commit 8d090cb Author: Scott Lahteine <[email protected]> Date: Fri Oct 2 17:04:23 2020 -0500 Replace tabs with spaces commit ec5b78d Author: Victor Oliveira <[email protected]> Date: Thu Oct 1 22:52:42 2020 -0300 Minor SPI fixes, systick_callback for STM32F1 HAL compatibility (MarlinFirmware#19565) commit d33317e Author: thinkyhead <[email protected]> Date: Fri Oct 2 00:13:10 2020 +0000 [cron] Bump distribution date (2020-10-02) commit f8375a3 Author: swissnorp <[email protected]> Date: Fri Oct 2 01:17:11 2020 +0200 G35 workaround for Pronterface "feature" (MarlinFirmware#19577) commit 5a02959 Author: Stéphane <[email protected]> Date: Fri Oct 2 01:09:39 2020 +0200 Fix Anycubic i3 Mega target temperature display (MarlinFirmware#19572) Also includes a workaround for missing (probably un-fetched) long name in file listing commit cc123bc Author: Ilya <[email protected]> Date: Thu Oct 1 15:51:11 2020 -0700 No move on Park = No move on Resume (MarlinFirmware#19569) commit 4f6a060 Author: Roman Moravčík <[email protected]> Date: Fri Oct 2 00:47:24 2020 +0200 Update Slovak language (MarlinFirmware#19561) commit b89700e Author: Victor Oliveira <[email protected]> Date: Wed Sep 30 22:14:19 2020 -0300 Fix Buzzer (pin) init for uninitialized FastIO (MarlinFirmware#19559) commit ca853fb Author: Victor Oliveira <[email protected]> Date: Wed Sep 30 22:06:32 2020 -0300 Fix Move Screen with disabled Touch (MarlinFirmware#19558) commit 1ba2548 Author: thinkyhead <[email protected]> Date: Thu Oct 1 00:14:15 2020 +0000 [cron] Bump distribution date (2020-10-01) commit 1332be7 Author: thinkyhead <[email protected]> Date: Wed Sep 30 00:13:59 2020 +0000 [cron] Bump distribution date (2020-09-30) commit 0a2462f Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 21:28:59 2020 +0100 Enable probe offset wizard commit 6c2c7b7 Merge: 3bb4169 e4c23f8 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 21:20:09 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 3bb4169 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 21:13:18 2020 +0100 Revert "Fully disabled software endstops" This reverts commit f928250. commit e4c23f8 Author: Scott Lahteine <[email protected]> Date: Sat Oct 10 01:17:34 2020 -0500 Marlin 2.0.7.1 commit a14e26c Author: Serhiy-K <[email protected]> Date: Sat Oct 10 13:01:46 2020 +0300 Fixes for TFTGLCD Panel, FastIO (MarlinFirmware#19614) commit f928250 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 19:37:13 2020 +0100 Fully disabled software endstops commit d1d9c39 Merge: 642eadb e817773 Author: Emanuel Garcês <[email protected]> Date: Sat Oct 10 19:36:09 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 9ab7c05 Author: ellensp <[email protected]> Date: Sat Oct 10 22:39:12 2020 +1300 HAS_CHARACTER_LCD => HAS_MARLINUI_HD44780 (MarlinFirmware#19673) commit 23da765 Merge: a7f3343 8e03a4c Author: Scott Lahteine <[email protected]> Date: Sat Oct 10 00:26:40 2020 -0500 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit a7f3343 Author: Victor Oliveira <[email protected]> Date: Sat Oct 10 01:35:41 2020 -0300 Keep HAL tasks running during PID Autotune (MarlinFirmware#19671) commit e817773 Author: Scott Lahteine <[email protected]> Date: Mon Sep 28 21:02:09 2020 -0500 Marlin 2.0.7 commit aac0326 Merge: a52afd2 41774ec Author: Scott Lahteine <[email protected]> Date: Mon Sep 28 20:59:49 2020 -0500 Merge bugfix-2.0.x into 2.0.x commit a52afd2 Author: Jason Smith <[email protected]> Date: Thu Sep 17 04:35:10 2020 -0700 Update stale issue message and parameters (MarlinFirmware#19412) * Update stale issue bot * Update close-stale.yml * Update close-stale.yml Co-authored-by: Scott Lahteine <[email protected]> commit 642eadb Merge: b331993 9913333 Author: Emanuel Garcês <[email protected]> Date: Fri Sep 4 15:57:52 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 9913333 Author: Keith Bennett <[email protected]> Date: Thu Sep 3 21:27:59 2020 -0700 Auto-label Feature Requests (MarlinFirmware#19258) commit b331993 Author: Emanuel Garcês <[email protected]> Date: Tue Sep 1 09:37:58 2020 +0100 More fixes commit dbeb1e2 Merge: e62d5a8 ca194ca Author: Emanuel Garcês <[email protected]> Date: Fri Aug 28 10:02:28 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit ca194ca Author: Scott Lahteine <[email protected]> Date: Thu Aug 27 22:19:41 2020 -0500 Version 2.0.6.1 commit b90e7c4 Merge: 96e29cd 6ac8f5a Author: Scott Lahteine <[email protected]> Date: Thu Aug 27 22:17:50 2020 -0500 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit e62d5a8 Author: Emanuel Garcês <[email protected]> Date: Wed Aug 26 23:06:45 2020 +0100 Change homing commit a40bf60 Merge: 218234a 96e29cd Author: Emanuel Garcês <[email protected]> Date: Sun Aug 16 11:35:29 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 96e29cd Author: Julius Mumme <[email protected]> Date: Sun Aug 16 05:50:28 2020 +0200 Fix IS_PROBE_PIN macro (MarlinFirmware#19024) commit 218234a Author: Emanuel Garcês <[email protected]> Date: Thu Aug 13 12:34:59 2020 +0100 P3Steel Probing fix commit 128e24f Author: Emanuel Garcês <[email protected]> Date: Sat Aug 8 16:37:38 2020 +0100 Changed Z-Endstop to optical commit 9e1f806 Author: Emanuel Garcês <[email protected]> Date: Sat Aug 8 10:21:39 2020 +0100 Disable min software endstop for usage with nozzle probe commit 92f6530 Merge: 674f3e8 fd9c698 Author: Emanuel Garcês <[email protected]> Date: Sat Aug 8 10:20:50 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit fd9c698 Author: ellensp <[email protected]> Date: Sat Aug 8 10:59:09 2020 +1200 HW PWM sanity checks for SPINDLE_LASER_FREQUENCY (MarlinFirmware#18947) commit da144dc Author: Roman Moravčík <[email protected]> Date: Tue Aug 4 07:32:47 2020 +0200 Update Slovak language (MarlinFirmware#18884) commit 1d92bad Author: Giuliano Zaro <[email protected]> Date: Tue Aug 4 07:32:25 2020 +0200 Update Italian language (MarlinFirmware#18886) commit 242064f Author: swissnorp <[email protected]> Date: Thu Aug 6 05:38:23 2020 +0200 Move Cancel Object menu, fix canceled item index (MarlinFirmware#18930) commit ad2d1b6 Author: cbaugher <[email protected]> Date: Fri Aug 7 18:06:25 2020 -0500 Fix Z height after tool change (MarlinFirmware#18951) commit 674f3e8 Merge: ba6ec79 978e0e4 Author: Emanuel Garcês <[email protected]> Date: Wed Aug 5 12:50:33 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 978e0e4 Author: Claus Näveke <[email protected]> Date: Mon Aug 3 03:17:43 2020 +0200 No mks_robin extra_scripts in Trigorilla build (MarlinFirmware#18872) commit 02a500d Author: ellensp <[email protected]> Date: Mon Aug 3 13:16:12 2020 +1200 Fix Spindle/Laser PWM DC (MarlinFirmware#18871) commit fa5ca86 Author: FLYmaker <[email protected]> Date: Mon Aug 3 09:13:57 2020 +0800 Fix FLYF407ZG pins (MarlinFirmware#18865) commit 01359cf Author: Sebastien Andrivet <[email protected]> Date: Mon Aug 3 03:10:16 2020 +0200 Fix Duplicator i3 Plus pin diagram (MarlinFirmware#18862) commit 37b56d6 Author: Scott Lahteine <[email protected]> Date: Thu Jul 30 02:07:29 2020 -0500 Add monitor_flags commit ad59adf Author: Scott Lahteine <[email protected]> Date: Tue Jul 28 18:13:20 2020 -0500 Update include_tree commit 121cd42 Author: Scott Lahteine <[email protected]> Date: Wed Jul 29 20:50:10 2020 -0500 In G28 Z is sort-of known commit cf1c57a Author: Scott Lahteine <[email protected]> Date: Wed Jul 29 20:43:35 2020 -0500 Fix UNKNOWN_Z_NO_RAISE in G28 Bug introduced in 73fc077 commit 5804761 Author: swissnorp <[email protected]> Date: Wed Jul 29 04:28:58 2020 +0200 Fix Cancel Objects index display (zero-based) (MarlinFirmware#18841) commit 3dd21a2 Author: natemason <[email protected]> Date: Wed Jul 29 09:18:02 2020 +0800 Add TEMP_PROBE_PIN for Einsy Rambo (MarlinFirmware#18823) commit b160e8b Author: MoellerDi <[email protected]> Date: Wed Jul 29 03:19:12 2020 +0200 Fix NEOPIXEL_LED compile w/out PRINTER_EVENT_LEDS (MarlinFirmware#18824) commit de37196 Author: Victor Oliveira <[email protected]> Date: Tue Jul 28 23:15:17 2020 -0300 DISABLE_DEBUG required to free Robin nano Z_DIR_PIN (MarlinFirmware#18832) commit ba6ec79 Merge: 7648242 84b96d3 Author: Emanuel Garcês <[email protected]> Date: Tue Jul 28 14:59:29 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 84b96d3 Merge: 92076c6 5d14c37 Author: Scott Lahteine <[email protected]> Date: Mon Jul 27 20:16:34 2020 -0500 Hotfix for first round of post-release hiccups commit 92076c6 Author: Scott Lahteine <[email protected]> Date: Sun Jul 26 20:03:06 2020 -0500 Marlin Release 2.0.6 commit 5e5daf1 Merge: 8b637e4 de68b37 Author: Scott Lahteine <[email protected]> Date: Sun Jul 26 20:01:40 2020 -0500 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into release_206 commit 7648242 Merge: dd57745 8b637e4 Author: Emanuel Garcês <[email protected]> Date: Sat Jul 25 11:34:44 2020 +0100 Merge remote-tracking branch 'upstream/2.0.x' into P3Steel-Testing commit 8b637e4 Author: Scott Lahteine <[email protected]> Date: Thu Jul 23 20:59:43 2020 -0500 Update links, README, contributing, etc. commit dd57745 Merge: 94aba28 b73ac40 Author: Emanuel Garcês <[email protected]> Date: Thu Jul 16 17:06:35 2020 +0100 Merge branch '2.0.x' into P3Steel-Testing commit 94aba28 Author: Emanuel Garcês <[email protected]> Date: Thu Jul 16 16:45:42 2020 +0100 P3Steel Settings commit b73ac40 Author: Chris Pepper <[email protected]> Date: Tue Jul 14 15:15:19 2020 +0100 LPC fix NeoPixel fork commit 7ed66d0 Author: Scott Lahteine <[email protected]> Date: Sun Jul 12 22:35:13 2020 -0500 [email protected] for LPC commit c1b2379 Author: Scott Lahteine <[email protected]> Date: Sat Jul 11 07:38:19 2020 -0500 Specify supported library versions commit 5e0958e Author: Scott Lahteine <[email protected]> Date: Sat Jul 11 07:14:54 2020 -0500 Fix pid_debug_flag commit 5513e67 Author: Scott Lahteine <[email protected]> Date: Wed Jul 8 19:36:09 2020 -0500 2.0.5.4 : Use ststm32 < 6.2 commit 354a9e5 Author: Scott Lahteine <[email protected]> Date: Wed Jul 8 04:38:35 2020 -0500 Lock threads updated commit ee4910c Author: Scott Lahteine <[email protected]> Date: Sun Jul 5 19:56:33 2020 -0500 Temporarily use patched lock-threads commit 697ef26 Author: Scott Lahteine <[email protected]> Date: Sun Jul 5 15:45:14 2020 -0500 Add CI for pushed commits Co-Authored-By: thisiskeithb <[email protected]> commit 481b8ff Author: Scott Lahteine <[email protected]> Date: Sun Jul 5 15:23:07 2020 -0500 Limit actions to main commit 7bf89f2 Author: Scott Lahteine <[email protected]> Date: Sat Jul 4 17:28:23 2020 -0500 Two lock-closed per day commit ed71108 Author: Scott Lahteine <[email protected]> Date: Thu Jul 2 18:10:33 2020 -0500 Patch Bad PR action commit 842dea4 Author: Scott Lahteine <[email protected]> Date: Tue Jun 30 18:18:58 2020 -0500 Updated lock / unlock actions commit a73e610 Author: Scott Lahteine <[email protected]> Date: Tue Jun 23 19:58:00 2020 -0500 Add Close / Lock actions commit c352aeb Author: Daniel Aléxis <[email protected]> Date: Tue Jun 9 21:27:57 2020 +0100 Remove "dev" branch reference (for now) (MarlinFirmware#18242) commit e4d8336 Author: Mathias Gartner <[email protected]> Date: Sat May 2 23:15:49 2020 +0200 Fix XYZ types multiplication/division (MarlinFirmware#17826) commit 0518dec Author: thisiskeithb <[email protected]> Date: Wed Apr 1 12:16:01 2020 -0700 Correct link to Configurations (MarlinFirmware#17370) commit 015c4e6 Author: Scott Lahteine <[email protected]> Date: Tue Mar 31 14:40:06 2020 -0500 Version 2.0.5.3 commit 0f9a14d Merge: 7124b21 e7f020f Author: Scott Lahteine <[email protected]> Date: Tue Mar 31 14:43:42 2020 -0500 Merge latest patches commit 7124b21 Author: Scott Lahteine <[email protected]> Date: Tue Mar 24 16:22:12 2020 -0500 Version 2.0.5.2 commit efc1926 Merge: d37bfa3 68face8 Author: Scott Lahteine <[email protected]> Date: Tue Mar 24 17:10:53 2020 -0500 Merge patches from bugfix-2.0.x commit d37bfa3 Author: Scott Lahteine <[email protected]> Date: Mon Mar 16 17:52:41 2020 -0500 Version 2.0.5.1 Release commit 129b1bb Merge: 8dbbcfd f6e80d5 Author: Scott Lahteine <[email protected]> Date: Mon Mar 16 17:50:43 2020 -0500 Merge nightly patches commit 8dbbcfd Author: Scott Lahteine <[email protected]> Date: Sat Mar 14 00:49:12 2020 -0500 Version 2.0.5 Release commit fa48fbb Merge: d6e767e 8b2d55e Author: Scott Lahteine <[email protected]> Date: Sat Mar 14 00:35:11 2020 -0500 Merge bugfix-2.0.x into 2.0.x commit d6e767e Author: Scott Lahteine <[email protected]> Date: Wed Feb 26 13:00:26 2020 -0600 Version 2.0.4.4 Release commit b29aae6 Merge: 1955eea 9f8ee31 Author: Scott Lahteine <[email protected]> Date: Thu Feb 27 04:14:33 2020 -0600 Merge 'bugfix-2.0.x' into 2.0.x commit 1955eea Author: Scott Lahteine <[email protected]> Date: Mon Feb 24 06:13:18 2020 -0600 Version 2.0.4.3 Release commit 42fa9fc Author: Scott Lahteine <[email protected]> Date: Mon Feb 24 10:58:54 2020 -0600 Fix card_eof error commit 130d039 Author: Marcio T <[email protected]> Date: Mon Feb 24 09:42:12 2020 -0700 Restore tabs in Makefile (MarlinFirmware#16944) commit c5f1ff9 Author: Marcio T <[email protected]> Date: Mon Feb 24 09:40:12 2020 -0700 Allow Z_SAFE_HOMING_POINT outside bed (MarlinFirmware#16945) commit 089cc68 Merge: 2b759b9 a254354 Author: Scott Lahteine <[email protected]> Date: Mon Feb 24 06:12:15 2020 -0600 Merge nightly patches commit 2b759b9 Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 19:26:52 2020 -0600 Suppress "packed member" warning commit 5f27f7d Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 18:49:59 2020 -0600 Version 2.0.4.2 Release commit 282f467 Merge: c41f3f8 2471a8b Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 18:47:09 2020 -0600 Merge nightly patches commit c41f3f8 Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 02:58:05 2020 -0600 Version 2.0.4.1 Release commit 8670df0 Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 02:52:59 2020 -0600 CoreXY Babystepping hotfix commit 730690e Author: Scott Lahteine <[email protected]> Date: Sat Feb 22 02:52:21 2020 -0600 Hotfix for Babystepping commit 3543873 Author: Scott Lahteine <[email protected]> Date: Fri Feb 21 07:24:58 2020 -0600 Use moves_free in ok_to_send commit c505626 Author: thinkyhead <[email protected]> Date: Sat Feb 22 00:03:47 2020 +0000 [cron] Bump distribution date (2020-02-22) commit 7e8505f Author: Scott Lahteine <[email protected]> Date: Fri Feb 21 08:38:14 2020 -0600 Version 2.0.4 Release commit f9aec26 Merge: dd6a7ca 5d16497 Author: Scott Lahteine <[email protected]> Date: Fri Feb 21 08:37:02 2020 -0600 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit dd6a7ca Author: Scott Lahteine <[email protected]> Date: Mon Feb 10 16:33:21 2020 -0600 Fix out-of-order M0 after SD printing Fixes MarlinFirmware#14774 Co-Authored-By: tol2cj <[email protected]> commit 62b9d7d Author: Scott Lahteine <[email protected]> Date: Wed Feb 5 00:47:24 2020 -0600 Direct link to version configs commit d83382e Author: Scott Lahteine <[email protected]> Date: Tue Feb 4 09:41:26 2020 -0600 Add "PR Bad Target" workflow action commit 4c76314 Author: Scott Lahteine <[email protected]> Date: Mon Feb 3 19:31:41 2020 -0600 Scheduled action to bump the date on bugfix-2.0.x commit 64ab254 Author: Scott Lahteine <[email protected]> Date: Mon Feb 3 18:06:04 2020 -0600 Use a different Configurations branch for CI commit e6a7be9 Author: Scott Lahteine <[email protected]> Date: Thu Jan 30 18:18:46 2020 -0600 Version 2.0.3 commit 1525c25 Merge: 016e4c0 dabf393 Author: Scott Lahteine <[email protected]> Date: Fri Jan 31 04:23:45 2020 -0600 Merge commit 'dabf3939209fd8ea7f6a6327d764c16743aa22aa' into look_at_201 commit 016e4c0 Author: Scott Lahteine <[email protected]> Date: Mon Jan 27 05:34:56 2020 -0600 Version 2.0.2 commit be64261 Merge: ee17051 8bd6b60 Author: Scott Lahteine <[email protected]> Date: Fri Jan 31 04:22:09 2020 -0600 Merge commit '8bd6b60a0141fa892984f2d5b61f06eadbbf9a5f' into look_at_201 commit ee17051 Author: Scott Lahteine <[email protected]> Date: Tue Dec 24 00:06:32 2019 -0600 Version 2.0.1 commit 0673f33 Merge: ac7ee4b 1c9ccce Author: Scott Lahteine <[email protected]> Date: Tue Dec 24 00:05:04 2019 -0600 Merge remote-tracking branch 'upstream/bugfix-2.0.x' into 2.0.x commit ac7ee4b Author: Scott Lahteine <[email protected]> Date: Sun Dec 1 13:56:18 2019 -0600 Release version 2.0.0
Fixes MarlinFirmware#14774 Co-Authored-By: tol2cj <[email protected]>
Fixes MarlinFirmware#14774 Co-Authored-By: tol2cj <[email protected]>
Description
This is due to lines 769 - 780 in queue.cpp. This is causing the printer to leave the nozzle hot and sitting on my print before executing the code from "End G-Code" in Cura. Disabling event lights stops this from happening. This is obviously not ideal.
I assume there has been some fairly recent change to how it detects being done with an SD print because I previously did not have this issue.
Steps to Reproduce
Have an LCD, use event lights, and print from an SD card using G code sliced from Cura. I will try with Simplify and Slic3r later.
Expected behavior:
The print should execute the end g code and not sit the still heating nozzle on my print.
Actual behavior:
Ruined models
Additional Information
Commenting out the code wrapped in HAS_RESUME_CONTINUE fixes this issue.
The text was updated successfully, but these errors were encountered: