Skip to content
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

JyersUI: Fix wrong array size calculation #23082

Merged
merged 4 commits into from
Nov 7, 2021
Merged

JyersUI: Fix wrong array size calculation #23082

merged 4 commits into from
Nov 7, 2021

Conversation

dwzg
Copy link
Contributor

@dwzg dwzg commented Nov 5, 2021

Description

There is a bug in the dwin.cpp of the jyersui interface for the Ender-3 V2 OEM display.
When printing a .gcode file, the filename is displayed at the top of the screen.
If the filename is longer than what the display can display at once, the text is scrolled.
My printer kept crashing halfway through one scrolling cycle when the filename was long enough for scrolling.
Short filenames that were not scrolled were unaffected.

The error lies in the declaration of the char array for the scrolled text.
After half of a scrolling cycle, the pos variable that is used for the array size becomes negative.
This is intentional, but bad for the array size.
This PR sets the char array to the full 30 characters in case pos becomes negative, which fits with how the rest of the functions deals with a negative pos value.

Tested on my Ender-3 V2.

Requirements

Ender-3 V2 OEM Display with JyersUI

Benefits

Fixes a hard crash that reboots the printer if the filename in the printing screen is longer than 30 characters.

@tome9111991
Copy link
Contributor

Hello.
Jyers have done some fixed.
Maybe we should wait of this PR?
@Jyers

@Jyers
Copy link
Contributor

Jyers commented Nov 7, 2021

I will have a PR coming soon with a few fixes including this. For my case I cast both pos and the max size to the unsigned type size_t before calling _MIN. Both are valid solutions, but if you want to simplify the PR we can just wait for mine, it should be soon. Or leave this up, all up to you :)

@thinkyhead
Copy link
Member

Note that the filename may be UTF-8 and in this case the routines for the Ender-3 V2 that deal with filenames will not work correctly. See the MarlinUI::scrolled_filename method for the proper handling of UTF-8 string lengths.

@Jyers
Copy link
Contributor

Jyers commented Nov 7, 2021

@thinkyhead I'll implement a new scrolling function based on that then and include it in my PR

@thinkyhead thinkyhead merged commit 30a69f7 into MarlinFirmware:bugfix-2.0.x Nov 7, 2021
RFBomb added a commit to RFBomb/Marlin that referenced this pull request Nov 7, 2021
commit 030b66eb2710165a2081c625a7a0573a6d04b5ae
Author: Scott Lahteine <[email protected]>
Date:   Sun Nov 7 01:11:51 2021 -0600

    🎨 Misc. code cleanup

commit e15f9fdcd9ccff010f188d6b0762cf00956a55c1
Author: Keith Bennett <[email protected]>
Date:   Sat Nov 6 23:09:15 2021 -0700

    🚸 Indicate Preheating for probe / leveling (#23088)

commit dc972990f35ed0f6c1ddc7d2d6c15df9e8a4cb3c
Author: Evgeniy Zhabotinskiy <[email protected]>
Date:   Sun Nov 7 07:16:18 2021 +0300

    🩹 Fix M503 report (#23084)

commit 27220f09440e90ed490087273a2357b84a41663c
Author: Jin <[email protected]>
Date:   Sun Nov 7 11:53:36 2021 +0800

    🍻 Preliminary fix for Max31865 SPI (#22682)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 30a69f76a3dc9deaef6974d18107d7f759502092
Author: dwzg <[email protected]>
Date:   Sun Nov 7 04:48:00 2021 +0100

    🐛 Fix JyersUI scrolling filename, etc. (#23082)

    Co-authored-by: Scott Lahteine <[email protected]>

commit c07aa875bc8c285adf7f967df656f6bf8a13bf92
Author: ellensp <[email protected]>
Date:   Sun Nov 7 15:27:53 2021 +1300

    🐛 Fix DGUS Reloaded status message (#23090)

commit dfdffca2bddb2c7301b6befe5d453da5b84dc16f
Author: thinkyhead <[email protected]>
Date:   Sun Nov 7 01:06:43 2021 +0000

    [cron] Bump distribution date (2021-11-07)

commit f5284715fb7c35a5ba9caf98f45f533db709eeb4
Author: thinkyhead <[email protected]>
Date:   Sat Nov 6 00:58:50 2021 +0000

    [cron] Bump distribution date (2021-11-06)

commit 3e8cdef36b42d4cae1efc8fe3272497827dcc440
Author: thinkyhead <[email protected]>
Date:   Fri Nov 5 01:00:14 2021 +0000

    [cron] Bump distribution date (2021-11-05)

commit f6147e038bbd4b4b96c8c188107b9e7d4f02d534
Author: Scott Lahteine <[email protected]>
Date:   Thu Nov 4 12:18:23 2021 -0500

    🍻 Get/clear reset source earlier

    Followup to #23075

commit f53d627750ab0cf377ea1738bdcf792f2ef37de9
Author: Skruppy <[email protected]>
Date:   Thu Nov 4 18:11:57 2021 +0100

    🐛 Prevent AVR watchdogpile (#23075)

commit a9dc737624cf45bceff1866ce4807bb2cc36ac44
Author: Tanguy Pruvot <[email protected]>
Date:   Thu Nov 4 18:04:04 2021 +0100

    🐛 Fix TFT backlight [STM32] (#23062)

commit 7b792014703e778d8fc0b1760747d50ab8f340d1
Author: BigTreeTech <[email protected]>
Date:   Thu Nov 4 18:54:38 2021 +0800

    🐛 Fix Octopus-Pro Max31865 / SPI (#23072)

commit 4483b8aaf023576ea1c8ecfa84e7093ec26ad75a
Author: Robby Candra <[email protected]>
Date:   Thu Nov 4 17:28:42 2021 +0700

    🔨 Fix IntelliSense / PIO conflicts (#23058)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 399faa91b99dab0f8565396efd32f277965c93b2
Author: ellensp <[email protected]>
Date:   Thu Nov 4 14:04:06 2021 +1300

    📌 'STOP' auto-assign, some Chitu V9 pins (#22889)

    Co-authored-by: Scott Lahteine <[email protected]>

commit fef96bb556f19bf1e132368ec0675d1d2b12634d
Author: thinkyhead <[email protected]>
Date:   Thu Nov 4 01:00:55 2021 +0000

    [cron] Bump distribution date (2021-11-04)

commit 02b6fb8025ef82c2d1290cdc1a98bc0c54f502c9
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 3 07:06:31 2021 -0500

    🔨 Script 'mfprep' finds pending commits

commit cac42e24a581915176816c680a61396855660b19
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 3 07:02:21 2021 -0500

    🔨 Update git helper scripts

commit 627b67e27aa4de50c172e0ffc4a13fe3fb2d35f8
Author: thinkyhead <[email protected]>
Date:   Wed Nov 3 01:00:15 2021 +0000

    [cron] Bump distribution date (2021-11-03)

commit f632b72e8c58ea4c54676ca17e9b9c9ee4584be0
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 2 01:28:00 2021 -0500

    🔨 Support ABM in mf scripts

commit 0db9f9a828c43f978e37b5140f7b9bb6ca630667
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 23:15:29 2021 -0700

    📌 Default NeoPixel pin for MKS Robin E3/E3D (#23060)

commit 95357c33fb0d3ce6d84e59bd16e8354836997015
Author: Sebastien BLAISOT <[email protected]>
Date:   Tue Nov 2 06:49:21 2021 +0100

    🐛 Fix NEOPIXEL2_SEPARATE default color (#23057)

commit da830e6ced7f7c7e509e748104245064d1c1b265
Author: Andrei M <[email protected]>
Date:   Tue Nov 2 01:47:16 2021 -0400

    ⚗️ Use pwm_set_duty over analogWrite to set PWM (#23048)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 767a15d468ab6859eec19600541ad21dff757d1a
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 22:43:40 2021 -0700

    🔧 Endstop / DIAG homing conflict warning (#23050)

commit a57355ee06e59fb3d89ab56f8749eb5549efbee3
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 21:23:54 2021 -0700

    ✨ Allow Low EJERK with LA, optional (#23054)

commit 498937967482faf7b299c2119c258c8ce7090ce9
Author: Robby Candra <[email protected]>
Date:   Tue Nov 2 10:29:23 2021 +0700

    🎨 Fix redefine warnings (#23061)

commit 7942f71d26b58630a841f2de2d4f2abaa4120395
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 20:23:24 2021 -0700

    ✨ Artillery Ruby (STM32F401RCT6) (#23029)

commit 6af344c19329b51307d38463c4912651ac1dcdaa
Author: thinkyhead <[email protected]>
Date:   Tue Nov 2 01:02:55 2021 +0000

    [cron] Bump distribution date (2021-11-02)

commit 40477e031f16c2ecde535bc4ddae65c986060c9a
Author: ellensp <[email protected]>
Date:   Tue Nov 2 12:36:22 2021 +1300

    🐛 Fix Y_SERIAL_RX_PIN for FYSETC S6 (#23055)

commit 36e475b8beccd7bcc74335cbab69c5aa6ecbf61c
Author: ellensp <[email protected]>
Date:   Tue Nov 2 12:34:53 2021 +1300

    🩹 Fill gaps in pinsDebug_list (#23051)

commit 296a6137cd06ce06f062767ab1b59f99ee95a094
Author: tombrazier <[email protected]>
Date:   Mon Nov 1 23:03:50 2021 +0000

    🚸 More flexible Probe Temperature Compensation (#23033)

commit 5e9b5bb4482bdc4e600c2d0302faca29d6487b42
Author: thinkyhead <[email protected]>
Date:   Mon Nov 1 01:03:28 2021 +0000

    [cron] Bump distribution date (2021-11-01)

commit 9176dcea6ee1e449aee8f4972739268d4e97f034
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 8 01:17:16 2021 -0500

    📝 Tweak EXP comments

commit efe2e79ac8e6d35e80a7d29bfd266685a82dc546
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 23:43:19 2021 -0500

    🔨 Help for GDB remote debugging

commit ba0b772d84bad99604b0131e2142366544370646
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 22:43:02 2021 -0500

    🩹 Fix linker error (transfer_port_index)

commit b88612f9761601e985f8ec8db5d3b91214c39555
Author: thinkyhead <[email protected]>
Date:   Sun Oct 31 01:03:08 2021 +0000

    [cron] Bump distribution date (2021-10-31)

commit 4dd1f0928688c68c6c334e1fb1a8e13be2dc351a
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 04:16:37 2021 -0500

    💚 Update Ender-3 V2 config path

    MarlinFirmware/Configurations#600

commit be412e3e2b07664f95eec21dc8a63a66f25d26a6
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 01:39:33 2021 -0500

    🎨 Adjust Ender-3 V2 DWIN options

commit 75e0b7f8ff668217889b770a83990c532998ca95
Author: aalku <[email protected]>
Date:   Sat Oct 30 07:17:20 2021 +0200

    ✨ Shutdown Host Action (#22908)

    Co-authored-by: Scott Lahteine <[email protected]>

commit aa4e32555dd247c391356a2e1449dd9820beeab6
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 29 20:46:55 2021 -0500

    ✨ "Rutilea" ESP32 board (#22880)

commit 18a924d4e26539c270dc08677d4319e5b012c723
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 29 20:42:52 2021 -0500

    🔧 Configuration version 02000903

commit 67b075fd39e530c5d7e8a09ee6b3dba81d8548d0
Author: thinkyhead <[email protected]>
Date:   Sat Oct 30 00:58:37 2021 +0000

    [cron] Bump distribution date (2021-10-30)

commit 70e31bff45165dd07375cd6140fc0a72468e0894
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 21:36:06 2021 -0500

    🎨 Standard 'cooldown' method

commit b09038fcc72bc8df4ec8a7014597586e0b0390ca
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 20:01:44 2021 -0500

    🎨 Standard material presets behavior

commit 1d80464ba77bc576426f15af28a633bf48d769ad
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 21:15:58 2021 -0500

    🎨 Define HAS_PREHEAT conditional

commit 3b9bea6f80f02b76f6b71c6c1dcdb751e3611d8e
Author: tome9111991 <[email protected]>
Date:   Sat Oct 30 00:49:12 2021 +0200

    🐛 Fix E3V2 (CrealityUI) Tune/Prepare > Zoffset (#23040)

commit 2c8dce69e16daa08de4a62f115b06fe68c0db17d
Author: thinkyhead <[email protected]>
Date:   Fri Oct 29 00:58:40 2021 +0000

    [cron] Bump distribution date (2021-10-29)

commit 5d04c7496cec3b8a564ac302da116e3783c4b1d3
Author: Scott Lahteine <[email protected]>
Date:   Thu Oct 28 19:22:35 2021 -0500

    🐛 Fix EZBoard V2 board name

commit a1c4aad1472bb418bc0c0bc52322032b68df3a1f
Author: Keith Bennett <[email protected]>
Date:   Thu Oct 28 03:26:05 2021 -0700

    🐛 Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)

commit aa2c6387e95bdab955499627e3890561842f0a6a
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 26 21:54:43 2021 -0500

    🎨 Apply HAS_MULTI_HOTEND conditional

commit fbc125b06c0858d1dbdd29908ad862ed25918b3b
Author: thinkyhead <[email protected]>
Date:   Thu Oct 28 01:00:14 2021 +0000

    [cron] Bump distribution date (2021-10-28)

commit c0337da6334923ea7b65bcd4f9c1ea08c8b33cf2
Author: Zlopi <[email protected]>
Date:   Wed Oct 27 23:10:46 2021 +0300

    🚸 Scroll long filename on MKS TFT (#23031)

commit 11f1335efb448c5774c92ca14a72e6dbec9dac23
Author: ellensp <[email protected]>
Date:   Thu Oct 28 09:06:06 2021 +1300

    🩹 Retain LCD pins with motor expansion (#23024)

commit 3f6c8d5dc56938f95edaecddf20e9b76aec6df29
Author: somehibs <[email protected]>
Date:   Wed Oct 27 21:00:02 2021 +0100

    🐛 Fix serial PORT_RESTORE (and BUFFER_MONITORING) (#23022)

commit 2199ae77c80aa419a580f9ed8dc2f11ecddd6912
Author: tome9111991 <[email protected]>
Date:   Wed Oct 27 21:58:32 2021 +0200

    🐛 Fix E3V2 (CrealityUI) position display (#23023)

    Followup to #23005, #22778

commit de6dfc9abc9aed3769c92ab89e35ee598424c3fe
Author: thinkyhead <[email protected]>
Date:   Wed Oct 27 01:02:46 2021 +0000

    [cron] Bump distribution date (2021-10-27)

commit 65dfc407a5a57eaaa036475b079153efdd1a51da
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 26 19:36:16 2021 -0500

    🚸 Tweaks to UBL G29 Q

commit 9338b7f06e03fd27ac8b2babb96e92a2701700ad
Author: woisy00 <[email protected]>
Date:   Wed Oct 27 01:05:34 2021 +0200

    🐛 Fix AUTOTEMP bug (thermal runaway) (#23025)

    Regression from 9823a37

commit 79626062d03f2f336b43378cc950ead9bffc8703
Author: thinkyhead <[email protected]>
Date:   Tue Oct 26 00:59:45 2021 +0000

    [cron] Bump distribution date (2021-10-26)

commit 73875cf9ccd4b23bbe2a46bb57192109b7d1a7c6
Author: tombrazier <[email protected]>
Date:   Mon Oct 25 22:29:40 2021 +0100

    🚸 Default T0 for M569, M906, M913 (#23020)

commit 930cb7c3175eb85866bb673a861f8945c3c18726
Author: ellensp <[email protected]>
Date:   Tue Oct 26 10:02:29 2021 +1300

    ⚡️ Add'l PCINTs for Mega Extended (#23019)

commit 90716eb7ce6ffd315b923e85a19d3bca65b78ff0
Author: Keith Bennett <[email protected]>
Date:   Sun Oct 24 23:14:02 2021 -0700

    ✨ Octopus Pro V1.0 with STM32F429ZGT6 (#23008)

commit b619a7184406a3fff2d67d33f1f82159721bb1bc
Author: ellensp <[email protected]>
Date:   Mon Oct 25 19:12:07 2021 +1300

    🐛 Fix børken E_DUAL_STEPPER_DRIVERS (#23017)

commit 70863058cd91b155a9d299680c34430c8d9a4192
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Oct 25 01:08:15 2021 -0500

    🐛 Fix Ender-3 V2 Enhanced SetFlow (#23016)

commit 5ef0468251b24fae5d2053691ff986b95fcd1631
Author: Lefteris Garyfalakis <[email protected]>
Date:   Mon Oct 25 09:06:13 2021 +0300

    🚸 E3V2 Enhanced cosmetic fixes (#23009)

commit d79ea20dcd139ae0073051fd15405fef5b40dbf4
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 25 01:39:48 2021 -0400

    ✨ Creality v2.4.S1 (Ender 7) board  (#23010)

commit f6c7fbd1ab62b0c3aa70c971ad6c30d062d3252a
Author: Dennis <[email protected]>
Date:   Mon Oct 25 07:35:11 2021 +0200

    🐛 Fix JyersUI current positions (scaling) (#23005)

commit 444f27dfa0bba82b73b428b7adcc50d44b99775a
Author: tombrazier <[email protected]>
Date:   Mon Oct 25 06:33:40 2021 +0100

    🐛 Add USE_TEMP_EXT_COMPENSATION options (#23007)

commit f8968ed13c217ffa8db13d15c1d136e8d3864c1e
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 24 23:32:34 2021 -0500

    🐛 More explicit allocation of solenoids

    In reference to #22887

commit 6a6bf0fd1b04f79215ee6d64596fdb1dcd72ccaa
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 24 23:33:27 2021 -0500

    🔧 Fewer alerts about Z_SAFE_HOMING

commit 22d3a993e7d5d2499517ddda8de5b8450735ab56
Author: thinkyhead <[email protected]>
Date:   Mon Oct 25 01:03:57 2021 +0000

    [cron] Bump distribution date (2021-10-25)

commit e5e872c2e2ff87a4bef0c0565aec97cc12355dc7
Author: thinkyhead <[email protected]>
Date:   Sun Oct 24 01:02:51 2021 +0000

    [cron] Bump distribution date (2021-10-24)

commit 3ec0213dbc34152e18eb5b4225e02a12d6cdc8e5
Author: thinkyhead <[email protected]>
Date:   Sat Oct 23 01:04:09 2021 +0000

    [cron] Bump distribution date (2021-10-23)

commit 9c055621a0944e7f65051c0c72d117d13b7fe05b
Author: tombrazier <[email protected]>
Date:   Fri Oct 22 21:56:05 2021 +0100

    🐛 Fix probe temp compensation maths (#23004)

commit de3c563a990e72533fb9ea9f376c53595c3e986b
Author: tome9111991 <[email protected]>
Date:   Fri Oct 22 18:16:07 2021 +0200

    🐛 Fix SHOW_REMAINING_TIME option for JyersUI (#22999)

commit 9a19ea50d8451fc0970843cc896bd2553e0f987e
Author: Keith Bennett <[email protected]>
Date:   Fri Oct 22 08:52:31 2021 -0700

    ✨ BigTreeTech TFT35 SPI V1.0 (#22986)

commit f62890d889f51e07e3281e065d93445afe7b6566
Author: ellensp <[email protected]>
Date:   Fri Oct 22 17:57:30 2021 +1300

    🐛 Fix E3V2 width/height defines (#22994)

commit a309a9535db532457b0aca8e861f5b8ed9f8dd93
Author: thinkyhead <[email protected]>
Date:   Fri Oct 22 01:12:18 2021 +0000

    [cron] Bump distribution date (2021-10-22)

commit 566ce56a2d6c572d9d4700dad95a330b2459cb32
Author: thinkyhead <[email protected]>
Date:   Thu Oct 21 01:08:58 2021 +0000

    [cron] Bump distribution date (2021-10-21)

commit a05b66a9503ea89cbb967f50c8680856c40c724f
Author: thinkyhead <[email protected]>
Date:   Wed Oct 20 01:05:51 2021 +0000

    [cron] Bump distribution date (2021-10-20)

commit a6a838084d69435f2113deb5d783b96d909be085
Author: Augusto Zanellato <[email protected]>
Date:   Tue Oct 19 17:24:22 2021 +0200

    ✨ Eryone Ery32 mini (STM32F103VET6) board (#22956)

commit 52edc543bd72bfacb4ac6eb47eae2e466dcce62d
Author: Mike La Spina <[email protected]>
Date:   Tue Oct 19 06:05:23 2021 -0500

    🩹 Fix pragma ignored for older GCC (#22978)

commit 5f7c92dfbb0af65610d88ea48d48f00fd04505c2
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:59:48 2021 -0500

    🎨 Refactor MOSFET pins layout (#22983)

commit b69971f06aed8e2811ffcede0f153251f06775dc
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:53:34 2021 -0500

    🔨 Fix older GCC CXXFLAGS warning

commit 1f3f9cb68ce9c9adad55a98ccea07e491d7b9785
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:52:41 2021 -0500

    🎨 Pragma GCC cleanup

commit e77df7230023cc0ac4eb4cce08fae70ff1427dce
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:51:49 2021 -0500

    🎨 Fix pinsDebug_list warnings

commit f8ec8e5bf6df342a27e5dc9e39d6605c50f64194
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 04:03:03 2021 -0500

    💡 Sub-include pins labels

commit 6cf6c4cd852bd09c509407057e81e37e36bad52e
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 02:56:44 2021 -0500

    🔨 Delete after encrypt. Lerdge encrypt only once

commit c91451d215506b3c3977b9ae4b146c98b48acdeb
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 02:49:35 2021 -0500

    🔨 Update 'pio vscode init' detection

commit 3a77894efd579955968a4bcf023b6d8ae937ae05
Author: thinkyhead <[email protected]>
Date:   Tue Oct 19 01:06:11 2021 +0000

    [cron] Bump distribution date (2021-10-19)

commit 357fb8d98458883144e29a39e9f4d5c033f803a3
Author: Jason Smith <[email protected]>
Date:   Mon Oct 18 01:11:16 2021 -0700

    🐛 Fix max chamber fan speed (#22977)

commit 7bab1c92e72f8e1bdb5c04287c4ee82a89dba600
Author: Keith Bennett <[email protected]>
Date:   Mon Oct 18 00:57:54 2021 -0700

    🐛 Fix I2C EEPROM SDA/SCL aliases with SKR Mini E3 V2 (#22955)

commit ec57879c595ceffff8c136bf8acd5b4bce33a44a
Author: ellensp <[email protected]>
Date:   Mon Oct 18 20:54:20 2021 +1300

    🐛 Fix MMU1 compile (#22965)

commit d3a84bc584875dc3e022f2d9fd8065207caef204
Author: Keith Bennett <[email protected]>
Date:   Mon Oct 18 00:51:01 2021 -0700

    ✨  BTT Octopus Pro V1.0 (STM32F446ZET6) (#22971)

commit 28e2c358d1238d2d0db9e74b23e83f6e3bff89d4
Author: Mike La Spina <[email protected]>
Date:   Mon Oct 18 02:40:47 2021 -0500

    🎨 Suppress type warning (#22976)

commit 2e0bde37d77c8c0d8274d74f18cb27be2c232278
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 22:10:08 2021 -0500

    🎨 Add MKS UI goto_previous_ui

commit ad4a8a68c2125f74124225813fe978c31677b3e5
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 18 01:49:35 2021 -0500

    ✅ Warn about dummy thermistors

commit b93c3301f2146bed7287ad097b95b53507c35420
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 18 02:03:01 2021 -0400

    Fix JyersUI ZOffset Multiplication (#22975)

commit d2b0939118827c49610058c41f521b789c827477
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 18 02:01:28 2021 -0400

    Fix Tool Change Park (#22968)

commit 741e70541d5ba0e8a7cfd2c402b306dfab4b77ee
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 20:24:41 2021 -0500

    🚸 Tweak MKS UI G-code console

commit d685cbd5c304e8e3f3b86960e616c6b797ae85bd
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 18:11:16 2021 -0500

    🎨 Fix up MKS UI defines

commit 7d16f0cadf12ed9c662d47af96daad6fe8e07d9e
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 19:26:31 2021 -0500

    🔨 Improve 'mftest' error message

commit cd0ee8c34dab5393d7b7c7845e553a02dfd6d2da
Author: thinkyhead <[email protected]>
Date:   Mon Oct 18 01:06:10 2021 +0000

    [cron] Bump distribution date (2021-10-18)

commit bc567e7b4939f3abb75a72c313824e6abf0fb07c
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 16:56:01 2021 -0500

    🔧 Safety feature warnings

commit 3c94f2f1c33395e45f3b2456f97eb64310b41000
Author: thinkyhead <[email protected]>
Date:   Sun Oct 17 01:02:43 2021 +0000

    [cron] Bump distribution date (2021-10-17)

commit babb3d7b4ce49fdca215bab857039e7132dfadbd
Author: thinkyhead <[email protected]>
Date:   Sat Oct 16 01:07:57 2021 +0000

    [cron] Bump distribution date (2021-10-16)

commit 9d72cbf84b970e5060f8dceef7158b9ca8252856
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 15 15:07:47 2021 -0500

    💡 Update old gnu.org links

commit 95662d3aed0a31ea832407c042a5b0c56cd8a2db
Author: InsanityAutomation <[email protected]>
Date:   Fri Oct 15 15:56:59 2021 -0400

    ✨ Add option EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN (#22960)

commit ee28a14e8e7f6b33fe5813dbedcd85380207c345
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 15 00:24:08 2021 -0500

    🎨 Refactor Host Actions as singleton

commit de5aefd09e2ede1314382c4a10e51335d07524f9
Author: ellensp <[email protected]>
Date:   Fri Oct 15 14:38:03 2021 +1300

    🔧 Add, update TFT sanity checks (#22928)

commit 11435356643c7e32dd6f30e8a144e2c3766bfb35
Author: thinkyhead <[email protected]>
Date:   Fri Oct 15 01:05:59 2021 +0000

    [cron] Bump distribution date (2021-10-15)

commit 5d665d5e1e3a7b9f95cd4075815883fce3791465
Author: thinkyhead <[email protected]>
Date:   Thu Oct 14 01:01:39 2021 +0000

    [cron] Bump distribution date (2021-10-14)

commit 8e4953514c893410c402ba6486f86580385effd9
Author: InsanityAutomation <[email protected]>
Date:   Tue Oct 12 23:19:05 2021 -0400

    ⚡️ Formbot ST7920 delays, intentional X2 pins (#22915)

    Co-authored-by: Scott Lahteine <[email protected]>

commit bf91bd5eee252a2ec2feacb54bd1ed88b38215aa
Author: Dmytro <[email protected]>
Date:   Wed Oct 13 05:45:00 2021 +0300

    🎨 Update MKS UI for no bed, extruder (#22938)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f58934c4efc6319aebaa3d0845030b91bea64828
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 19:06:39 2021 -0700

    🐛 Fix MKS Robin Pro 1.0 LCD reset pin (#22937)

commit 8ce2254aa69ae12bc31c6e55bf88a7d1a60054fa
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 19:05:37 2021 -0700

    🔧 Remove obsolete G34 sanity check (#22929)

commit 0d41667bc2c3895ea8e3ed28435f42ffa106f44f
Author: George Fu <[email protected]>
Date:   Wed Oct 13 09:32:54 2021 +0800

    🐛 Fix FYSETC Cheetah v2.0 build (#22926)

commit 02dc7a6387fdc3b9bd1659b3aa400802bacb7828
Author: ellensp <[email protected]>
Date:   Wed Oct 13 14:28:45 2021 +1300

    🐛 Fix G33 homing current (#22909)

commit 3f9ff2421fadb2513e5c94688d4c49e4bf6b84e7
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 18:26:42 2021 -0700

    🐛 Fix SKR Mini E3 V2 I2C-based EEPROM (#22919)

    Followup to #20609

commit 332ef9939c27d8b8159b71b713c892246b004efd
Author: thinkyhead <[email protected]>
Date:   Wed Oct 13 01:07:25 2021 +0000

    [cron] Bump distribution date (2021-10-13)

commit a7519ecca92cbaa3e3c4cc28dcb19911bf5115b0
Author: mks-viva <[email protected]>
Date:   Tue Oct 12 20:01:18 2021 -0500

    ✨ MKS Eagle (STM32F407VET6) board (#22897)

commit 15ebe45f36f34bce4a07f6348c85ffb1ab904087
Author: InsanityAutomation <[email protected]>
Date:   Tue Oct 12 19:40:56 2021 -0400

    🐛 Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)

commit 769948bb4d6d55d2bf4b42d69e79ce516986d77a
Author: thinkyhead <[email protected]>
Date:   Tue Oct 12 01:05:49 2021 +0000

    [cron] Bump distribution date (2021-10-12)

commit ad14b5052cd60b6ab79bb236529241696266bf30
Author: Stuart Pittaway <[email protected]>
Date:   Mon Oct 11 23:42:29 2021 +0100

    ✨ M261 S I2C output format (#22890)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 90fa48ffd565ae28e8a0bfcf2d5f8b5a2de2e558
Author: thinkyhead <[email protected]>
Date:   Mon Oct 11 01:03:10 2021 +0000

    [cron] Bump distribution date (2021-10-11)

commit 0c86cc89f0c74e58949f8c5a0351d57dffab8019
Author: thinkyhead <[email protected]>
Date:   Sun Oct 10 01:03:22 2021 +0000

    [cron] Bump distribution date (2021-10-10)

commit b3fd0a50505455bbd4d0487b202ab75797a79421
Author: InsanityAutomation <[email protected]>
Date:   Sat Oct 9 19:13:19 2021 -0400

    🐛 Fix IDEX Duplication Mode Positioning (#22914)

    Fixing #22538

commit 33809ae000da2cf1a5a2b0641b235a6bb68d245a
Author: Minims <[email protected]>
Date:   Sun Oct 10 01:10:21 2021 +0200

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

commit 886c59dc1045787042fa3b824bdc56655d10d655
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Oct 10 01:05:24 2021 +0200

    🐛 Queue string followup (#22900)

commit 13bb2393e13148732861c690d523f07972f4abd8
Author: Pyro-Fox <[email protected]>
Date:   Sat Oct 9 15:09:50 2021 -0700

    🐛 LCD string followup (#22892)

commit bd6a1a2898909fff228febcb38538e47a2416634
Author: thinkyhead <[email protected]>
Date:   Sat Oct 9 00:59:22 2021 +0000

    [cron] Bump distribution date (2021-10-09)

commit 1ec399c6ab2f51f7d9c491c098c001679d0ad0da
Author: thinkyhead <[email protected]>
Date:   Fri Oct 8 01:05:32 2021 +0000

    [cron] Bump distribution date (2021-10-08)

commit 1f41437052c35a9091e057b843533d5695e8676e
Author: thinkyhead <[email protected]>
Date:   Thu Oct 7 01:03:32 2021 +0000

    [cron] Bump distribution date (2021-10-07)

commit f79d1f114c44c9f56cf2ae65203ae88fc2e4f6de
Author: ellensp <[email protected]>
Date:   Thu Oct 7 09:42:59 2021 +1300

    🎨 Define Octopus allocated endstop pins (#22882)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 9922410a73fd3285bfba0478ac16f04eeee48b8e
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 5 21:35:31 2021 -0500

    🔨 Port libsdl2_net required for macOS simulator

commit 149cbe795da4828b8df4ef34f5acee7fdd0d2dbb
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 22:19:05 2021 -0500

    🎨 Tweak FORCE_INLINE

commit e52c30d43a171fe6ce21a83589ac17d467e9a11c
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 5 21:19:28 2021 -0500

    🐛 Followup to F() in config_line

    Followup to 1dafd1887e

commit ca7ab6e13f0e8acfb19192378c8f99a58ee3413e
Author: thinkyhead <[email protected]>
Date:   Wed Oct 6 01:02:35 2021 +0000

    [cron] Bump distribution date (2021-10-06)

commit 4e9ae9449fbdc9ad3cd9267d8e620b5ec5eddb3e
Author: Mark <[email protected]>
Date:   Tue Oct 5 12:23:02 2021 +0800

    ✨ ESP32 Panda_ZHU and Panda_M4 (#22644)

commit f395198e14a1cbc0604611b3ca1fb6261d4871fa
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 22:16:15 2021 -0500

    🔨 Move Creality 4.2.2 warning

commit e8459ae63c8290123827b4e45bbe051c95060783
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 19:50:14 2021 -0500

    🐛 ExtUI F() followups

    Followup to 12b5d997a2

commit d5cb30524e0ca0607ed49587f49e231c37fff4ef
Author: thinkyhead <[email protected]>
Date:   Tue Oct 5 01:01:31 2021 +0000

    [cron] Bump distribution date (2021-10-05)

commit f5b085157aaa2c3c7b360750c745588104e155f7
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 18:58:20 2021 -0500

    🔨 Add 'opt_find' to find matching options

commit b919bdbf0b4f78578964999373c8918cc523d736
Author: ellensp <[email protected]>
Date:   Mon Oct 4 19:12:19 2021 +1300

    🩹 Fix EXTRUDER 0 compile warning (#22868)

commit 2d08afe456255d47e6cd244c49c7cd243f74c53a
Author: Sebastien Andrivet <[email protected]>
Date:   Mon Oct 4 08:06:49 2021 +0200

    🐛 Fix ExtUI Pause messages (#22874)

commit 65b950a489c35b1d5547da3a504af4dad8cde3d7
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 20:15:52 2021 -0500

    🎨 Apply F() to kill / sendinfoscreen

commit d1938d54ed5e42d766d97d898cd117893ea24083
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 19:28:29 2021 -0500

    🎨 Apply F() to MKS UI errors, assets

commit 1dafd1887e40399faf16e3455e3670ed3acfac52
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 13:46:42 2021 -0500

    🎨 Apply F() to various reports

commit d7fede3a6324cd6b1ec91a9c8e248fce8f0d7cf2
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 13:40:01 2021 -0500

    🎨 Apply F() to G-code report header

commit eeffac697c5d7b69e01e38ed1602dbd21a366e93
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 23:52:41 2021 -0500

    🎨 Apply F() to UTF-8/MMU2 string put

commit 12b5d997a2cee538e5026a68f8e0cfdd53248986
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 22:11:48 2021 -0500

    🎨 Apply F() to some ExtUI functions

commit 008bf1bcaef181cd1b74638692e2465bb9e07a4d
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 11:55:08 2021 -0500

    🎨 Apply F() to Host Actions strings

commit 7f1286a11f87065c4e666985e679cf9c77d668bf
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 17:05:11 2021 -0500

    🎨 Apply F() to status message

commit 520b97083e52efdd47ab434b97823e48d85ade62
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 11:03:07 2021 -0500

    🎨 Apply F() to serial macros

commit 417e2530ebc5b6c74ac34adaba8be552b407383a
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 21:11:31 2021 -0500

    🎨 Apply F() to G-code suite and queue

commit 64a919da2a6dbe8b529c3471935a6d632420ca3a
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 05:59:03 2021 -0500

    🎨 Apply F() to E3V2 titles, popups

commit 59dac3a7e41ae7964686d9dff56baba821a278f7
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 18:43:52 2021 -0500

    🎨 Apply F() to G-code subcommands

commit 23f10563e03fd8f7368885b1c406a4f7c7c3d1ae
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 18:22:37 2021 -0500

    🎨 Update F string declarations

commit cb9fafd4f3a0dc3d963bd13664b58d3e2487d5b3
Author: ellensp <[email protected]>
Date:   Mon Oct 4 18:25:45 2021 +1300

    🐛 Fix Arduino IDE compile error (#22877)

commit 54d400608db83bfa606e1b757589c169c9a38fc2
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 00:24:41 2021 -0500

    🎨 Axis name string interpolation, with examples (#22879)

commit eb784d6e55c84c05b2a5353899d8bc25276e0640
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 02:33:14 2021 -0500

    🎨 Rename MarlinUI::zoffset_overlay

commit 97295c552de9b72ad69833094776e34c3502fa0a
Author: thinkyhead <[email protected]>
Date:   Mon Oct 4 01:05:57 2021 +0000

    [cron] Bump distribution date (2021-10-04)

commit 9bb562f40a5570a63430bbf9392da0fdb85c5c8c
Author: VragVideo <[email protected]>
Date:   Sun Oct 3 06:12:51 2021 +0300

    ✨ WYH L12864 LCD (Alfawise Ex8) (#22863)

commit e4d8290be3765b0ee9d780b346c852e3c142bca1
Author: thinkyhead <[email protected]>
Date:   Sun Oct 3 01:06:58 2021 +0000

    [cron] Bump distribution date (2021-10-03)

commit e27b1e5d58113dc1bad900701762ec147e573703
Author: thinkyhead <[email protected]>
Date:   Sat Oct 2 01:00:08 2021 +0000

    [cron] Bump distribution date (2021-10-02)

commit ea0169f2bcd3de2fe3b99bceb0f9dd34d85f3322
Author: thinkyhead <[email protected]>
Date:   Fri Oct 1 01:05:30 2021 +0000

    [cron] Bump distribution date (2021-10-01)

commit d3ed21b10eed717bdeeb210502082655d50488bf
Author: thinkyhead <[email protected]>
Date:   Thu Sep 30 01:05:47 2021 +0000

    [cron] Bump distribution date (2021-09-30)

commit c6ceac9067b21a705f40fbcfc90bbc922945f82e
Author: Steven Haigh <[email protected]>
Date:   Thu Sep 30 02:22:46 2021 +1000

    🚑️ Fix DWIN_CompletedLeveling (#22851)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 732e59b412a29c52f5d6ad492743b86fa4cb20e6
Author: Malderin <[email protected]>
Date:   Wed Sep 29 04:20:03 2021 +0300

    🐛 E3V2 Mesh Viewer followup (#22850)

commit 90b0e16ec0c80ec128b70d20b0b47af8a3281c88
Author: thinkyhead <[email protected]>
Date:   Wed Sep 29 00:58:41 2021 +0000

    [cron] Bump distribution date (2021-09-29)

commit f2ba845dad67c57a6cf1ce5a75bc4f526681ca2d
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 02:39:11 2021 -0500

    🎨 Condense reverse-protection code

commit 33e0855e2c173680865aaa6c6aa93047d63fc469
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 01:07:51 2021 -0500

    ⚡️ Handle shared enable pins (#22824)

commit eda8e9c8dddfb93950409092832311a60635c054
Author: thinkyhead <[email protected]>
Date:   Tue Sep 28 01:01:32 2021 +0000

    [cron] Bump distribution date (2021-09-28)

commit 8ab02df63a2360b2dac86048b38311bbdfa42b3c
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Sep 27 14:47:47 2021 -0500

    ✨ E3V2 (Enhanced) Mesh Viewer (#22844)

commit 8f9e56afb97ca6a40265b24fe90ac7b672050df9
Author: Malderin <[email protected]>
Date:   Mon Sep 27 22:13:38 2021 +0300

    🚸 MKS UI LVGL bed preheat presets (#22842)

commit 5dce8d0a84aa8ee3e2b63c880dd2eadc18a64f1b
Author: Sola <[email protected]>
Date:   Tue Sep 28 03:08:29 2021 +0800

    🚸 Fix MKS LVGL UI temperature set interface (#22848)

commit 228eb9c404fcbcebb507bbfe781ebe3ca0a1ccdf
Author: espr14 <[email protected]>
Date:   Mon Sep 27 21:05:52 2021 +0200

    🎨 steps_to_mm => mm_per_step (#22847)

commit f73175d8263033d1feb1045af67e7230c844aab0
Author: Tanguy Pruvot <[email protected]>
Date:   Mon Sep 27 21:01:47 2021 +0200

    🚸 TFT backlight PWM / brightness (#22841)

commit 942b76082c5704558957731828e0fd023ad09bae
Author: ellensp <[email protected]>
Date:   Tue Sep 28 04:17:00 2021 +1300

    🔧 Sanity-check BLTOUCH_SET_5V_MODE on 5V pins (#22840)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 3329e07bd9cfc148a7ca78c121778e2255ac8a72
Author: thinkyhead <[email protected]>
Date:   Mon Sep 27 01:00:10 2021 +0000

    [cron] Bump distribution date (2021-09-27)

commit 8fd5a4037a27c7c4009e9272770957a4931bcaad
Author: Giuliano Zaro <[email protected]>
Date:   Sun Sep 26 04:59:29 2021 +0200

    🩹 Fix M412_report formatting (#22834)

commit 031fec7a0233d5b1199e2e3a61a5ea98ecc3bf84
Author: thinkyhead <[email protected]>
Date:   Sun Sep 26 01:02:25 2021 +0000

    [cron] Bump distribution date (2021-09-26)

commit 1ac7a56a823b5012250dd7259a9a7a46d3bfcde5
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat Sep 25 05:59:43 2021 -0500

    🐛 E3V2 Brightness followup (#22821)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7fdaabd54475e5f4dec3afad693b0c623bf7bf6
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 02:27:07 2021 -0500

    🎨 Updated string macros

commit e1ac3ede0d7bb9d77362040b593904006a26f873
Author: Steve Wills <[email protected]>
Date:   Fri Sep 24 22:12:43 2021 -0400

    🐛 Add 'static' to fix 'duplicates' (#22826)

commit 86a6b9316ed16f4726096dfdf7495ee75dada7d4
Author: Manuel McLure <[email protected]>
Date:   Fri Sep 24 19:08:07 2021 -0700

    🐛 Fix M420 / M851 reports (#22829)

    Followup to 79c72ed821

commit 849b86afb68949ec0f67c49401bdf659d3eaac5c
Author: thinkyhead <[email protected]>
Date:   Sat Sep 25 00:59:33 2021 +0000

    [cron] Bump distribution date (2021-09-25)

commit e85f6225053de257ee6f2652f097d0939d0dbde7
Author: thinkyhead <[email protected]>
Date:   Fri Sep 24 01:01:22 2021 +0000

    [cron] Bump distribution date (2021-09-24)

commit 35ad3b0d3b1a8bbf6b220f30f63fd0e32be8fe34
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 11:09:43 2021 -0500

    🐛 Fix reset_hotend_offsets

commit dc5bef62ba185461ba969db6af996ebc93a33ba7
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 10:01:37 2021 -0500

    🎨 Various multi-axis patches (#22823)

commit 9c208a008d4f336f1bdc095af0a50754311092d1
Author: Sola <[email protected]>
Date:   Thu Sep 23 15:53:48 2021 +0800

    ⚡️ Improve LVGL touch driver (#22817)

commit 7c5727e0ec1c69bf4bb72dcd34d6acce02a8c09e
Author: ellensp <[email protected]>
Date:   Thu Sep 23 18:58:52 2021 +1200

    🐛 Fix anycubic_i3mega_lcd debug macros (#22820)

commit 1835f8fb25648888cf6df6e17af1cefdd1248d71
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 00:51:35 2021 -0500

    🩹 Add MarlinSPI to more HALs

commit 64c6475434349f88c61fdd403b4e9e830fd60b35
Author: thinkyhead <[email protected]>
Date:   Thu Sep 23 01:04:29 2021 +0000

    [cron] Bump distribution date (2021-09-23)

commit 11ceea25ce145c8485b516fdb010809409d2bb06
Author: Scott Lahteine <[email protected]>
Date:   Wed Sep 22 00:19:26 2021 -0500

    🎨 Less use of undef for RAMPS pins

commit 0387f94632d24b9d43397b063767940fe17acc62
Author: thinkyhead <[email protected]>
Date:   Wed Sep 22 01:02:28 2021 +0000

    [cron] Bump distribution date (2021-09-22)

commit b88117d6364b8919a8a7df6c80d8132af98a6afc
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 21 06:25:13 2021 -0500

    🎨 Fix L64xx enable, clean up conditionals

commit 58adb849d3e2f81075eeb02db8e1d5b3f297d59b
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 21 02:42:01 2021 -0500

    🔨 Improve pins_set script

commit 5b934e02fad7cbff79e14d1bd6b8d0a8fbe24de5
Author: thinkyhead <[email protected]>
Date:   Tue Sep 21 01:01:29 2021 +0000

    [cron] Bump distribution date (2021-09-21)

commit 58301837e0a1ea0d682d23e0510619bd85841d5c
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 20 18:44:35 2021 -0500

    🩹 Remove extra #include, misc. style

commit 3344071f24b505d180dd1423b11510172c3f1c1c
Author: Dan Royer <[email protected]>
Date:   Mon Sep 20 13:42:33 2021 -0700

    Polargraph / Makelangelo kinematics (#22790)

commit f3864a1ae7b45fbc0359a65e4dc75ce062e39479
Author: thinkyhead <[email protected]>
Date:   Mon Sep 20 01:03:16 2021 +0000

    [cron] Bump distribution date (2021-09-20)

commit e60e4b8f57806147741e87e2820c258c4b51cf91
Author: Lefteris Garyfalakis <[email protected]>
Date:   Mon Sep 20 03:26:46 2021 +0300

    🌐 Update Greek language (#22799)

commit 216a66b42c8240f37befe98e6a410d1e3694ff4e
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 19:25:01 2021 -0500

    🌐 Skip non-essential translations

commit 008284934c2f07ea335beec6086afd56a30d5829
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 18:58:12 2021 -0500

    🔨 Case-insensitive tests list

commit c1d7e234e1aba1ecc91cfc77d17d38b67618c315
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 18:40:56 2021 -0500

    🌐 Reduce language file sizes

commit 10fda222ea40af91ff1244ad5b7c8737043e1011
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Sep 19 05:16:29 2021 +0200

    🐛 STM32 ADC followup (#22798)

commit a6b69ab6d518488fd87109d9ba7ecf2e82b7f2a9
Author: thinkyhead <[email protected]>
Date:   Sun Sep 19 01:01:05 2021 +0000

    [cron] Bump distribution date (2021-09-19)

commit 89125cd32ea913152dcdfe0edfa1571027f44e2d
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Sep 19 01:27:58 2021 +0200

    🚸 Wake up TFT for some events (#22788)

commit c88e85c939afe4f024fcb24ca6a68950d36ec901
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 18 18:24:39 2021 -0500

    🎨 Replace some infrequently-used macros

commit f367a3987de2703965b2b043b191d6ed77648e6d
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 18 18:22:15 2021 -0500

    📝 Update some pins comments

commit d7e597f3df11df9a01b432715d7d9865e578a4e6
Author: Steven Haigh <[email protected]>
Date:   Sat Sep 18 16:33:18 2021 +1000

    🐛 STM32 ADC Resolution = 12 bit (or ADC_RESOLUTION) (#22789)

commit f46e05fcb1e8b9a4ed36d2caa09122e75188e9da
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 17 19:09:54 2021 -0500

    🚸 Move fade item up

commit ad38699c115585134841b479a112f723e17d0b17
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 12 17:08:57 2021 -0500

    🚸 Better bed position

commit fede20fbe69d4d3687a07b4a9cb70b681f5c51b3
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 17 18:58:55 2021 -0500

    💬 Add non-translated STR_DONE

commit 11fce69781efb4e377f5349e14263a3466ba325d
Author: thinkyhead <[email protected]>
Date:   Sat Sep 18 00:58:51 2021 +0000

    [cron] Bump distribution date (2021-09-18)

commit 46dfc7ba341325d4e9a69e7e8979215b90e79334
Author: thinkyhead <[email protected]>
Date:   Fri Sep 17 01:06:26 2021 +0000

    [cron] Bump distribution date (2021-09-17)

commit 8df3e62c89f94f68465ac30e276333940e069ff7
Author: Sola <[email protected]>
Date:   Thu Sep 16 19:48:24 2021 +0800

    🚸 Fix and improve MKS LVGL UI (#22783)

    Co-authored-by: makerbase <[email protected]>
    Co-authored-by: MKS-Sean <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 323b38ee88dbf2a4691a20439dbb95a824822199
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 16 04:36:26 2021 -0500

    💡 Adjust headers, formatting

commit 08a40c43750eb49521849792520d8d819c0fcd29
Author: InsanityAutomation <[email protected]>
Date:   Thu Sep 16 03:46:16 2021 -0400

    ✨ Improve pause/filament change for ExtUI (#22655)

commit 02ae11ed72724a0f0a670069fe6b93933031de8b
Author: Scott Lahteine <[email protected]>
Date:   Wed Sep 15 21:12:39 2021 -0500

    🔧 Add MANUAL_FEEDRATE sanity-check

commit 0cc17b920ae9c804d5b9b2c95325e959c6f4eea5
Author: thinkyhead <[email protected]>
Date:   Thu Sep 16 01:03:27 2021 +0000

    [cron] Bump distribution date (2021-09-16)

commit e31d52184b321f1dbf9f091cb7188c58aef87cdb
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 16 01:15:01 2021 -0500

    🎨 Handle more pre-defined pins in pins_postprocess (#22771)

commit 5b5a8798f8fe202e86c008088f847a3edb51cc71
Author: Scott Lahteine <[email protected]>
Date:   Wed Sep 15 19:48:29 2021 -0500

    🎨 Consolidate Ender-3 V2 DWIN common code (#22778)

commit cca3250c3ff8e8ed4277f4918f507ab13913d3b5
Author: Keith Bennett <[email protected]>
Date:   Wed Sep 15 13:51:52 2021 -0700

    ✏️ Fix TFT field names (#22776)

commit a1e1555ea1e4a5bb0dabc027b56ffb9fc05739e3
Author: mks-viva <[email protected]>
Date:   Wed Sep 15 14:47:23 2021 -0500

    🐛 Fix MKS Monster8 EEPROM issue (serial timer) (#22777)

commit 8235ae9cc00b10362ca9f6e79acb4516c08557af
Author: Miguel Risco-Castillo <[email protected]>
Date:   Wed Sep 15 01:44:28 2021 -0500

    🩹 Fix DWIN Enhanced Tune menu during homing (#22773)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 9c8ad57f626bbb84d1f7f2c2262f3b101f91e664
Author: thinkyhead <[email protected]>
Date:   Wed Sep 15 00:59:31 2021 +0000

    [cron] Bump distribution date (2021-09-15)

commit 21e8f99500554d69cb91ac2be0b4ab1497bf9fac
Author: Dakkaron <[email protected]>
Date:   Wed Sep 15 02:00:48 2021 +0200

    ✨ M282 - Detach Servo (#22760)

commit c2e4b1626f0cce82a55e8de9dc98ed9381e1d9ad
Author: Tanguy Pruvot <[email protected]>
Date:   Tue Sep 14 04:07:08 2021 +0200

    ✨ TFT Screen/Backlight Sleep (#22617)

commit ae22a920178555585142a5299ff77ec50d9fcc2e
Author: thinkyhead <[email protected]>
Date:   Tue Sep 14 01:17:33 2021 +0000

    [cron] Bump distribution date (2021-09-14)

commit 5a04cf0514c819d25f7eea0a9c95e17022d7bf1e
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 13 18:46:30 2021 -0500

    🔖 Configurations version 02000902

commit 23d10ceccb16e5886a6441a364fcbc08391287fe
Author: Desuuuu <[email protected]>
Date:   Fri Sep 10 12:15:08 2021 +0200

    🎨 Use ExtUI API where applicable

commit 370ea116f46f78536d99ec140a2de2d1d52942f5
Author: Roman Moravčík <[email protected]>
Date:   Tue Sep 14 00:10:30 2021 +0200

    🌐 Update Slovak language (#22752)

commit 3587ef2e8f3086104754f1e5e192f0584a709627
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 13 16:38:51 2021 -0500

    🐛 Fix old spindle/laser options

commit 798a8a7a0852c12fb8640c4a531fac70fbc57eda
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 13 16:28:12 2021 -0500

    🔧 SPINDLE_LASER_PWM => SPINDLE_LASER_USE_PWM

commit 000d412da60727661176fe6416c3517dd4b4be3d
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 12 21:41:24 2021 -0500

    🐛 Fix CUSTOM_MENU_MAIN_SCRIPT_DONE

    Fix #22762

commit d69c053225bab92bf53bec064a1830079a2092f9
Author: Vert <[email protected]>
Date:   Sun Sep 12 22:39:52 2021 -0400

    🐛 Fix ENABLED => EITHER typo (#22756)

commit 24460052d245bc9b56813aab67d52a96a858e034
Author: mks-viva <[email protected]>
Date:   Sun Sep 12 21:30:09 2021 -0500

    ✨ MKS Robin Nano V1.3 (STM32F407VET6) (#22749)

commit ea7e777cb13f314ddfeab81e29d7b7a2fc67e7b3
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 12 21:21:35 2021 -0500

    🎨 Tweak custom menu item code

commit 84f66627c4557ce9a4f231af6b483d59c777bfc4
Author: thinkyhead <[email protected]>
Date:   Mon Sep 13 01:39:56 2021 +0000

    [cron] Bump distribution date (2021-09-13)

commit 29d3996a55d00059437f6c1194bac5eec5b7b2e2
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 12 19:37:33 2021 -0500

    📌 Creality 4.3.1 board variants (#22704)

    Co-authored-by: Chico <[email protected]>

commit 37c488fda1176e9e50531d0ea7e9d66c74cef2d4
Author: Luc Van Daele <[email protected]>
Date:   Mon Sep 13 02:35:37 2021 +0200

    🚸 G33 R and O options (#22707)

commit c9d54bc3f34c18691a051c0a9f196010dd7c7de9
Author: ellensp <[email protected]>
Date:   Mon Sep 13 11:03:24 2021 +1200

    🐛 Fix Trigorilla Pro HAL/STM32 build offset (#22761)

commit 3a457c9d13701428a4a276aaf43eb7961e9503a1
Author: tome9111991 <[email protected]>
Date:   Sun Sep 12 21:56:40 2021 +0200

    🐛 Fix JyersUI for LPC176x (#22745)

    Co-authored-by: Scott Lahteine <[email protected]>

commit afe4cb7fee73878917a55ccca7e67a24fea423f8
Author: thinkyhead <[email protected]>
Date:   Sun Sep 12 01:02:08 2021 +0000

    [cron] Bump distribution date (2021-09-12)

commit 08e581d5d7c6cfcedf400862fcfcd146c6ce837f
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 15:41:42 2021 -0500

    🎨 Apply more HAS_DELTA_SENSORLESS_PROBING

commit 011329fe55f82e0c64c48a6bc983c10569206fb3
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 02:47:53 2021 -0500

    🐛 No probe enum for DELTA + SENSORLESS_PROBING

    Fix #22729

commit 6b9b2c5d7382b30dabc2f1fb360d62a819f5ec3d
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 02:15:05 2021 -0500

    🩹 Warn about user feedback requirement

commit 453e60958a8cde6d7541b4dc3a99d054b53eb695
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 01:32:39 2021 -0500

    🐛 Followup to JyersUI

    Fix #22735, #22736

commit 953d283e5360104072790a12ea1a78f69087c05b
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 01:13:02 2021 -0500

    🐛 Followup to E3V2 Enhanced

    Fix #22741

commit 0a1211fe3fa3352c2a2783102ef8572966927ccd
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 00:48:20 2021 -0500

    🐛 Fix LPC1768 SD-based EEPROM debug

    Fixes #22746

commit 209dca10890982aa4c992464e0388eff0c36e0f4
Author: Marcio T <[email protected]>
Date:   Fri Sep 10 19:03:46 2021 -0600

    🚸 Enhance FTDI Eve Touch UI file select dialog (#22742)

commit 69ab2bc40fe947c9edce487509ab4508376e8f56
Author: thinkyhead <[email protected]>
Date:   Sat Sep 11 00:58:31 2021 +0000

    [cron] Bump distribution date (2021-09-11)

commit ce6d6225019640afbdb0a9dc6db26a4e03ca4c4f
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 10 19:47:03 2021 -0500

    🩹 Fix TOUCH_UI_FTDI_EVE warnings

commit 67d82ff228789408f7f32e6c9af3108c989c0c90
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 10 18:49:57 2021 -0500

    🐛 Followup to JyersUI

commit bcfaf3990a0e7eaac89ae8e075bb089c7dac1b38
Author: thinkyhead <[email protected]>
Date:   Fri Sep 10 01:02:43 2021 +0000

    [cron] Bump distribution date (2021-09-10)

commit 392a4a6f85bea8470ee291eedcf85d16ce071e52
Author: Miguel Risco-Castillo <[email protected]>
Date:   Thu Sep 9 16:40:10 2021 -0500

    🐛 Fix, improve E3V2 Enhanced UI (#22733)

commit 754b31918a73cb08c322102be5d3926d2ac59c18
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 9 04:57:05 2021 -0500

    🎨 Fewer serial macros

commit 79c72ed821564507b0ef46cbb26f9577585e2ccc
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 7 18:06:10 2021 -0500

    🎨 Standardize G-code reporting

commit 650e73af27eab6c185337c3fc2c44300a9262af8
Author: ellensp <[email protected]>
Date:   Thu Sep 9 18:13:01 2021 +1200

    🩹 Fix Enhanced E3V2 Advanced Pause (#22728)

commit 7a4f1c410f15a5204264b2fc027ac5e04c9f0d97
Author: thinkyhead <[email protected]>
Date:   Thu Sep 9 01:01:56 2021 +0000

    [cron] Bump distribution date (2021-09-09)

commit 7a2515bcac682ffc0e5afddaa663910e4f305cb5
Author: thinkyhead <[email protected]>
Date:   Wed Sep 8 00:57:48 2021 +0000

    [cron] Bump distribution date (2021-09-08)

commit 0f61d9e4dd4d4e4f27e5c688ab2c5dbd0f03af84
Author: Miguel Risco-Castillo <[email protected]>
Date:   Tue Sep 7 02:15:24 2021 -0500

    ✨ Ender-3 V2 CrealityUI Enhanced (#21942)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 43a9c71ef7a1c9e9e294707017d372d344c774ce
Author: Jyers <[email protected]>
Date:   Mon Sep 6 21:06:27 2021 -0700

    ✨ Ender-3 V2 with Jyers UI (#22422)

commit ed0c5aefd8c79d88f5b5fb69baae161b58c72eae
Author: thinkyhead <[email protected]>
Date:   Tue Sep 7 00:57:25 2021 +0000

    [cron] Bump distribution date (2021-09-07)

commit b0e798330d8f5ade4a230e0a91f05482d100bb97
Author: mrv96 <[email protected]>
Date:   Tue Sep 7 02:51:04 2021 +0200

    ✨Add DGUS_LCD_UI_RELOADED (#21931)

commit 853eebc3f2f6326000da790cfd549c2a44dfeae2
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 6 17:38:47 2021 -0500

    🚸 Show ExtUI message for PID_STARTED

commit 83a1d3a46b1e12c65d0eadbd663315c400fe022f
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 6 16:33:24 2021 -0500

    🎨 Misc. code cleanup

commit 845d42ef40e1adc04315779d31eb55dac2218689
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 6 15:34:12 2021 -0500

    🎨 Misc. Spindle/Laser (etc.) cleanup

commit dc6b86065e53f82e309a13b710863617f9bdce82
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 5 21:23:56 2021 -0500

    🚸 Per-hotend Watch items

commit ba62f24717f8ce7a452a07208f0b571d932c16c5
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 5 21:00:42 2021 -0500

    ⏪️ Clean up Info Menu

commit 521fda0235bc07c5e07889373a2a22c57fadf07f
Author: Scott Lahteine <[email protected]>
Date:   Fri Aug 27 16:12:08 2021 -0500

    🎨 MarlinUI for E3V2 tweaks

commit b0a91073b25f53e9e377f0ef4e01c9dd6fefd021
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 5 20:32:29 2021 -0500

    🔧 Sanity checks for Ender 3 V2

commit 6098150a857d15cd735f8c2309ca4b2d3f624974
Author: thinkyhead <[email protected]>
Date:   Mon Sep 6 01:05:05 2021 +0000

    [cron] Bump distribution date (2021-09-06)

commit c881fab1280f338e32015e1556890d647ee967fb
Author: dotdash32 <[email protected]>
Date:   Sun Sep 5 17:21:25 2021 -0700

    🎨 Use largest default ST9720 delays (#22713)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 51c66881c26e1db1d4eff925f0f0157ab65f83d0
Author: Dan <[email protected]>
Date:   Sun Sep 5 13:32:09 2021 -0700

    ✨ Protoneer CNC-Shield 3.00 (#22715)

commit 76fb131f14dfc4108c4f6491d84827b8813d3973
Author: Justin Nesselrotte <[email protected]>
Date:   Sun Sep 5 14:21:45 2021 -0600

    ✨ Index Pick-and-Place board Rev.3 (#22647)

    Co-authored-by: Gonçalo Pereira <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 73bc81739799cf50a70cb6dfd2045b57591f50d3
Author: thinkyhead <[email protected]>
Date:   Sun Sep 5 01:01:15 2021 +0000

    [cron] Bump distribution date (2021-09-05)

commit 88fc449c7bfef94782458c5b7ec3aeb0889f0bb5
Author: thinkyhead <[email protected]>
Date:   Sat Sep 4 00:58:22 2021 +0000

    [cron] Bump distribution date (2021-09-04)

commit a3557e63bf6669820d24a568030436979529f182
Author: Tanguy Pruvot <[email protected]>
Date:   Sat Sep 4 01:20:32 2021 +0200

    🌐 Update "Homing" for some languages (#22706)

commit 5dbb15539502da2bbc4ece99a3f5fc123801cdbe
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 3 17:26:36 2021 -0500

    🩹 Fix 'ms' warning

commit 18d82c1988624c48b459352fa02a352b34d2eff7
Author: Thomas White <[email protected]>
Date:   Fri Sep 3 12:30:24 2021 +0800

    ✨ Homing submenu option (#22692)

commit e1056378f1bbba01fd846c5af2ba339739c271e3
Author: Elliott Indiran <[email protected]>
Date:   Thu Sep 2 20:41:41 2021 -0700

    📝 Update PID_PARAMS_PER_HOTEND comment (#22694)

    Co-authored-by: Scott Lahteine <[email protected]>

commit ff95a93ecc299dc8c811012e7e77e32427649cf8
Author: Tanguy Pruvot <[email protected]>
Date:   Fri Sep 3 05:08:40 2021 +0200

    🐛 Fix Mixing code typos (#22697)

commit 43135114837b3dbe95bdf5b63ddcdec4a812813b
Author: thinkyhead <[email protected]>
Date:   Fri Sep 3 00:58:08 2021 +0000

    [cron] Bump distribution date (2021-09-03)

commit 682d6c99c7d9d0f89a260e1e72b9e776327bb82e
Author: thinkyhead <[email protected]>
Date:   Thu Sep 2 01:03:55 2021 +0000

    [cron] Bump distribution date (2021-09-02)

commit 3a2eb574e2027b966fb398959f8c8750ae3a3c73
Author: DvoraNoob <[email protected]>
Date:   Wed Sep 1 21:29:20 2021 -0300

    🚸 MKS UI extrusion speed/steps config (#22656)

commit 71a2a958858f47545bb9f02764af26fb68991b36
Author: Tanguy Pruvot <[email protected]>
Date:   Thu Sep 2 01:55:36 2021 +0200

    🔨 Enhance Lerdge pins, TFTs, and variants (#22658)

commit 9a9d55ceb0183640147c997fefeef375fa105a2f
Author: Tanguy Pruvot <[email protected]>
Date:   Thu Sep 2 01:45:17 2021 +0200

    🩹 Allow M42 S0/1 analogWrite on PWM pins (STM32) (#22631)

commit 01d1192a441f5afb753185eb103be64baa81bd43
Author: ellensp <[email protected]>
Date:   Wed Sep 1 22:33:24 2021 +1200

    🐛 BTT Octopus X MAX pin for IDEX (#22654)

commit fc22f1f84337b5d8f93fa3fe9c06ab7911d43dc4
Author: thinkyhead <[email protected]>
Date:   Wed Sep 1 01:03:17 2021 +0000

    [cron] Bump distribution date (2021-09-01)

commit bad46796495403fddfb65e793f4ca4d0e47b9843
Author: Vert <[email protected]>
Date:   Tue Aug 31 03:36:00 2021 -0400

    ✨ GT2560 V4.x A20 (#22664)

commit fb29135c74a258eaa0ba824c9c1f00762ed59183
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 20:44:55 2021 -0500

    ✨ Creality3D CR-30 PrintMill

commit e33e101850797f4d3edecd4eb18e9ae63c89ef13
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 20:54:51 2021 -0500

    🎨 Tweak pins, comment formatting

commit ba10816c51804433446a5221759a794aaac5bac2
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 20:54:17 2021 -0500

    💄 Extended Info Menu

commit f55a28b01599692ca7a149571c6ae94e3b6b017d
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 20:52:48 2021 -0500

    🌐 Tweak language selection

commit eccd82b7c1049b098546334fab7ac152e1fa1ce7
Author: Scott Lahteine <[email protected]>
Date:   Fri Dec 11 18:15:36 2020 -0600

    ⚡️ Add PROBE_PT_LAST_STOW

commit 1f5eacac09d694c2b69c223aba7bf8c422d16241
Author: ellensp <[email protected]>
Date:   Tue Aug 31 19:26:12 2021 +1200

    🔧 Set Z_PROBE_OFFSET_RANGE_MIN/MAX for MBL (#22663)

commit 2c5daa07228e153a14b6df5a784b1c1ef0e35e46
Author: Scott Lahteine <[email protected]>
Date:   Tue Aug 31 02:23:49 2021 -0500

    🩹 Clean up BTT_SKR_CR6

    Fixes #22665

commit 485a1864673d14177622e30d4f77de799e6d910a
Author: Jason Smith <[email protected]>
Date:   Tue Aug 31 00:00:59 2021 -0700

    🚸 Improve Tramming Wizard usability (#22672)

commit 66ded801b734fbb597ab1c1497d347544b3aa05c
Author: ellensp <[email protected]>
Date:   Tue Aug 31 15:40:49 2021 +1200

    ⏪️ Revert MAX31865 recent changes (#22660)

commit ef2d0b8d5353460ba8b6698281c8d4987217eb07
Author: thinkyhead <[email protected]>
Date:   Tue Aug 31 00:59:16 2021 +0000

    [cron] Bump distribution date (2021-08-31)

commit 7378e7c2db379f57e99a3b3b7ea1700e5031460a
Author: Christian Schuster <[email protected]>
Date:   Tue Aug 31 02:32:02 2021 +0200

    🩹 Fix LPC176x M43 formatting (#22680)

commit fff1ed3369200306b313186643ca14ffa7fc36b1
Author: Zs.Antal <[email protected]>
Date:   Tue Aug 31 02:30:14 2021 +0200

    🌐 Update Hungarian language (#22678)

commit 6ff2be329e0ac81ea56066353f2bb1469ae02eda
Author: Giuliano Zaro <[email protected]>
Date:   Tue Aug 31 00:05:11 2021 +0200

    🌐 Update Italian language (#22645)

commit efb9ea92b85ec469e9436969129bcee33aadd3bc
Author: Scott Lahteine <[email protected]>
Date:   Mon Aug 30 17:02:12 2021 -0500

    🔨 Fix HAL/STM32 F103Zx builds (#22610)

commit 90cd1ca68d3f4f5ede56cbea4913f06ca4782a94
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 23:06:24 2021 -0500

    🎨 screws_tilt_adjust_pos => tramming_points

commit d95d452b29b80e66d534b36c78262454664ce5a1
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 23:02:53 2021 -0500

    🌐 MSG_PROBING_MESH => MSG_PROBING_POINT

commit 8f57a21176d217c1c55c03be18876bf187ca786f
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 20:04:14 2021 -0500

    🔨 Three columns in mftest menu

commit 4d5f6b2a7817609f58f20aa8e1d2a40f139fa2ae
Author: thinkyhead <[email protected]>
Date:   Mon Aug 30 00:57:24 2021 +0000

    [cron] Bump distribution date (2021-08-30)

commit 6e40dbe0d34037089de070f0215735828b28e2a3
Author: Marcio T <[email protected]>
Date:   Sun Aug 29 16:05:30 2021 -0600

    ⚡️ Fix, enhance FTDI Eve Touch UI (#22619)

commit ab03c9a56063c4ae0e27f46a5622ffe1564b0c1b
Author: Marcio T <[email protected]>
Date:   Sun Aug 29 16:03:10 2021 -0600

    ⚡️ Enhance and fix FTDI Eve Touch UI file select (#22651)

commit f721c44c225c084785b296dac43df7b272702b7d
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 15:15:53 2021 -0500

    🐛 Fix SDSUPPORT for SKR CR-6 (#22668)

    Co-authored-by: Sebastiaan Dammann <[email protected]>

commit 4b4de71304a426e0d9b2696dae4e82eb55ba7079
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 13:57:47 2021 -0500

    ⚡️ Improve G2/G3 arc handling (#22599)

commit 09a83d565e0db2157baa3662020500476b931ec6
Author: Scott Lahteine <[email protected]>
Date:   Sat Aug 28 17:46:22 2021 -0500

    🩹 Sensorless homing tweak

commit 6d3dec8b6390bd1fb9ce24814249ab0e3cf8719e
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 13:51:57 2021 -0500

    🎨 Update more EXP Headers
LMoesman pushed a commit to LMoesman3004/MarlinJyers that referenced this pull request Nov 7, 2021
…nto E3-RRF

* 'bugfix-JyersUI' of https:/LMoesman/Marlin: (78 commits)
  Update Config Versions
  🍻 Preliminary fix for Max31865 SPI (MarlinFirmware#22682)
  🐛 Fix JyersUI scrolling filename, etc. (MarlinFirmware#23082)
  🐛 Fix DGUS Reloaded status message (MarlinFirmware#23090)
  [cron] Bump distribution date (2021-11-07)
  [cron] Bump distribution date (2021-11-06)
  Updated Workflow for Maple Env
  v2.0.1
  Re-add Beeper Mute
  Put back support for other UIs
  [cron] Bump distribution date (2021-11-05)
  🍻 Get/clear reset source earlier
  🐛 Prevent AVR watchdogpile (MarlinFirmware#23075)
  🐛 Fix TFT backlight [STM32] (MarlinFirmware#23062)
  🐛 Fix Octopus-Pro Max31865 / SPI (MarlinFirmware#23072)
  🔨 Fix IntelliSense / PIO conflicts (MarlinFirmware#23058)
  📌 'STOP' auto-assign, some Chitu V9 pins (MarlinFirmware#22889)
  [cron] Bump distribution date (2021-11-04)
  🔨 Script 'mfprep' finds pending commits
  🔨 Update git helper scripts
  ...
thinkyhead added a commit that referenced this pull request Dec 25, 2021
0xk1f0 pushed a commit to 0xk1f0/MarlinAi3M-FYSTEC-LCD that referenced this pull request Dec 26, 2021
AlexColello pushed a commit to AlexColello/Marlin that referenced this pull request Jan 14, 2022
mashurex pushed a commit to mashurex/Marlin that referenced this pull request Jan 26, 2022
commit db4172b5fa05e818f42427001398db5f13d13024
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 16 00:54:53 2022 -0600

    🔨 Prevent two [cron] in a row

commit 242192d03de4af3dcd208dbcc4c1d609a25bce64
Author: Jim Watson <[email protected]>
Date:   Wed Jan 12 16:13:21 2022 +0000

    🐛 Fix SHOW_REMAINING_TIME compile (#23503)

commit 7135c3b1854b6988dfb4c27a10438b2e283f17b5
Author: ellensp <[email protected]>
Date:   Thu Jan 13 04:57:36 2022 +1300

    🚑️ Fix M105 regression (#23505)

    Fixes #23504

commit c91d033b5d398d704036125bfddb6c3c59c18b57
Author: ellensp <[email protected]>
Date:   Thu Jan 13 04:53:36 2022 +1300

    🐛 Fix Arduino build issues (#23510)

commit 0470fbe0a1751da06a3a407f9816fe5f589b48df
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:41:51 2022 -0600

    🧑‍💻 Move PB0 init for MKS_ROBIN_NANO

commit eb8d8193253bf3349ed415eb45122ba9f3f52850
Author: Scott Lahteine <[email protected]>
Date:   Mon Jan 10 02:51:34 2022 -0600

    🧑‍💻 Fewer string macros

commit 41f80a449822934df5d874b9cd66df1fd521a121
Author: DerAndere <[email protected]>
Date:   Mon Jan 10 09:44:16 2022 +0100

    🚸 Include extra axes in position report (#23490)

commit e0f75d4f069b80ec78ee911377861aa5e77f2a14
Author: David Ross Smith <[email protected]>
Date:   Fri Jan 7 22:44:44 2022 +1100

    🚑️ Fix preheat target bug

    Fixes Jyers/Marlin#1651

commit 42449b86838ac727eb9c261601f206f1b1f2afcb
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 9 04:39:15 2022 -0600

    🌐 Update auto home axis strings

commit e23c696566a2148e41ff6e019b3b5a182df7de20
Author: Roman Moravčík <[email protected]>
Date:   Sun Jan 9 10:51:16 2022 +0100

    🌐 Update Slovak language (#23475)

commit 035f9b8e134b340403a75723119eb791d65fea92
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 9 03:48:17 2022 -0600

    🔨 Rename (not copy) with board_build.rename

commit 49f8171f7a541a8b321e1fb3aa3510cfa8eb31d7
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sun Jan 9 03:37:09 2022 -0500

    🚸 BLTouch HS menu item for DWIN Enhanced UI (#23480)

commit 75d0e94d5b3d29abc2d450a5369031b9b396c14c
Author: ClockeNessMnstr <[email protected]>
Date:   Sat Jan 8 15:09:25 2022 -0500

    🚸 Do G34 "Z Backoff" at full current

commit 915f610782df36ef241b8c207ea799d8b206aa15
Author: jdegenstein <[email protected]>
Date:   Thu Jan 6 19:03:02 2022 -0600

    📌 LCD_FOR_MELZI for BTT E3 RRF (#23453)

commit 2231e00b2c1acd53449ece7a22f131e40216da8f
Author: Lefteris Garyfalakis <[email protected]>
Date:   Thu Jan 6 13:30:41 2022 +0200

    🌐 Localize E3V2 Enhanced UI (#23424)

commit 63f2b153967218a15355eb0a179dca579a3d1269
Author: Anson Liu <[email protected]>
Date:   Thu Jan 6 06:26:12 2022 -0500

    📺 Tune ULTI_CONTROLLER encoder, enable PCA9632 (#23461)

commit f503722c4556631745f35b9ae86d6d3c0c112a77
Author: Kyle Hu <[email protected]>
Date:   Thu Jan 6 15:54:04 2022 +0800

    🐛 Fix Artillery Ruby (startup code, build flags) (#23446)

commit 4fd1de7fb7185728d357a155c86fafe438398e78
Author: Mike La Spina <[email protected]>
Date:   Wed Jan 5 06:14:40 2022 -0600

    🐛 Define required endstop enums (#23425)

commit 93126c0d0259dcabb09ab26cb237dacb4699cb7e
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 5 01:48:18 2022 -0600

    🔨 Strip CR in mftest > awk

commit 80f77ea807f28086f143457d0c4bb7e8065906c6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 5 01:52:02 2022 -0600

    🐛 Fix strlen_P parameter error

    Fixes #23447

commit 9ff8220b8a455e6d1273fb7ecd5bd868904ebe70
Author: Scott Lahteine <[email protected]>
Date:   Mon Jan 3 09:18:10 2022 -0600

    🩹 Fix RADDS+RRD encoder button

commit 775486028921d675bda4ea57e4fff4e7a6717c26
Author: hwmland <[email protected]>
Date:   Mon Jan 3 06:54:12 2022 +0100

    🩹 RAMPS FET order overridable, E + Laser (#23428)

commit 4efe4788afb6846aa4a17851a838e295f8375940
Author: Jason Smith <[email protected]>
Date:   Sun Jan 2 21:27:22 2022 -0800

    ⬆️ Assert newer GCC in PIO via atmelavr@~3.4 (#23432)

commit 2faf4e2a99d513bed690c910d3c448d14d3c9df3
Author: Jason Smith <[email protected]>
Date:   Sun Jan 2 19:17:19 2022 -0800

    💚 Fix Teensy CI test (#23433)

commit 9956e6267474c915c649ea3ad5d58791ac6e6fdc
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 2 09:22:36 2022 -0600

    🧑‍💻 Apply axis conditionals

commit a732427329e81be0cf9a7d10b38d52722a27af8e
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 2 09:22:06 2022 -0600

    🚨 Fix M906 warning

commit 974883d2f6e4484dfb19e17e2d216740f166dd45
Author: Mike La Spina <[email protected]>
Date:   Sun Jan 2 02:23:55 2022 -0600

    🔧 Normal FET layout with Spindle/Laser (#23409)

commit 1170ed995e1e92737ff4df2147f0e714d5c568cb
Author: Jason Smith <[email protected]>
Date:   Sun Jan 2 00:19:10 2022 -0800

    🔧 Update deprecated auto_build.py (#23427)

commit 24f9c3a777a95dbc1854bd2b25a85770895f20fb
Author: Johannes Hörmann <[email protected]>
Date:   Sun Jan 2 06:46:55 2022 +0100

    🔨 Upload to Optiboot at 115200 (#23403)

commit 5ec384f40caf16c2e92e992e83d70e243abaa786
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 22:54:27 2022 -0600

    ✨ M919 : Chopper Timing (#23400)

commit 6d7ffa6add0b2a845bfe548f8597ad9b5b39b974
Author: Jason Smith <[email protected]>
Date:   Fri Dec 31 12:32:28 2021 -0800

    🔧 Only warn about enabled CONFIGURATION_EMBEDDING (#23408)

commit dadd7516b5b7e56a379f838e76fd4a1c9fa547c6
Author: Scott Lahteine <[email protected]>
Date:   Fri Dec 31 07:42:07 2021 -0600

    🚑️ Fix thermal conditionals, structure

commit f99732ba752e792bffd25ece8c72bc547a23b24e
Author: Robby Candra <[email protected]>
Date:   Fri Dec 31 15:22:49 2021 +0700

    🔧 DWIN_MARLINUI sanity checks (#23399)

commit 5a9635aa586a41966f95966f412297fff4757ff7
Author: Scott Lahteine <[email protected]>
Date:   Wed Dec 29 04:17:41 2021 -0600

    🩺 Assert FAN_SOFT_PWM where required (#23383, #23477)

commit 1552c6d2a5713075d01b98036a6fe7fb6ad9c827
Author: Lefteris Garyfalakis <[email protected]>
Date:   Wed Dec 29 05:22:01 2021 +0200

    🎨 E3V2 corner leveling => tramming (#23375)

commit 06c2ed3c996965b79520d733b668d08437ab5468
Author: Miguel Risco-Castillo <[email protected]>
Date:   Tue Dec 28 00:23:50 2021 -0500

    🚸 DWIN Enhanced improve, fix, and extend (#23240)

    - Offset icon change to show mesh leveling status
    - Reset extruder position when enter to Move menu
    - New live end-stop diagnostic page
    - Editable firmware retracts settings for Tune and filament settings menu
    - Print Statistics page accessible from the Advanced Settings menu
    - Reset printer draws the boot image
    - Adds individual axes homing menu
    - Adds probe deploy/stow to Probe Settings menu
    - Updates lock screen
    - Rebuilds main buttons to support text caption in other languages
    - Increases probe offset limits to 60 mm
    - Fix M303 PID variable update
    - Fix Resume/Pause button update
    - Fix redraw of print done
    - Fix very large file name bug
    - Fix bug in bed manual leveling

commit 430c5da54c46c03c67afe53cf325880e27e93b89
Author: Scott Lahteine <[email protected]>
Date:   Tue Dec 28 18:29:05 2021 -0600

    🚚 Rename L6470 G-code file

commit 5b9f3bd4b1079244cc88a68587398bfcc600eeef
Author: Scott Lahteine <[email protected]>
Date:   Tue Dec 28 02:57:24 2021 -0600

    🧑‍💻 Remove extraneous 'inline' hints

commit ccc66a8528a8ae318692c0c9a8032a9d3bfc7e37
Author: Scott Lahteine <[email protected]>
Date:   Tue Dec 21 22:15:48 2021 -0600

    🎨 Misc. cleanup

commit 8abe314b180b472c53968a7347018fd0803a09cb
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 9 01:06:19 2022 -0600

    🔨 Get FIRMWARE_BIN from env

commit dc470eb10f3141187abc89c29e665e32756af03b
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sun Jan 9 02:29:36 2022 -0500

    🐛 Fix EEPROM_INIT_NOW build hash test (#23479)

commit 4c5e57ae89dcc4cf04d0893e435c2b45e6c3237a
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sun Jan 9 02:24:56 2022 -0500

    🩹 Reset DWIN CrealityUI print progress on start (#23481)

commit 5d7328df469053240eeae32426d0669977f94119
Author: Scott Lahteine <[email protected]>
Date:   Tue Dec 28 05:02:40 2021 -0600

    🧑‍💻 Add AXIS_COLLISION to catch broken parameters

    \

commit 99c237e05e5090d56ef22961b0af4b7858a4af47
Author: Scott Lahteine <[email protected]>
Date:   Tue Dec 28 05:43:10 2021 -0600

    🚸 Refine stepper-driver-related G-codes (#23372)

commit 56adbc3ebf3ccb5ac1df1fd40620002a2c405e51
Author: Scott Lahteine <[email protected]>
Date:   Mon Dec 27 20:52:43 2021 -0600

    📝 Consistent pin header orientation

commit 4cfe812c1816345c468769a1cf19ada39fb99fd2
Author: Scott Lahteine <[email protected]>
Date:   Mon Dec 27 17:40:53 2021 -0600

    📌 Define MKS Monster8 pins for MKS_MINI_12864

    Fixes #23324

commit 27d2471ea3f2bfb9b3b00028cc165d44a5b4e429
Author: Scott Lahteine <[email protected]>
Date:   Mon Dec 27 14:28:59 2021 -0600

    🐛 Fix mffp usage

commit 61b9248c35113943ff299bfb647ff1bf0f48fff8
Author: Scott Lahteine <[email protected]>
Date:   Sun Dec 26 03:20:29 2021 -0600

    🎨 Pins and SDIO cleanup

commit c9561a88261afd14d9c013d2096e14e319c363a5
Author: EvilGremlin <[email protected]>
Date:   Sun Dec 26 09:46:13 2021 +0300

    🔧 Check Chiron LCD requirements (#23353)

    Co-Authored-By: EvilGremlin <[email protected]>

commit 58c84f17baa2f8291b475854d19e9f117a60bcb1
Author: Scott Lahteine <[email protected]>
Date:   Wed Dec 29 03:41:28 2021 -0600

    🎨 Simplify some debug echos

commit 73b8320e9caac23873169c8e10344f2f8060b389
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 20:01:24 2022 -0600

    🔨 Add .vscode/extensions.json

commit 1c3f2498b1c47dcaf1f15f2058c90d7107c87311
Author: ellensp <[email protected]>
Date:   Thu Dec 30 20:35:22 2021 +1300

    🐛 Fix RRW Keypad & Zonestar buttons (#23388)

commit 4202baa409f7b8a5ef22ef3541216919462205b0
Author: GHGiampy <[email protected]>
Date:   Thu Dec 30 05:37:07 2021 +0100

    🩹 Fix Enhanced UI max E speed (#23387)

commit f471eab1a2834c4e65477d978ea9f0349542b302
Author: Scott Lahteine <[email protected]>
Date:   Sat Dec 25 22:13:20 2021 -0600

    🔖 Marlin 2.0.9.3

commit 9b13ae239953df3b00ad18a241e001723c3f4756
Author: Keith Bennett <[email protected]>
Date:   Sat Dec 25 19:41:01 2021 -0800

    🐛 Fix MKS Robin E3 NeoPixel pin default (#23350)

commit 06f36dc7467f0053767f307a18933df556074d99
Author: kaidegit <[email protected]>
Date:   Sun Dec 26 10:12:20 2021 +0800

    🐛 Fix open for bin rename (#23351)

commit 98eca9cb23084f0c21ae85b382e6f473eb40ebbf
Author: Scott Lahteine <[email protected]>
Date:   Sat Dec 25 03:27:45 2021 -0600

    🔧 Move MOTHERBOARD closer to top

commit 626879500388c4a203022c5fc03c32d5a8281348
Author: fflosi <[email protected]>
Date:   Sat Dec 25 05:57:07 2021 -0300

    ✨ Per-axis TMC hold multiplier (#23345)

commit b4f0922a7caea03b3c3315d48d86109bcc84c4be
Author: Sola <[email protected]>
Date:   Fri Dec 24 14:03:32 2021 +0800

    ✨ MKS TinyBee board support (#23340)

    Co-Authored-By: Sola <[email protected]>

commit aef613acd394d72d17cda8b431bcfcc2165c9608
Author: Robby Candra <[email protected]>
Date:   Thu Dec 23 15:19:39 2021 +0700

    🔧 Group FAST_PWM_FAN.options (#23331)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 9ecfa1d2528a57eaa71a25acaac3e87fb45e0eb1
Author: InsanityAutomation <[email protected]>
Date:   Tue Dec 21 23:09:55 2021 -0500

    ✨ BLTouch High Speed mode runtime configuration (#22916, #23337)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit e0bed1e344946154cc94cb58fbca281b360ee4a9
Author: ellensp <[email protected]>
Date:   Wed Dec 22 15:44:04 2021 +1300

    ✨ Option to reset EEPROM on first run (#23276)

    Co-authored-by: Scott Lahteine <[email protected]>

commit d21fa25ab8c369ff800e0451c75fe9f9e6134878
Author: Spencer Owen <[email protected]>
Date:   Sat Dec 18 18:58:46 2021 -0700

    ✨ Creality3D V4.2.3 / Ender-2 Pro board (#23307)

commit 0dc1a58b241217899c88945ea8f6f8dc8f39470e
Author: X-Ryl669 <[email protected]>
Date:   Tue Dec 14 07:22:06 2021 +0100

    ✨ Configurations embed and retrieve (#21321, #23303)

commit f2ca70e2328c3158d54c302dca310bf2ed5d465d
Author: John Lagonikas <[email protected]>
Date:   Wed Dec 8 20:55:09 2021 +0200

    🐛 Fix and improve MAX31865 (#23215)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a6bed228391afe290e8fe4181f624f21dd461b73
Author: BigTreeTech <[email protected]>
Date:   Sat Dec 11 03:38:03 2021 +0800

    ✨ BigTreeTech SKR mini E3 V3.0 (STM32G0B1RET6) (#23283)

commit efd67cf80d1eebd1470bd7c8b822e9103d70e778
Author: Giuseppe499 <[email protected]>
Date:   Tue Dec 7 02:53:51 2021 +0100

    ✨ X Twist Compensation & Calibration (#23238)

commit 15204470a8da2b579dab029cf8bdf6038914e462
Author: ladismrkolj <[email protected]>
Date:   Sun Dec 5 22:41:39 2021 +0100

    🔧 Chamber Fan index option (#23262)

commit 48358d6a5c4eccb4dd1b4d141c38cf45304b4df7
Author: Mike La Spina <[email protected]>
Date:   Fri Dec 3 12:48:48 2021 -0600

    🏗️ Fix Maple HAL/STM32F1 PWM (#23211)

commit d7abb891cd91ef991234784a0b707346ac34e53a
Author: Tanguy Pruvot <[email protected]>
Date:   Fri Dec 3 19:31:48 2021 +0100

    🏗️ Rework STM32 timer frequency protection (#23187)

commit 52a44eb200b8e14d7738565f50888d34cc5200f0
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 30 15:04:05 2021 -0600

    🐛 Fix STM32 FastPWM

commit 9b1c0a75e18faf754a55ec324ac327ba2a25819f
Author: Scott Lahteine <[email protected]>
Date:   Sat Nov 27 18:33:32 2021 -0600

    🎨 Rename HAL timer elements

commit d75e7784e50dad2b9f598ef559958e9015e64550
Author: schmttc <[email protected]>
Date:   Wed Nov 24 08:52:18 2021 +1100

    ✨ EasyThreeD ET4000+ board and UI (#23080)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e60c8b7e04a6cd2758108bcc80f2ab57deec23c
Author: John Robertson <[email protected]>
Date:   Tue Nov 23 21:24:24 2021 +0000

    ✨ MarkForged YX kinematics (#23163)

commit 018c7b1cf4d3b2b54287f61b478e813041c1c661
Author: Keith Bennett <[email protected]>
Date:   Sun Nov 21 11:25:06 2021 -0800

    ✨ BigTreeTech Mini 12864 V1.0 (#23130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit af1d603374a34cfc2d8b34fce269a0a6683d7c68
Author: Giuliano Zaro <[email protected]>
Date:   Tue Nov 23 21:01:53 2021 +0100

    ✨ Fan tachometer support (#23086, #23180, #23199)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 884308f964ddb92c1371bc9ec96e587ef04336e0
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 16 08:54:30 2021 -0600

    🔧 SOUND_MENU_ITEM for E3V2

commit 7269990413a630b134f3e990fe188c522659dca9
Author: Miguel Risco-Castillo <[email protected]>
Date:   Wed Nov 10 11:31:35 2021 -0500

    🚸 Expose sub-options for E3V2 Enhanced (#23099)

commit 2a90d93b17c1014f6a29b0ecc015c7fbc469fbdc
Author: Keith Bennett <[email protected]>
Date:   Wed Nov 17 09:33:42 2021 -0800

    📌 Overridable probe-related pins (#23107)

commit 6e284f882388d314517544b6c2e46f7cff7c99e8
Author: BigTreeTech <[email protected]>
Date:   Wed Nov 10 23:56:10 2021 +0800

    ✨ Support for BIQU B1-SE-Plus strain gauge probe (#23101)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a2349fc411321ae4ff2bb286af04bb7543963c72
Author: Scott Lahteine <[email protected]>
Date:   Fri Dec 24 23:47:52 2021 -0600

    🔨 Configurable firmware bin filename

    Configuration.h > FIRMWARE_BIN

commit a3964b2b40f97507edb7b25ea4c47b37db2a1aaa
Author: Scott Lahteine <[email protected]>
Date:   Fri Dec 24 20:59:28 2021 -0600

    🔨 Ignore more generated files

commit 226ee7c1f3e1b8f88759a1dc49f329ab9afb3270
Author: Scott Lahteine <[email protected]>
Date:   Fri Dec 24 01:46:51 2021 -0600

    🔧 Sanity check MMU2_MENUS

commit 2c12171f46488a31cb5d4d78868892ad2918e298
Author: Attila BODY <[email protected]>
Date:   Fri Dec 24 06:57:20 2021 +0100

    🐛 Fix Robin Nano v3 filament runout pins (#23344)

    Co-authored-by: Scott Lahteine <[email protected]>

commit d034a9c295c787ee06c76d65ce61f34cb9f0a795
Author: MrAlvin <[email protected]>
Date:   Thu Dec 23 10:47:52 2021 +0100

    🚸 Show mm'ss during first hour (#23335)

    Co-authored-by: Scott Lahteine <[email protected]>

commit d2c7104bb37ca7e10622dfe1e1f0a6e5c3d23240
Author: Robby Candra <[email protected]>
Date:   Wed Dec 15 07:51:19 2021 +0700

    🚸 Change "SD" to "Media" or "SD/FD" (#23297)

commit 570c7e86380adb2071a94a433dc6babf6c8f9e32
Author: ellensp <[email protected]>
Date:   Wed Dec 22 13:48:38 2021 +1300

    🐛 Fix Chitu Z_STOP_PIN (#23330)

commit cc4578a3d33b67268d26255139eceff1c805ec52
Author: Tanguy Pruvot <[email protected]>
Date:   Thu Dec 23 07:49:15 2021 +0100

    🩹 Fix settings G21 report (#23338)

commit 1db84be66aee65ca120b6f9d3203ac0e19699c30
Author: Mike La Spina <[email protected]>
Date:   Tue Dec 21 01:26:31 2021 -0600

    🚑️ FAST_PWM_FAN default 1KHz base freq. (#23326)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 77c9668fe2b897ee142539a0124f359fcb8de070
Author: ellensp <[email protected]>
Date:   Tue Dec 14 19:25:28 2021 +1300

    🐛 Fix LCD_BED_LEVELING compile (#23298)

commit 22cf9b444e9185ef173ebf145f3bb9207d266ec4
Author: GHGiampy <[email protected]>
Date:   Mon Dec 20 09:44:43 2021 +0100

    🧑‍💻 Option allowing > 127 Neopixels (#23322)

commit 97798d1e47d2211827cccadc31f61b59e0e9e667
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 8 01:33:49 2021 -0500

    🎨 Update SKR V2 pins

commit f4b808456ac5b2ce55329a2ad8db00b6cc9510cb
Author: Giuliano Zaro <[email protected]>
Date:   Tue Dec 14 01:47:57 2021 +0100

    🚸 Use M600 for disabled MMU (#21865)

commit 62647369681c3449c7f3ee31d4f4d2da6f3ada9c
Author: Tanguy Pruvot <[email protected]>
Date:   Tue Dec 14 01:41:21 2021 +0100

    🐛 Fix TFT_COLOR_UI Release Media issue (#23123)

commit 7a5f103bcf6c3387ab832d64244e252a16e230a6
Author: John Lagonikas <[email protected]>
Date:   Sat Dec 18 01:31:10 2021 +0200

    🔧 Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)

commit 1a8307b196ce5ed791b8f9bf8acfb50a797e45a9
Author: Scott Lahteine <[email protected]>
Date:   Sat Dec 18 17:38:29 2021 -0600

    📝 Fix a config comment

commit 13a1c86ae832274026e8b3a4031bc28a6fca2db9
Author: ellensp <[email protected]>
Date:   Tue Dec 14 13:18:24 2021 +1300

    ✨ M115 flag EXTENDED_M20 (#22941)

commit 15656201d281842b9f9101133529a76738b76cdd
Author: ellensp <[email protected]>
Date:   Tue Dec 14 13:13:34 2021 +1300

    ✏️ Clean up duplicate defs (#23182)

commit f3e372cb4c849bbd77cec949f5fbd632bf84efed
Author: Robby Candra <[email protected]>
Date:   Tue Dec 14 07:11:52 2021 +0700

    🩹 Init fan speed at boot (#23181)

    Co-authored-by: Scott Lahteine <[email protected]>

commit c781ecc437e27f5efd438a9f2d92bf8b7be3a299
Author: Scott Lahteine <[email protected]>
Date:   Mon Dec 13 16:15:46 2021 -0600

    🔧 Fix unknown board test

commit daa8fff6c630da27bed2df7bd30c38e7e359c0e8
Author: Scott Lahteine <[email protected]>
Date:   Sun Dec 12 16:16:40 2021 -0600

    🩹 SD abort requires open file

    See #22566

commit d481bba3275bc9c7fb4a88fac3eb66727d73f504
Author: ellensp <[email protected]>
Date:   Sun Dec 12 11:06:45 2021 +1300

    🐛 Fix MARLIN_F103Rx variant SCK / MOSI pins (#23282)

commit 32b08ae04cdeef3362a92ee9c1d56787b0792b4c
Author: Scott Alfter <[email protected]>
Date:   Wed Dec 8 23:18:04 2021 -0800

    Fix Endstops::report_states (#23280)

    Fix regression 4d45fdf0eb

commit f00a0356c7fd9708ebabd4e5a25df0a3d6dd35f6
Author: Scott Lahteine <[email protected]>
Date:   Wed Dec 8 18:36:08 2021 -0600

    🎨 Misc. probe / endstop cleanup

commit 9871800874edf7e33233ba853735708f823e13a7
Author: Sola <[email protected]>
Date:   Thu Dec 9 03:37:45 2021 +0800

    🐛 Fix MKS LVGL UI retraction (#23267)

commit 39c2c038be51cd1bfc9cd963baf68307c28f542c
Author: Robby Candra <[email protected]>
Date:   Thu Dec 9 02:15:31 2021 +0700

    🩹 Coerce pin_t in set_pwm_duty macros (#23273)

commit 285d6488a369bd189073fae1cdfea5818a5f2275
Author: Jason Smith <[email protected]>
Date:   Wed Dec 8 11:10:37 2021 -0800

    🐛 Fix ACTION_ITEM with nullptr (#23195)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eecbd09a460d255594f418078ce5f96e9e688008
Author: Robby Candra <[email protected]>
Date:   Thu Dec 9 01:57:50 2021 +0700

    🚸 Onboard SD for SKR 2.0 / SKR PRO (#23274)

commit 8d4e4ac11530ba2576244f69802e35485ed05863
Author: Scott Lahteine <[email protected]>
Date:   Wed Dec 8 12:40:23 2021 -0600

    🎨 Rename MAX31865 elements

commit b77a5d4c8d9b90bdd870ed9590e3f2538f34b8c6
Author: Scott Lahteine <[email protected]>
Date:   Mon Dec 6 20:18:50 2021 -0600

    ✏️ MAX31856 => MAX31865

commit c3b8b3e7e6b3571d3d01f2bb1e4298c25d71d051
Author: Mike La Spina <[email protected]>
Date:   Mon Dec 6 15:52:18 2021 -0600

    🩹 Fix non-PWM cutter compile (#23169)

commit 7123b15801779efb2dfb9bbc932b7d665a708868
Author: Stuart Pittaway <[email protected]>
Date:   Mon Dec 6 21:40:18 2021 +0000

    🐛 Fix TWIBus Wire.begin call (#23183)

commit 8a2f13d657cb881b7e0365dd0a28b233125d433c
Author: Chris Pepper <[email protected]>
Date:   Sun Dec 5 22:18:02 2021 +0000

    🐛 HAL_reboot for native HAL (#23246)

commit 251d9fc1d741132f3baa1a7c9c9ead25a65af3c7
Author: tommywienert <[email protected]>
Date:   Sun Dec 5 23:16:23 2021 +0100

    🐛 Fix env:chitu_f103 (#23225)

commit 5eeb9650b5bbaeb2a07436d0e9cc5036dc518723
Author: ellensp <[email protected]>
Date:   Mon Dec 6 10:42:56 2021 +1300

    📌 More Longer3D LKx Pro serial tests  (#23260)

commit c0addd1d33017e97117ffab1e3145a55750fd2c4
Author: Stuart Pittaway <[email protected]>
Date:   Sat Dec 4 23:44:10 2021 +0000

    ✨ M3426 to read i2c MCP3426 ADC (#23184)

commit 05b57278d43fb1bcf7165dae88643dbac2ff7e8d
Author: Scott Lahteine <[email protected]>
Date:   Sat Dec 4 17:17:10 2021 -0600

    🔧 Cutter pins for SKR 2.0

commit aa3ec2fbfda25381eb4effb65471f206511a823d
Author: Robby Candra <[email protected]>
Date:   Sun Dec 5 05:14:19 2021 +0700

    🚸 Park nozzle on "loud kill" (#23172)

commit 4468516aa29b1319e8d296880ebf395a2e7e1d09
Author: ellensp <[email protected]>
Date:   Sun Dec 5 11:10:29 2021 +1300

    ✨ BigTree SKR 2 with F429 (#23177)

commit 95d006b4061f15b8a7edfd62ad4760994b28610f
Author: ellensp <[email protected]>
Date:   Sat Dec 4 09:48:54 2021 +1300

    🐛 Fix TIMER_TONE for ZM3E4 (#23212)

commit 5b057b4bcfeec871830bab9c6a15bf1e52e53c62
Author: Jiri Jirus <[email protected]>
Date:   Tue Nov 30 21:46:48 2021 +0100

    🩹 Assume 4K EEPROM for RUMBA32 BTT (#23205)

commit 77af48e5479eb0840977fc6ad16f1b8ad651efd4
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 30 13:03:31 2021 -0600

    🐛 Fix STM32 FastPWM

commit 0f7f709aad290285f10d6bed733f783dee6c324c
Author: Keith Bennett <[email protected]>
Date:   Sat Nov 27 14:59:32 2021 -0800

    ✏️ Fix Unicode (#23186)

commit a8c0e11cb143cb40637349cccdcc89282382f3d7
Author: Jason Smith <[email protected]>
Date:   Sat Nov 27 13:54:39 2021 -0800

    🩹 Handle nullptr in CardReader::printLongPath (#23197)

commit 0556da85b0d1aa9dee1fa229296270468cb13180
Author: Anson Liu <[email protected]>
Date:   Sat Nov 27 17:58:05 2021 -0500

    🩹 UM2 extruder cooling fan on PJ6 (#23194)

commit 93652e5c6fc4d4f141bdc524e01144ef7c6221dd
Author: George Fu <[email protected]>
Date:   Sun Nov 28 03:26:53 2021 +0800

    ✨  FYSETC Spider v2.2 (#23208)

commit f3fc1d15a3f7a77e36ce9e072c72bfae127f57d9
Author: Giuliano Zaro <[email protected]>
Date:   Tue Nov 23 22:33:33 2021 +0100

    🩹 Fix include path (#23150)

commit 3148060550eee847ec9d20eedf6bc890c9f4e12a
Author: Keith Bennett <[email protected]>
Date:   Tue Nov 23 13:54:31 2021 -0800

    📌 Biqu BX temporary framework workaround (#23131)

commit 5f08864d1fa8146bc909f3b79daa0bf026e94c6b
Author: Mike La Spina <[email protected]>
Date:   Tue Nov 23 14:05:50 2021 -0600

    🐛 Fix STM32 set_pwm_duty (#23125)

commit 184fc36a088204a1a6d98afbf3e05f24670e2e77
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Nov 21 20:13:01 2021 +0100

    🐛 Fix TFT backlight sleep/wake (#23153)

commit 281ed99868e2ad67be39858aac5ba6a6b46c6fd0
Author: Tanguy Pruvot <[email protected]>
Date:   Sat Nov 20 02:44:53 2021 +0100

    ⚡️ Reduce calls to set fan PWM (#23149)

commit 2cc4a1b3260e1a559ce91c707e1a7cdc5444ca94
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 17 13:01:44 2021 -0600

    🎨 Misc formatting

commit c5bd08755cef48d8dc920053b68da1bbe01a56b0
Author: BigTreeTech <[email protected]>
Date:   Thu Nov 18 01:35:28 2021 +0800

    🐛 Init PROBE_ENABLE_PIN (#23133)

commit 99f58f63f264a9968d5b98ad2e1c6e7f2411d57e
Author: luzpaz <[email protected]>
Date:   Wed Nov 17 12:09:01 2021 -0500

    🎨 Fix misspelling (#23137)

commit c2a674d2c114eee94debf9f649e66cbdb06afdbb
Author: espr14 <[email protected]>
Date:   Wed Nov 17 18:07:11 2021 +0100

    🏗️ Planner::busy() (#23145)

commit feffc1986744cdf10f9e8ca474f4a1aa4ca10dfe
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 16 14:06:36 2021 -0600

    🐛 Fix fast PWM WGM code

    Followup to #23102

commit f637e1c5017540b32ccf43bf32269905abdd51ee
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 16 12:49:25 2021 -0600

    🔨 Bring Makefile up to date

commit 78240a279b5eaa6900d381616e5e252513e82b67
Author: EvilGremlin <[email protected]>
Date:   Tue Nov 16 19:32:43 2021 +0300

    🔨 Ignore sim flashdrive file (#23129)

commit 656034d2d9d94208611ee6b684bdfb1441291249
Author: Luc Van Daele <[email protected]>
Date:   Tue Nov 16 16:24:53 2021 +0100

    🐛 Fix G33, Delta radii, reachable (#22795)

commit 39a81d167ee6e41aa055ceb7c7eceb919573aa61
Author: Mikhail Basov <[email protected]>
Date:   Mon Nov 15 07:46:34 2021 +0300

    🚸 LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)

commit cb1570d162680dd0de9e23a1f4ed9fb40b56b72b
Author: Scott Lahteine <[email protected]>
Date:   Sun Nov 14 17:19:57 2021 -0600

    🐛 Fix SENSORLESS_HOMING for 6-axis

commit 8cb646cc20576ed6cf4462e9ac9125f396a38bd9
Author: EvilGremlin <[email protected]>
Date:   Mon Nov 15 00:15:07 2021 +0300

    🚸 Simplify touchscreen calibration for SimUI (#23124)

commit 3cccb21dc9673d641a5b490b3d6a60466f5fd12f
Author: Miguel Risco-Castillo <[email protected]>
Date:   Wed Nov 10 11:55:20 2021 -0500

    🚸 Fix up E3V2 Enhanced (#23100)

commit 7f4a49cc446addad07c5b1c06066e821f1e4b16c
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 22 13:21:26 2021 -0500

    🎨 Misc. issue review patches

commit e0c439fe911320d08229ebc24eee2a32cd1ee986
Author: Mike La Spina <[email protected]>
Date:   Sun Nov 14 05:55:31 2021 -0600

    ⚡️ Controller Fan software PWM (etc.) (#23102)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 49e233e06f8be0d408a3576d77fa1bf5c27ff995
Author: Tanguy Pruvot <[email protected]>
Date:   Fri Nov 12 21:26:19 2021 +0100

    🎨 MPX ARM Mini pins cleanup (#23113)

commit b662dd1f9221bc1a489dfb84737a49564f72858f
Author: Mike La Spina <[email protected]>
Date:   Fri Nov 12 12:14:28 2021 -0600

    🐛 [LCP1768] Init PWM in set_pwm_duty (#23110)

commit 700cae43abd0108aae612513509dafccba493b61
Author: Skruppy <[email protected]>
Date:   Fri Nov 12 15:57:24 2021 +0100

    🩹 Fix RGB case light compile (#23108)

commit 1c74c6e7ac943078835dca58e295b2b2fe57f787
Author: George Fu <[email protected]>
Date:   Wed Nov 10 23:58:20 2021 +0800

    🐛 Fix FYSETC Cheetah 2.0 pins for production (#23104)

commit 757a9477db64086bebe2f1fa293ae3ec557b7a2f
Author: Minims <[email protected]>
Date:   Sun Oct 10 01:10:21 2021 +0200

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

commit 59d43408f6e2fc33db4efb17dac54b6ebbed4547
Author: Scott Lahteine <[email protected]>
Date:   Sat Dec 25 00:57:30 2021 -0600

    fix breaks in F() resolution

commit 1d8941d008cbc8dfacd35db140c1e87fc938ee58
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 5 21:35:31 2021 -0500

    🔨 Port libsdl2_net required for macOS simulator

commit 17f853d99ceccd06103cb404507b7ed171c306cf
Author: Keith Bennett <[email protected]>
Date:   Tue Nov 9 08:30:02 2021 -0800

    ⚡️ BTT002 (STM32F407VET6) variant, MK3_FAN_PINS flag (#23093)

commit 6f9f25dbb29edbe5383f2f22a36d204484b19aa8
Author: Scott Lahteine <[email protected]>
Date:   Sun Nov 7 01:11:51 2021 -0600

    🎨 Misc. code cleanup

commit 0273a6858733d22647583d52df309fe05efd7d9e
Author: VragVideo <[email protected]>
Date:   Sun Oct 3 06:12:51 2021 +0300

    ✨ WYH L12864 LCD (Alfawise Ex8) (#22863)

commit 58a26fcaaca2251a6098baad21236b0581f874a3
Author: Keith Bennett <[email protected]>
Date:   Sat Nov 6 23:09:15 2021 -0700

    🚸 Indicate Preheating for probe / leveling (#23088)

commit 489aca03ff1f6859ebcc52f0e6af2e3cb4f0c056
Author: Evgeniy Zhabotinskiy <[email protected]>
Date:   Sun Nov 7 07:16:18 2021 +0300

    🩹 Fix M503 report (#23084)

commit f32e19e1c64b3e495d18707ae571e81efaac2358
Author: Jin <[email protected]>
Date:   Sun Nov 7 11:53:36 2021 +0800

    🍻 Preliminary fix for Max31865 SPI (#22682)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 57bd04b6ce2a36526717bf2e6942c14d81be44ac
Author: dwzg <[email protected]>
Date:   Sun Nov 7 04:48:00 2021 +0100

    🐛 Fix JyersUI scrolling filename, etc. (#23082)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 396df93220f037f70035e0e0c08afef436538d4d
Author: ellensp <[email protected]>
Date:   Sun Nov 7 15:27:53 2021 +1300

    🐛 Fix DGUS Reloaded status message (#23090)

commit 9b76b58b791502cba0d6617042c37180851fd36f
Author: Scott Lahteine <[email protected]>
Date:   Thu Nov 4 12:18:23 2021 -0500

    🍻 Get/clear reset source earlier

    Followup to #23075

commit 9fffed7160ad791e9d81d66ff7d0c0d3e085586d
Author: Skruppy <[email protected]>
Date:   Thu Nov 4 18:11:57 2021 +0100

    🐛 Prevent AVR watchdogpile (#23075)

commit fd136d5501c51acbbf174ddf2331e747a80e2374
Author: Tanguy Pruvot <[email protected]>
Date:   Thu Nov 4 18:04:04 2021 +0100

    🐛 Fix TFT backlight [STM32] (#23062)

commit 89ec1c71f0f90ba926043ebdd8ace007b7912b58
Author: BigTreeTech <[email protected]>
Date:   Thu Nov 4 18:54:38 2021 +0800

    🐛 Fix Octopus-Pro Max31865 / SPI (#23072)

commit fc2020c6ecc7d731448509012a41d6ff499419bd
Author: Robby Candra <[email protected]>
Date:   Thu Nov 4 17:28:42 2021 +0700

    🔨 Fix IntelliSense / PIO conflicts (#23058)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f97635de364a27ddf8effd06ce0f18ceae5cf4f1
Author: ellensp <[email protected]>
Date:   Thu Nov 4 14:04:06 2021 +1300

    📌 'STOP' auto-assign, some Chitu V9 pins (#22889)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0a57406a2e266bfc20e8e0d8a834cca3ef67367
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 3 07:06:31 2021 -0500

    🔨 Script 'mfprep' finds pending commits

commit 5efef86cfa3ce88224edb68b2aa502dbf8939264
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 3 07:02:21 2021 -0500

    🔨 Update git helper scripts

commit 20c747753db6657a505b50db302f7ec9fd3a6e5d
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 2 01:28:00 2021 -0500

    🔨 Support ABM in mf scripts

commit 08a9c6158798a59bd6af09b68144041fdc967d4b
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 23:15:29 2021 -0700

    📌 Default NeoPixel pin for MKS Robin E3/E3D (#23060)

commit 0d91b07797c0d248eab25a64351db959a866bdc7
Author: Andrei M <[email protected]>
Date:   Tue Nov 2 01:47:16 2021 -0400

    ⚗️ Use pwm_set_duty over analogWrite to set PWM (#23048)

    Co-authored-by: Scott Lahteine <[email protected]>

commit b033da1782579d27ed05d9acbf0b2ccb433bdbb8
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 22:43:40 2021 -0700

    🔧 Endstop / DIAG homing conflict warning (#23050)

commit 4dcd872be54d913d26c95666a74a67efd59a0519
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 21:23:54 2021 -0700

    ✨ Allow Low EJERK with LA, optional (#23054)

commit 7e9e2a74358c6033577fc31f3a16af57214e4f3a
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 20:23:24 2021 -0700

    ✨ Artillery Ruby (STM32F401RCT6) (#23029)

commit 0b841941276b246c06b52f65e5e45199d4792785
Author: tombrazier <[email protected]>
Date:   Mon Nov 1 23:03:50 2021 +0000

    🚸 More flexible Probe Temperature Compensation (#23033)

commit efd9329c813f47d7434f2c7acbb09bbce161a735
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 8 01:17:16 2021 -0500

    📝 Tweak EXP comments

commit 5cbb820e2984d052c7ca412e06035206e5892790
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 23:43:19 2021 -0500

    🔨 Help for GDB remote debugging

commit 5a0166489e7d4ec6ce70fc20070f667fd00bccec
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 22:43:02 2021 -0500

    🩹 Fix linker error (transfer_port_index)

commit 692c9a6312785c728a9df474826acc0aa602771a
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 04:16:37 2021 -0500

    💚 Update Ender-3 V2 config path

    MarlinFirmware/Configurations#600

commit 545d14f9a54f9689f4ef258999cab3222275980b
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 01:39:33 2021 -0500

    🎨 Adjust Ender-3 V2 DWIN options

commit 7b9e01eb2bd03564ad667746637d8f33899ad5b5
Author: aalku <[email protected]>
Date:   Sat Oct 30 07:17:20 2021 +0200

    ✨ Shutdown Host Action (#22908)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 8562f0ec44df99928bca503e77ccc500b8ec7654
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 29 20:46:55 2021 -0500

    ✨ "Rutilea" ESP32 board (#22880)

commit 6f59d8171f701cbeacf687937de1b0d6a68f6711
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 29 20:42:52 2021 -0500

    🔧 Configuration version 02000903

commit d29a9014f2a4e496215a7b0503208b44a34915fb
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 21:36:06 2021 -0500

    🎨 Standard 'cooldown' method

commit 205d867e4bfa1c100ae69670c0a1a820cb8697a0
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 20:01:44 2021 -0500

    🎨 Standard material presets behavior

commit 84f9490149069a62c056cad9cb83ee7f2b4ee422
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 21:15:58 2021 -0500

    🎨 Define HAS_PREHEAT conditional

commit 1fd42584230f1d45cba2cdb33c2618d42bf2d923
Author: tome9111991 <[email protected]>
Date:   Sat Oct 30 00:49:12 2021 +0200

    🐛 Fix E3V2 (CrealityUI) Tune/Prepare > Zoffset (#23040)

commit e8a55972a7eab13c231733676df8c9e306af4d12
Author: Scott Lahteine <[email protected]>
Date:   Thu Oct 28 19:22:35 2021 -0500

    🐛 Fix EZBoard V2 board name

commit aef413202e69ddbed26bb155041a97abb0dada2e
Author: Keith Bennett <[email protected]>
Date:   Thu Oct 28 03:26:05 2021 -0700

    🐛 Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)

commit cbc7dadf42fc1cc56418caeb7ccba9491175f1ad
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 26 21:54:43 2021 -0500

    🎨 Apply HAS_MULTI_HOTEND conditional

commit c508ecc414a5876e6dadfe4ade926bc5b8bc25c3
Author: Zlopi <[email protected]>
Date:   Wed Oct 27 23:10:46 2021 +0300

    🚸 Scroll long filename on MKS TFT (#23031)

commit 384a31765f9080336d90a5404787bf1895dea2e9
Author: ellensp <[email protected]>
Date:   Thu Oct 28 09:06:06 2021 +1300

    🩹 Retain LCD pins with motor expansion (#23024)

commit 0f2c4fc40ba87ffb5e345d7e8a16b5714b9a65bd
Author: somehibs <[email protected]>
Date:   Wed Oct 27 21:00:02 2021 +0100

    🐛 Fix serial PORT_RESTORE (and BUFFER_MONITORING) (#23022)

commit 66a274452c20c9cab608e44a61663cd5a76cf9d6
Author: tome9111991 <[email protected]>
Date:   Wed Oct 27 21:58:32 2021 +0200

    🐛 Fix E3V2 (CrealityUI) position display (#23023)

    Followup to #23005, #22778

commit 12f8168d1eba025ceb7762f49fc903cb123a8b3b
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 26 19:36:16 2021 -0500

    🚸 Tweaks to UBL G29 Q

commit 2142e1dae493502adb1a26c9f81c2e6d43b0e02a
Author: woisy00 <[email protected]>
Date:   Wed Oct 27 01:05:34 2021 +0200

    🐛 Fix AUTOTEMP bug (thermal runaway) (#23025)

    Regression from 9823a37

commit 8d21ea55a2e67712ca968807d9c0a86afa750373
Author: tombrazier <[email protected]>
Date:   Mon Oct 25 06:33:40 2021 +0100

    🐛 Add USE_TEMP_EXT_COMPENSATION options (#23007)

commit a0da7e8a1fc1962fa2abf18db627e1985d06b18b
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 24 23:33:27 2021 -0500

    🔧 Fewer alerts about Z_SAFE_HOMING

commit e2452d6c571db0875cc3fe625a3e68a6e1c75e56
Author: tome9111991 <[email protected]>
Date:   Fri Oct 22 18:16:07 2021 +0200

    🐛 Fix SHOW_REMAINING_TIME option for JyersUI (#22999)

commit 5173a3140da364d1645743cb0f2f0324245da5ea
Author: Keith Bennett <[email protected]>
Date:   Fri Oct 22 08:52:31 2021 -0700

    ✨ BigTreeTech TFT35 SPI V1.0 (#22986)

commit e44f2b7d2db248c8ddef3574979a1a485137a99d
Author: Mike La Spina <[email protected]>
Date:   Tue Oct 19 06:05:23 2021 -0500

    🩹 Fix pragma ignored for older GCC (#22978)

commit ed78f7f4e65b632fa986400c65796233e1a5038e
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:59:48 2021 -0500

    🎨 Refactor MOSFET pins layout (#22983)

commit aa198e41dd01e7c52871611c880cae590aa8cb32
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:52:41 2021 -0500

    🎨 Pragma GCC cleanup

commit 18b38fb58a348112ebfd91e9f6f92c64ad4dfa49
Author: Jason Smith <[email protected]>
Date:   Mon Oct 18 01:11:16 2021 -0700

    🐛 Fix max chamber fan speed (#22977)

commit 5d79d8fad64a169351a36c5243911218e4ee6b7f
Author: Keith Bennett <[email protected]>
Date:   Mon Oct 18 00:57:54 2021 -0700

    🐛 Fix I2C EEPROM SDA/SCL aliases with SKR Mini E3 V2 (#22955)

commit e7a746966d67d50fdeab67ce745a1524d34ccb59
Author: ellensp <[email protected]>
Date:   Mon Oct 18 20:54:20 2021 +1300

    🐛 Fix MMU1 compile (#22965)

commit 555f35d46f1b0ae9e2105c23a5f37afe8336e4f4
Author: Mike La Spina <[email protected]>
Date:   Mon Oct 18 02:40:47 2021 -0500

    🎨 Suppress type warning (#22976)

commit de77dfcbbd392c47ed8ec1f711abefe6c10b30f0
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 22:10:08 2021 -0500

    🎨 Add MKS UI goto_previous_ui

commit af08f16efc8b31f2ae66672ac0df8dedbabdc163
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 20:24:41 2021 -0500

    🚸 Tweak MKS UI G-code console

commit 01a0f3a8cfc3ec1ae27e6959465fd275c4c895c7
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 18:11:16 2021 -0500

    🎨 Fix up MKS UI defines

commit f80bcdcc5cc03a0fdecdfe3c79f10c5a7436bf7d
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 15 00:24:08 2021 -0500

    🎨 Refactor Host Actions as singleton

commit 1ead7ce68198d5888b6a19195602679adf0cf7ab
Author: ellensp <[email protected]>
Date:   Fri Oct 15 14:38:03 2021 +1300

    🔧 Add, update TFT sanity checks (#22928)

commit dffa56463e89504302b95a7a7e7af8016c713bc8
Author: InsanityAutomation <[email protected]>
Date:   Tue Oct 12 23:19:05 2021 -0400

    ⚡️ Formbot ST7920 delays, intentional X2 pins (#22915)

    Co-authored-by: Scott Lahteine <[email protected]>

commit ae98d2e5eae1d41e1004919643cb34dc517c84e9
Author: Dmytro <[email protected]>
Date:   Wed Oct 13 05:45:00 2021 +0300

    🎨 Update MKS UI for no bed, extruder (#22938)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5b1ef638ee9630063de0cc096cd408c871e5b72f
Author: InsanityAutomation <[email protected]>
Date:   Tue Oct 12 19:40:56 2021 -0400

    🐛 Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)

commit f3be03da20708c8dfc990e6e293c4e25a3605e52
Author: Stuart Pittaway <[email protected]>
Date:   Mon Oct 11 23:42:29 2021 +0100

    ✨ M261 S I2C output format (#22890)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 64128a5bcb46d9428ff9acc4f45fc79381c90322
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Oct 10 01:05:24 2021 +0200

    🐛 Queue string followup (#22900)

commit 0018c94a7992a6bd0e13219504e664dc4703687d
Author: Pyro-Fox <[email protected]>
Date:   Sat Oct 9 15:09:50 2021 -0700

    🐛 LCD string followup (#22892)

commit d48cb1153785178fba59c0f11da75720585baafb
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 5 21:19:28 2021 -0500

    🐛 Followup to F() in config_line

    Followup to 1dafd1887e

commit d9f7de7a24071fecb9bcae3400e3b4ec56c68a8d
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 19:50:14 2021 -0500

    🐛 ExtUI F() followups

    Followup to 12b5d997a2

commit 3d102a77ca475c2dc6461152ecc445247b9bfd26
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 20:15:52 2021 -0500

    🎨 Apply F() to kill / sendinfoscreen

commit 492d70424d3819762ece7ecb4913e94e3cebf232
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 19:28:29 2021 -0500

    🎨 Apply F() to MKS UI errors, assets

commit 24dbeceb45a72c0b96d42e46ba750f41ac1dd4e2
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 13:46:42 2021 -0500

    🎨 Apply F() to various reports

commit cabd538fdd03bec0b293cb290bbc3dc123da780a
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 13:40:01 2021 -0500

    🎨 Apply F() to G-code report header

commit 9cf1c3cf051f7fa946098e7a7873aa0a8797d62a
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 23:52:41 2021 -0500

    🎨 Apply F() to UTF-8/MMU2 string put

commit c3ae221a109cb99bde634899f5b1b0ff690f29ab
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 22:11:48 2021 -0500

    🎨 Apply F() to some ExtUI functions

commit 7626d859a65417f03494c1e99d3d29e79b84fd3d
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 11:55:08 2021 -0500

    🎨 Apply F() to Host Actions strings

commit 360311f2320d6e5a94d17c6ff830146675be732e
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 17:05:11 2021 -0500

    🎨 Apply F() to status message

commit 433eedd50fb0b1da04a0153de483088c8de9295d
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 11:03:07 2021 -0500

    🎨 Apply F() to serial macros

commit 46c53f67307f78fc2a42a926a0b8f1f6db2d7ea9
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 21:11:31 2021 -0500

    🎨 Apply F() to G-code suite and queue

commit 2b9ae0cc33a1996cb6dd1092743d4a3123c1d4c1
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 18:43:52 2021 -0500

    🎨 Apply F() to G-code subcommands

commit 433a27e475584e73195a89d59ed5ecc20303d53d
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 18:22:37 2021 -0500

    🎨 Update F string declarations

commit 1de265ea5dd09ac4371add0b1bb9c1b595a3c385
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 00:24:41 2021 -0500

    🎨 Axis name string interpolation, with examples (#22879)

commit 854ce63358f409340863024edd38fb7d1499fd91
Author: Robby Candra <[email protected]>
Date:   Sun Dec 19 05:33:21 2021 +0700

    🐛 Fix loud_kill heater disable (#23314)

commit 170f77fada009bcd77b02edf7b5d55d5173b00e9
Author: lukrow80 <[email protected]>
Date:   Tue Nov 23 22:30:13 2021 +0100

    🐛 Fix homing current for extra axes (#23152)

    Followup to #19112

commit 72b99bf1ba24cb9124668b958039b32a164c68cd
Author: InsanityAutomation <[email protected]>
Date:   Sat Oct 9 19:13:19 2021 -0400

    🐛 Fix IDEX Duplication Mode Positioning (#22914)

    Fixing #22538

commit 1a8583f4fce492240db5d890825b8edd8217025f
Author: Robby Candra <[email protected]>
Date:   Wed Nov 24 04:19:32 2021 +0700

    🐛 Fix serial_data_available (#23160)

commit 49e8defda11c0c62098d86e4ced947468cd2f289
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 22:16:15 2021 -0500

    🔨 Move Creality 4.2.2 warning

commit e5c4e77eb06ca01ec062c32f96c0315e2666139a
Author: Sebastien BLAISOT <[email protected]>
Date:   Tue Nov 2 06:49:21 2021 +0100

    🐛 Fix NEOPIXEL2_SEPARATE default color (#23057)

commit 8dd3f38ae9ccdb051ed073a11dd9200b9d7e2ffe
Author: ellensp <[email protected]>
Date:   Tue Nov 2 12:34:53 2021 +1300

    🩹 Fill gaps in pinsDebug_list (#23051)

commit 044a7db370d278b91cea194d4a00d6e4c652c4a7
Author: ellensp <[email protected]>
Date:   Tue Nov 2 12:36:22 2021 +1300

    🐛 Fix Y_SERIAL_RX_PIN for FYSETC S6 (#23055)

commit 8cecc626c6a40e1667a10908042101248c5668dd
Author: Robby Candra <[email protected]>
Date:   Tue Nov 2 10:29:23 2021 +0700

    🎨 Fix redefine warnings (#23061)

commit ee26fd0e0559d7f2d86b11b5552eaf9c9ff3174c
Author: tombrazier <[email protected]>
Date:   Mon Oct 25 22:29:40 2021 +0100

    🚸 Default T0 for M569, M906, M913 (#23020)

commit a7ea6b59255ee5405b0118d78a5d7bdf69a8eb68
Author: ellensp <[email protected]>
Date:   Tue Oct 26 10:02:29 2021 +1300

    ⚡️ Add'l PCINTs for Mega Extended (#23019)

commit 2b8a804997b18c49126868f5301702e2bf8eeaa6
Author: Keith Bennett <[email protected]>
Date:   Sun Oct 24 23:14:02 2021 -0700

    ✨ Octopus Pro V1.0 with STM32F429ZGT6 (#23008)

commit 908335367edba11eff8e457c511482db8a36dfcf
Author: Keith Bennett <[email protected]>
Date:   Mon Oct 18 00:51:01 2021 -0700

    ✨  BTT Octopus Pro V1.0 (STM32F446ZET6) (#22971)

commit a7415a052ebf57c0a0a30cf97973b86c2065958d
Author: ellensp <[email protected]>
Date:   Mon Oct 25 19:12:07 2021 +1300

    🐛 Fix børken E_DUAL_STEPPER_DRIVERS (#23017)

commit f51e07b19636cbbfc9511073e41e5a98cd7c5625
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Oct 25 01:08:15 2021 -0500

    🐛 Fix Ender-3 V2 Enhanced SetFlow (#23016)

commit 5f35c539ce38a6d6715ce77005b387a0b87ac822
Author: Lefteris Garyfalakis <[email protected]>
Date:   Mon Oct 25 09:06:13 2021 +0300

    🚸 E3V2 Enhanced cosmetic fixes (#23009)

commit 59503c6bbbcea81dcbe3e5ffa9ac175a01e7a2dc
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 05:59:03 2021 -0500

    🎨 Apply F() to E3V2 titles, popups

commit 0309fce1fd12cfe0259f67f9d2381d08041ae525
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 25 01:39:48 2021 -0400

    ✨ Creality v2.4.S1 (Ender 7) board  (#23010)

commit f6d211f77941d2df03db9493c8ad6b39c511ee63
Author: Dennis <[email protected]>
Date:   Mon Oct 25 07:35:11 2021 +0200

    🐛 Fix JyersUI current positions (scaling) (#23005)

commit f179e25cc640135f968ffb12a12fdf4bd0b14212
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 24 23:32:34 2021 -0500

    🐛 More explicit allocation of solenoids

    In reference to #22887

commit 5b478cd5f6b6eae0343acbf169976f97b1ba5609
Author: tombrazier <[email protected]>
Date:   Fri Oct 22 21:56:05 2021 +0100

    🐛 Fix probe temp compensation maths (#23004)

commit e852732ea8e71d7e969520d0bcd4f242dc6755b2
Author: ellensp <[email protected]>
Date:   Fri Oct 22 17:57:30 2021 +1300

    🐛 Fix E3V2 width/height defines (#22994)

commit c9718e1ec0570a96bd104cd4bbefed57cc613d5d
Author: Augusto Zanellato <[email protected]>
Date:   Tue Oct 19 17:24:22 2021 +0200

    ✨ Eryone Ery32 mini (STM32F103VET6) board (#22956)

commit 30158424e993919b9a4d8fe4b14793df3affe7ff
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:53:34 2021 -0500

    🔨 Fix older GCC CXXFLAGS warning

commit 5f6d9e9f42d0cf5126f763e8a8f4f617cb8fcc8f
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:51:49 2021 -0500

    🎨 Fix pinsDebug_list warnings

commit b108741a8e2ba426f006a4c4bb562aa126eb400d
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 04:03:03 2021 -0500

    💡 Sub-include pins labels

commit b4904cc53e3a8a97fe8047ebe918bc8ea474e120
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 02:56:44 2021 -0500

    🔨 Delete after encrypt. Lerdge encrypt only once

commit 2c6fe45847e0ada1b873bbc302cce2c51325902b
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 02:49:35 2021 -0500

    🔨 Update 'pio vscode init' detection

commit fed72e4607b864d8048ae87b08063f0ac6f1eaed
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 11:17:36 2021 -0500

    🔨 Use pull_request_target for check-pr

commit c3a4e6b3c8b581ac458618507177eb81dfedd7a1
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 18 01:49:35 2021 -0500

    ✅ Warn about dummy thermistors

commit 5bfc5c10103c9f6067d8e1969d8a9c1f1384b9cd
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 18 02:03:01 2021 -0400

    Fix JyersUI ZOffset Multiplication (#22975)

commit 1112d66fefedafacf32027fd7b44f11b1546306d
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 18 02:01:28 2021 -0400

    Fix Tool Change Park (#22968)

commit 61b574f2cea9f23603a3c0250b6bd11934fa3d60
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 19:26:31 2021 -0500

    🔨 Improve 'mftest' error message

commit 522cdd52727383e9a2e4f0295b85ae6e2d94aacf
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 16:56:01 2021 -0500

    🔧 Safety feature warnings

commit 641bae625b659cc5eba13c20c174de5fff7caa98
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 15 15:07:47 2021 -0500

    💡 Update old gnu.org links

commit d10e20d6d2faaea04df81dca682290a2aa081fee
Author: InsanityAutomation <[email protected]>
Date:   Fri Oct 15 15:56:59 2021 -0400

    ✨ Add option EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN (#22960)

commit b18aa933d14f9761d74b19be79db64e21356c563
Author: ellensp <[email protected]>
Date:   Wed Oct 13 14:28:45 2021 +1300

    🐛 Fix G33 homing current (#22909)

commit 0f519ebf854cdb0fd3d00828ca7a4b4d09c8d610
Author: mks-viva <[email protected]>
Date:   Tue Oct 12 20:01:18 2021 -0500

    ✨ MKS Eagle (STM32F407VET6) board (#22897)

commit 031f17b4f3dfca4a66384d40ce48b7d33315c75a
Author: Minims <[email protected]>
Date:   Sun Oct 10 01:10:21 2021 +0200

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

commit 036f763eaaff571f07c7829e0f5a61b645e86269
Author: ellensp <[email protected]>
Date:   Thu Oct 7 09:42:59 2021 +1300

    🎨 Define Octopus allocated endstop pins (#22882)

    Co-authored-by: Scott Lahteine <[email protected]>

commit d137f307ebea8c8832ecbef239ed08e188c5369b
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 22:19:05 2021 -0500

    🎨 Tweak FORCE_INLINE

commit 66048a5f27aa3ad9ecb2b407ada13fb87e86ebe9
Author: Mark <[email protected]>
Date:   Tue Oct 5 12:23:02 2021 +0800

    ✨ ESP32 Panda_ZHU and Panda_M4 (#22644)

commit b8c32e24d86fff280621ab3f274511dd30669b93
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 02:33:14 2021 -0500

    🎨 Rename MarlinUI::zoffset_overlay

commit 99d51af90facd02365d0ae91091303d7879f304d
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 5 21:35:31 2021 -0500

    🔨 Port libsdl2_net required for macOS simulator

commit f47ece0725d93cde7fde52b66d14b5ec551c46c2
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 19:06:39 2021 -0700

    🐛 Fix MKS Robin Pro 1.0 LCD reset pin (#22937)

commit 975089a954460b10279bdbf60f08c9604c4f7d08
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 19:05:37 2021 -0700

    🔧 Remove obsolete G34 sanity check (#22929)

commit 995230f5971995e41b97d14273f2dd3693ead6be
Author: George Fu <[email protected]>
Date:   Wed Oct 13 09:32:54 2021 +0800

    🐛 Fix FYSETC Cheetah v2.0 build (#22926)

commit adf7072fa846312d473a993ffc62ec3082b37c46
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 18:26:42 2021 -0700

    🐛 Fix SKR Mini E3 V2 I2C-based EEPROM (#22919)

    Followup to #20609

commit 40cb7cf8d6e31cf768a946e3248618256c021fb6
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 18:58:20 2021 -0500

    🔨 Add 'opt_find' to find matching options

commit d0c0630c1f91cb43dc23c1ed9e4c166d284785eb
Author: ellensp <[email protected]>
Date:   Mon Oct 4 19:12:19 2021 +1300

    🩹 Fix EXTRUDER 0 compile warning (#22868)

commit 11c829fb28a4fdc37ae86e6ac674589331f0712d
Author: Sebastien Andrivet <[email protected]>
Date:   Mon Oct 4 08:06:49 2021 +0200

    🐛 Fix ExtUI Pause messages (#22874)

commit e0dda615012a99e1ad591972b4bbc5238e7361a9
Author: ellensp <[email protected]>
Date:   Mon Oct 4 18:25:45 2021 +1300

    🐛 Fix Arduino IDE compile error (#22877)

commit a185ce22cf6e4fb15250815c5c39318606a7e65a
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 22:08:11 2021 -0500

    Marlin 2.0.9.2

commit 2a4ee1a482278abb830c0f5180bfa7571c00c9f7
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 21:54:07 2021 -0500

    MKS Robin pins updates

commit 3a82b8a25195f448018e7a2267d9916814434c65
Author: Cytown <[email protected]>
Date:   Sat Jun 26 03:50:09 2021 +0800

    🎨 Power-off tone followup (#22222)

commit 765b2b43f6ea80920a3eb85be64f77ed8fe9dcbd
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 21:51:52 2021 -0500

    🎨 FTDI Eve Touch UI spinner enqueue string

commit 2e602b9b88e75a261d8d1a71c0857ce47f5e92fa
Author: Steven Haigh <[email protected]>
Date:   Thu Sep 30 02:22:46 2021 +1000

    🚑️ Fix DWIN_CompletedLeveling (#22851)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d3e75905d9316853462321bac7b43f635366768
Author: Malderin <[email protected]>
Date:   Wed Sep 29 04:20:03 2021 +0300

    🐛 E3V2 Mesh Viewer followup (#22850)

commit eacb660e4b1008245361d8db6054ef30ccf031fa
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 02:39:11 2021 -0500

    🎨 Condense reverse-protection code

commit 021ceeba0b0ccadd7246d5e2da56df7868349206
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 01:07:51 2021 -0500

    ⚡️ Handle shared enable pins (#22824)

commit 25a131b9421c81245e1d9094fc85476349baf941
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Sep 27 14:47:47 2021 -0500

    ✨ E3V2 (Enhanced) Mesh Viewer (#22844)

commit b4c025a451580cdc15f9506e923c4ffe5afdde90
Author: Sola <[email protected]>
Date:   Tue Sep 28 03:08:29 2021 +0800

    🚸 Fix MKS LVGL UI temperature set interface (#22848, #22842)

commit 604a01cd1a87850a5fe2fde1a204a9c313863db3
Author: espr14 <[email protected]>
Date:   Mon Sep 27 21:05:52 2021 +0200

    🎨 steps_to_mm => mm_per_step (#22847)

commit 064f91e9b0e71b55dda7dea86881863190c37516
Author: Tanguy Pruvot <[email protected]>
Date:   Mon Sep 27 21:01:47 2021 +0200

    🚸 TFT backlight PWM / brightness (#22841)

commit 34c9f649252f173b9c046dcab56d86e0526ed163
Author: ellensp <[email protected]>
Date:   Tue Sep 28 04:17:00 2021 +1300

    🔧 Sanity-check BLTOUCH_SET_5V_MODE on 5V pins (#22840)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 060b705dab5ad7eaf0f1babd6113d5908b485db9
Author: Giuliano Zaro <[email protected]>
Date:   Sun Sep 26 04:59:29 2021 +0200

    🩹 Fix M412_report formatting (#22834)

commit 262cd757fc4b91592932d4335878bc0aaf45af20
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 02:27:07 2021 -0500

    🎨 Updated string macros

commit dc4d2165f2175a5f0f2e492b3a4f3f4cecf15ead
Author: Steve Wills <[email protected]>
Date:   Fri Sep 24 22:12:43 2021 -0400

    🐛 Add 'static' to fix 'duplicates' (#22826)

commit bcd2a483da49030ae5f1837474c95b027f915340
Author: Manuel McLure <[email protected]>
Date:   Fri Sep 24 19:08:07 2021 -0700

    🐛 Fix M420 / M851 reports (#22829)

    Followup to 79c72ed821

commit d338872e8571e45c961d768b1d5068bff20e9daf
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 11:09:43 2021 -0500

    🐛 Fix reset_hotend_offsets

commit 2c30b75268a0cb7791c00b91579db6ab42b3dd28
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 10:01:37 2021 -0500

    🎨 Various multi-axis patches (#22823)

commit 3deb54d0fde6bb84310e78ce3b70296041552af1
Author: Sola <[email protected]>
Date:   Thu Sep 23 15:53:48 2021 +0800

    ⚡️ Improve LVGL touch driver (#22817)

commit 9ae6351a026d9b91813e8f1c3e7749e7f8cab790
Author: ellensp <[email protected]>
Date:   Thu Sep 23 18:58:52 2021 +1200

    🐛 Fix anycubic_i3mega_lcd debug macros (#22820)

commit b7f95dc8d4903122db3692fc7540a593983f1af1
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 00:51:35 2021 -0500

    🩹 Add MarlinSPI to more HALs

commit 99647fa9403ef3c9f419000cb0be6667105f8aaf
Author: Scott Lahteine <[email protected]>
Date:   Wed Sep 22 00:19:26 2021 -0500

    🎨 Less use of undef for RAMPS pins

commit ea3df942137362e6916b51f8152389f1d6ac3415
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 21 06:25:13 2021 -0500

    🎨 Fix L64xx enable, clean up conditionals

commit a37580e4e837b1de576a7b529f56d225fa6a6dde
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 20 18:44:35 2021 -0500

    🩹 Remove extra #include, misc. style

commit b3fd03198af688bbd7b3d74500c441007bcf890d
Author: Dan Royer <[email protected]>
Date:   Mon Sep 20 13:42:33 2021 -0700

    ✨ Polargraph / Makelangelo kinematics (#22790)

commit 71b8a22d96735791789aeceed4877b2f1edfdb3d
Author: Lefteris Garyfalakis <[email protected]>
Date:   Mon Sep 20 03:26:46 2021 +0300

    🌐 Update Greek language (#22799)

commit 669b68497cc0194fb963dfe8066e556f6ada03e4
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 19:25:01 2021 -0500

    🌐 Skip non-essential translations

commit 6014dd9c7b06917a251506afcf9acf11a54c26a6
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 21 02:42:01 2021 -0500

    🔨 Improve pins_set script

commit 5a54ba8316357c8bc4233bede1b29d5f62521fd0
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 18:58:12 2021 -0500

    🔨 Case-insensitive tests list

commit be8e8260e2969ce80a1ff51a39deed23aba0e6d1
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 18:40:56 2021 -0500

    🌐 Reduce language file sizes

commit 5d8ca7c9445dac3d8bb52eafd9c45826e9c3387b
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Sep 19 05:16:29 2021 +0200

    🐛 STM32 ADC followup (#22798)

commit 0e8e215d4e173e6d742b6aa198859e1a6cf50089
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Sep 19 01:27:58 2021 +0200

    🚸 Wake up TFT for some events (#22788)

commit 6cf95509cd1483b52076322679e2426550fdf1df
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 18 18:24:39 2021 -0500

    🎨 Replace some infrequently-used macros

commit ded719cc1481c8b67a4015a0077294ba7640d20d
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 18 18:22:15 2021 -0500

    📝 Update some pins comments

commit 2630eefcc462b200c7bf748735387e7b055f300e
Author: Steven Haigh <[email protected]>
Date:   Sat Sep 18 16:33:18 2021 +1000

    🐛 STM32 ADC Resolution = 12 bit (or ADC_RESOLUTION) (#22789)

commit 2b54a9c0ff0351f92b7e835f7c8dafe6f9cc5390
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 17 19:09:54 2021 -0500

    🚸 Move fade item up

commit bb1eb39ecbe2edfecb171b3e4f689b0413c5bf60
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 12 17:08:57 2021 -0500

    🚸 Better bed position

commit 8b818f4ae561d6ef1ba708a78cc0ed5cb5054358
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 17 18:58:55 2021 -0500

    💬 Add non-translated STR_DONE

commit 4d113c2efd1e17171b87f46053fb574842832a96
Author: Sola <[email protected]>
Date:   Thu Sep 16 19:48:24 2021 +0800

    🚸 Fix and improve MKS LVGL UI (#22783)

    Co-authored-by: makerbase <[email protected]>
    Co-authored-by: MKS-Sean <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit ab9609146f903a6490b0658405ba2b19199a99b6
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 16 04:36:26 2021 -0500

    💡 Adjust headers, formatting

commit e7a25a45e6199118cb5d56a7d5fede82c3be31d7
Author: InsanityAutomation <[email protected]>
Date:   Thu Sep 16 03:46:16 2021 -0400

    ✨ Improve pause/filament change for ExtUI (#22655)

commit 023eaabc1ced8ff6daa52a6e1904bf68935254ae
Author: Scott Lahteine <[email protected]>
Date:   Wed Sep 15 21:12:39 2021 -0500

    🔧 Add MANUAL_FEEDRATE sanity-check

commit 03d7fbd755899d2ad549498f88f5376fe0cb60ae
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 16 01:15:01 2021 -0500

    🎨 Handle more pre-defined pins in pins_postprocess (#22771)

commit 89898181bd2e92b420228021c12308fdb4314221
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat Sep 25 05:59:43 2021 -0500

    🐛 E3V2 Brightness followup (#22821)

    Co-authored-by: Scott Lahteine <[email protected]>

commit e705a7724eace3970a1792933e1f614d07cc2667
Author: Scott Lahteine <[email protected]>
Date:   Wed Sep 15 19:48:29 2021 -0500

    🎨 Consolidate Ender-3 V2 DWIN common code (#22778)

commit 5b593da04d6f87e79ee99430ed6d15a5e9e0d799
Author: Keith Bennett <[email protected]>
Date:   Wed Sep 15 13:51:52 2021 -0700

    ✏️ Fix TFT field names (#22776)

commit 9c…
DalBartos added a commit to DalBartos/Marlin that referenced this pull request Mar 5, 2022
commit b9cef2e2e3ec4131d785c084e658e669f59b28ce
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 4 15:18:27 2022 -0600

    🚸 12345.6 num-to-string

commit 186d2ba6b4420b41ae977cad4028a37b57030ceb
Author: ellensp <[email protected]>
Date:   Fri Feb 18 13:37:22 2022 +1300

    🐛 Fix HAS_TMC26X feature path (#23757)

commit 4dfd398d7ddc32e61457989d4156418c57c6e5d7
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 17 14:41:56 2022 -0600

    🐛 Patch Creality RAMPS FET / FAN pins

    Improvement for multi-hotend setup by TH3D.

commit bfdb7c71358bb787a6b8d2a9e4948ad19fac93db
Author: Giuseppe499 <[email protected]>
Date:   Tue Feb 15 20:21:05 2022 +0100

    🐛 Fix XATC divide-by-zero (#23743)

commit bf067738f2faea96717b3810efb001348dba9bfa
Author: Mads Ynddal <[email protected]>
Date:   Thu Feb 10 18:58:36 2022 +0100

    🐛 Fix XYZEval::set(XY, Z) and (XY, Z, E) (#23704)

    Fix regression in #21953

    Co-authored-by: Scott Lahteine <[email protected]>

commit e028a3c44194518aa9fab1148a102f12407bf0f9
Author: Maeyanie <[email protected]>
Date:   Tue Feb 1 18:27:14 2022 -0500

    🐛 Fix M852 report (#23660)

commit 9847470b387c43b16713f5854b2dfd7b334bd31e
Author: Timothy Hoogland <[email protected]>
Date:   Mon Jan 31 14:02:07 2022 -0600

    🐛 Fix EZBoard V2 Environment for OpenBLT (#23659)

commit 51209667a5dae1206ed38b8966c1783f7a41e466
Author: Timothy Hoogland <[email protected]>
Date:   Sun Jan 30 05:26:37 2022 -0600

    🐛 Fix EZBoard V2 timer conflict (#23648)

commit db4172b5fa05e818f42427001398db5f13d13024
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 16 00:54:53 2022 -0600

    🔨 Prevent two [cron] in a row

commit 242192d03de4af3dcd208dbcc4c1d609a25bce64
Author: Jim Watson <[email protected]>
Date:   Wed Jan 12 16:13:21 2022 +0000

    🐛 Fix SHOW_REMAINING_TIME compile (#23503)

commit 7135c3b1854b6988dfb4c27a10438b2e283f17b5
Author: ellensp <[email protected]>
Date:   Thu Jan 13 04:57:36 2022 +1300

    🚑️ Fix M105 regression (#23505)

    Fixes #23504

commit c91d033b5d398d704036125bfddb6c3c59c18b57
Author: ellensp <[email protected]>
Date:   Thu Jan 13 04:53:36 2022 +1300

    🐛 Fix Arduino build issues (#23510)

commit 0470fbe0a1751da06a3a407f9816fe5f589b48df
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:41:51 2022 -0600

    🧑‍💻 Move PB0 init for MKS_ROBIN_NANO

commit eb8d8193253bf3349ed415eb45122ba9f3f52850
Author: Scott Lahteine <[email protected]>
Date:   Mon Jan 10 02:51:34 2022 -0600

    🧑‍💻 Fewer string macros

commit 41f80a449822934df5d874b9cd66df1fd521a121
Author: DerAndere <[email protected]>
Date:   Mon Jan 10 09:44:16 2022 +0100

    🚸 Include extra axes in position report (#23490)

commit e0f75d4f069b80ec78ee911377861aa5e77f2a14
Author: David Ross Smith <[email protected]>
Date:   Fri Jan 7 22:44:44 2022 +1100

    🚑️ Fix preheat target bug

    Fixes Jyers/Marlin#1651

commit 42449b86838ac727eb9c261601f206f1b1f2afcb
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 9 04:39:15 2022 -0600

    🌐 Update auto home axis strings

commit e23c696566a2148e41ff6e019b3b5a182df7de20
Author: Roman Moravčík <[email protected]>
Date:   Sun Jan 9 10:51:16 2022 +0100

    🌐 Update Slovak language (#23475)

commit 035f9b8e134b340403a75723119eb791d65fea92
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 9 03:48:17 2022 -0600

    🔨 Rename (not copy) with board_build.rename

commit 49f8171f7a541a8b321e1fb3aa3510cfa8eb31d7
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sun Jan 9 03:37:09 2022 -0500

    🚸 BLTouch HS menu item for DWIN Enhanced UI (#23480)

commit 75d0e94d5b3d29abc2d450a5369031b9b396c14c
Author: ClockeNessMnstr <[email protected]>
Date:   Sat Jan 8 15:09:25 2022 -0500

    🚸 Do G34 "Z Backoff" at full current

commit 915f610782df36ef241b8c207ea799d8b206aa15
Author: jdegenstein <[email protected]>
Date:   Thu Jan 6 19:03:02 2022 -0600

    📌 LCD_FOR_MELZI for BTT E3 RRF (#23453)

commit 2231e00b2c1acd53449ece7a22f131e40216da8f
Author: Lefteris Garyfalakis <[email protected]>
Date:   Thu Jan 6 13:30:41 2022 +0200

    🌐 Localize E3V2 Enhanced UI (#23424)

commit 63f2b153967218a15355eb0a179dca579a3d1269
Author: Anson Liu <[email protected]>
Date:   Thu Jan 6 06:26:12 2022 -0500

    📺 Tune ULTI_CONTROLLER encoder, enable PCA9632 (#23461)

commit f503722c4556631745f35b9ae86d6d3c0c112a77
Author: Kyle Hu <[email protected]>
Date:   Thu Jan 6 15:54:04 2022 +0800

    🐛 Fix Artillery Ruby (startup code, build flags) (#23446)

commit 4fd1de7fb7185728d357a155c86fafe438398e78
Author: Mike La Spina <[email protected]>
Date:   Wed Jan 5 06:14:40 2022 -0600

    🐛 Define required endstop enums (#23425)

commit 93126c0d0259dcabb09ab26cb237dacb4699cb7e
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 5 01:48:18 2022 -0600

    🔨 Strip CR in mftest > awk

commit 80f77ea807f28086f143457d0c4bb7e8065906c6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 5 01:52:02 2022 -0600

    🐛 Fix strlen_P parameter error

    Fixes #23447

commit 9ff8220b8a455e6d1273fb7ecd5bd868904ebe70
Author: Scott Lahteine <[email protected]>
Date:   Mon Jan 3 09:18:10 2022 -0600

    🩹 Fix RADDS+RRD encoder button

commit 775486028921d675bda4ea57e4fff4e7a6717c26
Author: hwmland <[email protected]>
Date:   Mon Jan 3 06:54:12 2022 +0100

    🩹 RAMPS FET order overridable, E + Laser (#23428)

commit 4efe4788afb6846aa4a17851a838e295f8375940
Author: Jason Smith <[email protected]>
Date:   Sun Jan 2 21:27:22 2022 -0800

    ⬆️ Assert newer GCC in PIO via atmelavr@~3.4 (#23432)

commit 2faf4e2a99d513bed690c910d3c448d14d3c9df3
Author: Jason Smith <[email protected]>
Date:   Sun Jan 2 19:17:19 2022 -0800

    💚 Fix Teensy CI test (#23433)

commit 9956e6267474c915c649ea3ad5d58791ac6e6fdc
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 2 09:22:36 2022 -0600

    🧑‍💻 Apply axis conditionals

commit a732427329e81be0cf9a7d10b38d52722a27af8e
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 2 09:22:06 2022 -0600

    🚨 Fix M906 warning

commit 974883d2f6e4484dfb19e17e2d216740f166dd45
Author: Mike La Spina <[email protected]>
Date:   Sun Jan 2 02:23:55 2022 -0600

    🔧 Normal FET layout with Spindle/Laser (#23409)

commit 1170ed995e1e92737ff4df2147f0e714d5c568cb
Author: Jason Smith <[email protected]>
Date:   Sun Jan 2 00:19:10 2022 -0800

    🔧 Update deprecated auto_build.py (#23427)

commit 24f9c3a777a95dbc1854bd2b25a85770895f20fb
Author: Johannes Hörmann <[email protected]>
Date:   Sun Jan 2 06:46:55 2022 +0100

    🔨 Upload to Optiboot at 115200 (#23403)

commit 5ec384f40caf16c2e92e992e83d70e243abaa786
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 22:54:27 2022 -0600

    ✨ M919 : Chopper Timing (#23400)

commit 6d7ffa6add0b2a845bfe548f8597ad9b5b39b974
Author: Jason Smith <[email protected]>
Date:   Fri Dec 31 12:32:28 2021 -0800

    🔧 Only warn about enabled CONFIGURATION_EMBEDDING (#23408)

commit dadd7516b5b7e56a379f838e76fd4a1c9fa547c6
Author: Scott Lahteine <[email protected]>
Date:   Fri Dec 31 07:42:07 2021 -0600

    🚑️ Fix thermal conditionals, structure

commit f99732ba752e792bffd25ece8c72bc547a23b24e
Author: Robby Candra <[email protected]>
Date:   Fri Dec 31 15:22:49 2021 +0700

    🔧 DWIN_MARLINUI sanity checks (#23399)

commit 5a9635aa586a41966f95966f412297fff4757ff7
Author: Scott Lahteine <[email protected]>
Date:   Wed Dec 29 04:17:41 2021 -0600

    🩺 Assert FAN_SOFT_PWM where required (#23383, #23477)

commit 1552c6d2a5713075d01b98036a6fe7fb6ad9c827
Author: Lefteris Garyfalakis <[email protected]>
Date:   Wed Dec 29 05:22:01 2021 +0200

    🎨 E3V2 corner leveling => tramming (#23375)

commit 06c2ed3c996965b79520d733b668d08437ab5468
Author: Miguel Risco-Castillo <[email protected]>
Date:   Tue Dec 28 00:23:50 2021 -0500

    🚸 DWIN Enhanced improve, fix, and extend (#23240)

    - Offset icon change to show mesh leveling status
    - Reset extruder position when enter to Move menu
    - New live end-stop diagnostic page
    - Editable firmware retracts settings for Tune and filament settings menu
    - Print Statistics page accessible from the Advanced Settings menu
    - Reset printer draws the boot image
    - Adds individual axes homing menu
    - Adds probe deploy/stow to Probe Settings menu
    - Updates lock screen
    - Rebuilds main buttons to support text caption in other languages
    - Increases probe offset limits to 60 mm
    - Fix M303 PID variable update
    - Fix Resume/Pause button update
    - Fix redraw of print done
    - Fix very large file name bug
    - Fix bug in bed manual leveling

commit 430c5da54c46c03c67afe53cf325880e27e93b89
Author: Scott Lahteine <[email protected]>
Date:   Tue Dec 28 18:29:05 2021 -0600

    🚚 Rename L6470 G-code file

commit 5b9f3bd4b1079244cc88a68587398bfcc600eeef
Author: Scott Lahteine <[email protected]>
Date:   Tue Dec 28 02:57:24 2021 -0600

    🧑‍💻 Remove extraneous 'inline' hints

commit ccc66a8528a8ae318692c0c9a8032a9d3bfc7e37
Author: Scott Lahteine <[email protected]>
Date:   Tue Dec 21 22:15:48 2021 -0600

    🎨 Misc. cleanup

commit 8abe314b180b472c53968a7347018fd0803a09cb
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 9 01:06:19 2022 -0600

    🔨 Get FIRMWARE_BIN from env

commit dc470eb10f3141187abc89c29e665e32756af03b
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sun Jan 9 02:29:36 2022 -0500

    🐛 Fix EEPROM_INIT_NOW build hash test (#23479)

commit 4c5e57ae89dcc4cf04d0893e435c2b45e6c3237a
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sun Jan 9 02:24:56 2022 -0500

    🩹 Reset DWIN CrealityUI print progress on start (#23481)

commit 5d7328df469053240eeae32426d0669977f94119
Author: Scott Lahteine <[email protected]>
Date:   Tue Dec 28 05:02:40 2021 -0600

    🧑‍💻 Add AXIS_COLLISION to catch broken parameters

    \

commit 99c237e05e5090d56ef22961b0af4b7858a4af47
Author: Scott Lahteine <[email protected]>
Date:   Tue Dec 28 05:43:10 2021 -0600

    🚸 Refine stepper-driver-related G-codes (#23372)

commit 56adbc3ebf3ccb5ac1df1fd40620002a2c405e51
Author: Scott Lahteine <[email protected]>
Date:   Mon Dec 27 20:52:43 2021 -0600

    📝 Consistent pin header orientation

commit 4cfe812c1816345c468769a1cf19ada39fb99fd2
Author: Scott Lahteine <[email protected]>
Date:   Mon Dec 27 17:40:53 2021 -0600

    📌 Define MKS Monster8 pins for MKS_MINI_12864

    Fixes #23324

commit 27d2471ea3f2bfb9b3b00028cc165d44a5b4e429
Author: Scott Lahteine <[email protected]>
Date:   Mon Dec 27 14:28:59 2021 -0600

    🐛 Fix mffp usage

commit 61b9248c35113943ff299bfb647ff1bf0f48fff8
Author: Scott Lahteine <[email protected]>
Date:   Sun Dec 26 03:20:29 2021 -0600

    🎨 Pins and SDIO cleanup

commit c9561a88261afd14d9c013d2096e14e319c363a5
Author: EvilGremlin <[email protected]>
Date:   Sun Dec 26 09:46:13 2021 +0300

    🔧 Check Chiron LCD requirements (#23353)

    Co-Authored-By: EvilGremlin <[email protected]>

commit 58c84f17baa2f8291b475854d19e9f117a60bcb1
Author: Scott Lahteine <[email protected]>
Date:   Wed Dec 29 03:41:28 2021 -0600

    🎨 Simplify some debug echos

commit 73b8320e9caac23873169c8e10344f2f8060b389
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 20:01:24 2022 -0600

    🔨 Add .vscode/extensions.json

commit 1c3f2498b1c47dcaf1f15f2058c90d7107c87311
Author: ellensp <[email protected]>
Date:   Thu Dec 30 20:35:22 2021 +1300

    🐛 Fix RRW Keypad & Zonestar buttons (#23388)

commit 4202baa409f7b8a5ef22ef3541216919462205b0
Author: GHGiampy <[email protected]>
Date:   Thu Dec 30 05:37:07 2021 +0100

    🩹 Fix Enhanced UI max E speed (#23387)

commit f471eab1a2834c4e65477d978ea9f0349542b302
Author: Scott Lahteine <[email protected]>
Date:   Sat Dec 25 22:13:20 2021 -0600

    🔖 Marlin 2.0.9.3

commit 9b13ae239953df3b00ad18a241e001723c3f4756
Author: Keith Bennett <[email protected]>
Date:   Sat Dec 25 19:41:01 2021 -0800

    🐛 Fix MKS Robin E3 NeoPixel pin default (#23350)

commit 06f36dc7467f0053767f307a18933df556074d99
Author: kaidegit <[email protected]>
Date:   Sun Dec 26 10:12:20 2021 +0800

    🐛 Fix open for bin rename (#23351)

commit 98eca9cb23084f0c21ae85b382e6f473eb40ebbf
Author: Scott Lahteine <[email protected]>
Date:   Sat Dec 25 03:27:45 2021 -0600

    🔧 Move MOTHERBOARD closer to top

commit 626879500388c4a203022c5fc03c32d5a8281348
Author: fflosi <[email protected]>
Date:   Sat Dec 25 05:57:07 2021 -0300

    ✨ Per-axis TMC hold multiplier (#23345)

commit b4f0922a7caea03b3c3315d48d86109bcc84c4be
Author: Sola <[email protected]>
Date:   Fri Dec 24 14:03:32 2021 +0800

    ✨ MKS TinyBee board support (#23340)

    Co-Authored-By: Sola <[email protected]>

commit aef613acd394d72d17cda8b431bcfcc2165c9608
Author: Robby Candra <[email protected]>
Date:   Thu Dec 23 15:19:39 2021 +0700

    🔧 Group FAST_PWM_FAN.options (#23331)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 9ecfa1d2528a57eaa71a25acaac3e87fb45e0eb1
Author: InsanityAutomation <[email protected]>
Date:   Tue Dec 21 23:09:55 2021 -0500

    ✨ BLTouch High Speed mode runtime configuration (#22916, #23337)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit e0bed1e344946154cc94cb58fbca281b360ee4a9
Author: ellensp <[email protected]>
Date:   Wed Dec 22 15:44:04 2021 +1300

    ✨ Option to reset EEPROM on first run (#23276)

    Co-authored-by: Scott Lahteine <[email protected]>

commit d21fa25ab8c369ff800e0451c75fe9f9e6134878
Author: Spencer Owen <[email protected]>
Date:   Sat Dec 18 18:58:46 2021 -0700

    ✨ Creality3D V4.2.3 / Ender-2 Pro board (#23307)

commit 0dc1a58b241217899c88945ea8f6f8dc8f39470e
Author: X-Ryl669 <[email protected]>
Date:   Tue Dec 14 07:22:06 2021 +0100

    ✨ Configurations embed and retrieve (#21321, #23303)

commit f2ca70e2328c3158d54c302dca310bf2ed5d465d
Author: John Lagonikas <[email protected]>
Date:   Wed Dec 8 20:55:09 2021 +0200

    🐛 Fix and improve MAX31865 (#23215)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a6bed228391afe290e8fe4181f624f21dd461b73
Author: BigTreeTech <[email protected]>
Date:   Sat Dec 11 03:38:03 2021 +0800

    ✨ BigTreeTech SKR mini E3 V3.0 (STM32G0B1RET6) (#23283)

commit efd67cf80d1eebd1470bd7c8b822e9103d70e778
Author: Giuseppe499 <[email protected]>
Date:   Tue Dec 7 02:53:51 2021 +0100

    ✨ X Twist Compensation & Calibration (#23238)

commit 15204470a8da2b579dab029cf8bdf6038914e462
Author: ladismrkolj <[email protected]>
Date:   Sun Dec 5 22:41:39 2021 +0100

    🔧 Chamber Fan index option (#23262)

commit 48358d6a5c4eccb4dd1b4d141c38cf45304b4df7
Author: Mike La Spina <[email protected]>
Date:   Fri Dec 3 12:48:48 2021 -0600

    🏗️ Fix Maple HAL/STM32F1 PWM (#23211)

commit d7abb891cd91ef991234784a0b707346ac34e53a
Author: Tanguy Pruvot <[email protected]>
Date:   Fri Dec 3 19:31:48 2021 +0100

    🏗️ Rework STM32 timer frequency protection (#23187)

commit 52a44eb200b8e14d7738565f50888d34cc5200f0
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 30 15:04:05 2021 -0600

    🐛 Fix STM32 FastPWM

commit 9b1c0a75e18faf754a55ec324ac327ba2a25819f
Author: Scott Lahteine <[email protected]>
Date:   Sat Nov 27 18:33:32 2021 -0600

    🎨 Rename HAL timer elements

commit d75e7784e50dad2b9f598ef559958e9015e64550
Author: schmttc <[email protected]>
Date:   Wed Nov 24 08:52:18 2021 +1100

    ✨ EasyThreeD ET4000+ board and UI (#23080)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e60c8b7e04a6cd2758108bcc80f2ab57deec23c
Author: John Robertson <[email protected]>
Date:   Tue Nov 23 21:24:24 2021 +0000

    ✨ MarkForged YX kinematics (#23163)

commit 018c7b1cf4d3b2b54287f61b478e813041c1c661
Author: Keith Bennett <[email protected]>
Date:   Sun Nov 21 11:25:06 2021 -0800

    ✨ BigTreeTech Mini 12864 V1.0 (#23130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit af1d603374a34cfc2d8b34fce269a0a6683d7c68
Author: Giuliano Zaro <[email protected]>
Date:   Tue Nov 23 21:01:53 2021 +0100

    ✨ Fan tachometer support (#23086, #23180, #23199)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 884308f964ddb92c1371bc9ec96e587ef04336e0
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 16 08:54:30 2021 -0600

    🔧 SOUND_MENU_ITEM for E3V2

commit 7269990413a630b134f3e990fe188c522659dca9
Author: Miguel Risco-Castillo <[email protected]>
Date:   Wed Nov 10 11:31:35 2021 -0500

    🚸 Expose sub-options for E3V2 Enhanced (#23099)

commit 2a90d93b17c1014f6a29b0ecc015c7fbc469fbdc
Author: Keith Bennett <[email protected]>
Date:   Wed Nov 17 09:33:42 2021 -0800

    📌 Overridable probe-related pins (#23107)

commit 6e284f882388d314517544b6c2e46f7cff7c99e8
Author: BigTreeTech <[email protected]>
Date:   Wed Nov 10 23:56:10 2021 +0800

    ✨ Support for BIQU B1-SE-Plus strain gauge probe (#23101)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a2349fc411321ae4ff2bb286af04bb7543963c72
Author: Scott Lahteine <[email protected]>
Date:   Fri Dec 24 23:47:52 2021 -0600

    🔨 Configurable firmware bin filename

    Configuration.h > FIRMWARE_BIN

commit a3964b2b40f97507edb7b25ea4c47b37db2a1aaa
Author: Scott Lahteine <[email protected]>
Date:   Fri Dec 24 20:59:28 2021 -0600

    🔨 Ignore more generated files

commit 226ee7c1f3e1b8f88759a1dc49f329ab9afb3270
Author: Scott Lahteine <[email protected]>
Date:   Fri Dec 24 01:46:51 2021 -0600

    🔧 Sanity check MMU2_MENUS

commit 2c12171f46488a31cb5d4d78868892ad2918e298
Author: Attila BODY <[email protected]>
Date:   Fri Dec 24 06:57:20 2021 +0100

    🐛 Fix Robin Nano v3 filament runout pins (#23344)

    Co-authored-by: Scott Lahteine <[email protected]>

commit d034a9c295c787ee06c76d65ce61f34cb9f0a795
Author: MrAlvin <[email protected]>
Date:   Thu Dec 23 10:47:52 2021 +0100

    🚸 Show mm'ss during first hour (#23335)

    Co-authored-by: Scott Lahteine <[email protected]>

commit d2c7104bb37ca7e10622dfe1e1f0a6e5c3d23240
Author: Robby Candra <[email protected]>
Date:   Wed Dec 15 07:51:19 2021 +0700

    🚸 Change "SD" to "Media" or "SD/FD" (#23297)

commit 570c7e86380adb2071a94a433dc6babf6c8f9e32
Author: ellensp <[email protected]>
Date:   Wed Dec 22 13:48:38 2021 +1300

    🐛 Fix Chitu Z_STOP_PIN (#23330)

commit cc4578a3d33b67268d26255139eceff1c805ec52
Author: Tanguy Pruvot <[email protected]>
Date:   Thu Dec 23 07:49:15 2021 +0100

    🩹 Fix settings G21 report (#23338)

commit 1db84be66aee65ca120b6f9d3203ac0e19699c30
Author: Mike La Spina <[email protected]>
Date:   Tue Dec 21 01:26:31 2021 -0600

    🚑️ FAST_PWM_FAN default 1KHz base freq. (#23326)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 77c9668fe2b897ee142539a0124f359fcb8de070
Author: ellensp <[email protected]>
Date:   Tue Dec 14 19:25:28 2021 +1300

    🐛 Fix LCD_BED_LEVELING compile (#23298)

commit 22cf9b444e9185ef173ebf145f3bb9207d266ec4
Author: GHGiampy <[email protected]>
Date:   Mon Dec 20 09:44:43 2021 +0100

    🧑‍💻 Option allowing > 127 Neopixels (#23322)

commit 97798d1e47d2211827cccadc31f61b59e0e9e667
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 8 01:33:49 2021 -0500

    🎨 Update SKR V2 pins

commit f4b808456ac5b2ce55329a2ad8db00b6cc9510cb
Author: Giuliano Zaro <[email protected]>
Date:   Tue Dec 14 01:47:57 2021 +0100

    🚸 Use M600 for disabled MMU (#21865)

commit 62647369681c3449c7f3ee31d4f4d2da6f3ada9c
Author: Tanguy Pruvot <[email protected]>
Date:   Tue Dec 14 01:41:21 2021 +0100

    🐛 Fix TFT_COLOR_UI Release Media issue (#23123)

commit 7a5f103bcf6c3387ab832d64244e252a16e230a6
Author: John Lagonikas <[email protected]>
Date:   Sat Dec 18 01:31:10 2021 +0200

    🔧 Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)

commit 1a8307b196ce5ed791b8f9bf8acfb50a797e45a9
Author: Scott Lahteine <[email protected]>
Date:   Sat Dec 18 17:38:29 2021 -0600

    📝 Fix a config comment

commit 13a1c86ae832274026e8b3a4031bc28a6fca2db9
Author: ellensp <[email protected]>
Date:   Tue Dec 14 13:18:24 2021 +1300

    ✨ M115 flag EXTENDED_M20 (#22941)

commit 15656201d281842b9f9101133529a76738b76cdd
Author: ellensp <[email protected]>
Date:   Tue Dec 14 13:13:34 2021 +1300

    ✏️ Clean up duplicate defs (#23182)

commit f3e372cb4c849bbd77cec949f5fbd632bf84efed
Author: Robby Candra <[email protected]>
Date:   Tue Dec 14 07:11:52 2021 +0700

    🩹 Init fan speed at boot (#23181)

    Co-authored-by: Scott Lahteine <[email protected]>

commit c781ecc437e27f5efd438a9f2d92bf8b7be3a299
Author: Scott Lahteine <[email protected]>
Date:   Mon Dec 13 16:15:46 2021 -0600

    🔧 Fix unknown board test

commit daa8fff6c630da27bed2df7bd30c38e7e359c0e8
Author: Scott Lahteine <[email protected]>
Date:   Sun Dec 12 16:16:40 2021 -0600

    🩹 SD abort requires open file

    See #22566

commit d481bba3275bc9c7fb4a88fac3eb66727d73f504
Author: ellensp <[email protected]>
Date:   Sun Dec 12 11:06:45 2021 +1300

    🐛 Fix MARLIN_F103Rx variant SCK / MOSI pins (#23282)

commit 32b08ae04cdeef3362a92ee9c1d56787b0792b4c
Author: Scott Alfter <[email protected]>
Date:   Wed Dec 8 23:18:04 2021 -0800

    Fix Endstops::report_states (#23280)

    Fix regression 4d45fdf0eb

commit f00a0356c7fd9708ebabd4e5a25df0a3d6dd35f6
Author: Scott Lahteine <[email protected]>
Date:   Wed Dec 8 18:36:08 2021 -0600

    🎨 Misc. probe / endstop cleanup

commit 9871800874edf7e33233ba853735708f823e13a7
Author: Sola <[email protected]>
Date:   Thu Dec 9 03:37:45 2021 +0800

    🐛 Fix MKS LVGL UI retraction (#23267)

commit 39c2c038be51cd1bfc9cd963baf68307c28f542c
Author: Robby Candra <[email protected]>
Date:   Thu Dec 9 02:15:31 2021 +0700

    🩹 Coerce pin_t in set_pwm_duty macros (#23273)

commit 285d6488a369bd189073fae1cdfea5818a5f2275
Author: Jason Smith <[email protected]>
Date:   Wed Dec 8 11:10:37 2021 -0800

    🐛 Fix ACTION_ITEM with nullptr (#23195)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eecbd09a460d255594f418078ce5f96e9e688008
Author: Robby Candra <[email protected]>
Date:   Thu Dec 9 01:57:50 2021 +0700

    🚸 Onboard SD for SKR 2.0 / SKR PRO (#23274)

commit 8d4e4ac11530ba2576244f69802e35485ed05863
Author: Scott Lahteine <[email protected]>
Date:   Wed Dec 8 12:40:23 2021 -0600

    🎨 Rename MAX31865 elements

commit b77a5d4c8d9b90bdd870ed9590e3f2538f34b8c6
Author: Scott Lahteine <[email protected]>
Date:   Mon Dec 6 20:18:50 2021 -0600

    ✏️ MAX31856 => MAX31865

commit c3b8b3e7e6b3571d3d01f2bb1e4298c25d71d051
Author: Mike La Spina <[email protected]>
Date:   Mon Dec 6 15:52:18 2021 -0600

    🩹 Fix non-PWM cutter compile (#23169)

commit 7123b15801779efb2dfb9bbc932b7d665a708868
Author: Stuart Pittaway <[email protected]>
Date:   Mon Dec 6 21:40:18 2021 +0000

    🐛 Fix TWIBus Wire.begin call (#23183)

commit 8a2f13d657cb881b7e0365dd0a28b233125d433c
Author: Chris Pepper <[email protected]>
Date:   Sun Dec 5 22:18:02 2021 +0000

    🐛 HAL_reboot for native HAL (#23246)

commit 251d9fc1d741132f3baa1a7c9c9ead25a65af3c7
Author: tommywienert <[email protected]>
Date:   Sun Dec 5 23:16:23 2021 +0100

    🐛 Fix env:chitu_f103 (#23225)

commit 5eeb9650b5bbaeb2a07436d0e9cc5036dc518723
Author: ellensp <[email protected]>
Date:   Mon Dec 6 10:42:56 2021 +1300

    📌 More Longer3D LKx Pro serial tests  (#23260)

commit c0addd1d33017e97117ffab1e3145a55750fd2c4
Author: Stuart Pittaway <[email protected]>
Date:   Sat Dec 4 23:44:10 2021 +0000

    ✨ M3426 to read i2c MCP3426 ADC (#23184)

commit 05b57278d43fb1bcf7165dae88643dbac2ff7e8d
Author: Scott Lahteine <[email protected]>
Date:   Sat Dec 4 17:17:10 2021 -0600

    🔧 Cutter pins for SKR 2.0

commit aa3ec2fbfda25381eb4effb65471f206511a823d
Author: Robby Candra <[email protected]>
Date:   Sun Dec 5 05:14:19 2021 +0700

    🚸 Park nozzle on "loud kill" (#23172)

commit 4468516aa29b1319e8d296880ebf395a2e7e1d09
Author: ellensp <[email protected]>
Date:   Sun Dec 5 11:10:29 2021 +1300

    ✨ BigTree SKR 2 with F429 (#23177)

commit 95d006b4061f15b8a7edfd62ad4760994b28610f
Author: ellensp <[email protected]>
Date:   Sat Dec 4 09:48:54 2021 +1300

    🐛 Fix TIMER_TONE for ZM3E4 (#23212)

commit 5b057b4bcfeec871830bab9c6a15bf1e52e53c62
Author: Jiri Jirus <[email protected]>
Date:   Tue Nov 30 21:46:48 2021 +0100

    🩹 Assume 4K EEPROM for RUMBA32 BTT (#23205)

commit 77af48e5479eb0840977fc6ad16f1b8ad651efd4
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 30 13:03:31 2021 -0600

    🐛 Fix STM32 FastPWM

commit 0f7f709aad290285f10d6bed733f783dee6c324c
Author: Keith Bennett <[email protected]>
Date:   Sat Nov 27 14:59:32 2021 -0800

    ✏️ Fix Unicode (#23186)

commit a8c0e11cb143cb40637349cccdcc89282382f3d7
Author: Jason Smith <[email protected]>
Date:   Sat Nov 27 13:54:39 2021 -0800

    🩹 Handle nullptr in CardReader::printLongPath (#23197)

commit 0556da85b0d1aa9dee1fa229296270468cb13180
Author: Anson Liu <[email protected]>
Date:   Sat Nov 27 17:58:05 2021 -0500

    🩹 UM2 extruder cooling fan on PJ6 (#23194)

commit 93652e5c6fc4d4f141bdc524e01144ef7c6221dd
Author: George Fu <[email protected]>
Date:   Sun Nov 28 03:26:53 2021 +0800

    ✨  FYSETC Spider v2.2 (#23208)

commit f3fc1d15a3f7a77e36ce9e072c72bfae127f57d9
Author: Giuliano Zaro <[email protected]>
Date:   Tue Nov 23 22:33:33 2021 +0100

    🩹 Fix include path (#23150)

commit 3148060550eee847ec9d20eedf6bc890c9f4e12a
Author: Keith Bennett <[email protected]>
Date:   Tue Nov 23 13:54:31 2021 -0800

    📌 Biqu BX temporary framework workaround (#23131)

commit 5f08864d1fa8146bc909f3b79daa0bf026e94c6b
Author: Mike La Spina <[email protected]>
Date:   Tue Nov 23 14:05:50 2021 -0600

    🐛 Fix STM32 set_pwm_duty (#23125)

commit 184fc36a088204a1a6d98afbf3e05f24670e2e77
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Nov 21 20:13:01 2021 +0100

    🐛 Fix TFT backlight sleep/wake (#23153)

commit 281ed99868e2ad67be39858aac5ba6a6b46c6fd0
Author: Tanguy Pruvot <[email protected]>
Date:   Sat Nov 20 02:44:53 2021 +0100

    ⚡️ Reduce calls to set fan PWM (#23149)

commit 2cc4a1b3260e1a559ce91c707e1a7cdc5444ca94
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 17 13:01:44 2021 -0600

    🎨 Misc formatting

commit c5bd08755cef48d8dc920053b68da1bbe01a56b0
Author: BigTreeTech <[email protected]>
Date:   Thu Nov 18 01:35:28 2021 +0800

    🐛 Init PROBE_ENABLE_PIN (#23133)

commit 99f58f63f264a9968d5b98ad2e1c6e7f2411d57e
Author: luzpaz <[email protected]>
Date:   Wed Nov 17 12:09:01 2021 -0500

    🎨 Fix misspelling (#23137)

commit c2a674d2c114eee94debf9f649e66cbdb06afdbb
Author: espr14 <[email protected]>
Date:   Wed Nov 17 18:07:11 2021 +0100

    🏗️ Planner::busy() (#23145)

commit feffc1986744cdf10f9e8ca474f4a1aa4ca10dfe
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 16 14:06:36 2021 -0600

    🐛 Fix fast PWM WGM code

    Followup to #23102

commit f637e1c5017540b32ccf43bf32269905abdd51ee
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 16 12:49:25 2021 -0600

    🔨 Bring Makefile up to date

commit 78240a279b5eaa6900d381616e5e252513e82b67
Author: EvilGremlin <[email protected]>
Date:   Tue Nov 16 19:32:43 2021 +0300

    🔨 Ignore sim flashdrive file (#23129)

commit 656034d2d9d94208611ee6b684bdfb1441291249
Author: Luc Van Daele <[email protected]>
Date:   Tue Nov 16 16:24:53 2021 +0100

    🐛 Fix G33, Delta radii, reachable (#22795)

commit 39a81d167ee6e41aa055ceb7c7eceb919573aa61
Author: Mikhail Basov <[email protected]>
Date:   Mon Nov 15 07:46:34 2021 +0300

    🚸 LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)

commit cb1570d162680dd0de9e23a1f4ed9fb40b56b72b
Author: Scott Lahteine <[email protected]>
Date:   Sun Nov 14 17:19:57 2021 -0600

    🐛 Fix SENSORLESS_HOMING for 6-axis

commit 8cb646cc20576ed6cf4462e9ac9125f396a38bd9
Author: EvilGremlin <[email protected]>
Date:   Mon Nov 15 00:15:07 2021 +0300

    🚸 Simplify touchscreen calibration for SimUI (#23124)

commit 3cccb21dc9673d641a5b490b3d6a60466f5fd12f
Author: Miguel Risco-Castillo <[email protected]>
Date:   Wed Nov 10 11:55:20 2021 -0500

    🚸 Fix up E3V2 Enhanced (#23100)

commit 7f4a49cc446addad07c5b1c06066e821f1e4b16c
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 22 13:21:26 2021 -0500

    🎨 Misc. issue review patches

commit e0c439fe911320d08229ebc24eee2a32cd1ee986
Author: Mike La Spina <[email protected]>
Date:   Sun Nov 14 05:55:31 2021 -0600

    ⚡️ Controller Fan software PWM (etc.) (#23102)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 49e233e06f8be0d408a3576d77fa1bf5c27ff995
Author: Tanguy Pruvot <[email protected]>
Date:   Fri Nov 12 21:26:19 2021 +0100

    🎨 MPX ARM Mini pins cleanup (#23113)

commit b662dd1f9221bc1a489dfb84737a49564f72858f
Author: Mike La Spina <[email protected]>
Date:   Fri Nov 12 12:14:28 2021 -0600

    🐛 [LCP1768] Init PWM in set_pwm_duty (#23110)

commit 700cae43abd0108aae612513509dafccba493b61
Author: Skruppy <[email protected]>
Date:   Fri Nov 12 15:57:24 2021 +0100

    🩹 Fix RGB case light compile (#23108)

commit 1c74c6e7ac943078835dca58e295b2b2fe57f787
Author: George Fu <[email protected]>
Date:   Wed Nov 10 23:58:20 2021 +0800

    🐛 Fix FYSETC Cheetah 2.0 pins for production (#23104)

commit 757a9477db64086bebe2f1fa293ae3ec557b7a2f
Author: Minims <[email protected]>
Date:   Sun Oct 10 01:10:21 2021 +0200

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

commit 59d43408f6e2fc33db4efb17dac54b6ebbed4547
Author: Scott Lahteine <[email protected]>
Date:   Sat Dec 25 00:57:30 2021 -0600

    fix breaks in F() resolution

commit 1d8941d008cbc8dfacd35db140c1e87fc938ee58
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 5 21:35:31 2021 -0500

    🔨 Port libsdl2_net required for macOS simulator

commit 17f853d99ceccd06103cb404507b7ed171c306cf
Author: Keith Bennett <[email protected]>
Date:   Tue Nov 9 08:30:02 2021 -0800

    ⚡️ BTT002 (STM32F407VET6) variant, MK3_FAN_PINS flag (#23093)

commit 6f9f25dbb29edbe5383f2f22a36d204484b19aa8
Author: Scott Lahteine <[email protected]>
Date:   Sun Nov 7 01:11:51 2021 -0600

    🎨 Misc. code cleanup

commit 0273a6858733d22647583d52df309fe05efd7d9e
Author: VragVideo <[email protected]>
Date:   Sun Oct 3 06:12:51 2021 +0300

    ✨ WYH L12864 LCD (Alfawise Ex8) (#22863)

commit 58a26fcaaca2251a6098baad21236b0581f874a3
Author: Keith Bennett <[email protected]>
Date:   Sat Nov 6 23:09:15 2021 -0700

    🚸 Indicate Preheating for probe / leveling (#23088)

commit 489aca03ff1f6859ebcc52f0e6af2e3cb4f0c056
Author: Evgeniy Zhabotinskiy <[email protected]>
Date:   Sun Nov 7 07:16:18 2021 +0300

    🩹 Fix M503 report (#23084)

commit f32e19e1c64b3e495d18707ae571e81efaac2358
Author: Jin <[email protected]>
Date:   Sun Nov 7 11:53:36 2021 +0800

    🍻 Preliminary fix for Max31865 SPI (#22682)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 57bd04b6ce2a36526717bf2e6942c14d81be44ac
Author: dwzg <[email protected]>
Date:   Sun Nov 7 04:48:00 2021 +0100

    🐛 Fix JyersUI scrolling filename, etc. (#23082)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 396df93220f037f70035e0e0c08afef436538d4d
Author: ellensp <[email protected]>
Date:   Sun Nov 7 15:27:53 2021 +1300

    🐛 Fix DGUS Reloaded status message (#23090)

commit 9b76b58b791502cba0d6617042c37180851fd36f
Author: Scott Lahteine <[email protected]>
Date:   Thu Nov 4 12:18:23 2021 -0500

    🍻 Get/clear reset source earlier

    Followup to #23075

commit 9fffed7160ad791e9d81d66ff7d0c0d3e085586d
Author: Skruppy <[email protected]>
Date:   Thu Nov 4 18:11:57 2021 +0100

    🐛 Prevent AVR watchdogpile (#23075)

commit fd136d5501c51acbbf174ddf2331e747a80e2374
Author: Tanguy Pruvot <[email protected]>
Date:   Thu Nov 4 18:04:04 2021 +0100

    🐛 Fix TFT backlight [STM32] (#23062)

commit 89ec1c71f0f90ba926043ebdd8ace007b7912b58
Author: BigTreeTech <[email protected]>
Date:   Thu Nov 4 18:54:38 2021 +0800

    🐛 Fix Octopus-Pro Max31865 / SPI (#23072)

commit fc2020c6ecc7d731448509012a41d6ff499419bd
Author: Robby Candra <[email protected]>
Date:   Thu Nov 4 17:28:42 2021 +0700

    🔨 Fix IntelliSense / PIO conflicts (#23058)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f97635de364a27ddf8effd06ce0f18ceae5cf4f1
Author: ellensp <[email protected]>
Date:   Thu Nov 4 14:04:06 2021 +1300

    📌 'STOP' auto-assign, some Chitu V9 pins (#22889)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0a57406a2e266bfc20e8e0d8a834cca3ef67367
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 3 07:06:31 2021 -0500

    🔨 Script 'mfprep' finds pending commits

commit 5efef86cfa3ce88224edb68b2aa502dbf8939264
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 3 07:02:21 2021 -0500

    🔨 Update git helper scripts

commit 20c747753db6657a505b50db302f7ec9fd3a6e5d
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 2 01:28:00 2021 -0500

    🔨 Support ABM in mf scripts

commit 08a9c6158798a59bd6af09b68144041fdc967d4b
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 23:15:29 2021 -0700

    📌 Default NeoPixel pin for MKS Robin E3/E3D (#23060)

commit 0d91b07797c0d248eab25a64351db959a866bdc7
Author: Andrei M <[email protected]>
Date:   Tue Nov 2 01:47:16 2021 -0400

    ⚗️ Use pwm_set_duty over analogWrite to set PWM (#23048)

    Co-authored-by: Scott Lahteine <[email protected]>

commit b033da1782579d27ed05d9acbf0b2ccb433bdbb8
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 22:43:40 2021 -0700

    🔧 Endstop / DIAG homing conflict warning (#23050)

commit 4dcd872be54d913d26c95666a74a67efd59a0519
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 21:23:54 2021 -0700

    ✨ Allow Low EJERK with LA, optional (#23054)

commit 7e9e2a74358c6033577fc31f3a16af57214e4f3a
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 20:23:24 2021 -0700

    ✨ Artillery Ruby (STM32F401RCT6) (#23029)

commit 0b841941276b246c06b52f65e5e45199d4792785
Author: tombrazier <[email protected]>
Date:   Mon Nov 1 23:03:50 2021 +0000

    🚸 More flexible Probe Temperature Compensation (#23033)

commit efd9329c813f47d7434f2c7acbb09bbce161a735
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 8 01:17:16 2021 -0500

    📝 Tweak EXP comments

commit 5cbb820e2984d052c7ca412e06035206e5892790
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 23:43:19 2021 -0500

    🔨 Help for GDB remote debugging

commit 5a0166489e7d4ec6ce70fc20070f667fd00bccec
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 22:43:02 2021 -0500

    🩹 Fix linker error (transfer_port_index)

commit 692c9a6312785c728a9df474826acc0aa602771a
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 04:16:37 2021 -0500

    💚 Update Ender-3 V2 config path

    MarlinFirmware/Configurations#600

commit 545d14f9a54f9689f4ef258999cab3222275980b
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 01:39:33 2021 -0500

    🎨 Adjust Ender-3 V2 DWIN options

commit 7b9e01eb2bd03564ad667746637d8f33899ad5b5
Author: aalku <[email protected]>
Date:   Sat Oct 30 07:17:20 2021 +0200

    ✨ Shutdown Host Action (#22908)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 8562f0ec44df99928bca503e77ccc500b8ec7654
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 29 20:46:55 2021 -0500

    ✨ "Rutilea" ESP32 board (#22880)

commit 6f59d8171f701cbeacf687937de1b0d6a68f6711
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 29 20:42:52 2021 -0500

    🔧 Configuration version 02000903

commit d29a9014f2a4e496215a7b0503208b44a34915fb
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 21:36:06 2021 -0500

    🎨 Standard 'cooldown' method

commit 205d867e4bfa1c100ae69670c0a1a820cb8697a0
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 20:01:44 2021 -0500

    🎨 Standard material presets behavior

commit 84f9490149069a62c056cad9cb83ee7f2b4ee422
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 21:15:58 2021 -0500

    🎨 Define HAS_PREHEAT conditional

commit 1fd42584230f1d45cba2cdb33c2618d42bf2d923
Author: tome9111991 <[email protected]>
Date:   Sat Oct 30 00:49:12 2021 +0200

    🐛 Fix E3V2 (CrealityUI) Tune/Prepare > Zoffset (#23040)

commit e8a55972a7eab13c231733676df8c9e306af4d12
Author: Scott Lahteine <[email protected]>
Date:   Thu Oct 28 19:22:35 2021 -0500

    🐛 Fix EZBoard V2 board name

commit aef413202e69ddbed26bb155041a97abb0dada2e
Author: Keith Bennett <[email protected]>
Date:   Thu Oct 28 03:26:05 2021 -0700

    🐛 Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)

commit cbc7dadf42fc1cc56418caeb7ccba9491175f1ad
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 26 21:54:43 2021 -0500

    🎨 Apply HAS_MULTI_HOTEND conditional

commit c508ecc414a5876e6dadfe4ade926bc5b8bc25c3
Author: Zlopi <[email protected]>
Date:   Wed Oct 27 23:10:46 2021 +0300

    🚸 Scroll long filename on MKS TFT (#23031)

commit 384a31765f9080336d90a5404787bf1895dea2e9
Author: ellensp <[email protected]>
Date:   Thu Oct 28 09:06:06 2021 +1300

    🩹 Retain LCD pins with motor expansion (#23024)

commit 0f2c4fc40ba87ffb5e345d7e8a16b5714b9a65bd
Author: somehibs <[email protected]>
Date:   Wed Oct 27 21:00:02 2021 +0100

    🐛 Fix serial PORT_RESTORE (and BUFFER_MONITORING) (#23022)

commit 66a274452c20c9cab608e44a61663cd5a76cf9d6
Author: tome9111991 <[email protected]>
Date:   Wed Oct 27 21:58:32 2021 +0200

    🐛 Fix E3V2 (CrealityUI) position display (#23023)

    Followup to #23005, #22778

commit 12f8168d1eba025ceb7762f49fc903cb123a8b3b
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 26 19:36:16 2021 -0500

    🚸 Tweaks to UBL G29 Q

commit 2142e1dae493502adb1a26c9f81c2e6d43b0e02a
Author: woisy00 <[email protected]>
Date:   Wed Oct 27 01:05:34 2021 +0200

    🐛 Fix AUTOTEMP bug (thermal runaway) (#23025)

    Regression from 9823a37

commit 8d21ea55a2e67712ca968807d9c0a86afa750373
Author: tombrazier <[email protected]>
Date:   Mon Oct 25 06:33:40 2021 +0100

    🐛 Add USE_TEMP_EXT_COMPENSATION options (#23007)

commit a0da7e8a1fc1962fa2abf18db627e1985d06b18b
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 24 23:33:27 2021 -0500

    🔧 Fewer alerts about Z_SAFE_HOMING

commit e2452d6c571db0875cc3fe625a3e68a6e1c75e56
Author: tome9111991 <[email protected]>
Date:   Fri Oct 22 18:16:07 2021 +0200

    🐛 Fix SHOW_REMAINING_TIME option for JyersUI (#22999)

commit 5173a3140da364d1645743cb0f2f0324245da5ea
Author: Keith Bennett <[email protected]>
Date:   Fri Oct 22 08:52:31 2021 -0700

    ✨ BigTreeTech TFT35 SPI V1.0 (#22986)

commit e44f2b7d2db248c8ddef3574979a1a485137a99d
Author: Mike La Spina <[email protected]>
Date:   Tue Oct 19 06:05:23 2021 -0500

    🩹 Fix pragma ignored for older GCC (#22978)

commit ed78f7f4e65b632fa986400c65796233e1a5038e
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:59:48 2021 -0500

    🎨 Refactor MOSFET pins layout (#22983)

commit aa198e41dd01e7c52871611c880cae590aa8cb32
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:52:41 2021 -0500

    🎨 Pragma GCC cleanup

commit 18b38fb58a348112ebfd91e9f6f92c64ad4dfa49
Author: Jason Smith <[email protected]>
Date:   Mon Oct 18 01:11:16 2021 -0700

    🐛 Fix max chamber fan speed (#22977)

commit 5d79d8fad64a169351a36c5243911218e4ee6b7f
Author: Keith Bennett <[email protected]>
Date:   Mon Oct 18 00:57:54 2021 -0700

    🐛 Fix I2C EEPROM SDA/SCL aliases with SKR Mini E3 V2 (#22955)

commit e7a746966d67d50fdeab67ce745a1524d34ccb59
Author: ellensp <[email protected]>
Date:   Mon Oct 18 20:54:20 2021 +1300

    🐛 Fix MMU1 compile (#22965)

commit 555f35d46f1b0ae9e2105c23a5f37afe8336e4f4
Author: Mike La Spina <[email protected]>
Date:   Mon Oct 18 02:40:47 2021 -0500

    🎨 Suppress type warning (#22976)

commit de77dfcbbd392c47ed8ec1f711abefe6c10b30f0
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 22:10:08 2021 -0500

    🎨 Add MKS UI goto_previous_ui

commit af08f16efc8b31f2ae66672ac0df8dedbabdc163
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 20:24:41 2021 -0500

    🚸 Tweak MKS UI G-code console

commit 01a0f3a8cfc3ec1ae27e6959465fd275c4c895c7
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 18:11:16 2021 -0500

    🎨 Fix up MKS UI defines

commit f80bcdcc5cc03a0fdecdfe3c79f10c5a7436bf7d
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 15 00:24:08 2021 -0500

    🎨 Refactor Host Actions as singleton

commit 1ead7ce68198d5888b6a19195602679adf0cf7ab
Author: ellensp <[email protected]>
Date:   Fri Oct 15 14:38:03 2021 +1300

    🔧 Add, update TFT sanity checks (#22928)

commit dffa56463e89504302b95a7a7e7af8016c713bc8
Author: InsanityAutomation <[email protected]>
Date:   Tue Oct 12 23:19:05 2021 -0400

    ⚡️ Formbot ST7920 delays, intentional X2 pins (#22915)

    Co-authored-by: Scott Lahteine <[email protected]>

commit ae98d2e5eae1d41e1004919643cb34dc517c84e9
Author: Dmytro <[email protected]>
Date:   Wed Oct 13 05:45:00 2021 +0300

    🎨 Update MKS UI for no bed, extruder (#22938)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5b1ef638ee9630063de0cc096cd408c871e5b72f
Author: InsanityAutomation <[email protected]>
Date:   Tue Oct 12 19:40:56 2021 -0400

    🐛 Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)

commit f3be03da20708c8dfc990e6e293c4e25a3605e52
Author: Stuart Pittaway <[email protected]>
Date:   Mon Oct 11 23:42:29 2021 +0100

    ✨ M261 S I2C output format (#22890)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 64128a5bcb46d9428ff9acc4f45fc79381c90322
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Oct 10 01:05:24 2021 +0200

    🐛 Queue string followup (#22900)

commit 0018c94a7992a6bd0e13219504e664dc4703687d
Author: Pyro-Fox <[email protected]>
Date:   Sat Oct 9 15:09:50 2021 -0700

    🐛 LCD string followup (#22892)

commit d48cb1153785178fba59c0f11da75720585baafb
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 5 21:19:28 2021 -0500

    🐛 Followup to F() in config_line

    Followup to 1dafd1887e

commit d9f7de7a24071fecb9bcae3400e3b4ec56c68a8d
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 19:50:14 2021 -0500

    🐛 ExtUI F() followups

    Followup to 12b5d997a2

commit 3d102a77ca475c2dc6461152ecc445247b9bfd26
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 20:15:52 2021 -0500

    🎨 Apply F() to kill / sendinfoscreen

commit 492d70424d3819762ece7ecb4913e94e3cebf232
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 19:28:29 2021 -0500

    🎨 Apply F() to MKS UI errors, assets

commit 24dbeceb45a72c0b96d42e46ba750f41ac1dd4e2
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 13:46:42 2021 -0500

    🎨 Apply F() to various reports

commit cabd538fdd03bec0b293cb290bbc3dc123da780a
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 13:40:01 2021 -0500

    🎨 Apply F() to G-code report header

commit 9cf1c3cf051f7fa946098e7a7873aa0a8797d62a
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 23:52:41 2021 -0500

    🎨 Apply F() to UTF-8/MMU2 string put

commit c3ae221a109cb99bde634899f5b1b0ff690f29ab
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 22:11:48 2021 -0500

    🎨 Apply F() to some ExtUI functions

commit 7626d859a65417f03494c1e99d3d29e79b84fd3d
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 11:55:08 2021 -0500

    🎨 Apply F() to Host Actions strings

commit 360311f2320d6e5a94d17c6ff830146675be732e
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 17:05:11 2021 -0500

    🎨 Apply F() to status message

commit 433eedd50fb0b1da04a0153de483088c8de9295d
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 11:03:07 2021 -0500

    🎨 Apply F() to serial macros

commit 46c53f67307f78fc2a42a926a0b8f1f6db2d7ea9
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 21:11:31 2021 -0500

    🎨 Apply F() to G-code suite and queue

commit 2b9ae0cc33a1996cb6dd1092743d4a3123c1d4c1
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 18:43:52 2021 -0500

    🎨 Apply F() to G-code subcommands

commit 433a27e475584e73195a89d59ed5ecc20303d53d
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 18:22:37 2021 -0500

    🎨 Update F string declarations

commit 1de265ea5dd09ac4371add0b1bb9c1b595a3c385
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 00:24:41 2021 -0500

    🎨 Axis name string interpolation, with examples (#22879)

commit 854ce63358f409340863024edd38fb7d1499fd91
Author: Robby Candra <[email protected]>
Date:   Sun Dec 19 05:33:21 2021 +0700

    🐛 Fix loud_kill heater disable (#23314)

commit 170f77fada009bcd77b02edf7b5d55d5173b00e9
Author: lukrow80 <[email protected]>
Date:   Tue Nov 23 22:30:13 2021 +0100

    🐛 Fix homing current for extra axes (#23152)

    Followup to #19112

commit 72b99bf1ba24cb9124668b958039b32a164c68cd
Author: InsanityAutomation <[email protected]>
Date:   Sat Oct 9 19:13:19 2021 -0400

    🐛 Fix IDEX Duplication Mode Positioning (#22914)

    Fixing #22538

commit 1a8583f4fce492240db5d890825b8edd8217025f
Author: Robby Candra <[email protected]>
Date:   Wed Nov 24 04:19:32 2021 +0700

    🐛 Fix serial_data_available (#23160)

commit 49e8defda11c0c62098d86e4ced947468cd2f289
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 22:16:15 2021 -0500

    🔨 Move Creality 4.2.2 warning

commit e5c4e77eb06ca01ec062c32f96c0315e2666139a
Author: Sebastien BLAISOT <[email protected]>
Date:   Tue Nov 2 06:49:21 2021 +0100

    🐛 Fix NEOPIXEL2_SEPARATE default color (#23057)

commit 8dd3f38ae9ccdb051ed073a11dd9200b9d7e2ffe
Author: ellensp <[email protected]>
Date:   Tue Nov 2 12:34:53 2021 +1300

    🩹 Fill gaps in pinsDebug_list (#23051)

commit 044a7db370d278b91cea194d4a00d6e4c652c4a7
Author: ellensp <[email protected]>
Date:   Tue Nov 2 12:36:22 2021 +1300

    🐛 Fix Y_SERIAL_RX_PIN for FYSETC S6 (#23055)

commit 8cecc626c6a40e1667a10908042101248c5668dd
Author: Robby Candra <[email protected]>
Date:   Tue Nov 2 10:29:23 2021 +0700

    🎨 Fix redefine warnings (#23061)

commit ee26fd0e0559d7f2d86b11b5552eaf9c9ff3174c
Author: tombrazier <[email protected]>
Date:   Mon Oct 25 22:29:40 2021 +0100

    🚸 Default T0 for M569, M906, M913 (#23020)

commit a7ea6b59255ee5405b0118d78a5d7bdf69a8eb68
Author: ellensp <[email protected]>
Date:   Tue Oct 26 10:02:29 2021 +1300

    ⚡️ Add'l PCINTs for Mega Extended (#23019)

commit 2b8a804997b18c49126868f5301702e2bf8eeaa6
Author: Keith Bennett <[email protected]>
Date:   Sun Oct 24 23:14:02 2021 -0700

    ✨ Octopus Pro V1.0 with STM32F429ZGT6 (#23008)

commit 908335367edba11eff8e457c511482db8a36dfcf
Author: Keith Bennett <[email protected]>
Date:   Mon Oct 18 00:51:01 2021 -0700

    ✨  BTT Octopus Pro V1.0 (STM32F446ZET6) (#22971)

commit a7415a052ebf57c0a0a30cf97973b86c2065958d
Author: ellensp <[email protected]>
Date:   Mon Oct 25 19:12:07 2021 +1300

    🐛 Fix børken E_DUAL_STEPPER_DRIVERS (#23017)

commit f51e07b19636cbbfc9511073e41e5a98cd7c5625
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Oct 25 01:08:15 2021 -0500

    🐛 Fix Ender-3 V2 Enhanced SetFlow (#23016)

commit 5f35c539ce38a6d6715ce77005b387a0b87ac822
Author: Lefteris Garyfalakis <[email protected]>
Date:   Mon Oct 25 09:06:13 2021 +0300

    🚸 E3V2 Enhanced cosmetic fixes (#23009)

commit 59503c6bbbcea81dcbe3e5ffa9ac175a01e7a2dc
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 05:59:03 2021 -0500

    🎨 Apply F() to E3V2 titles, popups

commit 0309fce1fd12cfe0259f67f9d2381d08041ae525
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 25 01:39:48 2021 -0400

    ✨ Creality v2.4.S1 (Ender 7) board  (#23010)

commit f6d211f77941d2df03db9493c8ad6b39c511ee63
Author: Dennis <[email protected]>
Date:   Mon Oct 25 07:35:11 2021 +0200

    🐛 Fix JyersUI current positions (scaling) (#23005)

commit f179e25cc640135f968ffb12a12fdf4bd0b14212
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 24 23:32:34 2021 -0500

    🐛 More explicit allocation of solenoids

    In reference to #22887

commit 5b478cd5f6b6eae0343acbf169976f97b1ba5609
Author: tombrazier <[email protected]>
Date:   Fri Oct 22 21:56:05 2021 +0100

    🐛 Fix probe temp compensation maths (#23004)

commit e852732ea8e71d7e969520d0bcd4f242dc6755b2
Author: ellensp <[email protected]>
Date:   Fri Oct 22 17:57:30 2021 +1300

    🐛 Fix E3V2 width/height defines (#22994)

commit c9718e1ec0570a96bd104cd4bbefed57cc613d5d
Author: Augusto Zanellato <[email protected]>
Date:   Tue Oct 19 17:24:22 2021 +0200

    ✨ Eryone Ery32 mini (STM32F103VET6) board (#22956)

commit 30158424e993919b9a4d8fe4b14793df3affe7ff
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:53:34 2021 -0500

    🔨 Fix older GCC CXXFLAGS warning

commit 5f6d9e9f42d0cf5126f763e8a8f4f617cb8fcc8f
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:51:49 2021 -0500

    🎨 Fix pinsDebug_list warnings

commit b108741a8e2ba426f006a4c4bb562aa126eb400d
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 04:03:03 2021 -0500

    💡 Sub-include pins labels

commit b4904cc53e3a8a97fe8047ebe918bc8ea474e120
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 02:56:44 2021 -0500

    🔨 Delete after encrypt. Lerdge encrypt only once

commit 2c6fe45847e0ada1b873bbc302cce2c51325902b
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 02:49:35 2021 -0500

    🔨 Update 'pio vscode init' detection

commit fed72e4607b864d8048ae87b08063f0ac6f1eaed
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 11:17:36 2021 -0500

    🔨 Use pull_request_target for check-pr

commit c3a4e6b3c8b581ac458618507177eb81dfedd7a1
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 18 01:49:35 2021 -0500

    ✅ Warn about dummy thermistors

commit 5bfc5c10103c9f6067d8e1969d8a9c1f1384b9cd
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 18 02:03:01 2021 -0400

    Fix JyersUI ZOffset Multiplication (#22975)

commit 1112d66fefedafacf32027fd7b44f11b1546306d
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 18 02:01:28 2021 -0400

    Fix Tool Change Park (#22968)

commit 61b574f2cea9f23603a3c0250b6bd11934fa3d60
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 19:26:31 2021 -0500

    🔨 Improve 'mftest' error message

commit 522cdd52727383e9a2e4f0295b85ae6e2d94aacf
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 16:56:01 2021 -0500

    🔧 Safety feature warnings

commit 641bae625b659cc5eba13c20c174de5fff7caa98
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 15 15:07:47 2021 -0500

    💡 Update old gnu.org links

commit d10e20d6d2faaea04df81dca682290a2aa081fee
Author: InsanityAutomation <[email protected]>
Date:   Fri Oct 15 15:56:59 2021 -0400

    ✨ Add option EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN (#22960)

commit b18aa933d14f9761d74b19be79db64e21356c563
Author: ellensp <[email protected]>
Date:   Wed Oct 13 14:28:45 2021 +1300

    🐛 Fix G33 homing current (#22909)

commit 0f519ebf854cdb0fd3d00828ca7a4b4d09c8d610
Author: mks-viva <[email protected]>
Date:   Tue Oct 12 20:01:18 2021 -0500

    ✨ MKS Eagle (STM32F407VET6) board (#22897)

commit 031f17b4f3dfca4a66384d40ce48b7d33315c75a
Author: Minims <[email protected]>
Date:   Sun Oct 10 01:10:21 2021 +0200

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

commit 036f763eaaff571f07c7829e0f5a61b645e86269
Author: ellensp <[email protected]>
Date:   Thu Oct 7 09:42:59 2021 +1300

    🎨 Define Octopus allocated endstop pins (#22882)

    Co-authored-by: Scott Lahteine <[email protected]>

commit d137f307ebea8c8832ecbef239ed08e188c5369b
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 22:19:05 2021 -0500

    🎨 Tweak FORCE_INLINE

commit 66048a5f27aa3ad9ecb2b407ada13fb87e86ebe9
Author: Mark <[email protected]>
Date:   Tue Oct 5 12:23:02 2021 +0800

    ✨ ESP32 Panda_ZHU and Panda_M4 (#22644)

commit b8c32e24d86fff280621ab3f274511dd30669b93
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 02:33:14 2021 -0500

    🎨 Rename MarlinUI::zoffset_overlay

commit 99d51af90facd02365d0ae91091303d7879f304d
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 5 21:35:31 2021 -0500

    🔨 Port libsdl2_net required for macOS simulator

commit f47ece0725d93cde7fde52b66d14b5ec551c46c2
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 19:06:39 2021 -0700

    🐛 Fix MKS Robin Pro 1.0 LCD reset pin (#22937)

commit 975089a954460b10279bdbf60f08c9604c4f7d08
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 19:05:37 2021 -0700

    🔧 Remove obsolete G34 sanity check (#22929)

commit 995230f5971995e41b97d14273f2dd3693ead6be
Author: George Fu <[email protected]>
Date:   Wed Oct 13 09:32:54 2021 +0800

    🐛 Fix FYSETC Cheetah v2.0 build (#22926)

commit adf7072fa846312d473a993ffc62ec3082b37c46
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 18:26:42 2021 -0700

    🐛 Fix SKR Mini E3 V2 I2C-based EEPROM (#22919)

    Followup to #20609

commit 40cb7cf8d6e31cf768a946e3248618256c021fb6
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 18:58:20 2021 -0500

    🔨 Add 'opt_find' to find matching options

commit d0c0630c1f91cb43dc23c1ed9e4c166d284785eb
Author: ellensp <[email protected]>
Date:   Mon Oct 4 19:12:19 2021 +1300

    🩹 Fix EXTRUDER 0 compile warning (#22868)

commit 11c829fb28a4fdc37ae86e6ac674589331f0712d
Author: Sebastien Andrivet <[email protected]>
Date:   Mon Oct 4 08:06:49 2021 +0200

    🐛 Fix ExtUI Pause messages (#22874)

commit e0dda615012a99e1ad591972b4bbc5238e7361a9
Author: ellensp <[email protected]>
Date:   Mon Oct 4 18:25:45 2021 +1300

    🐛 Fix Arduino IDE compile error (#22877)

commit a185ce22cf6e4fb15250815c5c39318606a7e65a
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 22:08:11 2021 -0500

    Marlin 2.0.9.2

commit 2a4ee1a482278abb830c0f5180bfa7571c00c9f7
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 21:54:07 2021 -0500

    MKS Robin pins updates

commit 3a82b8a25195f448018e7a2267d9916814434c65
Author: Cytown <[email protected]>
Date:   Sat Jun 26 03:50:09 2021 +0800

    🎨 Power-off tone followup (#22222)

commit 765b2b43f6ea80920a3eb85be64f77ed8fe9dcbd
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 21:51:52 2021 -0500

    🎨 FTDI Eve Touch UI spinner enqueue string

commit 2e602b9b88e75a261d8d1a71c0857ce47f5e92fa
Author: Steven Haigh <[email protected]>
Date:   Thu Sep 30 02:22:46 2021 +1000

    🚑️ Fix DWIN_CompletedLeveling (#22851)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d3e75905d9316853462321bac7b43f635366768
Author: Malderin <[email protected]>
Date:   Wed Sep 29 04:20:03 2021 +0300

    🐛 E3V2 Mesh Viewer followup (#22850)

commit eacb660e4b1008245361d8db6054ef30ccf031fa
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 02:39:11 2021 -0500

    🎨 Condense reverse-protection code

commit 021ceeba0b0ccadd7246d5e2da56df7868349206
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 01:07:51 2021 -0500

    ⚡️ Handle shared enable pins (#22824)

commit 25a131b9421c81245e1d9094fc85476349baf941
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Sep 27 14:47:47 2021 -0500

    ✨ E3V2 (Enhanced) Mesh Viewer (#22844)

commit b4c025a451580cdc15f9506e923c4ffe5afdde90
Author: Sola <[email protected]>
Date:   Tue Sep 28 03:08:29 2021 +0800

    🚸 Fix MKS LVGL UI temperature set interface (#22848, #22842)

commit 604a01cd1a87850a5fe2fde1a204a9c313863db3
Author: espr14 <[email protected]>
Date:   Mon Sep 27 21:05:52 2021 +0200

    🎨 steps_to_mm => mm_per_step (#22847)

commit 064f91e9b0e71b55dda7dea86881863190c37516
Author: Tanguy Pruvot <[email protected]>
Date:   Mon Sep 27 21:01:47 2021 +0200

    🚸 TFT backlight PWM / brightness (#22841)

commit 34c9f649252f173b9c046dcab56d86e0526ed163
Author: ellensp <[email protected]>
Date:   Tue Sep 28 04:17:00 2021 +1300

    🔧 Sanity-check BLTOUCH_SET_5V_MODE on 5V pins (#22840)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 060b705dab5ad7eaf0f1babd6113d5908b485db9
Author: Giuliano Zaro <[email protected]>
Date:   Sun Sep 26 04:59:29 2021 +0200

    🩹 Fix M412_report formatting (#22834)

commit 262cd757fc4b91592932d4335878bc0aaf45af20
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 02:27:07 2021 -0500

    🎨 Updated string macros

commit dc4d2165f2175a5f0f2e492b3a4f3f4cecf15ead
Author: Steve Wills <[email protected]>
Date:   Fri Sep 24 22:12:43 2021 -0400

    🐛 Add 'static' to fix 'duplicates' (#22826)

commit bcd2a483da49030ae5f1837474c95b027f915340
Author: Manuel McLure <[email protected]>
Date:   Fri Sep 24 19:08:07 2021 -0700

    🐛 Fix M420 / M851 reports (#22829)

    Followup to 79c72ed821

commit d338872e8571e45c961d768b1d5068bff20e9daf
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 11:09:43 2021 -0500

    🐛 Fix reset_hotend_offsets

commit 2c30b75268a0cb7791c00b91579db6ab42b3dd28
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 10:01:37 2021 -0500

    🎨 Various multi-axis patches (#22823)

commit 3deb54d0fde6bb84310e78ce3b70296041552af1
Author: Sola <[email protected]>
Date:   Thu Sep 23 15:53:48 2021 +0800

    ⚡️ Improve LVGL touch driver (#22817)

commit 9ae6351a026d9b91813e8f1c3e7749e7f8cab790
Author: ellensp <[email protected]>
Date:   Thu Sep 23 18:58:52 2021 +1200

    🐛 Fix anycubic_i3mega_lcd debug macros (#22820)

commit b7f95dc8d4903122db3692fc7540a593983f1af1
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 00:51:35 2021 -0500

    🩹 Add MarlinSPI to more HALs

commit 99647fa9403ef3c9f419000cb0be6667105f8aaf
Author: Scott Lahteine <[email protected]>
Date:   Wed Sep 22 00:19:26 2021 -0500

    🎨 Less use of undef for RAMPS pins

commit ea3df942137362e6916b51f8152389f1d6ac3415
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 21 06:25:13 2021 -0500

    🎨 Fix L64xx enable, clean up conditionals

commit a37580e4e837b1de576a7b529f56d225fa6a6dde
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 20 18:44:35 2021 -0500

    🩹 Remove extra #include, misc. style

commit b3fd03198af688bbd7b3d74500c441007bcf890d
Author: Dan Royer <[email protected]>
Date:   Mon Sep 20 13:42:33 2021 -0700

    ✨ Polargraph / Makelangelo kinematics (#22790)

commit 71b8a22d96735791789aeceed4877b2f1edfdb3d
Author: Lefteris Garyfalakis <[email protected]>
Date:   Mon Sep 20 03:26:46 2021 +0300

    🌐 Update Greek language (#22799)

commit 669b68497cc0194fb963dfe8066e556f6ada03e4
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 19:25:01 2021 -0500

    🌐 Skip non-essential translations

commit 6014dd9c7b06917a251506afcf9acf11a54c26a6
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 21 02:42:01 2021 -0500

    🔨 Improve pins_set script

commit 5a54ba8316357c8bc4233bede1b29d5f62521fd0
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 18:58:12 2021 -0500

    🔨 Case-insensitive tests list

commit be8e8260e2969ce80a1ff51a39deed23aba0e6d1
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 18:40:56 2021 -0500

    🌐 Reduce language file sizes

commit 5d8ca7c9445dac3d8bb52eafd9c45826e9c3387b
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Sep 19 05:16:29 2021 +0200

    🐛 STM32 ADC followup (#22798)

commit 0e8e215d4e173e6d742b6aa198859e1a6cf50089
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Sep 19 01:27:58 2021 +0200

    🚸 Wake up TFT for some events (#22788)

commit 6cf95509cd1483b52076322679e2426550fdf1df
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 18 18:24:39 2021 -0500

    🎨 Replace some infrequently-used macros

commit ded719cc1481c8b67a4015a0077294ba7640d20d
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 18 18:22:15 2021 -0500

    📝 Update some pins comments

commit 2630eefcc462b200c7bf748735387e7b055f300e
Author: Steven Haigh <[email protected]>
Date:   Sat Sep 18 16:33:18 2021 +1000

    🐛 STM32 ADC Resolution = 12 bit (or ADC_RESOLUTION) (#22789)

commit 2b54a9c0ff0351f92b7e835f7c8dafe6f9cc5390
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 17 19:09:54 2021 -0500

    🚸 Move fade item up

commit bb1eb39ecbe2edfecb171b3e4f689b0413c5bf60
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 12 17:08:57 2021 -0500

    🚸 Better bed position

commit 8b818f4ae561d6ef1ba708a78cc0ed5cb5054358
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 17 18:58:55 2021 -0500

    💬 Add non-translated STR_DONE

commit 4d113c2efd1e17171b87f46053fb574842832a96
Author: Sola <[email protected]>
Date:   Thu Sep 16 19:48:24 2021 +0800

    🚸 Fix and improve MKS LVGL UI (#22783)

    Co-authored-by: m…
RFBomb added a commit to RFBomb/Marlin that referenced this pull request Mar 22, 2022
commit 030b66eb2710165a2081c625a7a0573a6d04b5ae
Author: Scott Lahteine <[email protected]>
Date:   Sun Nov 7 01:11:51 2021 -0600

    🎨 Misc. code cleanup

commit e15f9fdcd9ccff010f188d6b0762cf00956a55c1
Author: Keith Bennett <[email protected]>
Date:   Sat Nov 6 23:09:15 2021 -0700

    🚸 Indicate Preheating for probe / leveling (#23088)

commit dc972990f35ed0f6c1ddc7d2d6c15df9e8a4cb3c
Author: Evgeniy Zhabotinskiy <[email protected]>
Date:   Sun Nov 7 07:16:18 2021 +0300

    🩹 Fix M503 report (#23084)

commit 27220f09440e90ed490087273a2357b84a41663c
Author: Jin <[email protected]>
Date:   Sun Nov 7 11:53:36 2021 +0800

    🍻 Preliminary fix for Max31865 SPI (#22682)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 30a69f76a3dc9deaef6974d18107d7f759502092
Author: dwzg <[email protected]>
Date:   Sun Nov 7 04:48:00 2021 +0100

    🐛 Fix JyersUI scrolling filename, etc. (#23082)

    Co-authored-by: Scott Lahteine <[email protected]>

commit c07aa875bc8c285adf7f967df656f6bf8a13bf92
Author: ellensp <[email protected]>
Date:   Sun Nov 7 15:27:53 2021 +1300

    🐛 Fix DGUS Reloaded status message (#23090)

commit dfdffca2bddb2c7301b6befe5d453da5b84dc16f
Author: thinkyhead <[email protected]>
Date:   Sun Nov 7 01:06:43 2021 +0000

    [cron] Bump distribution date (2021-11-07)

commit f5284715fb7c35a5ba9caf98f45f533db709eeb4
Author: thinkyhead <[email protected]>
Date:   Sat Nov 6 00:58:50 2021 +0000

    [cron] Bump distribution date (2021-11-06)

commit 3e8cdef36b42d4cae1efc8fe3272497827dcc440
Author: thinkyhead <[email protected]>
Date:   Fri Nov 5 01:00:14 2021 +0000

    [cron] Bump distribution date (2021-11-05)

commit f6147e038bbd4b4b96c8c188107b9e7d4f02d534
Author: Scott Lahteine <[email protected]>
Date:   Thu Nov 4 12:18:23 2021 -0500

    🍻 Get/clear reset source earlier

    Followup to #23075

commit f53d627750ab0cf377ea1738bdcf792f2ef37de9
Author: Skruppy <[email protected]>
Date:   Thu Nov 4 18:11:57 2021 +0100

    🐛 Prevent AVR watchdogpile (#23075)

commit a9dc737624cf45bceff1866ce4807bb2cc36ac44
Author: Tanguy Pruvot <[email protected]>
Date:   Thu Nov 4 18:04:04 2021 +0100

    🐛 Fix TFT backlight [STM32] (#23062)

commit 7b792014703e778d8fc0b1760747d50ab8f340d1
Author: BigTreeTech <[email protected]>
Date:   Thu Nov 4 18:54:38 2021 +0800

    🐛 Fix Octopus-Pro Max31865 / SPI (#23072)

commit 4483b8aaf023576ea1c8ecfa84e7093ec26ad75a
Author: Robby Candra <[email protected]>
Date:   Thu Nov 4 17:28:42 2021 +0700

    🔨 Fix IntelliSense / PIO conflicts (#23058)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 399faa91b99dab0f8565396efd32f277965c93b2
Author: ellensp <[email protected]>
Date:   Thu Nov 4 14:04:06 2021 +1300

    📌 'STOP' auto-assign, some Chitu V9 pins (#22889)

    Co-authored-by: Scott Lahteine <[email protected]>

commit fef96bb556f19bf1e132368ec0675d1d2b12634d
Author: thinkyhead <[email protected]>
Date:   Thu Nov 4 01:00:55 2021 +0000

    [cron] Bump distribution date (2021-11-04)

commit 02b6fb8025ef82c2d1290cdc1a98bc0c54f502c9
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 3 07:06:31 2021 -0500

    🔨 Script 'mfprep' finds pending commits

commit cac42e24a581915176816c680a61396855660b19
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 3 07:02:21 2021 -0500

    🔨 Update git helper scripts

commit 627b67e27aa4de50c172e0ffc4a13fe3fb2d35f8
Author: thinkyhead <[email protected]>
Date:   Wed Nov 3 01:00:15 2021 +0000

    [cron] Bump distribution date (2021-11-03)

commit f632b72e8c58ea4c54676ca17e9b9c9ee4584be0
Author: Scott Lahteine <[email protected]>
Date:   Tue Nov 2 01:28:00 2021 -0500

    🔨 Support ABM in mf scripts

commit 0db9f9a828c43f978e37b5140f7b9bb6ca630667
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 23:15:29 2021 -0700

    📌 Default NeoPixel pin for MKS Robin E3/E3D (#23060)

commit 95357c33fb0d3ce6d84e59bd16e8354836997015
Author: Sebastien BLAISOT <[email protected]>
Date:   Tue Nov 2 06:49:21 2021 +0100

    🐛 Fix NEOPIXEL2_SEPARATE default color (#23057)

commit da830e6ced7f7c7e509e748104245064d1c1b265
Author: Andrei M <[email protected]>
Date:   Tue Nov 2 01:47:16 2021 -0400

    ⚗️ Use pwm_set_duty over analogWrite to set PWM (#23048)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 767a15d468ab6859eec19600541ad21dff757d1a
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 22:43:40 2021 -0700

    🔧 Endstop / DIAG homing conflict warning (#23050)

commit a57355ee06e59fb3d89ab56f8749eb5549efbee3
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 21:23:54 2021 -0700

    ✨ Allow Low EJERK with LA, optional (#23054)

commit 498937967482faf7b299c2119c258c8ce7090ce9
Author: Robby Candra <[email protected]>
Date:   Tue Nov 2 10:29:23 2021 +0700

    🎨 Fix redefine warnings (#23061)

commit 7942f71d26b58630a841f2de2d4f2abaa4120395
Author: Keith Bennett <[email protected]>
Date:   Mon Nov 1 20:23:24 2021 -0700

    ✨ Artillery Ruby (STM32F401RCT6) (#23029)

commit 6af344c19329b51307d38463c4912651ac1dcdaa
Author: thinkyhead <[email protected]>
Date:   Tue Nov 2 01:02:55 2021 +0000

    [cron] Bump distribution date (2021-11-02)

commit 40477e031f16c2ecde535bc4ddae65c986060c9a
Author: ellensp <[email protected]>
Date:   Tue Nov 2 12:36:22 2021 +1300

    🐛 Fix Y_SERIAL_RX_PIN for FYSETC S6 (#23055)

commit 36e475b8beccd7bcc74335cbab69c5aa6ecbf61c
Author: ellensp <[email protected]>
Date:   Tue Nov 2 12:34:53 2021 +1300

    🩹 Fill gaps in pinsDebug_list (#23051)

commit 296a6137cd06ce06f062767ab1b59f99ee95a094
Author: tombrazier <[email protected]>
Date:   Mon Nov 1 23:03:50 2021 +0000

    🚸 More flexible Probe Temperature Compensation (#23033)

commit 5e9b5bb4482bdc4e600c2d0302faca29d6487b42
Author: thinkyhead <[email protected]>
Date:   Mon Nov 1 01:03:28 2021 +0000

    [cron] Bump distribution date (2021-11-01)

commit 9176dcea6ee1e449aee8f4972739268d4e97f034
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 8 01:17:16 2021 -0500

    📝 Tweak EXP comments

commit efe2e79ac8e6d35e80a7d29bfd266685a82dc546
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 23:43:19 2021 -0500

    🔨 Help for GDB remote debugging

commit ba0b772d84bad99604b0131e2142366544370646
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 22:43:02 2021 -0500

    🩹 Fix linker error (transfer_port_index)

commit b88612f9761601e985f8ec8db5d3b91214c39555
Author: thinkyhead <[email protected]>
Date:   Sun Oct 31 01:03:08 2021 +0000

    [cron] Bump distribution date (2021-10-31)

commit 4dd1f0928688c68c6c334e1fb1a8e13be2dc351a
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 04:16:37 2021 -0500

    💚 Update Ender-3 V2 config path

    MarlinFirmware/Configurations#600

commit be412e3e2b07664f95eec21dc8a63a66f25d26a6
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 30 01:39:33 2021 -0500

    🎨 Adjust Ender-3 V2 DWIN options

commit 75e0b7f8ff668217889b770a83990c532998ca95
Author: aalku <[email protected]>
Date:   Sat Oct 30 07:17:20 2021 +0200

    ✨ Shutdown Host Action (#22908)

    Co-authored-by: Scott Lahteine <[email protected]>

commit aa4e32555dd247c391356a2e1449dd9820beeab6
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 29 20:46:55 2021 -0500

    ✨ "Rutilea" ESP32 board (#22880)

commit 18a924d4e26539c270dc08677d4319e5b012c723
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 29 20:42:52 2021 -0500

    🔧 Configuration version 02000903

commit 67b075fd39e530c5d7e8a09ee6b3dba81d8548d0
Author: thinkyhead <[email protected]>
Date:   Sat Oct 30 00:58:37 2021 +0000

    [cron] Bump distribution date (2021-10-30)

commit 70e31bff45165dd07375cd6140fc0a72468e0894
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 21:36:06 2021 -0500

    🎨 Standard 'cooldown' method

commit b09038fcc72bc8df4ec8a7014597586e0b0390ca
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 20:01:44 2021 -0500

    🎨 Standard material presets behavior

commit 1d80464ba77bc576426f15af28a633bf48d769ad
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 27 21:15:58 2021 -0500

    🎨 Define HAS_PREHEAT conditional

commit 3b9bea6f80f02b76f6b71c6c1dcdb751e3611d8e
Author: tome9111991 <[email protected]>
Date:   Sat Oct 30 00:49:12 2021 +0200

    🐛 Fix E3V2 (CrealityUI) Tune/Prepare > Zoffset (#23040)

commit 2c8dce69e16daa08de4a62f115b06fe68c0db17d
Author: thinkyhead <[email protected]>
Date:   Fri Oct 29 00:58:40 2021 +0000

    [cron] Bump distribution date (2021-10-29)

commit 5d04c7496cec3b8a564ac302da116e3783c4b1d3
Author: Scott Lahteine <[email protected]>
Date:   Thu Oct 28 19:22:35 2021 -0500

    🐛 Fix EZBoard V2 board name

commit a1c4aad1472bb418bc0c0bc52322032b68df3a1f
Author: Keith Bennett <[email protected]>
Date:   Thu Oct 28 03:26:05 2021 -0700

    🐛 Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)

commit aa2c6387e95bdab955499627e3890561842f0a6a
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 26 21:54:43 2021 -0500

    🎨 Apply HAS_MULTI_HOTEND conditional

commit fbc125b06c0858d1dbdd29908ad862ed25918b3b
Author: thinkyhead <[email protected]>
Date:   Thu Oct 28 01:00:14 2021 +0000

    [cron] Bump distribution date (2021-10-28)

commit c0337da6334923ea7b65bcd4f9c1ea08c8b33cf2
Author: Zlopi <[email protected]>
Date:   Wed Oct 27 23:10:46 2021 +0300

    🚸 Scroll long filename on MKS TFT (#23031)

commit 11f1335efb448c5774c92ca14a72e6dbec9dac23
Author: ellensp <[email protected]>
Date:   Thu Oct 28 09:06:06 2021 +1300

    🩹 Retain LCD pins with motor expansion (#23024)

commit 3f6c8d5dc56938f95edaecddf20e9b76aec6df29
Author: somehibs <[email protected]>
Date:   Wed Oct 27 21:00:02 2021 +0100

    🐛 Fix serial PORT_RESTORE (and BUFFER_MONITORING) (#23022)

commit 2199ae77c80aa419a580f9ed8dc2f11ecddd6912
Author: tome9111991 <[email protected]>
Date:   Wed Oct 27 21:58:32 2021 +0200

    🐛 Fix E3V2 (CrealityUI) position display (#23023)

    Followup to #23005, #22778

commit de6dfc9abc9aed3769c92ab89e35ee598424c3fe
Author: thinkyhead <[email protected]>
Date:   Wed Oct 27 01:02:46 2021 +0000

    [cron] Bump distribution date (2021-10-27)

commit 65dfc407a5a57eaaa036475b079153efdd1a51da
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 26 19:36:16 2021 -0500

    🚸 Tweaks to UBL G29 Q

commit 9338b7f06e03fd27ac8b2babb96e92a2701700ad
Author: woisy00 <[email protected]>
Date:   Wed Oct 27 01:05:34 2021 +0200

    🐛 Fix AUTOTEMP bug (thermal runaway) (#23025)

    Regression from 9823a37

commit 79626062d03f2f336b43378cc950ead9bffc8703
Author: thinkyhead <[email protected]>
Date:   Tue Oct 26 00:59:45 2021 +0000

    [cron] Bump distribution date (2021-10-26)

commit 73875cf9ccd4b23bbe2a46bb57192109b7d1a7c6
Author: tombrazier <[email protected]>
Date:   Mon Oct 25 22:29:40 2021 +0100

    🚸 Default T0 for M569, M906, M913 (#23020)

commit 930cb7c3175eb85866bb673a861f8945c3c18726
Author: ellensp <[email protected]>
Date:   Tue Oct 26 10:02:29 2021 +1300

    ⚡️ Add'l PCINTs for Mega Extended (#23019)

commit 90716eb7ce6ffd315b923e85a19d3bca65b78ff0
Author: Keith Bennett <[email protected]>
Date:   Sun Oct 24 23:14:02 2021 -0700

    ✨ Octopus Pro V1.0 with STM32F429ZGT6 (#23008)

commit b619a7184406a3fff2d67d33f1f82159721bb1bc
Author: ellensp <[email protected]>
Date:   Mon Oct 25 19:12:07 2021 +1300

    🐛 Fix børken E_DUAL_STEPPER_DRIVERS (#23017)

commit 70863058cd91b155a9d299680c34430c8d9a4192
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Oct 25 01:08:15 2021 -0500

    🐛 Fix Ender-3 V2 Enhanced SetFlow (#23016)

commit 5ef0468251b24fae5d2053691ff986b95fcd1631
Author: Lefteris Garyfalakis <[email protected]>
Date:   Mon Oct 25 09:06:13 2021 +0300

    🚸 E3V2 Enhanced cosmetic fixes (#23009)

commit d79ea20dcd139ae0073051fd15405fef5b40dbf4
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 25 01:39:48 2021 -0400

    ✨ Creality v2.4.S1 (Ender 7) board  (#23010)

commit f6c7fbd1ab62b0c3aa70c971ad6c30d062d3252a
Author: Dennis <[email protected]>
Date:   Mon Oct 25 07:35:11 2021 +0200

    🐛 Fix JyersUI current positions (scaling) (#23005)

commit 444f27dfa0bba82b73b428b7adcc50d44b99775a
Author: tombrazier <[email protected]>
Date:   Mon Oct 25 06:33:40 2021 +0100

    🐛 Add USE_TEMP_EXT_COMPENSATION options (#23007)

commit f8968ed13c217ffa8db13d15c1d136e8d3864c1e
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 24 23:32:34 2021 -0500

    🐛 More explicit allocation of solenoids

    In reference to #22887

commit 6a6bf0fd1b04f79215ee6d64596fdb1dcd72ccaa
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 24 23:33:27 2021 -0500

    🔧 Fewer alerts about Z_SAFE_HOMING

commit 22d3a993e7d5d2499517ddda8de5b8450735ab56
Author: thinkyhead <[email protected]>
Date:   Mon Oct 25 01:03:57 2021 +0000

    [cron] Bump distribution date (2021-10-25)

commit e5e872c2e2ff87a4bef0c0565aec97cc12355dc7
Author: thinkyhead <[email protected]>
Date:   Sun Oct 24 01:02:51 2021 +0000

    [cron] Bump distribution date (2021-10-24)

commit 3ec0213dbc34152e18eb5b4225e02a12d6cdc8e5
Author: thinkyhead <[email protected]>
Date:   Sat Oct 23 01:04:09 2021 +0000

    [cron] Bump distribution date (2021-10-23)

commit 9c055621a0944e7f65051c0c72d117d13b7fe05b
Author: tombrazier <[email protected]>
Date:   Fri Oct 22 21:56:05 2021 +0100

    🐛 Fix probe temp compensation maths (#23004)

commit de3c563a990e72533fb9ea9f376c53595c3e986b
Author: tome9111991 <[email protected]>
Date:   Fri Oct 22 18:16:07 2021 +0200

    🐛 Fix SHOW_REMAINING_TIME option for JyersUI (#22999)

commit 9a19ea50d8451fc0970843cc896bd2553e0f987e
Author: Keith Bennett <[email protected]>
Date:   Fri Oct 22 08:52:31 2021 -0700

    ✨ BigTreeTech TFT35 SPI V1.0 (#22986)

commit f62890d889f51e07e3281e065d93445afe7b6566
Author: ellensp <[email protected]>
Date:   Fri Oct 22 17:57:30 2021 +1300

    🐛 Fix E3V2 width/height defines (#22994)

commit a309a9535db532457b0aca8e861f5b8ed9f8dd93
Author: thinkyhead <[email protected]>
Date:   Fri Oct 22 01:12:18 2021 +0000

    [cron] Bump distribution date (2021-10-22)

commit 566ce56a2d6c572d9d4700dad95a330b2459cb32
Author: thinkyhead <[email protected]>
Date:   Thu Oct 21 01:08:58 2021 +0000

    [cron] Bump distribution date (2021-10-21)

commit a05b66a9503ea89cbb967f50c8680856c40c724f
Author: thinkyhead <[email protected]>
Date:   Wed Oct 20 01:05:51 2021 +0000

    [cron] Bump distribution date (2021-10-20)

commit a6a838084d69435f2113deb5d783b96d909be085
Author: Augusto Zanellato <[email protected]>
Date:   Tue Oct 19 17:24:22 2021 +0200

    ✨ Eryone Ery32 mini (STM32F103VET6) board (#22956)

commit 52edc543bd72bfacb4ac6eb47eae2e466dcce62d
Author: Mike La Spina <[email protected]>
Date:   Tue Oct 19 06:05:23 2021 -0500

    🩹 Fix pragma ignored for older GCC (#22978)

commit 5f7c92dfbb0af65610d88ea48d48f00fd04505c2
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:59:48 2021 -0500

    🎨 Refactor MOSFET pins layout (#22983)

commit b69971f06aed8e2811ffcede0f153251f06775dc
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:53:34 2021 -0500

    🔨 Fix older GCC CXXFLAGS warning

commit 1f3f9cb68ce9c9adad55a98ccea07e491d7b9785
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:52:41 2021 -0500

    🎨 Pragma GCC cleanup

commit e77df7230023cc0ac4eb4cce08fae70ff1427dce
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 05:51:49 2021 -0500

    🎨 Fix pinsDebug_list warnings

commit f8ec8e5bf6df342a27e5dc9e39d6605c50f64194
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 04:03:03 2021 -0500

    💡 Sub-include pins labels

commit 6cf6c4cd852bd09c509407057e81e37e36bad52e
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 02:56:44 2021 -0500

    🔨 Delete after encrypt. Lerdge encrypt only once

commit c91451d215506b3c3977b9ae4b146c98b48acdeb
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 02:49:35 2021 -0500

    🔨 Update 'pio vscode init' detection

commit 3a77894efd579955968a4bcf023b6d8ae937ae05
Author: thinkyhead <[email protected]>
Date:   Tue Oct 19 01:06:11 2021 +0000

    [cron] Bump distribution date (2021-10-19)

commit 357fb8d98458883144e29a39e9f4d5c033f803a3
Author: Jason Smith <[email protected]>
Date:   Mon Oct 18 01:11:16 2021 -0700

    🐛 Fix max chamber fan speed (#22977)

commit 7bab1c92e72f8e1bdb5c04287c4ee82a89dba600
Author: Keith Bennett <[email protected]>
Date:   Mon Oct 18 00:57:54 2021 -0700

    🐛 Fix I2C EEPROM SDA/SCL aliases with SKR Mini E3 V2 (#22955)

commit ec57879c595ceffff8c136bf8acd5b4bce33a44a
Author: ellensp <[email protected]>
Date:   Mon Oct 18 20:54:20 2021 +1300

    🐛 Fix MMU1 compile (#22965)

commit d3a84bc584875dc3e022f2d9fd8065207caef204
Author: Keith Bennett <[email protected]>
Date:   Mon Oct 18 00:51:01 2021 -0700

    ✨  BTT Octopus Pro V1.0 (STM32F446ZET6) (#22971)

commit 28e2c358d1238d2d0db9e74b23e83f6e3bff89d4
Author: Mike La Spina <[email protected]>
Date:   Mon Oct 18 02:40:47 2021 -0500

    🎨 Suppress type warning (#22976)

commit 2e0bde37d77c8c0d8274d74f18cb27be2c232278
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 22:10:08 2021 -0500

    🎨 Add MKS UI goto_previous_ui

commit ad4a8a68c2125f74124225813fe978c31677b3e5
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 18 01:49:35 2021 -0500

    ✅ Warn about dummy thermistors

commit b93c3301f2146bed7287ad097b95b53507c35420
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 18 02:03:01 2021 -0400

    Fix JyersUI ZOffset Multiplication (#22975)

commit d2b0939118827c49610058c41f521b789c827477
Author: InsanityAutomation <[email protected]>
Date:   Mon Oct 18 02:01:28 2021 -0400

    Fix Tool Change Park (#22968)

commit 741e70541d5ba0e8a7cfd2c402b306dfab4b77ee
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 20:24:41 2021 -0500

    🚸 Tweak MKS UI G-code console

commit d685cbd5c304e8e3f3b86960e616c6b797ae85bd
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 18:11:16 2021 -0500

    🎨 Fix up MKS UI defines

commit 7d16f0cadf12ed9c662d47af96daad6fe8e07d9e
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 19:26:31 2021 -0500

    🔨 Improve 'mftest' error message

commit cd0ee8c34dab5393d7b7c7845e553a02dfd6d2da
Author: thinkyhead <[email protected]>
Date:   Mon Oct 18 01:06:10 2021 +0000

    [cron] Bump distribution date (2021-10-18)

commit bc567e7b4939f3abb75a72c313824e6abf0fb07c
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 17 16:56:01 2021 -0500

    🔧 Safety feature warnings

commit 3c94f2f1c33395e45f3b2456f97eb64310b41000
Author: thinkyhead <[email protected]>
Date:   Sun Oct 17 01:02:43 2021 +0000

    [cron] Bump distribution date (2021-10-17)

commit babb3d7b4ce49fdca215bab857039e7132dfadbd
Author: thinkyhead <[email protected]>
Date:   Sat Oct 16 01:07:57 2021 +0000

    [cron] Bump distribution date (2021-10-16)

commit 9d72cbf84b970e5060f8dceef7158b9ca8252856
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 15 15:07:47 2021 -0500

    💡 Update old gnu.org links

commit 95662d3aed0a31ea832407c042a5b0c56cd8a2db
Author: InsanityAutomation <[email protected]>
Date:   Fri Oct 15 15:56:59 2021 -0400

    ✨ Add option EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN (#22960)

commit ee28a14e8e7f6b33fe5813dbedcd85380207c345
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 15 00:24:08 2021 -0500

    🎨 Refactor Host Actions as singleton

commit de5aefd09e2ede1314382c4a10e51335d07524f9
Author: ellensp <[email protected]>
Date:   Fri Oct 15 14:38:03 2021 +1300

    🔧 Add, update TFT sanity checks (#22928)

commit 11435356643c7e32dd6f30e8a144e2c3766bfb35
Author: thinkyhead <[email protected]>
Date:   Fri Oct 15 01:05:59 2021 +0000

    [cron] Bump distribution date (2021-10-15)

commit 5d665d5e1e3a7b9f95cd4075815883fce3791465
Author: thinkyhead <[email protected]>
Date:   Thu Oct 14 01:01:39 2021 +0000

    [cron] Bump distribution date (2021-10-14)

commit 8e4953514c893410c402ba6486f86580385effd9
Author: InsanityAutomation <[email protected]>
Date:   Tue Oct 12 23:19:05 2021 -0400

    ⚡️ Formbot ST7920 delays, intentional X2 pins (#22915)

    Co-authored-by: Scott Lahteine <[email protected]>

commit bf91bd5eee252a2ec2feacb54bd1ed88b38215aa
Author: Dmytro <[email protected]>
Date:   Wed Oct 13 05:45:00 2021 +0300

    🎨 Update MKS UI for no bed, extruder (#22938)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f58934c4efc6319aebaa3d0845030b91bea64828
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 19:06:39 2021 -0700

    🐛 Fix MKS Robin Pro 1.0 LCD reset pin (#22937)

commit 8ce2254aa69ae12bc31c6e55bf88a7d1a60054fa
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 19:05:37 2021 -0700

    🔧 Remove obsolete G34 sanity check (#22929)

commit 0d41667bc2c3895ea8e3ed28435f42ffa106f44f
Author: George Fu <[email protected]>
Date:   Wed Oct 13 09:32:54 2021 +0800

    🐛 Fix FYSETC Cheetah v2.0 build (#22926)

commit 02dc7a6387fdc3b9bd1659b3aa400802bacb7828
Author: ellensp <[email protected]>
Date:   Wed Oct 13 14:28:45 2021 +1300

    🐛 Fix G33 homing current (#22909)

commit 3f9ff2421fadb2513e5c94688d4c49e4bf6b84e7
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 12 18:26:42 2021 -0700

    🐛 Fix SKR Mini E3 V2 I2C-based EEPROM (#22919)

    Followup to #20609

commit 332ef9939c27d8b8159b71b713c892246b004efd
Author: thinkyhead <[email protected]>
Date:   Wed Oct 13 01:07:25 2021 +0000

    [cron] Bump distribution date (2021-10-13)

commit a7519ecca92cbaa3e3c4cc28dcb19911bf5115b0
Author: mks-viva <[email protected]>
Date:   Tue Oct 12 20:01:18 2021 -0500

    ✨ MKS Eagle (STM32F407VET6) board (#22897)

commit 15ebe45f36f34bce4a07f6348c85ffb1ab904087
Author: InsanityAutomation <[email protected]>
Date:   Tue Oct 12 19:40:56 2021 -0400

    🐛 Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)

commit 769948bb4d6d55d2bf4b42d69e79ce516986d77a
Author: thinkyhead <[email protected]>
Date:   Tue Oct 12 01:05:49 2021 +0000

    [cron] Bump distribution date (2021-10-12)

commit ad14b5052cd60b6ab79bb236529241696266bf30
Author: Stuart Pittaway <[email protected]>
Date:   Mon Oct 11 23:42:29 2021 +0100

    ✨ M261 S I2C output format (#22890)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 90fa48ffd565ae28e8a0bfcf2d5f8b5a2de2e558
Author: thinkyhead <[email protected]>
Date:   Mon Oct 11 01:03:10 2021 +0000

    [cron] Bump distribution date (2021-10-11)

commit 0c86cc89f0c74e58949f8c5a0351d57dffab8019
Author: thinkyhead <[email protected]>
Date:   Sun Oct 10 01:03:22 2021 +0000

    [cron] Bump distribution date (2021-10-10)

commit b3fd0a50505455bbd4d0487b202ab75797a79421
Author: InsanityAutomation <[email protected]>
Date:   Sat Oct 9 19:13:19 2021 -0400

    🐛 Fix IDEX Duplication Mode Positioning (#22914)

    Fixing #22538

commit 33809ae000da2cf1a5a2b0641b235a6bb68d245a
Author: Minims <[email protected]>
Date:   Sun Oct 10 01:10:21 2021 +0200

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

commit 886c59dc1045787042fa3b824bdc56655d10d655
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Oct 10 01:05:24 2021 +0200

    🐛 Queue string followup (#22900)

commit 13bb2393e13148732861c690d523f07972f4abd8
Author: Pyro-Fox <[email protected]>
Date:   Sat Oct 9 15:09:50 2021 -0700

    🐛 LCD string followup (#22892)

commit bd6a1a2898909fff228febcb38538e47a2416634
Author: thinkyhead <[email protected]>
Date:   Sat Oct 9 00:59:22 2021 +0000

    [cron] Bump distribution date (2021-10-09)

commit 1ec399c6ab2f51f7d9c491c098c001679d0ad0da
Author: thinkyhead <[email protected]>
Date:   Fri Oct 8 01:05:32 2021 +0000

    [cron] Bump distribution date (2021-10-08)

commit 1f41437052c35a9091e057b843533d5695e8676e
Author: thinkyhead <[email protected]>
Date:   Thu Oct 7 01:03:32 2021 +0000

    [cron] Bump distribution date (2021-10-07)

commit f79d1f114c44c9f56cf2ae65203ae88fc2e4f6de
Author: ellensp <[email protected]>
Date:   Thu Oct 7 09:42:59 2021 +1300

    🎨 Define Octopus allocated endstop pins (#22882)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 9922410a73fd3285bfba0478ac16f04eeee48b8e
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 5 21:35:31 2021 -0500

    🔨 Port libsdl2_net required for macOS simulator

commit 149cbe795da4828b8df4ef34f5acee7fdd0d2dbb
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 22:19:05 2021 -0500

    🎨 Tweak FORCE_INLINE

commit e52c30d43a171fe6ce21a83589ac17d467e9a11c
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 5 21:19:28 2021 -0500

    🐛 Followup to F() in config_line

    Followup to 1dafd1887e

commit ca7ab6e13f0e8acfb19192378c8f99a58ee3413e
Author: thinkyhead <[email protected]>
Date:   Wed Oct 6 01:02:35 2021 +0000

    [cron] Bump distribution date (2021-10-06)

commit 4e9ae9449fbdc9ad3cd9267d8e620b5ec5eddb3e
Author: Mark <[email protected]>
Date:   Tue Oct 5 12:23:02 2021 +0800

    ✨ ESP32 Panda_ZHU and Panda_M4 (#22644)

commit f395198e14a1cbc0604611b3ca1fb6261d4871fa
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 22:16:15 2021 -0500

    🔨 Move Creality 4.2.2 warning

commit e8459ae63c8290123827b4e45bbe051c95060783
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 19:50:14 2021 -0500

    🐛 ExtUI F() followups

    Followup to 12b5d997a2

commit d5cb30524e0ca0607ed49587f49e231c37fff4ef
Author: thinkyhead <[email protected]>
Date:   Tue Oct 5 01:01:31 2021 +0000

    [cron] Bump distribution date (2021-10-05)

commit f5b085157aaa2c3c7b360750c745588104e155f7
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 18:58:20 2021 -0500

    🔨 Add 'opt_find' to find matching options

commit b919bdbf0b4f78578964999373c8918cc523d736
Author: ellensp <[email protected]>
Date:   Mon Oct 4 19:12:19 2021 +1300

    🩹 Fix EXTRUDER 0 compile warning (#22868)

commit 2d08afe456255d47e6cd244c49c7cd243f74c53a
Author: Sebastien Andrivet <[email protected]>
Date:   Mon Oct 4 08:06:49 2021 +0200

    🐛 Fix ExtUI Pause messages (#22874)

commit 65b950a489c35b1d5547da3a504af4dad8cde3d7
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 20:15:52 2021 -0500

    🎨 Apply F() to kill / sendinfoscreen

commit d1938d54ed5e42d766d97d898cd117893ea24083
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 19:28:29 2021 -0500

    🎨 Apply F() to MKS UI errors, assets

commit 1dafd1887e40399faf16e3455e3670ed3acfac52
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 13:46:42 2021 -0500

    🎨 Apply F() to various reports

commit d7fede3a6324cd6b1ec91a9c8e248fce8f0d7cf2
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 13:40:01 2021 -0500

    🎨 Apply F() to G-code report header

commit eeffac697c5d7b69e01e38ed1602dbd21a366e93
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 23:52:41 2021 -0500

    🎨 Apply F() to UTF-8/MMU2 string put

commit 12b5d997a2cee538e5026a68f8e0cfdd53248986
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 22:11:48 2021 -0500

    🎨 Apply F() to some ExtUI functions

commit 008bf1bcaef181cd1b74638692e2465bb9e07a4d
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 11:55:08 2021 -0500

    🎨 Apply F() to Host Actions strings

commit 7f1286a11f87065c4e666985e679cf9c77d668bf
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 17:05:11 2021 -0500

    🎨 Apply F() to status message

commit 520b97083e52efdd47ab434b97823e48d85ade62
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 27 11:03:07 2021 -0500

    🎨 Apply F() to serial macros

commit 417e2530ebc5b6c74ac34adaba8be552b407383a
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 21:11:31 2021 -0500

    🎨 Apply F() to G-code suite and queue

commit 64a919da2a6dbe8b529c3471935a6d632420ca3a
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 05:59:03 2021 -0500

    🎨 Apply F() to E3V2 titles, popups

commit 59dac3a7e41ae7964686d9dff56baba821a278f7
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 18:43:52 2021 -0500

    🎨 Apply F() to G-code subcommands

commit 23f10563e03fd8f7368885b1c406a4f7c7c3d1ae
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 18:22:37 2021 -0500

    🎨 Update F string declarations

commit cb9fafd4f3a0dc3d963bd13664b58d3e2487d5b3
Author: ellensp <[email protected]>
Date:   Mon Oct 4 18:25:45 2021 +1300

    🐛 Fix Arduino IDE compile error (#22877)

commit 54d400608db83bfa606e1b757589c169c9a38fc2
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 00:24:41 2021 -0500

    🎨 Axis name string interpolation, with examples (#22879)

commit eb784d6e55c84c05b2a5353899d8bc25276e0640
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 02:33:14 2021 -0500

    🎨 Rename MarlinUI::zoffset_overlay

commit 97295c552de9b72ad69833094776e34c3502fa0a
Author: thinkyhead <[email protected]>
Date:   Mon Oct 4 01:05:57 2021 +0000

    [cron] Bump distribution date (2021-10-04)

commit 9bb562f40a5570a63430bbf9392da0fdb85c5c8c
Author: VragVideo <[email protected]>
Date:   Sun Oct 3 06:12:51 2021 +0300

    ✨ WYH L12864 LCD (Alfawise Ex8) (#22863)

commit e4d8290be3765b0ee9d780b346c852e3c142bca1
Author: thinkyhead <[email protected]>
Date:   Sun Oct 3 01:06:58 2021 +0000

    [cron] Bump distribution date (2021-10-03)

commit e27b1e5d58113dc1bad900701762ec147e573703
Author: thinkyhead <[email protected]>
Date:   Sat Oct 2 01:00:08 2021 +0000

    [cron] Bump distribution date (2021-10-02)

commit ea0169f2bcd3de2fe3b99bceb0f9dd34d85f3322
Author: thinkyhead <[email protected]>
Date:   Fri Oct 1 01:05:30 2021 +0000

    [cron] Bump distribution date (2021-10-01)

commit d3ed21b10eed717bdeeb210502082655d50488bf
Author: thinkyhead <[email protected]>
Date:   Thu Sep 30 01:05:47 2021 +0000

    [cron] Bump distribution date (2021-09-30)

commit c6ceac9067b21a705f40fbcfc90bbc922945f82e
Author: Steven Haigh <[email protected]>
Date:   Thu Sep 30 02:22:46 2021 +1000

    🚑️ Fix DWIN_CompletedLeveling (#22851)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 732e59b412a29c52f5d6ad492743b86fa4cb20e6
Author: Malderin <[email protected]>
Date:   Wed Sep 29 04:20:03 2021 +0300

    🐛 E3V2 Mesh Viewer followup (#22850)

commit 90b0e16ec0c80ec128b70d20b0b47af8a3281c88
Author: thinkyhead <[email protected]>
Date:   Wed Sep 29 00:58:41 2021 +0000

    [cron] Bump distribution date (2021-09-29)

commit f2ba845dad67c57a6cf1ce5a75bc4f526681ca2d
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 02:39:11 2021 -0500

    🎨 Condense reverse-protection code

commit 33e0855e2c173680865aaa6c6aa93047d63fc469
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 01:07:51 2021 -0500

    ⚡️ Handle shared enable pins (#22824)

commit eda8e9c8dddfb93950409092832311a60635c054
Author: thinkyhead <[email protected]>
Date:   Tue Sep 28 01:01:32 2021 +0000

    [cron] Bump distribution date (2021-09-28)

commit 8ab02df63a2360b2dac86048b38311bbdfa42b3c
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Sep 27 14:47:47 2021 -0500

    ✨ E3V2 (Enhanced) Mesh Viewer (#22844)

commit 8f9e56afb97ca6a40265b24fe90ac7b672050df9
Author: Malderin <[email protected]>
Date:   Mon Sep 27 22:13:38 2021 +0300

    🚸 MKS UI LVGL bed preheat presets (#22842)

commit 5dce8d0a84aa8ee3e2b63c880dd2eadc18a64f1b
Author: Sola <[email protected]>
Date:   Tue Sep 28 03:08:29 2021 +0800

    🚸 Fix MKS LVGL UI temperature set interface (#22848)

commit 228eb9c404fcbcebb507bbfe781ebe3ca0a1ccdf
Author: espr14 <[email protected]>
Date:   Mon Sep 27 21:05:52 2021 +0200

    🎨 steps_to_mm => mm_per_step (#22847)

commit f73175d8263033d1feb1045af67e7230c844aab0
Author: Tanguy Pruvot <[email protected]>
Date:   Mon Sep 27 21:01:47 2021 +0200

    🚸 TFT backlight PWM / brightness (#22841)

commit 942b76082c5704558957731828e0fd023ad09bae
Author: ellensp <[email protected]>
Date:   Tue Sep 28 04:17:00 2021 +1300

    🔧 Sanity-check BLTOUCH_SET_5V_MODE on 5V pins (#22840)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 3329e07bd9cfc148a7ca78c121778e2255ac8a72
Author: thinkyhead <[email protected]>
Date:   Mon Sep 27 01:00:10 2021 +0000

    [cron] Bump distribution date (2021-09-27)

commit 8fd5a4037a27c7c4009e9272770957a4931bcaad
Author: Giuliano Zaro <[email protected]>
Date:   Sun Sep 26 04:59:29 2021 +0200

    🩹 Fix M412_report formatting (#22834)

commit 031fec7a0233d5b1199e2e3a61a5ea98ecc3bf84
Author: thinkyhead <[email protected]>
Date:   Sun Sep 26 01:02:25 2021 +0000

    [cron] Bump distribution date (2021-09-26)

commit 1ac7a56a823b5012250dd7259a9a7a46d3bfcde5
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat Sep 25 05:59:43 2021 -0500

    🐛 E3V2 Brightness followup (#22821)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7fdaabd54475e5f4dec3afad693b0c623bf7bf6
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 02:27:07 2021 -0500

    🎨 Updated string macros

commit e1ac3ede0d7bb9d77362040b593904006a26f873
Author: Steve Wills <[email protected]>
Date:   Fri Sep 24 22:12:43 2021 -0400

    🐛 Add 'static' to fix 'duplicates' (#22826)

commit 86a6b9316ed16f4726096dfdf7495ee75dada7d4
Author: Manuel McLure <[email protected]>
Date:   Fri Sep 24 19:08:07 2021 -0700

    🐛 Fix M420 / M851 reports (#22829)

    Followup to 79c72ed821

commit 849b86afb68949ec0f67c49401bdf659d3eaac5c
Author: thinkyhead <[email protected]>
Date:   Sat Sep 25 00:59:33 2021 +0000

    [cron] Bump distribution date (2021-09-25)

commit e85f6225053de257ee6f2652f097d0939d0dbde7
Author: thinkyhead <[email protected]>
Date:   Fri Sep 24 01:01:22 2021 +0000

    [cron] Bump distribution date (2021-09-24)

commit 35ad3b0d3b1a8bbf6b220f30f63fd0e32be8fe34
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 11:09:43 2021 -0500

    🐛 Fix reset_hotend_offsets

commit dc5bef62ba185461ba969db6af996ebc93a33ba7
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 10:01:37 2021 -0500

    🎨 Various multi-axis patches (#22823)

commit 9c208a008d4f336f1bdc095af0a50754311092d1
Author: Sola <[email protected]>
Date:   Thu Sep 23 15:53:48 2021 +0800

    ⚡️ Improve LVGL touch driver (#22817)

commit 7c5727e0ec1c69bf4bb72dcd34d6acce02a8c09e
Author: ellensp <[email protected]>
Date:   Thu Sep 23 18:58:52 2021 +1200

    🐛 Fix anycubic_i3mega_lcd debug macros (#22820)

commit 1835f8fb25648888cf6df6e17af1cefdd1248d71
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 00:51:35 2021 -0500

    🩹 Add MarlinSPI to more HALs

commit 64c6475434349f88c61fdd403b4e9e830fd60b35
Author: thinkyhead <[email protected]>
Date:   Thu Sep 23 01:04:29 2021 +0000

    [cron] Bump distribution date (2021-09-23)

commit 11ceea25ce145c8485b516fdb010809409d2bb06
Author: Scott Lahteine <[email protected]>
Date:   Wed Sep 22 00:19:26 2021 -0500

    🎨 Less use of undef for RAMPS pins

commit 0387f94632d24b9d43397b063767940fe17acc62
Author: thinkyhead <[email protected]>
Date:   Wed Sep 22 01:02:28 2021 +0000

    [cron] Bump distribution date (2021-09-22)

commit b88117d6364b8919a8a7df6c80d8132af98a6afc
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 21 06:25:13 2021 -0500

    🎨 Fix L64xx enable, clean up conditionals

commit 58adb849d3e2f81075eeb02db8e1d5b3f297d59b
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 21 02:42:01 2021 -0500

    🔨 Improve pins_set script

commit 5b934e02fad7cbff79e14d1bd6b8d0a8fbe24de5
Author: thinkyhead <[email protected]>
Date:   Tue Sep 21 01:01:29 2021 +0000

    [cron] Bump distribution date (2021-09-21)

commit 58301837e0a1ea0d682d23e0510619bd85841d5c
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 20 18:44:35 2021 -0500

    🩹 Remove extra #include, misc. style

commit 3344071f24b505d180dd1423b11510172c3f1c1c
Author: Dan Royer <[email protected]>
Date:   Mon Sep 20 13:42:33 2021 -0700

    Polargraph / Makelangelo kinematics (#22790)

commit f3864a1ae7b45fbc0359a65e4dc75ce062e39479
Author: thinkyhead <[email protected]>
Date:   Mon Sep 20 01:03:16 2021 +0000

    [cron] Bump distribution date (2021-09-20)

commit e60e4b8f57806147741e87e2820c258c4b51cf91
Author: Lefteris Garyfalakis <[email protected]>
Date:   Mon Sep 20 03:26:46 2021 +0300

    🌐 Update Greek language (#22799)

commit 216a66b42c8240f37befe98e6a410d1e3694ff4e
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 19:25:01 2021 -0500

    🌐 Skip non-essential translations

commit 008284934c2f07ea335beec6086afd56a30d5829
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 18:58:12 2021 -0500

    🔨 Case-insensitive tests list

commit c1d7e234e1aba1ecc91cfc77d17d38b67618c315
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 18:40:56 2021 -0500

    🌐 Reduce language file sizes

commit 10fda222ea40af91ff1244ad5b7c8737043e1011
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Sep 19 05:16:29 2021 +0200

    🐛 STM32 ADC followup (#22798)

commit a6b69ab6d518488fd87109d9ba7ecf2e82b7f2a9
Author: thinkyhead <[email protected]>
Date:   Sun Sep 19 01:01:05 2021 +0000

    [cron] Bump distribution date (2021-09-19)

commit 89125cd32ea913152dcdfe0edfa1571027f44e2d
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Sep 19 01:27:58 2021 +0200

    🚸 Wake up TFT for some events (#22788)

commit c88e85c939afe4f024fcb24ca6a68950d36ec901
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 18 18:24:39 2021 -0500

    🎨 Replace some infrequently-used macros

commit f367a3987de2703965b2b043b191d6ed77648e6d
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 18 18:22:15 2021 -0500

    📝 Update some pins comments

commit d7e597f3df11df9a01b432715d7d9865e578a4e6
Author: Steven Haigh <[email protected]>
Date:   Sat Sep 18 16:33:18 2021 +1000

    🐛 STM32 ADC Resolution = 12 bit (or ADC_RESOLUTION) (#22789)

commit f46e05fcb1e8b9a4ed36d2caa09122e75188e9da
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 17 19:09:54 2021 -0500

    🚸 Move fade item up

commit ad38699c115585134841b479a112f723e17d0b17
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 12 17:08:57 2021 -0500

    🚸 Better bed position

commit fede20fbe69d4d3687a07b4a9cb70b681f5c51b3
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 17 18:58:55 2021 -0500

    💬 Add non-translated STR_DONE

commit 11fce69781efb4e377f5349e14263a3466ba325d
Author: thinkyhead <[email protected]>
Date:   Sat Sep 18 00:58:51 2021 +0000

    [cron] Bump distribution date (2021-09-18)

commit 46dfc7ba341325d4e9a69e7e8979215b90e79334
Author: thinkyhead <[email protected]>
Date:   Fri Sep 17 01:06:26 2021 +0000

    [cron] Bump distribution date (2021-09-17)

commit 8df3e62c89f94f68465ac30e276333940e069ff7
Author: Sola <[email protected]>
Date:   Thu Sep 16 19:48:24 2021 +0800

    🚸 Fix and improve MKS LVGL UI (#22783)

    Co-authored-by: makerbase <[email protected]>
    Co-authored-by: MKS-Sean <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 323b38ee88dbf2a4691a20439dbb95a824822199
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 16 04:36:26 2021 -0500

    💡 Adjust headers, formatting

commit 08a40c43750eb49521849792520d8d819c0fcd29
Author: InsanityAutomation <[email protected]>
Date:   Thu Sep 16 03:46:16 2021 -0400

    ✨ Improve pause/filament change for ExtUI (#22655)

commit 02ae11ed72724a0f0a670069fe6b93933031de8b
Author: Scott Lahteine <[email protected]>
Date:   Wed Sep 15 21:12:39 2021 -0500

    🔧 Add MANUAL_FEEDRATE sanity-check

commit 0cc17b920ae9c804d5b9b2c95325e959c6f4eea5
Author: thinkyhead <[email protected]>
Date:   Thu Sep 16 01:03:27 2021 +0000

    [cron] Bump distribution date (2021-09-16)

commit e31d52184b321f1dbf9f091cb7188c58aef87cdb
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 16 01:15:01 2021 -0500

    🎨 Handle more pre-defined pins in pins_postprocess (#22771)

commit 5b5a8798f8fe202e86c008088f847a3edb51cc71
Author: Scott Lahteine <[email protected]>
Date:   Wed Sep 15 19:48:29 2021 -0500

    🎨 Consolidate Ender-3 V2 DWIN common code (#22778)

commit cca3250c3ff8e8ed4277f4918f507ab13913d3b5
Author: Keith Bennett <[email protected]>
Date:   Wed Sep 15 13:51:52 2021 -0700

    ✏️ Fix TFT field names (#22776)

commit a1e1555ea1e4a5bb0dabc027b56ffb9fc05739e3
Author: mks-viva <[email protected]>
Date:   Wed Sep 15 14:47:23 2021 -0500

    🐛 Fix MKS Monster8 EEPROM issue (serial timer) (#22777)

commit 8235ae9cc00b10362ca9f6e79acb4516c08557af
Author: Miguel Risco-Castillo <[email protected]>
Date:   Wed Sep 15 01:44:28 2021 -0500

    🩹 Fix DWIN Enhanced Tune menu during homing (#22773)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 9c8ad57f626bbb84d1f7f2c2262f3b101f91e664
Author: thinkyhead <[email protected]>
Date:   Wed Sep 15 00:59:31 2021 +0000

    [cron] Bump distribution date (2021-09-15)

commit 21e8f99500554d69cb91ac2be0b4ab1497bf9fac
Author: Dakkaron <[email protected]>
Date:   Wed Sep 15 02:00:48 2021 +0200

    ✨ M282 - Detach Servo (#22760)

commit c2e4b1626f0cce82a55e8de9dc98ed9381e1d9ad
Author: Tanguy Pruvot <[email protected]>
Date:   Tue Sep 14 04:07:08 2021 +0200

    ✨ TFT Screen/Backlight Sleep (#22617)

commit ae22a920178555585142a5299ff77ec50d9fcc2e
Author: thinkyhead <[email protected]>
Date:   Tue Sep 14 01:17:33 2021 +0000

    [cron] Bump distribution date (2021-09-14)

commit 5a04cf0514c819d25f7eea0a9c95e17022d7bf1e
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 13 18:46:30 2021 -0500

    🔖 Configurations version 02000902

commit 23d10ceccb16e5886a6441a364fcbc08391287fe
Author: Desuuuu <[email protected]>
Date:   Fri Sep 10 12:15:08 2021 +0200

    🎨 Use ExtUI API where applicable

commit 370ea116f46f78536d99ec140a2de2d1d52942f5
Author: Roman Moravčík <[email protected]>
Date:   Tue Sep 14 00:10:30 2021 +0200

    🌐 Update Slovak language (#22752)

commit 3587ef2e8f3086104754f1e5e192f0584a709627
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 13 16:38:51 2021 -0500

    🐛 Fix old spindle/laser options

commit 798a8a7a0852c12fb8640c4a531fac70fbc57eda
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 13 16:28:12 2021 -0500

    🔧 SPINDLE_LASER_PWM => SPINDLE_LASER_USE_PWM

commit 000d412da60727661176fe6416c3517dd4b4be3d
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 12 21:41:24 2021 -0500

    🐛 Fix CUSTOM_MENU_MAIN_SCRIPT_DONE

    Fix #22762

commit d69c053225bab92bf53bec064a1830079a2092f9
Author: Vert <[email protected]>
Date:   Sun Sep 12 22:39:52 2021 -0400

    🐛 Fix ENABLED => EITHER typo (#22756)

commit 24460052d245bc9b56813aab67d52a96a858e034
Author: mks-viva <[email protected]>
Date:   Sun Sep 12 21:30:09 2021 -0500

    ✨ MKS Robin Nano V1.3 (STM32F407VET6) (#22749)

commit ea7e777cb13f314ddfeab81e29d7b7a2fc67e7b3
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 12 21:21:35 2021 -0500

    🎨 Tweak custom menu item code

commit 84f66627c4557ce9a4f231af6b483d59c777bfc4
Author: thinkyhead <[email protected]>
Date:   Mon Sep 13 01:39:56 2021 +0000

    [cron] Bump distribution date (2021-09-13)

commit 29d3996a55d00059437f6c1194bac5eec5b7b2e2
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 12 19:37:33 2021 -0500

    📌 Creality 4.3.1 board variants (#22704)

    Co-authored-by: Chico <[email protected]>

commit 37c488fda1176e9e50531d0ea7e9d66c74cef2d4
Author: Luc Van Daele <[email protected]>
Date:   Mon Sep 13 02:35:37 2021 +0200

    🚸 G33 R and O options (#22707)

commit c9d54bc3f34c18691a051c0a9f196010dd7c7de9
Author: ellensp <[email protected]>
Date:   Mon Sep 13 11:03:24 2021 +1200

    🐛 Fix Trigorilla Pro HAL/STM32 build offset (#22761)

commit 3a457c9d13701428a4a276aaf43eb7961e9503a1
Author: tome9111991 <[email protected]>
Date:   Sun Sep 12 21:56:40 2021 +0200

    🐛 Fix JyersUI for LPC176x (#22745)

    Co-authored-by: Scott Lahteine <[email protected]>

commit afe4cb7fee73878917a55ccca7e67a24fea423f8
Author: thinkyhead <[email protected]>
Date:   Sun Sep 12 01:02:08 2021 +0000

    [cron] Bump distribution date (2021-09-12)

commit 08e581d5d7c6cfcedf400862fcfcd146c6ce837f
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 15:41:42 2021 -0500

    🎨 Apply more HAS_DELTA_SENSORLESS_PROBING

commit 011329fe55f82e0c64c48a6bc983c10569206fb3
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 02:47:53 2021 -0500

    🐛 No probe enum for DELTA + SENSORLESS_PROBING

    Fix #22729

commit 6b9b2c5d7382b30dabc2f1fb360d62a819f5ec3d
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 02:15:05 2021 -0500

    🩹 Warn about user feedback requirement

commit 453e60958a8cde6d7541b4dc3a99d054b53eb695
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 01:32:39 2021 -0500

    🐛 Followup to JyersUI

    Fix #22735, #22736

commit 953d283e5360104072790a12ea1a78f69087c05b
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 01:13:02 2021 -0500

    🐛 Followup to E3V2 Enhanced

    Fix #22741

commit 0a1211fe3fa3352c2a2783102ef8572966927ccd
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 11 00:48:20 2021 -0500

    🐛 Fix LPC1768 SD-based EEPROM debug

    Fixes #22746

commit 209dca10890982aa4c992464e0388eff0c36e0f4
Author: Marcio T <[email protected]>
Date:   Fri Sep 10 19:03:46 2021 -0600

    🚸 Enhance FTDI Eve Touch UI file select dialog (#22742)

commit 69ab2bc40fe947c9edce487509ab4508376e8f56
Author: thinkyhead <[email protected]>
Date:   Sat Sep 11 00:58:31 2021 +0000

    [cron] Bump distribution date (2021-09-11)

commit ce6d6225019640afbdb0a9dc6db26a4e03ca4c4f
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 10 19:47:03 2021 -0500

    🩹 Fix TOUCH_UI_FTDI_EVE warnings

commit 67d82ff228789408f7f32e6c9af3108c989c0c90
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 10 18:49:57 2021 -0500

    🐛 Followup to JyersUI

commit bcfaf3990a0e7eaac89ae8e075bb089c7dac1b38
Author: thinkyhead <[email protected]>
Date:   Fri Sep 10 01:02:43 2021 +0000

    [cron] Bump distribution date (2021-09-10)

commit 392a4a6f85bea8470ee291eedcf85d16ce071e52
Author: Miguel Risco-Castillo <[email protected]>
Date:   Thu Sep 9 16:40:10 2021 -0500

    🐛 Fix, improve E3V2 Enhanced UI (#22733)

commit 754b31918a73cb08c322102be5d3926d2ac59c18
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 9 04:57:05 2021 -0500

    🎨 Fewer serial macros

commit 79c72ed821564507b0ef46cbb26f9577585e2ccc
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 7 18:06:10 2021 -0500

    🎨 Standardize G-code reporting

commit 650e73af27eab6c185337c3fc2c44300a9262af8
Author: ellensp <[email protected]>
Date:   Thu Sep 9 18:13:01 2021 +1200

    🩹 Fix Enhanced E3V2 Advanced Pause (#22728)

commit 7a4f1c410f15a5204264b2fc027ac5e04c9f0d97
Author: thinkyhead <[email protected]>
Date:   Thu Sep 9 01:01:56 2021 +0000

    [cron] Bump distribution date (2021-09-09)

commit 7a2515bcac682ffc0e5afddaa663910e4f305cb5
Author: thinkyhead <[email protected]>
Date:   Wed Sep 8 00:57:48 2021 +0000

    [cron] Bump distribution date (2021-09-08)

commit 0f61d9e4dd4d4e4f27e5c688ab2c5dbd0f03af84
Author: Miguel Risco-Castillo <[email protected]>
Date:   Tue Sep 7 02:15:24 2021 -0500

    ✨ Ender-3 V2 CrealityUI Enhanced (#21942)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 43a9c71ef7a1c9e9e294707017d372d344c774ce
Author: Jyers <[email protected]>
Date:   Mon Sep 6 21:06:27 2021 -0700

    ✨ Ender-3 V2 with Jyers UI (#22422)

commit ed0c5aefd8c79d88f5b5fb69baae161b58c72eae
Author: thinkyhead <[email protected]>
Date:   Tue Sep 7 00:57:25 2021 +0000

    [cron] Bump distribution date (2021-09-07)

commit b0e798330d8f5ade4a230e0a91f05482d100bb97
Author: mrv96 <[email protected]>
Date:   Tue Sep 7 02:51:04 2021 +0200

    ✨Add DGUS_LCD_UI_RELOADED (#21931)

commit 853eebc3f2f6326000da790cfd549c2a44dfeae2
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 6 17:38:47 2021 -0500

    🚸 Show ExtUI message for PID_STARTED

commit 83a1d3a46b1e12c65d0eadbd663315c400fe022f
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 6 16:33:24 2021 -0500

    🎨 Misc. code cleanup

commit 845d42ef40e1adc04315779d31eb55dac2218689
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 6 15:34:12 2021 -0500

    🎨 Misc. Spindle/Laser (etc.) cleanup

commit dc6b86065e53f82e309a13b710863617f9bdce82
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 5 21:23:56 2021 -0500

    🚸 Per-hotend Watch items

commit ba62f24717f8ce7a452a07208f0b571d932c16c5
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 5 21:00:42 2021 -0500

    ⏪️ Clean up Info Menu

commit 521fda0235bc07c5e07889373a2a22c57fadf07f
Author: Scott Lahteine <[email protected]>
Date:   Fri Aug 27 16:12:08 2021 -0500

    🎨 MarlinUI for E3V2 tweaks

commit b0a91073b25f53e9e377f0ef4e01c9dd6fefd021
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 5 20:32:29 2021 -0500

    🔧 Sanity checks for Ender 3 V2

commit 6098150a857d15cd735f8c2309ca4b2d3f624974
Author: thinkyhead <[email protected]>
Date:   Mon Sep 6 01:05:05 2021 +0000

    [cron] Bump distribution date (2021-09-06)

commit c881fab1280f338e32015e1556890d647ee967fb
Author: dotdash32 <[email protected]>
Date:   Sun Sep 5 17:21:25 2021 -0700

    🎨 Use largest default ST9720 delays (#22713)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 51c66881c26e1db1d4eff925f0f0157ab65f83d0
Author: Dan <[email protected]>
Date:   Sun Sep 5 13:32:09 2021 -0700

    ✨ Protoneer CNC-Shield 3.00 (#22715)

commit 76fb131f14dfc4108c4f6491d84827b8813d3973
Author: Justin Nesselrotte <[email protected]>
Date:   Sun Sep 5 14:21:45 2021 -0600

    ✨ Index Pick-and-Place board Rev.3 (#22647)

    Co-authored-by: Gonçalo Pereira <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 73bc81739799cf50a70cb6dfd2045b57591f50d3
Author: thinkyhead <[email protected]>
Date:   Sun Sep 5 01:01:15 2021 +0000

    [cron] Bump distribution date (2021-09-05)

commit 88fc449c7bfef94782458c5b7ec3aeb0889f0bb5
Author: thinkyhead <[email protected]>
Date:   Sat Sep 4 00:58:22 2021 +0000

    [cron] Bump distribution date (2021-09-04)

commit a3557e63bf6669820d24a568030436979529f182
Author: Tanguy Pruvot <[email protected]>
Date:   Sat Sep 4 01:20:32 2021 +0200

    🌐 Update "Homing" for some languages (#22706)

commit 5dbb15539502da2bbc4ece99a3f5fc123801cdbe
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 3 17:26:36 2021 -0500

    🩹 Fix 'ms' warning

commit 18d82c1988624c48b459352fa02a352b34d2eff7
Author: Thomas White <[email protected]>
Date:   Fri Sep 3 12:30:24 2021 +0800

    ✨ Homing submenu option (#22692)

commit e1056378f1bbba01fd846c5af2ba339739c271e3
Author: Elliott Indiran <[email protected]>
Date:   Thu Sep 2 20:41:41 2021 -0700

    📝 Update PID_PARAMS_PER_HOTEND comment (#22694)

    Co-authored-by: Scott Lahteine <[email protected]>

commit ff95a93ecc299dc8c811012e7e77e32427649cf8
Author: Tanguy Pruvot <[email protected]>
Date:   Fri Sep 3 05:08:40 2021 +0200

    🐛 Fix Mixing code typos (#22697)

commit 43135114837b3dbe95bdf5b63ddcdec4a812813b
Author: thinkyhead <[email protected]>
Date:   Fri Sep 3 00:58:08 2021 +0000

    [cron] Bump distribution date (2021-09-03)

commit 682d6c99c7d9d0f89a260e1e72b9e776327bb82e
Author: thinkyhead <[email protected]>
Date:   Thu Sep 2 01:03:55 2021 +0000

    [cron] Bump distribution date (2021-09-02)

commit 3a2eb574e2027b966fb398959f8c8750ae3a3c73
Author: DvoraNoob <[email protected]>
Date:   Wed Sep 1 21:29:20 2021 -0300

    🚸 MKS UI extrusion speed/steps config (#22656)

commit 71a2a958858f47545bb9f02764af26fb68991b36
Author: Tanguy Pruvot <[email protected]>
Date:   Thu Sep 2 01:55:36 2021 +0200

    🔨 Enhance Lerdge pins, TFTs, and variants (#22658)

commit 9a9d55ceb0183640147c997fefeef375fa105a2f
Author: Tanguy Pruvot <[email protected]>
Date:   Thu Sep 2 01:45:17 2021 +0200

    🩹 Allow M42 S0/1 analogWrite on PWM pins (STM32) (#22631)

commit 01d1192a441f5afb753185eb103be64baa81bd43
Author: ellensp <[email protected]>
Date:   Wed Sep 1 22:33:24 2021 +1200

    🐛 BTT Octopus X MAX pin for IDEX (#22654)

commit fc22f1f84337b5d8f93fa3fe9c06ab7911d43dc4
Author: thinkyhead <[email protected]>
Date:   Wed Sep 1 01:03:17 2021 +0000

    [cron] Bump distribution date (2021-09-01)

commit bad46796495403fddfb65e793f4ca4d0e47b9843
Author: Vert <[email protected]>
Date:   Tue Aug 31 03:36:00 2021 -0400

    ✨ GT2560 V4.x A20 (#22664)

commit fb29135c74a258eaa0ba824c9c1f00762ed59183
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 20:44:55 2021 -0500

    ✨ Creality3D CR-30 PrintMill

commit e33e101850797f4d3edecd4eb18e9ae63c89ef13
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 20:54:51 2021 -0500

    🎨 Tweak pins, comment formatting

commit ba10816c51804433446a5221759a794aaac5bac2
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 20:54:17 2021 -0500

    💄 Extended Info Menu

commit f55a28b01599692ca7a149571c6ae94e3b6b017d
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 20:52:48 2021 -0500

    🌐 Tweak language selection

commit eccd82b7c1049b098546334fab7ac152e1fa1ce7
Author: Scott Lahteine <[email protected]>
Date:   Fri Dec 11 18:15:36 2020 -0600

    ⚡️ Add PROBE_PT_LAST_STOW

commit 1f5eacac09d694c2b69c223aba7bf8c422d16241
Author: ellensp <[email protected]>
Date:   Tue Aug 31 19:26:12 2021 +1200

    🔧 Set Z_PROBE_OFFSET_RANGE_MIN/MAX for MBL (#22663)

commit 2c5daa07228e153a14b6df5a784b1c1ef0e35e46
Author: Scott Lahteine <[email protected]>
Date:   Tue Aug 31 02:23:49 2021 -0500

    🩹 Clean up BTT_SKR_CR6

    Fixes #22665

commit 485a1864673d14177622e30d4f77de799e6d910a
Author: Jason Smith <[email protected]>
Date:   Tue Aug 31 00:00:59 2021 -0700

    🚸 Improve Tramming Wizard usability (#22672)

commit 66ded801b734fbb597ab1c1497d347544b3aa05c
Author: ellensp <[email protected]>
Date:   Tue Aug 31 15:40:49 2021 +1200

    ⏪️ Revert MAX31865 recent changes (#22660)

commit ef2d0b8d5353460ba8b6698281c8d4987217eb07
Author: thinkyhead <[email protected]>
Date:   Tue Aug 31 00:59:16 2021 +0000

    [cron] Bump distribution date (2021-08-31)

commit 7378e7c2db379f57e99a3b3b7ea1700e5031460a
Author: Christian Schuster <[email protected]>
Date:   Tue Aug 31 02:32:02 2021 +0200

    🩹 Fix LPC176x M43 formatting (#22680)

commit fff1ed3369200306b313186643ca14ffa7fc36b1
Author: Zs.Antal <[email protected]>
Date:   Tue Aug 31 02:30:14 2021 +0200

    🌐 Update Hungarian language (#22678)

commit 6ff2be329e0ac81ea56066353f2bb1469ae02eda
Author: Giuliano Zaro <[email protected]>
Date:   Tue Aug 31 00:05:11 2021 +0200

    🌐 Update Italian language (#22645)

commit efb9ea92b85ec469e9436969129bcee33aadd3bc
Author: Scott Lahteine <[email protected]>
Date:   Mon Aug 30 17:02:12 2021 -0500

    🔨 Fix HAL/STM32 F103Zx builds (#22610)

commit 90cd1ca68d3f4f5ede56cbea4913f06ca4782a94
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 23:06:24 2021 -0500

    🎨 screws_tilt_adjust_pos => tramming_points

commit d95d452b29b80e66d534b36c78262454664ce5a1
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 23:02:53 2021 -0500

    🌐 MSG_PROBING_MESH => MSG_PROBING_POINT

commit 8f57a21176d217c1c55c03be18876bf187ca786f
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 20:04:14 2021 -0500

    🔨 Three columns in mftest menu

commit 4d5f6b2a7817609f58f20aa8e1d2a40f139fa2ae
Author: thinkyhead <[email protected]>
Date:   Mon Aug 30 00:57:24 2021 +0000

    [cron] Bump distribution date (2021-08-30)

commit 6e40dbe0d34037089de070f0215735828b28e2a3
Author: Marcio T <[email protected]>
Date:   Sun Aug 29 16:05:30 2021 -0600

    ⚡️ Fix, enhance FTDI Eve Touch UI (#22619)

commit ab03c9a56063c4ae0e27f46a5622ffe1564b0c1b
Author: Marcio T <[email protected]>
Date:   Sun Aug 29 16:03:10 2021 -0600

    ⚡️ Enhance and fix FTDI Eve Touch UI file select (#22651)

commit f721c44c225c084785b296dac43df7b272702b7d
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 15:15:53 2021 -0500

    🐛 Fix SDSUPPORT for SKR CR-6 (#22668)

    Co-authored-by: Sebastiaan Dammann <[email protected]>

commit 4b4de71304a426e0d9b2696dae4e82eb55ba7079
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 13:57:47 2021 -0500

    ⚡️ Improve G2/G3 arc handling (#22599)

commit 09a83d565e0db2157baa3662020500476b931ec6
Author: Scott Lahteine <[email protected]>
Date:   Sat Aug 28 17:46:22 2021 -0500

    🩹 Sensorless homing tweak

commit 6d3dec8b6390bd1fb9ce24814249ab0e3cf8719e
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 29 13:51:57 2021 -0500

    🎨 Update more EXP Headers
mh-dm pushed a commit to mh-dm/Marlin that referenced this pull request May 15, 2022
Krifto pushed a commit to Krifto/Marlin-Neptune3 that referenced this pull request Oct 19, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants