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

[BUG] JyersUI compile errors #22736

Closed
GhostlyCrowd opened this issue Sep 9, 2021 · 12 comments
Closed

[BUG] JyersUI compile errors #22736

GhostlyCrowd opened this issue Sep 9, 2021 · 12 comments

Comments

@GhostlyCrowd
Copy link
Contributor

GhostlyCrowd commented Sep 9, 2021

Did you test the latest bugfix-2.0.x code?

Yes, and the problem still exists.

Bug Description

Current bugfix 2.0.x 754b319

directly related to #22422

Fails to compile, without adding #include "../../../gcode/gcode.h" to Marlin\src\lcd\e3v2\jyersui\dwin.cpp

with errors Marlin\src\lcd\e3v2\jyersui\dwin.cpp:335:11: error: 'gcode' was not declared in this scope

Fails to compile without enabling #define POWER_LOSS_RECOVERY in configuration_adv.h

with errors Marlin\src\lcd\e3v2\jyersui\dwin.cpp:4758:11: error: 'recovery' was not declared in this scope; did you mean 'remove'?

Fails to compile because default config/examples missing #define ENCODER_5X_STEPS_PER_SEC 30 // (steps/s) Encoder rate for 5x speed in configuration_adv.h

with errors Marlin\src\lcd\e3v2\jyersui\rotary_encoder.cpp:148:39: error: 'ENCODER_5X_STEPS_PER_SEC' was not declared in this scope; did you mean 'ENCODER_10X_STEPS_PER_SEC'?

@Jyers

Bug Timeline

When DWIN_CREALITY_LCD_JYERSUI was presented as an option

Expected behaviour

To compile

Actual behaviour

Fails with the above explanations of errors and how to resolve them

Steps to Reproduce

Try to compile as the code exists.

Version of Marlin Firmware

Bugfix 2.0.x

Electronics

SKR E3 Mini V1.2

@electronicm
Copy link

I've known the problem since DWIN MARLINUI.

@GhostlyCrowd
Copy link
Contributor Author

GhostlyCrowd commented Sep 9, 2021

I've known the problem since DWIN MARLINUI.

Really, I could have sworn I tried that, and it compiled fine today, but DWIN_CREALITY_LCD_ENHANCED also suffers from the same related errors its seems. Just tested,

@tome9111991
Copy link
Contributor

@GhostlyCrowd
Copy link
Contributor Author

GhostlyCrowd commented Sep 9, 2021

You use latest config?

https://github.com/MarlinFirmware/Configurations/tree/bugfix-2.0.x/config/examples/Creality/Ender-3%20V2/CrealityUI

No I use a custom config based on the ender3 skr e3 mini from marlins config example repo and then i use the default config to compare and verify things that are missing.

Aside from that the default config and the examples were updated to include #define DWIN_CREALITY_LCD_JYERSUI however since its missing #define ENCODER_5X_STEPS_PER_SEC 30 // (steps/s) Encoder rate for 5x speed in config_adv it would never work for the SKR examples.

And the default config in the source tree should definitely not be missing #define ENCODER_5X_STEPS_PER_SEC 30 // (steps/s) Encoder rate for 5x speed

@tome9111991
Copy link
Contributor

Maybe you should compare your config with latrst e3v2 config

@GhostlyCrowd
Copy link
Contributor Author

GhostlyCrowd commented Sep 9, 2021

I've tracked it down, DWIN_CREALITY_LCD_JYERSUI depends on #define POWER_LOSS_RECOVERY always being enabled because it is the only place DWIN_CREALITY_LCD_JYERSUI seems to get #include "../../../gcode/gcode.h" included, from src_filter=+<src/feature/powerloss.cpp>

If one doesn't want to run Power loss recovery, Marlin\src\lcd\e3v2\jyersui\dwin.cpp should definitely include #include "../../../gcode/gcode.h" rather than hoping it's defined somewhere else.

Adding #include "../../../gcode/gcode.h" to dwin.cpp squashes several dozen errors related to it not being included with #define POWER_LOSS_RECOVERY but then I still get errors because of course #define POWER_LOSS_RECOVERY Marlin\src\lcd\e3v2\jyersui\dwin.cpp:4758:11: error: 'recovery' was not declared in this scope; did you mean 'remove'?

If it's somehow required explicitly for this, then a sanity check would be beneficial.

@thinkyhead
Copy link
Member

Please include configurations when posting bug reports so that we can use them to reproduce the exact conditions for the reported error.

@thinkyhead
Copy link
Member

thinkyhead commented Sep 11, 2021

67d82ff 453e609

Please test the bugfix-2.0.x branch to see where it stands. If the problem has been resolved then we can close this issue. If the issue isn't resolved yet, then we should investigate further.

thinkyhead added a commit that referenced this issue Sep 11, 2021
@thinkyhead thinkyhead changed the title [BUG] Current Bugfix-2.0.x DWIN_CREALITY_LCD_JYERSUI does not compile missing includes and default config entries [BUG] JyersUI compile errors Sep 11, 2021
thinkyhead added a commit that referenced this issue Sep 11, 2021
thinkyhead added a commit that referenced this issue Sep 11, 2021
@tome9111991
Copy link
Contributor

tome9111991 commented Sep 11, 2021

If it's somehow required explicitly for this, then a sanity check would be beneficial.

You should use #define POWER_LOSS_RECOVERY
You can Power Loss disable with Display GUI there is a checkbox to enable/disable

(In my mind it is disable by default)

@GhostlyCrowd
Copy link
Contributor Author

GhostlyCrowd commented Sep 11, 2021

You should use #define POWER_LOSS_RECOVERY
You can Power Loss disable with Display GUI there is a checkbox to enable/disable

(In my mind it is disable by default)

It's wasted flash space if one is not going to use it, IE: never print from SD and or has a power loss solution already such as a Battery backup and a generator that auto kicks on like i do.

It should work with out it defined anyhow.

@GhostlyCrowd
Copy link
Contributor Author

67d82ff 453e609

Please test the bugfix-2.0.x branch to see where it stands. If the problem has been resolved then we can close this issue. If the issue isn't resolved yet, then we should investigate further.

I can confirm it now compiles and works with out #define POWER_LOSS_RECOVERY

Domush added a commit to Domush/mvCNC-Modern-Vintage-CNC-Firmware that referenced this issue Oct 17, 2021
commit 3c94f2f1c33395e45f3b2456f97eb64310b41000
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 17 01:02:43 2021 +0000

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

commit babb3d7b4ce49fdca215bab857039e7132dfadbd
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 16 01:07:57 2021 +0000

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

commit 9d72cbf84b970e5060f8dceef7158b9ca8252856
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 15 15:07:47 2021 -0500

    💡 Update old gnu.org links

commit 95662d3aed0a31ea832407c042a5b0c56cd8a2db
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Fri Oct 15 15:56:59 2021 -0400

    ✨ Add option EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN (#22960)

commit ee28a14e8e7f6b33fe5813dbedcd85380207c345
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Oct 15 00:24:08 2021 -0500

    🎨 Refactor Host Actions as singleton

commit de5aefd09e2ede1314382c4a10e51335d07524f9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Oct 15 14:38:03 2021 +1300

    🔧 Add, update TFT sanity checks (#22928)

commit 11435356643c7e32dd6f30e8a144e2c3766bfb35
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 15 01:05:59 2021 +0000

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

commit 5d665d5e1e3a7b9f95cd4075815883fce3791465
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 14 01:01:39 2021 +0000

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

commit 8e4953514c893410c402ba6486f86580385effd9
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Tue Oct 12 23:19:05 2021 -0400

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

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit bf91bd5eee252a2ec2feacb54bd1ed88b38215aa
Author: Dmytro <svetotled@gmail.com>
Date:   Wed Oct 13 05:45:00 2021 +0300

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

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f58934c4efc6319aebaa3d0845030b91bea64828
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Oct 12 19:06:39 2021 -0700

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

commit 8ce2254aa69ae12bc31c6e55bf88a7d1a60054fa
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Oct 12 19:05:37 2021 -0700

    🔧 Remove obsolete G34 sanity check (#22929)

commit 0d41667bc2c3895ea8e3ed28435f42ffa106f44f
Author: George Fu <nailao_5918@163.com>
Date:   Wed Oct 13 09:32:54 2021 +0800

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

commit 02dc7a6387fdc3b9bd1659b3aa400802bacb7828
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Oct 13 14:28:45 2021 +1300

    🐛 Fix G33 homing current (#22909)

commit 3f9ff2421fadb2513e5c94688d4c49e4bf6b84e7
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
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 <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 13 01:07:25 2021 +0000

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

commit a7519ecca92cbaa3e3c4cc28dcb19911bf5115b0
Author: mks-viva <1224833100@qq.com>
Date:   Tue Oct 12 20:01:18 2021 -0500

    ✨ MKS Eagle (STM32F407VET6) board (#22897)

commit 15ebe45f36f34bce4a07f6348c85ffb1ab904087
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Tue Oct 12 19:40:56 2021 -0400

    🐛 Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)

commit 769948bb4d6d55d2bf4b42d69e79ce516986d77a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Oct 12 01:05:49 2021 +0000

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

commit ad14b5052cd60b6ab79bb236529241696266bf30
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date:   Mon Oct 11 23:42:29 2021 +0100

    ✨ M261 S I2C output format (#22890)

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit 90fa48ffd565ae28e8a0bfcf2d5f8b5a2de2e558
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 11 01:03:10 2021 +0000

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

commit 0c86cc89f0c74e58949f8c5a0351d57dffab8019
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 10 01:03:22 2021 +0000

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

commit b3fd0a50505455bbd4d0487b202ab75797a79421
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sat Oct 9 19:13:19 2021 -0400

    🐛 Fix IDEX Duplication Mode Positioning (#22914)

    Fixing #22538

commit 33809ae000da2cf1a5a2b0641b235a6bb68d245a
Author: Minims <github@minims.fr>
Date:   Sun Oct 10 01:10:21 2021 +0200

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

commit 886c59dc1045787042fa3b824bdc56655d10d655
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sun Oct 10 01:05:24 2021 +0200

    🐛 Queue string followup (#22900)

commit 13bb2393e13148732861c690d523f07972f4abd8
Author: Pyro-Fox <36782094+Pyro-Fox@users.noreply.github.com>
Date:   Sat Oct 9 15:09:50 2021 -0700

    🐛 LCD string followup (#22892)

commit bd6a1a2898909fff228febcb38538e47a2416634
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 9 00:59:22 2021 +0000

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

commit 1ec399c6ab2f51f7d9c491c098c001679d0ad0da
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 8 01:05:32 2021 +0000

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

commit 1f41437052c35a9091e057b843533d5695e8676e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 7 01:03:32 2021 +0000

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

commit f79d1f114c44c9f56cf2ae65203ae88fc2e4f6de
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Oct 7 09:42:59 2021 +1300

    🎨 Define Octopus allocated endstop pins (#22882)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 9922410a73fd3285bfba0478ac16f04eeee48b8e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 5 21:35:31 2021 -0500

    🔨 Port libsdl2_net required for macOS simulator

commit 149cbe795da4828b8df4ef34f5acee7fdd0d2dbb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Oct 4 22:19:05 2021 -0500

    🎨 Tweak FORCE_INLINE

commit e52c30d43a171fe6ce21a83589ac17d467e9a11c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 5 21:19:28 2021 -0500

    🐛 Followup to F() in config_line

    Followup to 1dafd1887e

commit ca7ab6e13f0e8acfb19192378c8f99a58ee3413e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 6 01:02:35 2021 +0000

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

commit 4e9ae9449fbdc9ad3cd9267d8e620b5ec5eddb3e
Author: Mark <niujl123@sina.com>
Date:   Tue Oct 5 12:23:02 2021 +0800

    ✨ ESP32 Panda_ZHU and Panda_M4 (#22644)

commit f395198e14a1cbc0604611b3ca1fb6261d4871fa
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Oct 4 22:16:15 2021 -0500

    🔨 Move Creality 4.2.2 warning

commit e8459ae63c8290123827b4e45bbe051c95060783
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Oct 4 19:50:14 2021 -0500

    🐛 ExtUI F() followups

    Followup to 12b5d997a2

commit d5cb30524e0ca0607ed49587f49e231c37fff4ef
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Oct 5 01:01:31 2021 +0000

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

commit f5b085157aaa2c3c7b360750c745588104e155f7
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Oct 4 18:58:20 2021 -0500

    🔨 Add 'opt_find' to find matching options

commit b919bdbf0b4f78578964999373c8918cc523d736
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Oct 4 19:12:19 2021 +1300

    🩹 Fix EXTRUDER 0 compile warning (#22868)

commit 2d08afe456255d47e6cd244c49c7cd243f74c53a
Author: Sebastien Andrivet <sebastien@andrivet.com>
Date:   Mon Oct 4 08:06:49 2021 +0200

    🐛 Fix ExtUI Pause messages (#22874)

commit 65b950a489c35b1d5547da3a504af4dad8cde3d7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 20:15:52 2021 -0500

    🎨 Apply F() to kill / sendinfoscreen

commit d1938d54ed5e42d766d97d898cd117893ea24083
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 19:28:29 2021 -0500

    🎨 Apply F() to MKS UI errors, assets

commit 1dafd1887e40399faf16e3455e3670ed3acfac52
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 27 13:46:42 2021 -0500

    🎨 Apply F() to various reports

commit d7fede3a6324cd6b1ec91a9c8e248fce8f0d7cf2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 27 13:40:01 2021 -0500

    🎨 Apply F() to G-code report header

commit eeffac697c5d7b69e01e38ed1602dbd21a366e93
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 25 23:52:41 2021 -0500

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

commit 12b5d997a2cee538e5026a68f8e0cfdd53248986
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 25 22:11:48 2021 -0500

    🎨 Apply F() to some ExtUI functions

commit 008bf1bcaef181cd1b74638692e2465bb9e07a4d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 27 11:55:08 2021 -0500

    🎨 Apply F() to Host Actions strings

commit 7f1286a11f87065c4e666985e679cf9c77d668bf
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 25 17:05:11 2021 -0500

    🎨 Apply F() to status message

commit 520b97083e52efdd47ab434b97823e48d85ade62
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 27 11:03:07 2021 -0500

    🎨 Apply F() to serial macros

commit 417e2530ebc5b6c74ac34adaba8be552b407383a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 25 21:11:31 2021 -0500

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

commit 64a919da2a6dbe8b529c3471935a6d632420ca3a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 05:59:03 2021 -0500

    🎨 Apply F() to E3V2 titles, popups

commit 59dac3a7e41ae7964686d9dff56baba821a278f7
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 25 18:43:52 2021 -0500

    🎨 Apply F() to G-code subcommands

commit 23f10563e03fd8f7368885b1c406a4f7c7c3d1ae
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 25 18:22:37 2021 -0500

    🎨 Update F string declarations

commit cb9fafd4f3a0dc3d963bd13664b58d3e2487d5b3
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Oct 4 18:25:45 2021 +1300

    🐛 Fix Arduino IDE compile error (#22877)

commit 54d400608db83bfa606e1b757589c169c9a38fc2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 4 00:24:41 2021 -0500

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

commit eb784d6e55c84c05b2a5353899d8bc25276e0640
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Oct 2 02:33:14 2021 -0500

    🎨 Rename MarlinUI::zoffset_overlay

commit 97295c552de9b72ad69833094776e34c3502fa0a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 4 01:05:57 2021 +0000

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

commit 9bb562f40a5570a63430bbf9392da0fdb85c5c8c
Author: VragVideo <91742261+VragVideo@users.noreply.github.com>
Date:   Sun Oct 3 06:12:51 2021 +0300

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

commit e4d8290be3765b0ee9d780b346c852e3c142bca1
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 3 01:06:58 2021 +0000

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

commit e27b1e5d58113dc1bad900701762ec147e573703
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 2 01:00:08 2021 +0000

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

commit ea0169f2bcd3de2fe3b99bceb0f9dd34d85f3322
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 1 01:05:30 2021 +0000

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

commit d3ed21b10eed717bdeeb210502082655d50488bf
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 30 01:05:47 2021 +0000

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

commit c6ceac9067b21a705f40fbcfc90bbc922945f82e
Author: Steven Haigh <netwiz@crc.id.au>
Date:   Thu Sep 30 02:22:46 2021 +1000

    🚑️ Fix DWIN_CompletedLeveling (#22851)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 732e59b412a29c52f5d6ad492743b86fa4cb20e6
Author: Malderin <52313714+Malderin@users.noreply.github.com>
Date:   Wed Sep 29 04:20:03 2021 +0300

    🐛 E3V2 Mesh Viewer followup (#22850)

commit 90b0e16ec0c80ec128b70d20b0b47af8a3281c88
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 29 00:58:41 2021 +0000

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

commit f2ba845dad67c57a6cf1ce5a75bc4f526681ca2d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 02:39:11 2021 -0500

    🎨 Condense reverse-protection code

commit 33e0855e2c173680865aaa6c6aa93047d63fc469
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 01:07:51 2021 -0500

    ⚡️ Handle shared enable pins (#22824)

commit eda8e9c8dddfb93950409092832311a60635c054
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 01:01:32 2021 +0000

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

commit 8ab02df63a2360b2dac86048b38311bbdfa42b3c
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Mon Sep 27 14:47:47 2021 -0500

    ✨ E3V2 (Enhanced) Mesh Viewer (#22844)

commit 8f9e56afb97ca6a40265b24fe90ac7b672050df9
Author: Malderin <52313714+Malderin@users.noreply.github.com>
Date:   Mon Sep 27 22:13:38 2021 +0300

    🚸 MKS UI LVGL bed preheat presets (#22842)

commit 5dce8d0a84aa8ee3e2b63c880dd2eadc18a64f1b
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Tue Sep 28 03:08:29 2021 +0800

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

commit 228eb9c404fcbcebb507bbfe781ebe3ca0a1ccdf
Author: espr14 <espr14@gmail.com>
Date:   Mon Sep 27 21:05:52 2021 +0200

    🎨 steps_to_mm => mm_per_step (#22847)

commit f73175d8263033d1feb1045af67e7230c844aab0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Mon Sep 27 21:01:47 2021 +0200

    🚸 TFT backlight PWM / brightness (#22841)

commit 942b76082c5704558957731828e0fd023ad09bae
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Sep 28 04:17:00 2021 +1300

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

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 3329e07bd9cfc148a7ca78c121778e2255ac8a72
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 27 01:00:10 2021 +0000

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

commit 8fd5a4037a27c7c4009e9272770957a4931bcaad
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Sep 26 04:59:29 2021 +0200

    🩹 Fix M412_report formatting (#22834)

commit 031fec7a0233d5b1199e2e3a61a5ea98ecc3bf84
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Sep 26 01:02:25 2021 +0000

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

commit 1ac7a56a823b5012250dd7259a9a7a46d3bfcde5
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Sat Sep 25 05:59:43 2021 -0500

    🐛 E3V2 Brightness followup (#22821)

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit a7fdaabd54475e5f4dec3afad693b0c623bf7bf6
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 25 02:27:07 2021 -0500

    🎨 Updated string macros

commit e1ac3ede0d7bb9d77362040b593904006a26f873
Author: Steve Wills <steve@mouf.net>
Date:   Fri Sep 24 22:12:43 2021 -0400

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

commit 86a6b9316ed16f4726096dfdf7495ee75dada7d4
Author: Manuel McLure <manuel@mclure.org>
Date:   Fri Sep 24 19:08:07 2021 -0700

    🐛 Fix M420 / M851 reports (#22829)

    Followup to 79c72ed821

commit 849b86afb68949ec0f67c49401bdf659d3eaac5c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 25 00:59:33 2021 +0000

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

commit e85f6225053de257ee6f2652f097d0939d0dbde7
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 24 01:01:22 2021 +0000

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

commit 35ad3b0d3b1a8bbf6b220f30f63fd0e32be8fe34
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Sep 23 11:09:43 2021 -0500

    🐛 Fix reset_hotend_offsets

commit dc5bef62ba185461ba969db6af996ebc93a33ba7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 23 10:01:37 2021 -0500

    🎨 Various multi-axis patches (#22823)

commit 9c208a008d4f336f1bdc095af0a50754311092d1
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Thu Sep 23 15:53:48 2021 +0800

    ⚡️ Improve LVGL touch driver (#22817)

commit 7c5727e0ec1c69bf4bb72dcd34d6acce02a8c09e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Sep 23 18:58:52 2021 +1200

    🐛 Fix anycubic_i3mega_lcd debug macros (#22820)

commit 1835f8fb25648888cf6df6e17af1cefdd1248d71
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Sep 23 00:51:35 2021 -0500

    🩹 Add MarlinSPI to more HALs

commit 64c6475434349f88c61fdd403b4e9e830fd60b35
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 23 01:04:29 2021 +0000

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

commit 11ceea25ce145c8485b516fdb010809409d2bb06
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Sep 22 00:19:26 2021 -0500

    🎨 Less use of undef for RAMPS pins

commit 0387f94632d24b9d43397b063767940fe17acc62
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 22 01:02:28 2021 +0000

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

commit b88117d6364b8919a8a7df6c80d8132af98a6afc
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Sep 21 06:25:13 2021 -0500

    🎨 Fix L64xx enable, clean up conditionals

commit 58adb849d3e2f81075eeb02db8e1d5b3f297d59b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Sep 21 02:42:01 2021 -0500

    🔨 Improve pins_set script

commit 5b934e02fad7cbff79e14d1bd6b8d0a8fbe24de5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 21 01:01:29 2021 +0000

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

commit 58301837e0a1ea0d682d23e0510619bd85841d5c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 20 18:44:35 2021 -0500

    🩹 Remove extra #include, misc. style

commit 3344071f24b505d180dd1423b11510172c3f1c1c
Author: Dan Royer <dan@marginallyclever.com>
Date:   Mon Sep 20 13:42:33 2021 -0700

    Polargraph / Makelangelo kinematics (#22790)

commit f3864a1ae7b45fbc0359a65e4dc75ce062e39479
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 20 01:03:16 2021 +0000

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

commit e60e4b8f57806147741e87e2820c258c4b51cf91
Author: Lefteris Garyfalakis <46350667+lefterisgar@users.noreply.github.com>
Date:   Mon Sep 20 03:26:46 2021 +0300

    🌐 Update Greek language (#22799)

commit 216a66b42c8240f37befe98e6a410d1e3694ff4e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 19 19:25:01 2021 -0500

    🌐 Skip non-essential translations

commit 008284934c2f07ea335beec6086afd56a30d5829
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 19 18:58:12 2021 -0500

    🔨 Case-insensitive tests list

commit c1d7e234e1aba1ecc91cfc77d17d38b67618c315
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 19 18:40:56 2021 -0500

    🌐 Reduce language file sizes

commit 10fda222ea40af91ff1244ad5b7c8737043e1011
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sun Sep 19 05:16:29 2021 +0200

    🐛 STM32 ADC followup (#22798)

commit a6b69ab6d518488fd87109d9ba7ecf2e82b7f2a9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Sep 19 01:01:05 2021 +0000

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

commit 89125cd32ea913152dcdfe0edfa1571027f44e2d
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sun Sep 19 01:27:58 2021 +0200

    🚸 Wake up TFT for some events (#22788)

commit c88e85c939afe4f024fcb24ca6a68950d36ec901
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 18 18:24:39 2021 -0500

    🎨 Replace some infrequently-used macros

commit f367a3987de2703965b2b043b191d6ed77648e6d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 18 18:22:15 2021 -0500

    📝 Update some pins comments

commit d7e597f3df11df9a01b432715d7d9865e578a4e6
Author: Steven Haigh <netwiz@crc.id.au>
Date:   Sat Sep 18 16:33:18 2021 +1000

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

commit f46e05fcb1e8b9a4ed36d2caa09122e75188e9da
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Sep 17 19:09:54 2021 -0500

    🚸 Move fade item up

commit ad38699c115585134841b479a112f723e17d0b17
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Apr 12 17:08:57 2021 -0500

    🚸 Better bed position

commit fede20fbe69d4d3687a07b4a9cb70b681f5c51b3
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Sep 17 18:58:55 2021 -0500

    💬 Add non-translated STR_DONE

commit 11fce69781efb4e377f5349e14263a3466ba325d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 18 00:58:51 2021 +0000

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

commit 46dfc7ba341325d4e9a69e7e8979215b90e79334
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 17 01:06:26 2021 +0000

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

commit 8df3e62c89f94f68465ac30e276333940e069ff7
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Thu Sep 16 19:48:24 2021 +0800

    🚸 Fix and improve MKS LVGL UI (#22783)

    Co-authored-by: makerbase <4164049@qq.com>
    Co-authored-by: MKS-Sean <56996910+MKS-Sean@users.noreply.github.com>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 323b38ee88dbf2a4691a20439dbb95a824822199
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Sep 16 04:36:26 2021 -0500

    💡 Adjust headers, formatting

commit 08a40c43750eb49521849792520d8d819c0fcd29
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Thu Sep 16 03:46:16 2021 -0400

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

commit 02ae11ed72724a0f0a670069fe6b93933031de8b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Sep 15 21:12:39 2021 -0500

    🔧 Add MANUAL_FEEDRATE sanity-check

commit 0cc17b920ae9c804d5b9b2c95325e959c6f4eea5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 16 01:03:27 2021 +0000

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

commit e31d52184b321f1dbf9f091cb7188c58aef87cdb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Sep 16 01:15:01 2021 -0500

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

commit 5b5a8798f8fe202e86c008088f847a3edb51cc71
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 15 19:48:29 2021 -0500

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

commit cca3250c3ff8e8ed4277f4918f507ab13913d3b5
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Sep 15 13:51:52 2021 -0700

    ✏️ Fix TFT field names (#22776)

commit a1e1555ea1e4a5bb0dabc027b56ffb9fc05739e3
Author: mks-viva <1224833100@qq.com>
Date:   Wed Sep 15 14:47:23 2021 -0500

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

commit 8235ae9cc00b10362ca9f6e79acb4516c08557af
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Wed Sep 15 01:44:28 2021 -0500

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

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit 9c8ad57f626bbb84d1f7f2c2262f3b101f91e664
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 15 00:59:31 2021 +0000

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

commit 21e8f99500554d69cb91ac2be0b4ab1497bf9fac
Author: Dakkaron <dak1st@gmx.at>
Date:   Wed Sep 15 02:00:48 2021 +0200

    ✨ M282 - Detach Servo (#22760)

commit c2e4b1626f0cce82a55e8de9dc98ed9381e1d9ad
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Tue Sep 14 04:07:08 2021 +0200

    ✨ TFT Screen/Backlight Sleep (#22617)

commit ae22a920178555585142a5299ff77ec50d9fcc2e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 14 01:17:33 2021 +0000

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

commit 5a04cf0514c819d25f7eea0a9c95e17022d7bf1e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 13 18:46:30 2021 -0500

    🔖 Configurations version 02000902

commit 23d10ceccb16e5886a6441a364fcbc08391287fe
Author: Desuuuu <contact@desuuuu.com>
Date:   Fri Sep 10 12:15:08 2021 +0200

    🎨 Use ExtUI API where applicable

commit 370ea116f46f78536d99ec140a2de2d1d52942f5
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Tue Sep 14 00:10:30 2021 +0200

    🌐 Update Slovak language (#22752)

commit 3587ef2e8f3086104754f1e5e192f0584a709627
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 13 16:38:51 2021 -0500

    🐛 Fix old spindle/laser options

commit 798a8a7a0852c12fb8640c4a531fac70fbc57eda
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 13 16:28:12 2021 -0500

    🔧 SPINDLE_LASER_PWM => SPINDLE_LASER_USE_PWM

commit 000d412da60727661176fe6416c3517dd4b4be3d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 12 21:41:24 2021 -0500

    🐛 Fix CUSTOM_MENU_MAIN_SCRIPT_DONE

    Fix #22762

commit d69c053225bab92bf53bec064a1830079a2092f9
Author: Vert <45634861+Vertabreak@users.noreply.github.com>
Date:   Sun Sep 12 22:39:52 2021 -0400

    🐛 Fix ENABLED => EITHER typo (#22756)

commit 24460052d245bc9b56813aab67d52a96a858e034
Author: mks-viva <1224833100@qq.com>
Date:   Sun Sep 12 21:30:09 2021 -0500

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

commit ea7e777cb13f314ddfeab81e29d7b7a2fc67e7b3
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 12 21:21:35 2021 -0500

    🎨 Tweak custom menu item code

commit 84f66627c4557ce9a4f231af6b483d59c777bfc4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 13 01:39:56 2021 +0000

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

commit 29d3996a55d00059437f6c1194bac5eec5b7b2e2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Sep 12 19:37:33 2021 -0500

    📌 Creality 4.3.1 board variants (#22704)

    Co-authored-by: Chico <jjjm6000@gmail.com>

commit 37c488fda1176e9e50531d0ea7e9d66c74cef2d4
Author: Luc Van Daele <lvd@sound-silence.com>
Date:   Mon Sep 13 02:35:37 2021 +0200

    🚸 G33 R and O options (#22707)

commit c9d54bc3f34c18691a051c0a9f196010dd7c7de9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Sep 13 11:03:24 2021 +1200

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

commit 3a457c9d13701428a4a276aaf43eb7961e9503a1
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Sun Sep 12 21:56:40 2021 +0200

    🐛 Fix JyersUI for LPC176x (#22745)

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit afe4cb7fee73878917a55ccca7e67a24fea423f8
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Sep 12 01:02:08 2021 +0000

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

commit 08e581d5d7c6cfcedf400862fcfcd146c6ce837f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 15:41:42 2021 -0500

    🎨 Apply more HAS_DELTA_SENSORLESS_PROBING

commit 011329fe55f82e0c64c48a6bc983c10569206fb3
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 02:47:53 2021 -0500

    🐛 No probe enum for DELTA + SENSORLESS_PROBING

    Fix #22729

commit 6b9b2c5d7382b30dabc2f1fb360d62a819f5ec3d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 02:15:05 2021 -0500

    🩹 Warn about user feedback requirement

commit 453e60958a8cde6d7541b4dc3a99d054b53eb695
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 01:32:39 2021 -0500

    🐛 Followup to JyersUI

    Fix #22735, #22736

commit 953d283e5360104072790a12ea1a78f69087c05b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 01:13:02 2021 -0500

    🐛 Followup to E3V2 Enhanced

    Fix #22741

commit 0a1211fe3fa3352c2a2783102ef8572966927ccd
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 00:48:20 2021 -0500

    🐛 Fix LPC1768 SD-based EEPROM debug

    Fixes #22746

commit 209dca10890982aa4c992464e0388eff0c36e0f4
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Sep 10 19:03:46 2021 -0600

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

commit 69ab2bc40fe947c9edce487509ab4508376e8f56
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 11 00:58:31 2021 +0000

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

commit ce6d6225019640afbdb0a9dc6db26a4e03ca4c4f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Sep 10 19:47:03 2021 -0500

    🩹 Fix TOUCH_UI_FTDI_EVE warnings

commit 67d82ff228789408f7f32e6c9af3108c989c0c90
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Sep 10 18:49:57 2021 -0500

    🐛 Followup to JyersUI

commit bcfaf3990a0e7eaac89ae8e075bb089c7dac1b38
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 10 01:02:43 2021 +0000

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

commit 392a4a6f85bea8470ee291eedcf85d16ce071e52
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Thu Sep 9 16:40:10 2021 -0500

    🐛 Fix, improve E3V2 Enhanced UI (#22733)

commit 754b31918a73cb08c322102be5d3926d2ac59c18
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 9 04:57:05 2021 -0500

    🎨 Fewer serial macros

commit 79c72ed821564507b0ef46cbb26f9577585e2ccc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 7 18:06:10 2021 -0500

    🎨 Standardize G-code reporting

commit 650e73af27eab6c185337c3fc2c44300a9262af8
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Sep 9 18:13:01 2021 +1200

    🩹 Fix Enhanced E3V2 Advanced Pause (#22728)

commit 7a4f1c410f15a5204264b2fc027ac5e04c9f0d97
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 9 01:01:56 2021 +0000

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

commit 7a2515bcac682ffc0e5afddaa663910e4f305cb5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 8 00:57:48 2021 +0000

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

commit 0f61d9e4dd4d4e4f27e5c688ab2c5dbd0f03af84
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Tue Sep 7 02:15:24 2021 -0500

    ✨ Ender-3 V2 CrealityUI Enhanced (#21942)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 43a9c71ef7a1c9e9e294707017d372d344c774ce
Author: Jyers <76993396+Jyers@users.noreply.github.com>
Date:   Mon Sep 6 21:06:27 2021 -0700

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

commit ed0c5aefd8c79d88f5b5fb69baae161b58c72eae
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 7 00:57:25 2021 +0000

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

commit b0e798330d8f5ade4a230e0a91f05482d100bb97
Author: mrv96 <mrv96@users.noreply.github.com>
Date:   Tue Sep 7 02:51:04 2021 +0200

    ✨Add DGUS_LCD_UI_RELOADED (#21931)

commit 853eebc3f2f6326000da790cfd549c2a44dfeae2
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 6 17:38:47 2021 -0500

    🚸 Show ExtUI message for PID_STARTED

commit 83a1d3a46b1e12c65d0eadbd663315c400fe022f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 6 16:33:24 2021 -0500

    🎨 Misc. code cleanup

commit 845d42ef40e1adc04315779d31eb55dac2218689
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 6 15:34:12 2021 -0500

    🎨 Misc. Spindle/Laser (etc.) cleanup

commit dc6b86065e53f82e309a13b710863617f9bdce82
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 5 21:23:56 2021 -0500

    🚸 Per-hotend Watch items

commit ba62f24717f8ce7a452a07208f0b571d932c16c5
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 5 21:00:42 2021 -0500

    ⏪️ Clean up Info Menu

commit 521fda0235bc07c5e07889373a2a22c57fadf07f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Aug 27 16:12:08 2021 -0500

    🎨 MarlinUI for E3V2 tweaks

commit b0a91073b25f53e9e377f0ef4e01c9dd6fefd021
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 5 20:32:29 2021 -0500

    🔧 Sanity checks for Ender 3 V2

commit 6098150a857d15cd735f8c2309ca4b2d3f624974
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 6 01:05:05 2021 +0000

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

commit c881fab1280f338e32015e1556890d647ee967fb
Author: dotdash32 <dotdash32@gmail.com>
Date:   Sun Sep 5 17:21:25 2021 -0700

    🎨 Use largest default ST9720 delays (#22713)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 51c66881c26e1db1d4eff925f0f0157ab65f83d0
Author: Dan <ribbles@users.noreply.github.com>
Date:   Sun Sep 5 13:32:09 2021 -0700

    ✨ Protoneer CNC-Shield 3.00 (#22715)

commit 76fb131f14dfc4108c4f6491d84827b8813d3973
Author: Justin Nesselrotte <admin@jnesselr.org>
Date:   Sun Sep 5 14:21:45 2021 -0600

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

    Co-authored-by: Gonçalo Pereira <goncalo_pereira@outlook.pt>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 73bc81739799cf50a70cb6dfd2045b57591f50d3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Sep 5 01:01:15 2021 +0000

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

commit 88fc449c7bfef94782458c5b7ec3aeb0889f0bb5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 4 00:58:22 2021 +0000

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

commit a3557e63bf6669820d24a568030436979529f182
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sat Sep 4 01:20:32 2021 +0200

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

commit 5dbb15539502da2bbc4ece99a3f5fc123801cdbe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 3 17:26:36 2021 -0500

    🩹 Fix 'ms' warning

commit 18d82c1988624c48b459352fa02a352b34d2eff7
Author: Thomas White <TomW1605@users.noreply.github.com>
Date:   Fri Sep 3 12:30:24 2021 +0800

    ✨ Homing submenu option (#22692)

commit e1056378f1bbba01fd846c5af2ba339739c271e3
Author: Elliott Indiran <eindiran@users.noreply.github.com>
Date:   Thu Sep 2 20:41:41 2021 -0700

    📝 Update PID_PARAMS_PER_HOTEND comment (#22694)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit ff95a93ecc299dc8c811012e7e77e32427649cf8
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Sep 3 05:08:40 2021 +0200

    🐛 Fix Mixing code typos (#22697)

commit 43135114837b3dbe95bdf5b63ddcdec4a812813b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 3 00:58:08 2021 +0000

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

commit 682d6c99c7d9d0f89a260e1e72b9e776327bb82e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 2 01:03:55 2021 +0000

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

commit 3a2eb574e2027b966fb398959f8c8750ae3a3c73
Author: DvoraNoob <62312359+DvoraNoob@users.noreply.github.com>
Date:   Wed Sep 1 21:29:20 2021 -0300

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

commit 71a2a958858f47545bb9f02764af26fb68991b36
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Sep 2 01:55:36 2021 +0200

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

commit 9a9d55ceb0183640147c997fefeef375fa105a2f
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Sep 2 01:45:17 2021 +0200

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

commit 01d1192a441f5afb753185eb103be64baa81bd43
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Sep 1 22:33:24 2021 +1200

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

commit fc22f1f84337b5d8f93fa3fe9c06ab7911d43dc4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 1 01:03:17 2021 +0000

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

commit bad46796495403fddfb65e793f4ca4d0e47b9843
Author: Vert <45634861+Vertabreak@users.noreply.github.com>
Date:   Tue Aug 31 03:36:00 2021 -0400

    ✨ GT2560 V4.x A20 (#22664)

commit fb29135c74a258eaa0ba824c9c1f00762ed59183
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:44:55 2021 -0500

    ✨ Creality3D CR-30 PrintMill

commit e33e101850797f4d3edecd4eb18e9ae63c89ef13
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:54:51 2021 -0500

    🎨 Tweak pins, comment formatting

commit ba10816c51804433446a5221759a794aaac5bac2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:54:17 2021 -0500

    💄 Extended Info Menu

commit f55a28b01599692ca7a149571c6ae94e3b6b017d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:52:48 2021 -0500

    🌐 Tweak language selection

commit eccd82b7c1049b098546334fab7ac152e1fa1ce7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 11 18:15:36 2020 -0600

    ⚡️ Add PROBE_PT_LAST_STOW

commit 1f5eacac09d694c2b69c223aba7bf8c422d16241
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Aug 31 19:26:12 2021 +1200

    🔧 Set Z_PROBE_OFFSET_RANGE_MIN/MAX for MBL (#22663)

commit 2c5daa07228e153a14b6df5a784b1c1ef0e35e46
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 31 02:23:49 2021 -0500

    🩹 Clean up BTT_SKR_CR6

    Fixes #22665

commit 485a1864673d14177622e30d4f77de799e6d910a
Author: Jason Smith <jason.inet@gmail.com>
Date:   Tue Aug 31 00:00:59 2021 -0700

    🚸 Improve Tramming Wizard usability (#22672)

commit 66ded801b734fbb597ab1c1497d347544b3aa05c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Aug 31 15:40:49 2021 +1200

    ⏪️ Revert MAX31865 recent changes (#22660)

commit ef2d0b8d5353460ba8b6698281c8d4987217eb07
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 31 00:59:16 2021 +0000

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

commit 7378e7c2db379f57e99a3b3b7ea1700e5031460a
Author: Christian Schuster <blackyle@me.com>
Date:   Tue Aug 31 02:32:02 2021 +0200

    🩹 Fix LPC176x M43 formatting (#22680)

commit fff1ed3369200306b313186643ca14ffa7fc36b1
Author: Zs.Antal <45710979+AntoszHUN@users.noreply.github.com>
Date:   Tue Aug 31 02:30:14 2021 +0200

    🌐 Update Hungarian language (#22678)

commit 6ff2be329e0ac81ea56066353f2bb1469ae02eda
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Aug 31 00:05:11 2021 +0200

    🌐 Update Italian language (#22645)

commit efb9ea92b85ec469e9436969129bcee33aadd3bc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 30 17:02:12 2021 -0500

    🔨 Fix HAL/STM32 F103Zx builds (#22610)

commit 90cd1ca68d3f4f5ede56cbea4913f06ca4782a94
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 23:06:24 2021 -0500

    🎨 screws_tilt_adjust_pos => tramming_points

commit d95d452b29b80e66d534b36c78262454664ce5a1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 23:02:53 2021 -0500

    🌐 MSG_PROBING_MESH => MSG_PROBING_POINT

commit 8f57a21176d217c1c55c03be18876bf187ca786f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:04:14 2021 -0500

    🔨 Three columns in mftest menu

commit 4d5f6b2a7817609f58f20aa8e1d2a40f139fa2ae
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 30 00:57:24 2021 +0000

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

commit 6e40dbe0d34037089de070f0215735828b28e2a3
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sun Aug 29 16:05:30 2021 -0600

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

commit ab03c9a56063c4ae0e27f46a5622ffe1564b0c1b
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sun Aug 29 16:03:10 2021 -0600

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

commit f721c44c225c084785b296dac43df7b272702b7d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 15:15:53 2021 -0500

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

    Co-authored-by: Sebastiaan Dammann <sebastiaandammann@outlook.com>

commit 4b4de71304a426e0d9b2696dae4e82eb55ba7079
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 13:57:47 2021 -0500

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

commit 09a83d565e0db2157baa3662020500476b931ec6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 28 17:46:22 2021 -0500

    🩹 Sensorless homing tweak

commit 6d3dec8b6390bd1fb9ce24814249ab0e3cf8719e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 13:51:57 2021 -0500

    🎨 Update more EXP Headers

commit d6501a93ec1c4e63e35f362b12ce332ce8f91336
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 01:00:17 2021 +0000

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

commit d818a019c5d80e8b2238f0ea8311ad53154be4ec
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 28 15:27:52 2021 -0500

    🎨 EXP headers, ST7920 delays (#22641)

commit 3a8c509a9fea4c67227648ce9ac35f7434bd0f9e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 28 00:54:18 2021 +0000

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

commit f6dc56d97933d0f7566f9fb1f8e775663d014d53
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Aug 27 17:23:08 2021 -0500

    📝 AlephObjects => LulzBot

commit 36e40b68c9d34c254dccea2cc135b1dca5a80ce9
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Aug 27 23:06:45 2021 +0200

    🔨 Set Longer3D timers in variant (#22632)

commit 0c4085da01433c230731828a45ee7a91ae11b794
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 27 01:01:36 2021 +0000

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

commit 51160ee9879e03878d7774870bf4e30b48d0149f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 26 00:55:12 2021 +0000

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

commit 8889e68088ff8a71c5cafecdc8eb6455b1522627
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Aug 26 01:08:27 2021 +0200

    🩹 Tweak startup message (#22633)

commit 88816548b65e464f2a3f77141197b74520d9c142
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Thu Aug 26 01:05:06 2021 +0200

    🔨 Melzi with OptiBoot build (#22630)

commit 181530db767b619e998c3c3c5f9b102bb008edfa
Author: Jin <3448324+jinhong-@users.noreply.github.com>
Date:   Thu Aug 26 06:33:08 2021 +0800

    🩹 Use <SoftwareSPI.h> in MAX31865 lib (#22618)

commit 71c96db932134ce845855fd51d910a86d044261e
Author: Ryan V1 <55478432+V1EngineeringInc@users.noreply.github.com>
Date:   Tue Aug 24 20:34:10 2021 -0700

    🐛 Fix Multi-Endstop stepping (#22625)

commit 7dec5c2674d0d3c7e2ddebba0b3568dfee18434d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 25 00:57:08 2021 +0000

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

commit 4f35858c9ef4de8e291d8006041aca0969c9d825
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 24 18:07:41 2021 -0500

    🎨 EXP1/2 headers and pins cleanup (#22628)

commit 8cf7dc960fbc78b7c9339d30372289d8c1bb0303
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 24 14:55:12 2021 -0500

    ✨ New board TH3D_EZBOARD_LITE_V2 (#22621)

commit 7974dcd2aaae741e37d6e2e230492f2ba258ffb4
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Aug 23 19:42:15 2021 -0500

    🎨 Define FYSETC S6 and TH3D EZBoard EXP1/2 pins

commit 9c51cf3491623a7492e6c6d1e20218da69e3db72
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 24 00:56:33 2021 +0000

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

commit 2c45ac3c1b2acb1f98a92dd80160c560d08600a8
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 23 00:53:22 2021 +0000

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

commit 104de60d0bbad1233455591842bc67cb4f006f30
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Sun Aug 22 22:47:37 2021 +0100

    🐛 Fix LPC176x M43 Pins Debugging (#22611)

commit 7d416bd055e3ccddf765208b2937dcc1fcd4ea8b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 22 05:25:07 2021 -0500

    ✨ MarlinUI for Ender 3 v2 DWIN LCD (#22594)

    Co-Authored-By: Taylor Talkington <taylor.talkington@gmail.com>

commit 34e6940aabd6645109b497c04f8733a1d205b35c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Aug 22 11:05:39 2021 +1200

    ✨ BOARD_RUMBA32_BTT (#22607)

commit 536cf287a6f642aa3eccd290b421b0e3869f018a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Aug 21 18:00:55 2021 -0500

    🎨 Misc code and spacing cleanup

commit 2e3b13133159669ecb9682079f60972d0ff5b3c8
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Aug 21 15:07:52 2021 -0500

    🎨 Tweak TMC software serial pins

commit 104acd9e5997e16ad327340a205d6611517fa65e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Aug 21 12:19:02 2021 -0700

    ⬆️ TMCStepper 0.7.3 (#22608)

commit 0d854d332d10a2f8123eefa0f0d367b984de36b3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 21 00:55:55 2021 +0000

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

commit 1903cc23c6a6a004b342503006ae9d51a5ea86c8
Author: Fjederhaek <fjederhaek@gmail.com>
Date:   Sat Aug 21 00:45:05 2021 +0200

    🐛 Update H-bot / Core for 6-axis (#22600)

    Followup to #19112

commit 9046254a14b92b6bdf1696b1ed839b71615a0772
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 20 15:40:17 2021 -0500

    🌐 Update menu titles, add more IJK (#22605)

    Followup to #19112

commit 193205a40dd6b756bd69cab6fcb1af63ddd6d452
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Aug 19 21:11:10 2021 -0500

    Followup to CrealityUI cleanup

    Followup to #22586

commit 9db5805c8fbd417d1fa388533ee13eceff13eda9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 20 00:56:15 2021 +0000

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

commit 737d2dd56438ba02f07e3693e9138fc9816d143b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Aug 19 19:16:46 2021 -0500

    Followup to CrealityUI cleanup

    Followup to #22586

commit 033e65ec854e68fb189fa1c23d0277daf2417301
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Aug 19 17:38:05 2021 -0500

    🐛 Show bed size as 'work:' in M115

    Fixes #22598

commit 368a12a8ac687af85ea726bc54dabb5076ca55e2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 19 00:51:33 2021 +0000

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

commit e2297d82f2721466daf180e8c4034b040ac4cc69
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Aug 18 14:54:56 2021 -0500

    📌 Disregard TMCStepper 0.7.2

commit 11e8cd9db938fcc5ee5c5234f148655a8f19c20d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Aug 18 02:32:37 2021 -0500

    🩹 Followup to CrealityUI cleanup

    - Followup to #22586 fixing `Draw_Menu_Line` with `GET_TEXT_F`.
    - More number drawing convenience functions.
    - Return on `ENCODER_DIFF_NO` to reduce indent.
    - Put Main Menu buttons closer to the top.
    - Move status message up slightly.
    - Fix some indentation.

commit 6a8385624f4a5d75bb9beeec5c5420415b7dcea8
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Wed Aug 18 05:39:08 2021 +0200

    🐛 Fix STM32 delay, double reset in FSMC TFT init (#22584)

commit f8c67c48101c3456c301461fbb9013107f20f182
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Wed Aug 18 05:37:27 2021 +0200

    🐛 Fix Longer3D PWM/timer pins (#22583)

commit c05de6cbf8b914c9198091423fe19415e802de6e
Author: Jason Smith <jason.inet@gmail.com>
Date:   Tue Aug 17 20:35:12 2021 -0700

    ⚡️ Simplify PROBING_STEPPERS_OFF (#22581)

commit 6464601411346c1da7bf15016b07c0fa9558a28c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Aug 17 20:27:21 2021 -0700

    ⏪️ Revert ABL G29 feedrate (#22574)

    Reverts 9130f58

commit ab8e212c2d66d806e0fb8ca32f9bd333949728d7
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 18 00:58:27 2021 +0000

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

commit 09af42e1af38b441d44ddcc71b9d6906ce68b51d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 17 06:18:19 2021 -0500

    Clean up CrealityUI and MarlinUI (#22586)

commit 3e0d8e16aacfbf85f1254d4fb2229e9da66c8cac
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 17 00:57:07 2021 +0000

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

commit 510f8d3e0ccb07911c6d57f5c29f16cad86f6c02
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Aug 15 21:31:00 2021 -0500

    💚 Update STM32F103RET6_creality test path

commit d586340655b30362f4790cc1aa8082c7f37b902c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 16 00:57:32 2021 +0000

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

commit af0cd400bebdfd77baa068ab27b091611de1b20d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 15 19:02:08 2021 -0500

    🐛 Fix LCD_COL_X_RJ

    Followup to #22471

commit a307348b898f2d2a61c2a348a9e53034679bfe62
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 15 00:57:42 2021 +0000

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

commit 8fe84fcf870967d755b1bb884e380b75559f0bec
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 14 00:54:13 2021 +0000

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

commit fc817feee3ddfb652e370aa38e723e74b319a0bc
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Aug 13 18:49:27 2021 -0500

    🎨 Update HAL/STM32 wrappers

    Followup to #22537

commit c161a46112debd280dc1ed6945d50f971ff505e6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 13 16:32:25 2021 -0500

    🎨 Update MKSPWC, some other pins (#22557)

commit feb6d2887eee1b31713ef0ad665b166c8fe6e70b
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date:   Fri Aug 13 12:26:26 2021 +0800

    🐛 Fix some BTT SKR2 pins (#22558)

commit 1555db237e841c754931cbe43e48ebae14c6fdc5
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Aug 13 05:40:52 2021 +0200

    🚸 Fewer CRs in settings report (#22560)

commit b028df4228a9eb93d4e111ee8dcffb0d1aac7ff3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 13 00:58:12 2021 +0000

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

commit 59324a411f022cbe6757f15924120ad1976e850b
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Wed Aug 11 21:00:47 2021 -0500

    🐛 Fix Ender-3 v2 language init (#22550)

commit 534da44e1f824543c22f81d8f65ba9b86dd9aa98
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 12 00:57:35 2021 +0000

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

commit 4d3cb95bd8fbe325254d3885b5c648b6ca5dfa19
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 11 18:19:55 2021 -0500

    🔨 Use zip link for MarlinSimUI

commit bf9cd90cc4e70f9cebd129376580c4c6ffa5dff2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 10 23:49:56 2021 -0500

    🎨 Tweak M73 condition

commit 5c610b2c18fdbf84f9707ef3a81553c2e130befc
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Aug 12 11:06:09 2021 +1200

    🚸 Better error for MOTHERBOARD not defined (#22551)

commit c657fe2112fcd0dec1fb7012819b19a538fa8f21
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Aug 12 00:58:28 2021 +0200

    🐛 Fix M575 port index output (#22553)

commit cad142ab1be311f568ce69a5faaf3706d2f2f244
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 11 00:59:26 2021 +0000

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

commit 25d5d2ab507075f282787c6e5c9d57f1a3972e1e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 10 02:53:28 2021 -0500

    🚸 Set M122 interval only with S0 or Pn

commit 13e4e24e21514f5d55322af0ff2b6337be0775f9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 10 02:39:50 2021 -0500

    🐛 Use delete [] for new []

commit 1ed59fef9305fe1784dfe3d180a56ed4e0d0f6d9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 10 01:01:05 2021 +0000

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

commit cc109c1802193ac2830791e8dbce269a1edb4a3b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 9 16:07:15 2021 -0500

    🐛 Fix CoreXY plus extra axes

    See #22490

commit ae846c2cb2cdd9c57d62253dfddcf6dba15ab14a
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Mon Aug 9 04:37:27 2021 +0200

    🚑️ Init FastIO before anything else (#22508)

commit 76c10b3e02aa5a699ee68a36663337de60fea4e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 8 21:31:10 2021 -0500

    🏗️ Define HAL_STM32 for HAL/STM32 (#22537)

commit 331cc5fd6a044e568dbe789ecd0b732b6eba454f
Author: Jason Smith <jason.inet@gmail.com>
Date:   Sun Aug 8 19:25:17 2021 -0700

    🐛 Fix some Simulator on Windows issues (#22516)

commit 47281012d9c7940206b8c7587c35b05c1288733d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 9 00:59:01 2021 +0000

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

commit 5756f8898e8868704516385bae17e65f367aa140
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Aug 8 19:45:51 2021 +1200

    ✨ Zonestar ZM3E2, ZM3E4 V1, ZM3E4 V2 (#22498)

commit 8a7673ac1e4df933cfe1a0254af03af4118e66e4
Author: luzpaz <luzpaz@users.noreply.github.com>
Date:   Sun Aug 8 03:26:54 2021 -0400

    🎨 Spellcheck code (#22531)

commit a63e0477da38801a4952ae2fae6c44bf35d6fc3f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 8 01:24:15 2021 -0500

    💚 Fix tests for new sanity-checks

commit 26b1ed7c2a95d14af22ba7f78a62cff551aa34ea
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sat Aug 7 21:23:06 2021 -0600

    🐛 Fix FTDI Eve Touch UI (#22530)

commit c1a533b45e21c43eda6fedb9679976747bca6845
Author: mks-viva <1224833100@qq.com>
Date:   Sat Aug 7 22:17:43 2021 -0500

    📌 MKS pins for PSU_CONTROL (#22528)

commit 0f3e938c9b398dafa09ba39d98c4c461e883068e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 8 00:58:57 2021 +0000

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

commit 22ae09ace498e735c216bbb726f2c3f39d5d714a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 7 16:06:51 2021 -0500

    🔧 Sanity-check DEFAULT_EJERK with LIN_ADVANCE

    See #20649

commit f4ab0a0c918f4db514e981c18f737e2752a2fc01
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 7 15:59:00 2021 -0500

    🔧 Sanity-check Mixing plus Disable Inactive Extruder

    See #22166

commit f732cb1a7f499e83f5a43344a54fb19cbbc9dab0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 7 00:53:48 2021 +0000

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

commit e7c33840dca804c5c41ca6ce8888bfa16f8c1a47
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Aug 7 08:54:02 2021 +1200

    🐛 Fix MKS 'USB Flash MSC' environments (#22515)

commit 9a8c9d4ed0f1ab26736fda469eefcbdaeeb90969
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Aug 6 22:51:10 2021 +0200

    🎨 Fix "'EEPROM' unused" warning (#22511)

commit 526b6cdf5b429cf05579bd203a9d72cd057bf0a1
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Aug 5 23:24:20 2021 -0500

    🐛 Fix fan index for Singlenozzle, chamber fan

    Fixes #22512
    Followup to #19152, #19519

commit ff3db550ee397286c7b9f3bf546c0f4fba161682
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 6 01:02:27 2021 +0000

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

commit 03b0a6371dcdee90846c5838a5b59a7e5ce57505
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 5 15:03:26 2021 -0500

    🎨 Simplify endstops flags (#22525)

commit b55cf3c9f6f6199d665f9db424b28f7395f158f4
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Aug 5 00:19:21 2021 -0500

    🚸 Fix BLTouch spelling

commit f35e0b9382c6df1f98a4c3ba34b10a8077432e56
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Aug 5 06:47:31 2021 +0200

    🚸 Prevent M42 unintended pin change to output (#22493)

commit 5cb961e98b6d659a9acad3a88126baa14faec35f
Author: Vert <45634861+Vertabreak@users.noreply.github.com>
Date:   Thu Aug 5 00:45:49 2021 -0400

    ✨ Mixer Presets (#21562)

commit b06d2f789b4a36da47869268c297c409c13b8889
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 5 00:58:49 2021 +0000

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

commit c2c7a03706e54d1ce4441a39ca8343755bceac06
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 4 17:01:42 2021 -0500

    🐛 Fix report_a_position ABC criteria

commit 9130f58f3f553584278ec716c617005b9e03cb49
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 4 16:37:02 2021 -0500

    🐛 Prevent ABL G29 setting a funky feedrate

    See #22472

commit 0e065579aa81e1b285b12c5d8a8f579698ce47e7
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Wed Aug 4 08:14:54 2021 +0200

    🐛 Fix Longer3D STM32 boot, add Maple test (#22473)

commit 53a5cd0c380851ceab9545c652d67d3d688cf693
Author: Bob Anthony <42719046+bob-anthony@users.noreply.github.com>
Date:   Tue Aug 3 23:45:08 2021 -0500

    🐛 Fix extra E move in toolchange with ..._NO_RETURN (#22504)

commit 8d454fd6f1241e23f70f7b5fc3fa668d20ee8a20
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 4 01:04:15 2021 +0000

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

commit 092b5942c1cc569a85e0d0e4a1f50b20a5485d63
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Tue Aug 3 18:06:16 2021 -0600

    🐛 Fix FTDI Eve Touch UI (#22500)

commit afca6e745932d295b88d37fa9bd4274e22705b0b
Author: luzpaz <luzpaz@users.noreply.github.com>
Date:   Tue Aug 3 20:02:34 2021 -0400

    🐛 Spellcheck comments (#22496)

    codespell -q 3 --builtin=clear,rare,informal,code -S ./Marlin/src/lcd/language -L alo,amin,endcode,stdio,uint

commit 6a25e4e56f0863e3abee50cad35e3ef89ed270df
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 3 18:29:20 2021 -0500

    🐛 Allow SKR Pro CONTROLLER_FAN_PIN override

    Followup to #22411

commit 444992c12fa8c6fb6b8fd3f759173259d7875345
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 3 01:02:55 2021 +0000

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

commit 0060dbc49e32cd5015b0bf2e42c2667e07eb7b72
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 2 17:08:35 2021 -0500

    🐛 Fix up endstop flags (#22487)

commit 0eda34e07d6b15ac889d21d84457401683c0345f
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Mon Aug 2 07:13:57 2021 +0200

    🐛 Followup to 6 linear axes (#22482)

commit 1e4470484ad08ec1e2744650d52df56c409db353
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 2 00:58:08 2021 +0000

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

commit 5a72a39706d4fc4bbcb2093d51963f2a2720847c
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sun Aug 1 21:43:31 2021 +0200

    🔨 Offset/encrypt/rename for Maple STM32F1 (#22477)

commit 1e33c1a2a78392e9182442db043384b0f96cca20
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 1 14:28:53 2021 -0500

    M256 LCD brightness (#22478)

commit 7110c4562e69f4a1ca992d8fae4a5fe948494d3d
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Aug 1 19:09:29 2021 +1200

    🐛 Fix sprintf_P compile error (Maple) (#22479)

commit ab96ada2e240e7861c6dc5a1cbff4bdab66f2b26
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 31 23:27:10 2021 -0500

    🎨 Adjust settings.cpp indent

commit a90c8b762c8b8ca06093d6e62f4355e8a5726115
Author: Grayson <mxpklx@gmail.com>
Date:   Sat Jul 31 22:55:22 2021 -0500

    🐛 Fix G38 with probe on Z_MIN (#22452)

commit 381a23773b5be40cf221c42b3139e7ee5f07687b
Author: ldursw <37294448+ldursw@users.noreply.github.com>
Date:   Sun Aug 1 00:42:26 2021 -0300

    🔨 Fix (RRF E3) RX/TX buffer size override (#22475)

commit b8cc0667bb7c5a67b2267cd86422b2485f364ac6
Author: Malderin <52313714+Malderin@users.noreply.github.com>
Date:   Sun Aug 1 06:00:18 2021 +0300

    🐛 Fix custom menus on MKS UI (#22470)

commit 0085ebce4d36165278922e5c31636262f46d0889
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 1 01:06:23 2021 +0000

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

commit 9bb5b10c0c9cf5a61d2bfb9dfdb6cfe210b6002b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 31 05:32:13 2021 -0500

    🚚 Relocate and adjust DWIN E3V2 (#22471)

commit 332dde935d58906e31a2e5f6d03e280f7c9c0919
Author: mks-viva <1224833100@qq.com>
Date:   Sat Jul 31 00:47:30 2021 -0500

    ✨ MKS Monster8 board (#22455)

commit 002c500b7185284b0644b3ccbd60d95f7c4bb713
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sat Jul 31 06:49:12 2021 +0200

    🔨 Update Longer and Chitu envs (#22467)

commit 35b0083dfee0f5508d1ecfd4756ebcac8892b067
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jul 30 23:05:53 2021 -0500

    🐛 Fix custom menus on TFT LVGL

    Fixes #21423. Regression from #18177.

commit b6f720ca1ae1fb3a9998db168cbb4e87e14df9e8
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jul 30 22:43:58 2021 -0500

    ✅ Custom logging for MBL

commit d9ab20ec27599d99f0a7fa901086687a6d9139d5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 31 01:01:28 2021 +0000

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

commit 9e68aea8a14339d71aac5ab2274905af29e44464
Author: ellensp <ellensp@hotmail.com>
Date:   Sat Jul 31 12:50:22 2021 +1200

    🐛 Fix DGUS displays compile (#22464)

commit 1fed25c44020224c9499eac73422657b53783e74
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jul 30 19:39:38 2021 -0500

    🔨 Fix: BIGTREE_E3_RRF doesn't use user RX/TX sizes

    Fixes #22466. Regression from #22377.

commit 39e5c865444000fa22f12b9ff1593dc48afb21e1
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jul 30 17:57:50 2021 -0600

    🐛 Fix FTDI Eve unicode and spinner dialog (#22468)

commit 5ecef6e584d71c2a5cbe983a2c7424c0fcffdf93
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jul 29 23:41:48 2021 -0500

    🐛 One-based G35 point index output

commit 84ca21edf76d1e2e4830b5fcc3b454db05cbe871
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jul 29 23:40:27 2021 -0500

    🎨 abs => ABS

commit 14d40fb95721f0e95099f2aafea196290b218d6c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jul 29 22:59:33 2021 -0500

    🐛 Fix PAUSE_MESSAGE_PAUSING=>PARKING

    Fixes #22250. Regression from #17460.

commit 6efd7285ccbacc55402ca7b704be0f051af34097
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jul 29 22:23:06 2021 -0500

    🐛 Fix PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED

    Fixes #22295. Regression from #20241.

commit 6eae68c402d13237e020c0b358003e618e1ecec3
Author: George Fu <nailao_5918@163.com>
Date:   Fri Jul 30 09:09:38 2021 +0800

    ⚡️ Larger FYSETC S6 I2C EEPROM size (#22424)

commit 2b8ef7416208488dde3ff9f75912eef58bb3996b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 30 01:01:02 2021 +0000

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

commit 99a53e2c86e95cea0427742b267b244870526304
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jul 29 19:55:04 2021 -0500

    🐛 Fix 5-axis no extruder compile

    Fixes #22446

commit 46dc8e916f2b235dfcc73d258e66acf530cb51ee
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jul 29 19:34:49 2021 -0500

    🐛 Fix 3-point leveling position

    See #22457. Fixes a G29 regression from #19112.

commit 543d834a254544671bbeee937601704fc2dfad7a
Author: ellensp <ellensp@hotmail.com>
Date:   Fri Jul 30 11:25:06 2021 +1200

    📝 Document DGUS display options (#22443)

commit cdcb45b87eef8a590ea3f7adef24a10f8dce8e9e
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Thu Jul 29 17:19:49 2021 -0600

    🐛 Fix FTDI Eve unicode and spinner dialog (#22459)

commit 363e83731f7b045d7b3e9842882b1f53e032ca89
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jul 28 23:24:30 2021 -0500

    🔧 HAS_CUSTOM_PROBE_PIN => USES_Z_MIN_PROBE_PIN

commit a70d0726caf0c3a235c1bf9047833d60b45189ed
Author: mks-viva <1224833100@qq.com>
Date:   Wed Jul 28 21:56:22 2021 -0500

    📺 MKS MINI12864 V3 for Robin E3P, etc. (#22453)

commit b37e851f3664f6b349f609115ffe55ef5b5b9280
Author: thinkyhead <thinkyhead@users.noreply.github.com>…
RFBomb added a commit to RFBomb/Marlin that referenced this issue Nov 7, 2021
commit 030b66eb2710165a2081c625a7a0573a6d04b5ae
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Nov 7 01:11:51 2021 -0600

    🎨 Misc. code cleanup

commit e15f9fdcd9ccff010f188d6b0762cf00956a55c1
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Nov 6 23:09:15 2021 -0700

    🚸 Indicate Preheating for probe / leveling (#23088)

commit dc972990f35ed0f6c1ddc7d2d6c15df9e8a4cb3c
Author: Evgeniy Zhabotinskiy <evg-zhabotinsky@users.noreply.github.com>
Date:   Sun Nov 7 07:16:18 2021 +0300

    🩹 Fix M503 report (#23084)

commit 27220f09440e90ed490087273a2357b84a41663c
Author: Jin <3448324+jinhong-@users.noreply.github.com>
Date:   Sun Nov 7 11:53:36 2021 +0800

    🍻 Preliminary fix for Max31865 SPI (#22682)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 30a69f76a3dc9deaef6974d18107d7f759502092
Author: dwzg <50058606+dwzg@users.noreply.github.com>
Date:   Sun Nov 7 04:48:00 2021 +0100

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

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit c07aa875bc8c285adf7f967df656f6bf8a13bf92
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Nov 7 15:27:53 2021 +1300

    🐛 Fix DGUS Reloaded status message (#23090)

commit dfdffca2bddb2c7301b6befe5d453da5b84dc16f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 7 01:06:43 2021 +0000

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

commit f5284715fb7c35a5ba9caf98f45f533db709eeb4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Nov 6 00:58:50 2021 +0000

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

commit 3e8cdef36b42d4cae1efc8fe3272497827dcc440
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 5 01:00:14 2021 +0000

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

commit f6147e038bbd4b4b96c8c188107b9e7d4f02d534
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Nov 4 12:18:23 2021 -0500

    🍻 Get/clear reset source earlier

    Followup to #23075

commit f53d627750ab0cf377ea1738bdcf792f2ef37de9
Author: Skruppy <skruppy@onmars.eu>
Date:   Thu Nov 4 18:11:57 2021 +0100

    🐛 Prevent AVR watchdogpile (#23075)

commit a9dc737624cf45bceff1866ce4807bb2cc36ac44
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Nov 4 18:04:04 2021 +0100

    🐛 Fix TFT backlight [STM32] (#23062)

commit 7b792014703e778d8fc0b1760747d50ab8f340d1
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date:   Thu Nov 4 18:54:38 2021 +0800

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

commit 4483b8aaf023576ea1c8ecfa84e7093ec26ad75a
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Thu Nov 4 17:28:42 2021 +0700

    🔨 Fix IntelliSense / PIO conflicts (#23058)

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit 399faa91b99dab0f8565396efd32f277965c93b2
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Nov 4 14:04:06 2021 +1300

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

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit fef96bb556f19bf1e132368ec0675d1d2b12634d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 4 01:00:55 2021 +0000

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

commit 02b6fb8025ef82c2d1290cdc1a98bc0c54f502c9
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Nov 3 07:06:31 2021 -0500

    🔨 Script 'mfprep' finds pending commits

commit cac42e24a581915176816c680a61396855660b19
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Nov 3 07:02:21 2021 -0500

    🔨 Update git helper scripts

commit 627b67e27aa4de50c172e0ffc4a13fe3fb2d35f8
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 3 01:00:15 2021 +0000

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

commit f632b72e8c58ea4c54676ca17e9b9c9ee4584be0
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Nov 2 01:28:00 2021 -0500

    🔨 Support ABM in mf scripts

commit 0db9f9a828c43f978e37b5140f7b9bb6ca630667
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Nov 1 23:15:29 2021 -0700

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

commit 95357c33fb0d3ce6d84e59bd16e8354836997015
Author: Sebastien BLAISOT <sebastien@blaisot.org>
Date:   Tue Nov 2 06:49:21 2021 +0100

    🐛 Fix NEOPIXEL2_SEPARATE default color (#23057)

commit da830e6ced7f7c7e509e748104245064d1c1b265
Author: Andrei M <22990561+andrei-moraru@users.noreply.github.com>
Date:   Tue Nov 2 01:47:16 2021 -0400

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

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 767a15d468ab6859eec19600541ad21dff757d1a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Nov 1 22:43:40 2021 -0700

    🔧 Endstop / DIAG homing conflict warning (#23050)

commit a57355ee06e59fb3d89ab56f8749eb5549efbee3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Nov 1 21:23:54 2021 -0700

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

commit 498937967482faf7b299c2119c258c8ce7090ce9
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Tue Nov 2 10:29:23 2021 +0700

    🎨 Fix redefine warnings (#23061)

commit 7942f71d26b58630a841f2de2d4f2abaa4120395
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Nov 1 20:23:24 2021 -0700

    ✨ Artillery Ruby (STM32F401RCT6) (#23029)

commit 6af344c19329b51307d38463c4912651ac1dcdaa
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 2 01:02:55 2021 +0000

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

commit 40477e031f16c2ecde535bc4ddae65c986060c9a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Nov 2 12:36:22 2021 +1300

    🐛 Fix Y_SERIAL_RX_PIN for FYSETC S6 (#23055)

commit 36e475b8beccd7bcc74335cbab69c5aa6ecbf61c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Nov 2 12:34:53 2021 +1300

    🩹 Fill gaps in pinsDebug_list (#23051)

commit 296a6137cd06ce06f062767ab1b59f99ee95a094
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Mon Nov 1 23:03:50 2021 +0000

    🚸 More flexible Probe Temperature Compensation (#23033)

commit 5e9b5bb4482bdc4e600c2d0302faca29d6487b42
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 1 01:03:28 2021 +0000

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

commit 9176dcea6ee1e449aee8f4972739268d4e97f034
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 8 01:17:16 2021 -0500

    📝 Tweak EXP comments

commit efe2e79ac8e6d35e80a7d29bfd266685a82dc546
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Oct 30 23:43:19 2021 -0500

    🔨 Help for GDB remote debugging

commit ba0b772d84bad99604b0131e2142366544370646
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Oct 30 22:43:02 2021 -0500

    🩹 Fix linker error (transfer_port_index)

commit b88612f9761601e985f8ec8db5d3b91214c39555
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 31 01:03:08 2021 +0000

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

commit 4dd1f0928688c68c6c334e1fb1a8e13be2dc351a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Oct 30 04:16:37 2021 -0500

    💚 Update Ender-3 V2 config path

    MarlinFirmware/Configurations#600

commit be412e3e2b07664f95eec21dc8a63a66f25d26a6
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Oct 30 01:39:33 2021 -0500

    🎨 Adjust Ender-3 V2 DWIN options

commit 75e0b7f8ff668217889b770a83990c532998ca95
Author: aalku <aalku7@gmail.com>
Date:   Sat Oct 30 07:17:20 2021 +0200

    ✨ Shutdown Host Action (#22908)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit aa4e32555dd247c391356a2e1449dd9820beeab6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 29 20:46:55 2021 -0500

    ✨ "Rutilea" ESP32 board (#22880)

commit 18a924d4e26539c270dc08677d4319e5b012c723
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Oct 29 20:42:52 2021 -0500

    🔧 Configuration version 02000903

commit 67b075fd39e530c5d7e8a09ee6b3dba81d8548d0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 30 00:58:37 2021 +0000

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

commit 70e31bff45165dd07375cd6140fc0a72468e0894
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Oct 27 21:36:06 2021 -0500

    🎨 Standard 'cooldown' method

commit b09038fcc72bc8df4ec8a7014597586e0b0390ca
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Oct 27 20:01:44 2021 -0500

    🎨 Standard material presets behavior

commit 1d80464ba77bc576426f15af28a633bf48d769ad
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Oct 27 21:15:58 2021 -0500

    🎨 Define HAS_PREHEAT conditional

commit 3b9bea6f80f02b76f6b71c6c1dcdb751e3611d8e
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Sat Oct 30 00:49:12 2021 +0200

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

commit 2c8dce69e16daa08de4a62f115b06fe68c0db17d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 29 00:58:40 2021 +0000

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

commit 5d04c7496cec3b8a564ac302da116e3783c4b1d3
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Oct 28 19:22:35 2021 -0500

    🐛 Fix EZBoard V2 board name

commit a1c4aad1472bb418bc0c0bc52322032b68df3a1f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Oct 28 03:26:05 2021 -0700

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

commit aa2c6387e95bdab955499627e3890561842f0a6a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 26 21:54:43 2021 -0500

    🎨 Apply HAS_MULTI_HOTEND conditional

commit fbc125b06c0858d1dbdd29908ad862ed25918b3b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 28 01:00:14 2021 +0000

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

commit c0337da6334923ea7b65bcd4f9c1ea08c8b33cf2
Author: Zlopi <zlopi.ru@gmail.com>
Date:   Wed Oct 27 23:10:46 2021 +0300

    🚸 Scroll long filename on MKS TFT (#23031)

commit 11f1335efb448c5774c92ca14a72e6dbec9dac23
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Oct 28 09:06:06 2021 +1300

    🩹 Retain LCD pins with motor expansion (#23024)

commit 3f6c8d5dc56938f95edaecddf20e9b76aec6df29
Author: somehibs <hibs@circuitco.de>
Date:   Wed Oct 27 21:00:02 2021 +0100

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

commit 2199ae77c80aa419a580f9ed8dc2f11ecddd6912
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Wed Oct 27 21:58:32 2021 +0200

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

    Followup to #23005, #22778

commit de6dfc9abc9aed3769c92ab89e35ee598424c3fe
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 27 01:02:46 2021 +0000

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

commit 65dfc407a5a57eaaa036475b079153efdd1a51da
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 26 19:36:16 2021 -0500

    🚸 Tweaks to UBL G29 Q

commit 9338b7f06e03fd27ac8b2babb96e92a2701700ad
Author: woisy00 <spam@bergermeier.info>
Date:   Wed Oct 27 01:05:34 2021 +0200

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

    Regression from 9823a37

commit 79626062d03f2f336b43378cc950ead9bffc8703
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Oct 26 00:59:45 2021 +0000

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

commit 73875cf9ccd4b23bbe2a46bb57192109b7d1a7c6
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Mon Oct 25 22:29:40 2021 +0100

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

commit 930cb7c3175eb85866bb673a861f8945c3c18726
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Oct 26 10:02:29 2021 +1300

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

commit 90716eb7ce6ffd315b923e85a19d3bca65b78ff0
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Oct 24 23:14:02 2021 -0700

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

commit b619a7184406a3fff2d67d33f1f82159721bb1bc
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Oct 25 19:12:07 2021 +1300

    🐛 Fix børken E_DUAL_STEPPER_DRIVERS (#23017)

commit 70863058cd91b155a9d299680c34430c8d9a4192
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Mon Oct 25 01:08:15 2021 -0500

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

commit 5ef0468251b24fae5d2053691ff986b95fcd1631
Author: Lefteris Garyfalakis <46350667+lefterisgar@users.noreply.github.com>
Date:   Mon Oct 25 09:06:13 2021 +0300

    🚸 E3V2 Enhanced cosmetic fixes (#23009)

commit d79ea20dcd139ae0073051fd15405fef5b40dbf4
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Mon Oct 25 01:39:48 2021 -0400

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

commit f6c7fbd1ab62b0c3aa70c971ad6c30d062d3252a
Author: Dennis <Stuxles@users.noreply.github.com>
Date:   Mon Oct 25 07:35:11 2021 +0200

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

commit 444f27dfa0bba82b73b428b7adcc50d44b99775a
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Mon Oct 25 06:33:40 2021 +0100

    🐛 Add USE_TEMP_EXT_COMPENSATION options (#23007)

commit f8968ed13c217ffa8db13d15c1d136e8d3864c1e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 24 23:32:34 2021 -0500

    🐛 More explicit allocation of solenoids

    In reference to #22887

commit 6a6bf0fd1b04f79215ee6d64596fdb1dcd72ccaa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 24 23:33:27 2021 -0500

    🔧 Fewer alerts about Z_SAFE_HOMING

commit 22d3a993e7d5d2499517ddda8de5b8450735ab56
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 25 01:03:57 2021 +0000

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

commit e5e872c2e2ff87a4bef0c0565aec97cc12355dc7
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 24 01:02:51 2021 +0000

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

commit 3ec0213dbc34152e18eb5b4225e02a12d6cdc8e5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 23 01:04:09 2021 +0000

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

commit 9c055621a0944e7f65051c0c72d117d13b7fe05b
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Oct 22 21:56:05 2021 +0100

    🐛 Fix probe temp compensation maths (#23004)

commit de3c563a990e72533fb9ea9f376c53595c3e986b
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Fri Oct 22 18:16:07 2021 +0200

    🐛 Fix SHOW_REMAINING_TIME option for JyersUI (#22999)

commit 9a19ea50d8451fc0970843cc896bd2553e0f987e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Oct 22 08:52:31 2021 -0700

    ✨ BigTreeTech TFT35 SPI V1.0 (#22986)

commit f62890d889f51e07e3281e065d93445afe7b6566
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Oct 22 17:57:30 2021 +1300

    🐛 Fix E3V2 width/height defines (#22994)

commit a309a9535db532457b0aca8e861f5b8ed9f8dd93
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 22 01:12:18 2021 +0000

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

commit 566ce56a2d6c572d9d4700dad95a330b2459cb32
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 21 01:08:58 2021 +0000

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

commit a05b66a9503ea89cbb967f50c8680856c40c724f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 20 01:05:51 2021 +0000

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

commit a6a838084d69435f2113deb5d783b96d909be085
Author: Augusto Zanellato <augusto.zanellato@gmail.com>
Date:   Tue Oct 19 17:24:22 2021 +0200

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

commit 52edc543bd72bfacb4ac6eb47eae2e466dcce62d
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Tue Oct 19 06:05:23 2021 -0500

    🩹 Fix pragma ignored for older GCC (#22978)

commit 5f7c92dfbb0af65610d88ea48d48f00fd04505c2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Oct 19 05:59:48 2021 -0500

    🎨 Refactor MOSFET pins layout (#22983)

commit b69971f06aed8e2811ffcede0f153251f06775dc
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 19 05:53:34 2021 -0500

    🔨 Fix older GCC CXXFLAGS warning

commit 1f3f9cb68ce9c9adad55a98ccea07e491d7b9785
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 19 05:52:41 2021 -0500

    🎨 Pragma GCC cleanup

commit e77df7230023cc0ac4eb4cce08fae70ff1427dce
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 19 05:51:49 2021 -0500

    🎨 Fix pinsDebug_list warnings

commit f8ec8e5bf6df342a27e5dc9e39d6605c50f64194
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 19 04:03:03 2021 -0500

    💡 Sub-include pins labels

commit 6cf6c4cd852bd09c509407057e81e37e36bad52e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 19 02:56:44 2021 -0500

    🔨 Delete after encrypt. Lerdge encrypt only once

commit c91451d215506b3c3977b9ae4b146c98b48acdeb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 19 02:49:35 2021 -0500

    🔨 Update 'pio vscode init' detection

commit 3a77894efd579955968a4bcf023b6d8ae937ae05
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Oct 19 01:06:11 2021 +0000

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

commit 357fb8d98458883144e29a39e9f4d5c033f803a3
Author: Jason Smith <jason.inet@gmail.com>
Date:   Mon Oct 18 01:11:16 2021 -0700

    🐛 Fix max chamber fan speed (#22977)

commit 7bab1c92e72f8e1bdb5c04287c4ee82a89dba600
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
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 <530024+ellensp@users.noreply.github.com>
Date:   Mon Oct 18 20:54:20 2021 +1300

    🐛 Fix MMU1 compile (#22965)

commit d3a84bc584875dc3e022f2d9fd8065207caef204
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Oct 18 00:51:01 2021 -0700

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

commit 28e2c358d1238d2d0db9e74b23e83f6e3bff89d4
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Mon Oct 18 02:40:47 2021 -0500

    🎨 Suppress type warning (#22976)

commit 2e0bde37d77c8c0d8274d74f18cb27be2c232278
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Oct 17 22:10:08 2021 -0500

    🎨 Add MKS UI goto_previous_ui

commit ad4a8a68c2125f74124225813fe978c31677b3e5
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Oct 18 01:49:35 2021 -0500

    ✅ Warn about dummy thermistors

commit b93c3301f2146bed7287ad097b95b53507c35420
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Mon Oct 18 02:03:01 2021 -0400

    Fix JyersUI ZOffset Multiplication (#22975)

commit d2b0939118827c49610058c41f521b789c827477
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Mon Oct 18 02:01:28 2021 -0400

    Fix Tool Change Park (#22968)

commit 741e70541d5ba0e8a7cfd2c402b306dfab4b77ee
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Oct 17 20:24:41 2021 -0500

    🚸 Tweak MKS UI G-code console

commit d685cbd5c304e8e3f3b86960e616c6b797ae85bd
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Oct 17 18:11:16 2021 -0500

    🎨 Fix up MKS UI defines

commit 7d16f0cadf12ed9c662d47af96daad6fe8e07d9e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Oct 17 19:26:31 2021 -0500

    🔨 Improve 'mftest' error message

commit cd0ee8c34dab5393d7b7c7845e553a02dfd6d2da
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 18 01:06:10 2021 +0000

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

commit bc567e7b4939f3abb75a72c313824e6abf0fb07c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Oct 17 16:56:01 2021 -0500

    🔧 Safety feature warnings

commit 3c94f2f1c33395e45f3b2456f97eb64310b41000
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 17 01:02:43 2021 +0000

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

commit babb3d7b4ce49fdca215bab857039e7132dfadbd
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 16 01:07:57 2021 +0000

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

commit 9d72cbf84b970e5060f8dceef7158b9ca8252856
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 15 15:07:47 2021 -0500

    💡 Update old gnu.org links

commit 95662d3aed0a31ea832407c042a5b0c56cd8a2db
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Fri Oct 15 15:56:59 2021 -0400

    ✨ Add option EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN (#22960)

commit ee28a14e8e7f6b33fe5813dbedcd85380207c345
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Oct 15 00:24:08 2021 -0500

    🎨 Refactor Host Actions as singleton

commit de5aefd09e2ede1314382c4a10e51335d07524f9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Oct 15 14:38:03 2021 +1300

    🔧 Add, update TFT sanity checks (#22928)

commit 11435356643c7e32dd6f30e8a144e2c3766bfb35
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 15 01:05:59 2021 +0000

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

commit 5d665d5e1e3a7b9f95cd4075815883fce3791465
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 14 01:01:39 2021 +0000

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

commit 8e4953514c893410c402ba6486f86580385effd9
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Tue Oct 12 23:19:05 2021 -0400

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

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit bf91bd5eee252a2ec2feacb54bd1ed88b38215aa
Author: Dmytro <svetotled@gmail.com>
Date:   Wed Oct 13 05:45:00 2021 +0300

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

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f58934c4efc6319aebaa3d0845030b91bea64828
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Oct 12 19:06:39 2021 -0700

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

commit 8ce2254aa69ae12bc31c6e55bf88a7d1a60054fa
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Oct 12 19:05:37 2021 -0700

    🔧 Remove obsolete G34 sanity check (#22929)

commit 0d41667bc2c3895ea8e3ed28435f42ffa106f44f
Author: George Fu <nailao_5918@163.com>
Date:   Wed Oct 13 09:32:54 2021 +0800

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

commit 02dc7a6387fdc3b9bd1659b3aa400802bacb7828
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Oct 13 14:28:45 2021 +1300

    🐛 Fix G33 homing current (#22909)

commit 3f9ff2421fadb2513e5c94688d4c49e4bf6b84e7
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
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 <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 13 01:07:25 2021 +0000

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

commit a7519ecca92cbaa3e3c4cc28dcb19911bf5115b0
Author: mks-viva <1224833100@qq.com>
Date:   Tue Oct 12 20:01:18 2021 -0500

    ✨ MKS Eagle (STM32F407VET6) board (#22897)

commit 15ebe45f36f34bce4a07f6348c85ffb1ab904087
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Tue Oct 12 19:40:56 2021 -0400

    🐛 Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)

commit 769948bb4d6d55d2bf4b42d69e79ce516986d77a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Oct 12 01:05:49 2021 +0000

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

commit ad14b5052cd60b6ab79bb236529241696266bf30
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date:   Mon Oct 11 23:42:29 2021 +0100

    ✨ M261 S I2C output format (#22890)

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit 90fa48ffd565ae28e8a0bfcf2d5f8b5a2de2e558
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 11 01:03:10 2021 +0000

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

commit 0c86cc89f0c74e58949f8c5a0351d57dffab8019
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 10 01:03:22 2021 +0000

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

commit b3fd0a50505455bbd4d0487b202ab75797a79421
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sat Oct 9 19:13:19 2021 -0400

    🐛 Fix IDEX Duplication Mode Positioning (#22914)

    Fixing #22538

commit 33809ae000da2cf1a5a2b0641b235a6bb68d245a
Author: Minims <github@minims.fr>
Date:   Sun Oct 10 01:10:21 2021 +0200

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

commit 886c59dc1045787042fa3b824bdc56655d10d655
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sun Oct 10 01:05:24 2021 +0200

    🐛 Queue string followup (#22900)

commit 13bb2393e13148732861c690d523f07972f4abd8
Author: Pyro-Fox <36782094+Pyro-Fox@users.noreply.github.com>
Date:   Sat Oct 9 15:09:50 2021 -0700

    🐛 LCD string followup (#22892)

commit bd6a1a2898909fff228febcb38538e47a2416634
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 9 00:59:22 2021 +0000

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

commit 1ec399c6ab2f51f7d9c491c098c001679d0ad0da
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 8 01:05:32 2021 +0000

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

commit 1f41437052c35a9091e057b843533d5695e8676e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 7 01:03:32 2021 +0000

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

commit f79d1f114c44c9f56cf2ae65203ae88fc2e4f6de
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Oct 7 09:42:59 2021 +1300

    🎨 Define Octopus allocated endstop pins (#22882)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 9922410a73fd3285bfba0478ac16f04eeee48b8e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 5 21:35:31 2021 -0500

    🔨 Port libsdl2_net required for macOS simulator

commit 149cbe795da4828b8df4ef34f5acee7fdd0d2dbb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Oct 4 22:19:05 2021 -0500

    🎨 Tweak FORCE_INLINE

commit e52c30d43a171fe6ce21a83589ac17d467e9a11c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 5 21:19:28 2021 -0500

    🐛 Followup to F() in config_line

    Followup to 1dafd1887e

commit ca7ab6e13f0e8acfb19192378c8f99a58ee3413e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 6 01:02:35 2021 +0000

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

commit 4e9ae9449fbdc9ad3cd9267d8e620b5ec5eddb3e
Author: Mark <niujl123@sina.com>
Date:   Tue Oct 5 12:23:02 2021 +0800

    ✨ ESP32 Panda_ZHU and Panda_M4 (#22644)

commit f395198e14a1cbc0604611b3ca1fb6261d4871fa
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Oct 4 22:16:15 2021 -0500

    🔨 Move Creality 4.2.2 warning

commit e8459ae63c8290123827b4e45bbe051c95060783
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Oct 4 19:50:14 2021 -0500

    🐛 ExtUI F() followups

    Followup to 12b5d997a2

commit d5cb30524e0ca0607ed49587f49e231c37fff4ef
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Oct 5 01:01:31 2021 +0000

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

commit f5b085157aaa2c3c7b360750c745588104e155f7
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Oct 4 18:58:20 2021 -0500

    🔨 Add 'opt_find' to find matching options

commit b919bdbf0b4f78578964999373c8918cc523d736
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Oct 4 19:12:19 2021 +1300

    🩹 Fix EXTRUDER 0 compile warning (#22868)

commit 2d08afe456255d47e6cd244c49c7cd243f74c53a
Author: Sebastien Andrivet <sebastien@andrivet.com>
Date:   Mon Oct 4 08:06:49 2021 +0200

    🐛 Fix ExtUI Pause messages (#22874)

commit 65b950a489c35b1d5547da3a504af4dad8cde3d7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 20:15:52 2021 -0500

    🎨 Apply F() to kill / sendinfoscreen

commit d1938d54ed5e42d766d97d898cd117893ea24083
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 19:28:29 2021 -0500

    🎨 Apply F() to MKS UI errors, assets

commit 1dafd1887e40399faf16e3455e3670ed3acfac52
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 27 13:46:42 2021 -0500

    🎨 Apply F() to various reports

commit d7fede3a6324cd6b1ec91a9c8e248fce8f0d7cf2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 27 13:40:01 2021 -0500

    🎨 Apply F() to G-code report header

commit eeffac697c5d7b69e01e38ed1602dbd21a366e93
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 25 23:52:41 2021 -0500

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

commit 12b5d997a2cee538e5026a68f8e0cfdd53248986
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 25 22:11:48 2021 -0500

    🎨 Apply F() to some ExtUI functions

commit 008bf1bcaef181cd1b74638692e2465bb9e07a4d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 27 11:55:08 2021 -0500

    🎨 Apply F() to Host Actions strings

commit 7f1286a11f87065c4e666985e679cf9c77d668bf
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 25 17:05:11 2021 -0500

    🎨 Apply F() to status message

commit 520b97083e52efdd47ab434b97823e48d85ade62
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 27 11:03:07 2021 -0500

    🎨 Apply F() to serial macros

commit 417e2530ebc5b6c74ac34adaba8be552b407383a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 25 21:11:31 2021 -0500

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

commit 64a919da2a6dbe8b529c3471935a6d632420ca3a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 05:59:03 2021 -0500

    🎨 Apply F() to E3V2 titles, popups

commit 59dac3a7e41ae7964686d9dff56baba821a278f7
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 25 18:43:52 2021 -0500

    🎨 Apply F() to G-code subcommands

commit 23f10563e03fd8f7368885b1c406a4f7c7c3d1ae
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 25 18:22:37 2021 -0500

    🎨 Update F string declarations

commit cb9fafd4f3a0dc3d963bd13664b58d3e2487d5b3
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Oct 4 18:25:45 2021 +1300

    🐛 Fix Arduino IDE compile error (#22877)

commit 54d400608db83bfa606e1b757589c169c9a38fc2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 4 00:24:41 2021 -0500

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

commit eb784d6e55c84c05b2a5353899d8bc25276e0640
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Oct 2 02:33:14 2021 -0500

    🎨 Rename MarlinUI::zoffset_overlay

commit 97295c552de9b72ad69833094776e34c3502fa0a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 4 01:05:57 2021 +0000

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

commit 9bb562f40a5570a63430bbf9392da0fdb85c5c8c
Author: VragVideo <91742261+VragVideo@users.noreply.github.com>
Date:   Sun Oct 3 06:12:51 2021 +0300

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

commit e4d8290be3765b0ee9d780b346c852e3c142bca1
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 3 01:06:58 2021 +0000

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

commit e27b1e5d58113dc1bad900701762ec147e573703
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 2 01:00:08 2021 +0000

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

commit ea0169f2bcd3de2fe3b99bceb0f9dd34d85f3322
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 1 01:05:30 2021 +0000

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

commit d3ed21b10eed717bdeeb210502082655d50488bf
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 30 01:05:47 2021 +0000

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

commit c6ceac9067b21a705f40fbcfc90bbc922945f82e
Author: Steven Haigh <netwiz@crc.id.au>
Date:   Thu Sep 30 02:22:46 2021 +1000

    🚑️ Fix DWIN_CompletedLeveling (#22851)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 732e59b412a29c52f5d6ad492743b86fa4cb20e6
Author: Malderin <52313714+Malderin@users.noreply.github.com>
Date:   Wed Sep 29 04:20:03 2021 +0300

    🐛 E3V2 Mesh Viewer followup (#22850)

commit 90b0e16ec0c80ec128b70d20b0b47af8a3281c88
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 29 00:58:41 2021 +0000

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

commit f2ba845dad67c57a6cf1ce5a75bc4f526681ca2d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 02:39:11 2021 -0500

    🎨 Condense reverse-protection code

commit 33e0855e2c173680865aaa6c6aa93047d63fc469
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 01:07:51 2021 -0500

    ⚡️ Handle shared enable pins (#22824)

commit eda8e9c8dddfb93950409092832311a60635c054
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 28 01:01:32 2021 +0000

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

commit 8ab02df63a2360b2dac86048b38311bbdfa42b3c
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Mon Sep 27 14:47:47 2021 -0500

    ✨ E3V2 (Enhanced) Mesh Viewer (#22844)

commit 8f9e56afb97ca6a40265b24fe90ac7b672050df9
Author: Malderin <52313714+Malderin@users.noreply.github.com>
Date:   Mon Sep 27 22:13:38 2021 +0300

    🚸 MKS UI LVGL bed preheat presets (#22842)

commit 5dce8d0a84aa8ee3e2b63c880dd2eadc18a64f1b
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Tue Sep 28 03:08:29 2021 +0800

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

commit 228eb9c404fcbcebb507bbfe781ebe3ca0a1ccdf
Author: espr14 <espr14@gmail.com>
Date:   Mon Sep 27 21:05:52 2021 +0200

    🎨 steps_to_mm => mm_per_step (#22847)

commit f73175d8263033d1feb1045af67e7230c844aab0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Mon Sep 27 21:01:47 2021 +0200

    🚸 TFT backlight PWM / brightness (#22841)

commit 942b76082c5704558957731828e0fd023ad09bae
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Sep 28 04:17:00 2021 +1300

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

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 3329e07bd9cfc148a7ca78c121778e2255ac8a72
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 27 01:00:10 2021 +0000

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

commit 8fd5a4037a27c7c4009e9272770957a4931bcaad
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Sep 26 04:59:29 2021 +0200

    🩹 Fix M412_report formatting (#22834)

commit 031fec7a0233d5b1199e2e3a61a5ea98ecc3bf84
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Sep 26 01:02:25 2021 +0000

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

commit 1ac7a56a823b5012250dd7259a9a7a46d3bfcde5
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Sat Sep 25 05:59:43 2021 -0500

    🐛 E3V2 Brightness followup (#22821)

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit a7fdaabd54475e5f4dec3afad693b0c623bf7bf6
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 25 02:27:07 2021 -0500

    🎨 Updated string macros

commit e1ac3ede0d7bb9d77362040b593904006a26f873
Author: Steve Wills <steve@mouf.net>
Date:   Fri Sep 24 22:12:43 2021 -0400

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

commit 86a6b9316ed16f4726096dfdf7495ee75dada7d4
Author: Manuel McLure <manuel@mclure.org>
Date:   Fri Sep 24 19:08:07 2021 -0700

    🐛 Fix M420 / M851 reports (#22829)

    Followup to 79c72ed821

commit 849b86afb68949ec0f67c49401bdf659d3eaac5c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 25 00:59:33 2021 +0000

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

commit e85f6225053de257ee6f2652f097d0939d0dbde7
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 24 01:01:22 2021 +0000

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

commit 35ad3b0d3b1a8bbf6b220f30f63fd0e32be8fe34
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Sep 23 11:09:43 2021 -0500

    🐛 Fix reset_hotend_offsets

commit dc5bef62ba185461ba969db6af996ebc93a33ba7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 23 10:01:37 2021 -0500

    🎨 Various multi-axis patches (#22823)

commit 9c208a008d4f336f1bdc095af0a50754311092d1
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Thu Sep 23 15:53:48 2021 +0800

    ⚡️ Improve LVGL touch driver (#22817)

commit 7c5727e0ec1c69bf4bb72dcd34d6acce02a8c09e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Sep 23 18:58:52 2021 +1200

    🐛 Fix anycubic_i3mega_lcd debug macros (#22820)

commit 1835f8fb25648888cf6df6e17af1cefdd1248d71
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Sep 23 00:51:35 2021 -0500

    🩹 Add MarlinSPI to more HALs

commit 64c6475434349f88c61fdd403b4e9e830fd60b35
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 23 01:04:29 2021 +0000

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

commit 11ceea25ce145c8485b516fdb010809409d2bb06
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Sep 22 00:19:26 2021 -0500

    🎨 Less use of undef for RAMPS pins

commit 0387f94632d24b9d43397b063767940fe17acc62
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 22 01:02:28 2021 +0000

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

commit b88117d6364b8919a8a7df6c80d8132af98a6afc
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Sep 21 06:25:13 2021 -0500

    🎨 Fix L64xx enable, clean up conditionals

commit 58adb849d3e2f81075eeb02db8e1d5b3f297d59b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Sep 21 02:42:01 2021 -0500

    🔨 Improve pins_set script

commit 5b934e02fad7cbff79e14d1bd6b8d0a8fbe24de5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 21 01:01:29 2021 +0000

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

commit 58301837e0a1ea0d682d23e0510619bd85841d5c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 20 18:44:35 2021 -0500

    🩹 Remove extra #include, misc. style

commit 3344071f24b505d180dd1423b11510172c3f1c1c
Author: Dan Royer <dan@marginallyclever.com>
Date:   Mon Sep 20 13:42:33 2021 -0700

    Polargraph / Makelangelo kinematics (#22790)

commit f3864a1ae7b45fbc0359a65e4dc75ce062e39479
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 20 01:03:16 2021 +0000

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

commit e60e4b8f57806147741e87e2820c258c4b51cf91
Author: Lefteris Garyfalakis <46350667+lefterisgar@users.noreply.github.com>
Date:   Mon Sep 20 03:26:46 2021 +0300

    🌐 Update Greek language (#22799)

commit 216a66b42c8240f37befe98e6a410d1e3694ff4e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 19 19:25:01 2021 -0500

    🌐 Skip non-essential translations

commit 008284934c2f07ea335beec6086afd56a30d5829
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 19 18:58:12 2021 -0500

    🔨 Case-insensitive tests list

commit c1d7e234e1aba1ecc91cfc77d17d38b67618c315
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 19 18:40:56 2021 -0500

    🌐 Reduce language file sizes

commit 10fda222ea40af91ff1244ad5b7c8737043e1011
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sun Sep 19 05:16:29 2021 +0200

    🐛 STM32 ADC followup (#22798)

commit a6b69ab6d518488fd87109d9ba7ecf2e82b7f2a9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Sep 19 01:01:05 2021 +0000

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

commit 89125cd32ea913152dcdfe0edfa1571027f44e2d
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sun Sep 19 01:27:58 2021 +0200

    🚸 Wake up TFT for some events (#22788)

commit c88e85c939afe4f024fcb24ca6a68950d36ec901
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 18 18:24:39 2021 -0500

    🎨 Replace some infrequently-used macros

commit f367a3987de2703965b2b043b191d6ed77648e6d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 18 18:22:15 2021 -0500

    📝 Update some pins comments

commit d7e597f3df11df9a01b432715d7d9865e578a4e6
Author: Steven Haigh <netwiz@crc.id.au>
Date:   Sat Sep 18 16:33:18 2021 +1000

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

commit f46e05fcb1e8b9a4ed36d2caa09122e75188e9da
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Sep 17 19:09:54 2021 -0500

    🚸 Move fade item up

commit ad38699c115585134841b479a112f723e17d0b17
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Apr 12 17:08:57 2021 -0500

    🚸 Better bed position

commit fede20fbe69d4d3687a07b4a9cb70b681f5c51b3
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Sep 17 18:58:55 2021 -0500

    💬 Add non-translated STR_DONE

commit 11fce69781efb4e377f5349e14263a3466ba325d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 18 00:58:51 2021 +0000

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

commit 46dfc7ba341325d4e9a69e7e8979215b90e79334
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 17 01:06:26 2021 +0000

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

commit 8df3e62c89f94f68465ac30e276333940e069ff7
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Thu Sep 16 19:48:24 2021 +0800

    🚸 Fix and improve MKS LVGL UI (#22783)

    Co-authored-by: makerbase <4164049@qq.com>
    Co-authored-by: MKS-Sean <56996910+MKS-Sean@users.noreply.github.com>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 323b38ee88dbf2a4691a20439dbb95a824822199
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Sep 16 04:36:26 2021 -0500

    💡 Adjust headers, formatting

commit 08a40c43750eb49521849792520d8d819c0fcd29
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Thu Sep 16 03:46:16 2021 -0400

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

commit 02ae11ed72724a0f0a670069fe6b93933031de8b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Sep 15 21:12:39 2021 -0500

    🔧 Add MANUAL_FEEDRATE sanity-check

commit 0cc17b920ae9c804d5b9b2c95325e959c6f4eea5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 16 01:03:27 2021 +0000

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

commit e31d52184b321f1dbf9f091cb7188c58aef87cdb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Sep 16 01:15:01 2021 -0500

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

commit 5b5a8798f8fe202e86c008088f847a3edb51cc71
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 15 19:48:29 2021 -0500

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

commit cca3250c3ff8e8ed4277f4918f507ab13913d3b5
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Sep 15 13:51:52 2021 -0700

    ✏️ Fix TFT field names (#22776)

commit a1e1555ea1e4a5bb0dabc027b56ffb9fc05739e3
Author: mks-viva <1224833100@qq.com>
Date:   Wed Sep 15 14:47:23 2021 -0500

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

commit 8235ae9cc00b10362ca9f6e79acb4516c08557af
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Wed Sep 15 01:44:28 2021 -0500

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

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit 9c8ad57f626bbb84d1f7f2c2262f3b101f91e664
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 15 00:59:31 2021 +0000

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

commit 21e8f99500554d69cb91ac2be0b4ab1497bf9fac
Author: Dakkaron <dak1st@gmx.at>
Date:   Wed Sep 15 02:00:48 2021 +0200

    ✨ M282 - Detach Servo (#22760)

commit c2e4b1626f0cce82a55e8de9dc98ed9381e1d9ad
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Tue Sep 14 04:07:08 2021 +0200

    ✨ TFT Screen/Backlight Sleep (#22617)

commit ae22a920178555585142a5299ff77ec50d9fcc2e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 14 01:17:33 2021 +0000

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

commit 5a04cf0514c819d25f7eea0a9c95e17022d7bf1e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 13 18:46:30 2021 -0500

    🔖 Configurations version 02000902

commit 23d10ceccb16e5886a6441a364fcbc08391287fe
Author: Desuuuu <contact@desuuuu.com>
Date:   Fri Sep 10 12:15:08 2021 +0200

    🎨 Use ExtUI API where applicable

commit 370ea116f46f78536d99ec140a2de2d1d52942f5
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Tue Sep 14 00:10:30 2021 +0200

    🌐 Update Slovak language (#22752)

commit 3587ef2e8f3086104754f1e5e192f0584a709627
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 13 16:38:51 2021 -0500

    🐛 Fix old spindle/laser options

commit 798a8a7a0852c12fb8640c4a531fac70fbc57eda
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 13 16:28:12 2021 -0500

    🔧 SPINDLE_LASER_PWM => SPINDLE_LASER_USE_PWM

commit 000d412da60727661176fe6416c3517dd4b4be3d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 12 21:41:24 2021 -0500

    🐛 Fix CUSTOM_MENU_MAIN_SCRIPT_DONE

    Fix #22762

commit d69c053225bab92bf53bec064a1830079a2092f9
Author: Vert <45634861+Vertabreak@users.noreply.github.com>
Date:   Sun Sep 12 22:39:52 2021 -0400

    🐛 Fix ENABLED => EITHER typo (#22756)

commit 24460052d245bc9b56813aab67d52a96a858e034
Author: mks-viva <1224833100@qq.com>
Date:   Sun Sep 12 21:30:09 2021 -0500

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

commit ea7e777cb13f314ddfeab81e29d7b7a2fc67e7b3
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 12 21:21:35 2021 -0500

    🎨 Tweak custom menu item code

commit 84f66627c4557ce9a4f231af6b483d59c777bfc4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 13 01:39:56 2021 +0000

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

commit 29d3996a55d00059437f6c1194bac5eec5b7b2e2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Sep 12 19:37:33 2021 -0500

    📌 Creality 4.3.1 board variants (#22704)

    Co-authored-by: Chico <jjjm6000@gmail.com>

commit 37c488fda1176e9e50531d0ea7e9d66c74cef2d4
Author: Luc Van Daele <lvd@sound-silence.com>
Date:   Mon Sep 13 02:35:37 2021 +0200

    🚸 G33 R and O options (#22707)

commit c9d54bc3f34c18691a051c0a9f196010dd7c7de9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Sep 13 11:03:24 2021 +1200

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

commit 3a457c9d13701428a4a276aaf43eb7961e9503a1
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Sun Sep 12 21:56:40 2021 +0200

    🐛 Fix JyersUI for LPC176x (#22745)

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit afe4cb7fee73878917a55ccca7e67a24fea423f8
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Sep 12 01:02:08 2021 +0000

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

commit 08e581d5d7c6cfcedf400862fcfcd146c6ce837f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 15:41:42 2021 -0500

    🎨 Apply more HAS_DELTA_SENSORLESS_PROBING

commit 011329fe55f82e0c64c48a6bc983c10569206fb3
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 02:47:53 2021 -0500

    🐛 No probe enum for DELTA + SENSORLESS_PROBING

    Fix #22729

commit 6b9b2c5d7382b30dabc2f1fb360d62a819f5ec3d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 02:15:05 2021 -0500

    🩹 Warn about user feedback requirement

commit 453e60958a8cde6d7541b4dc3a99d054b53eb695
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 01:32:39 2021 -0500

    🐛 Followup to JyersUI

    Fix #22735, #22736

commit 953d283e5360104072790a12ea1a78f69087c05b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 01:13:02 2021 -0500

    🐛 Followup to E3V2 Enhanced

    Fix #22741

commit 0a1211fe3fa3352c2a2783102ef8572966927ccd
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 00:48:20 2021 -0500

    🐛 Fix LPC1768 SD-based EEPROM debug

    Fixes #22746

commit 209dca10890982aa4c992464e0388eff0c36e0f4
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Sep 10 19:03:46 2021 -0600

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

commit 69ab2bc40fe947c9edce487509ab4508376e8f56
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 11 00:58:31 2021 +0000

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

commit ce6d6225019640afbdb0a9dc6db26a4e03ca4c4f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Sep 10 19:47:03 2021 -0500

    🩹 Fix TOUCH_UI_FTDI_EVE warnings

commit 67d82ff228789408f7f32e6c9af3108c989c0c90
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Sep 10 18:49:57 2021 -0500

    🐛 Followup to JyersUI

commit bcfaf3990a0e7eaac89ae8e075bb089c7dac1b38
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 10 01:02:43 2021 +0000

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

commit 392a4a6f85bea8470ee291eedcf85d16ce071e52
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Thu Sep 9 16:40:10 2021 -0500

    🐛 Fix, improve E3V2 Enhanced UI (#22733)

commit 754b31918a73cb08c322102be5d3926d2ac59c18
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 9 04:57:05 2021 -0500

    🎨 Fewer serial macros

commit 79c72ed821564507b0ef46cbb26f9577585e2ccc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 7 18:06:10 2021 -0500

    🎨 Standardize G-code reporting

commit 650e73af27eab6c185337c3fc2c44300a9262af8
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Sep 9 18:13:01 2021 +1200

    🩹 Fix Enhanced E3V2 Advanced Pause (#22728)

commit 7a4f1c410f15a5204264b2fc027ac5e04c9f0d97
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 9 01:01:56 2021 +0000

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

commit 7a2515bcac682ffc0e5afddaa663910e4f305cb5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 8 00:57:48 2021 +0000

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

commit 0f61d9e4dd4d4e4f27e5c688ab2c5dbd0f03af84
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Tue Sep 7 02:15:24 2021 -0500

    ✨ Ender-3 V2 CrealityUI Enhanced (#21942)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 43a9c71ef7a1c9e9e294707017d372d344c774ce
Author: Jyers <76993396+Jyers@users.noreply.github.com>
Date:   Mon Sep 6 21:06:27 2021 -0700

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

commit ed0c5aefd8c79d88f5b5fb69baae161b58c72eae
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 7 00:57:25 2021 +0000

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

commit b0e798330d8f5ade4a230e0a91f05482d100bb97
Author: mrv96 <mrv96@users.noreply.github.com>
Date:   Tue Sep 7 02:51:04 2021 +0200

    ✨Add DGUS_LCD_UI_RELOADED (#21931)

commit 853eebc3f2f6326000da790cfd549c2a44dfeae2
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 6 17:38:47 2021 -0500

    🚸 Show ExtUI message for PID_STARTED

commit 83a1d3a46b1e12c65d0eadbd663315c400fe022f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 6 16:33:24 2021 -0500

    🎨 Misc. code cleanup

commit 845d42ef40e1adc04315779d31eb55dac2218689
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 6 15:34:12 2021 -0500

    🎨 Misc. Spindle/Laser (etc.) cleanup

commit dc6b86065e53f82e309a13b710863617f9bdce82
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 5 21:23:56 2021 -0500

    🚸 Per-hotend Watch items

commit ba62f24717f8ce7a452a07208f0b571d932c16c5
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 5 21:00:42 2021 -0500

    ⏪️ Clean up Info Menu

commit 521fda0235bc07c5e07889373a2a22c57fadf07f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Aug 27 16:12:08 2021 -0500

    🎨 MarlinUI for E3V2 tweaks

commit b0a91073b25f53e9e377f0ef4e01c9dd6fefd021
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 5 20:32:29 2021 -0500

    🔧 Sanity checks for Ender 3 V2

commit 6098150a857d15cd735f8c2309ca4b2d3f624974
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Sep 6 01:05:05 2021 +0000

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

commit c881fab1280f338e32015e1556890d647ee967fb
Author: dotdash32 <dotdash32@gmail.com>
Date:   Sun Sep 5 17:21:25 2021 -0700

    🎨 Use largest default ST9720 delays (#22713)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 51c66881c26e1db1d4eff925f0f0157ab65f83d0
Author: Dan <ribbles@users.noreply.github.com>
Date:   Sun Sep 5 13:32:09 2021 -0700

    ✨ Protoneer CNC-Shield 3.00 (#22715)

commit 76fb131f14dfc4108c4f6491d84827b8813d3973
Author: Justin Nesselrotte <admin@jnesselr.org>
Date:   Sun Sep 5 14:21:45 2021 -0600

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

    Co-authored-by: Gonçalo Pereira <goncalo_pereira@outlook.pt>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 73bc81739799cf50a70cb6dfd2045b57591f50d3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Sep 5 01:01:15 2021 +0000

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

commit 88fc449c7bfef94782458c5b7ec3aeb0889f0bb5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 4 00:58:22 2021 +0000

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

commit a3557e63bf6669820d24a568030436979529f182
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sat Sep 4 01:20:32 2021 +0200

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

commit 5dbb15539502da2bbc4ece99a3f5fc123801cdbe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 3 17:26:36 2021 -0500

    🩹 Fix 'ms' warning

commit 18d82c1988624c48b459352fa02a352b34d2eff7
Author: Thomas White <TomW1605@users.noreply.github.com>
Date:   Fri Sep 3 12:30:24 2021 +0800

    ✨ Homing submenu option (#22692)

commit e1056378f1bbba01fd846c5af2ba339739c271e3
Author: Elliott Indiran <eindiran@users.noreply.github.com>
Date:   Thu Sep 2 20:41:41 2021 -0700

    📝 Update PID_PARAMS_PER_HOTEND comment (#22694)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit ff95a93ecc299dc8c811012e7e77e32427649cf8
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Sep 3 05:08:40 2021 +0200

    🐛 Fix Mixing code typos (#22697)

commit 43135114837b3dbe95bdf5b63ddcdec4a812813b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 3 00:58:08 2021 +0000

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

commit 682d6c99c7d9d0f89a260e1e72b9e776327bb82e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 2 01:03:55 2021 +0000

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

commit 3a2eb574e2027b966fb398959f8c8750ae3a3c73
Author: DvoraNoob <62312359+DvoraNoob@users.noreply.github.com>
Date:   Wed Sep 1 21:29:20 2021 -0300

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

commit 71a2a958858f47545bb9f02764af26fb68991b36
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Sep 2 01:55:36 2021 +0200

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

commit 9a9d55ceb0183640147c997fefeef375fa105a2f
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Sep 2 01:45:17 2021 +0200

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

commit 01d1192a441f5afb753185eb103be64baa81bd43
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Sep 1 22:33:24 2021 +1200

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

commit fc22f1f84337b5d8f93fa3fe9c06ab7911d43dc4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 1 01:03:17 2021 +0000

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

commit bad46796495403fddfb65e793f4ca4d0e47b9843
Author: Vert <45634861+Vertabreak@users.noreply.github.com>
Date:   Tue Aug 31 03:36:00 2021 -0400

    ✨ GT2560 V4.x A20 (#22664)

commit fb29135c74a258eaa0ba824c9c1f00762ed59183
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:44:55 2021 -0500

    ✨ Creality3D CR-30 PrintMill

commit e33e101850797f4d3edecd4eb18e9ae63c89ef13
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:54:51 2021 -0500

    🎨 Tweak pins, comment formatting

commit ba10816c51804433446a5221759a794aaac5bac2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:54:17 2021 -0500

    💄 Extended Info Menu

commit f55a28b01599692ca7a149571c6ae94e3b6b017d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:52:48 2021 -0500

    🌐 Tweak language selection

commit eccd82b7c1049b098546334fab7ac152e1fa1ce7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 11 18:15:36 2020 -0600

    ⚡️ Add PROBE_PT_LAST_STOW

commit 1f5eacac09d694c2b69c223aba7bf8c422d16241
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Aug 31 19:26:12 2021 +1200

    🔧 Set Z_PROBE_OFFSET_RANGE_MIN/MAX for MBL (#22663)

commit 2c5daa07228e153a14b6df5a784b1c1ef0e35e46
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 31 02:23:49 2021 -0500

    🩹 Clean up BTT_SKR_CR6

    Fixes #22665

commit 485a1864673d14177622e30d4f77de799e6d910a
Author: Jason Smith <jason.inet@gmail.com>
Date:   Tue Aug 31 00:00:59 2021 -0700

    🚸 Improve Tramming Wizard usability (#22672)

commit 66ded801b734fbb597ab1c1497d347544b3aa05c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Aug 31 15:40:49 2021 +1200

    ⏪️ Revert MAX31865 recent changes (#22660)

commit ef2d0b8d5353460ba8b6698281c8d4987217eb07
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 31 00:59:16 2021 +0000

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

commit 7378e7c2db379f57e99a3b3b7ea1700e5031460a
Author: Christian Schuster <blackyle@me.com>
Date:   Tue Aug 31 02:32:02 2021 +0200

    🩹 Fix LPC176x M43 formatting (#22680)

commit fff1ed3369200306b313186643ca14ffa7fc36b1
Author: Zs.Antal <45710979+AntoszHUN@users.noreply.github.com>
Date:   Tue Aug 31 02:30:14 2021 +0200

    🌐 Update Hungarian language (#22678)

commit 6ff2be329e0ac81ea56066353f2bb1469ae02eda
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Aug 31 00:05:11 2021 +0200

    🌐 Update Italian language (#22645)

commit efb9ea92b85ec469e9436969129bcee33aadd3bc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 30 17:02:12 2021 -0500

    🔨 Fix HAL/STM32 F103Zx builds (#22610)

commit 90cd1ca68d3f4f5ede56cbea4913f06ca4782a94
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 23:06:24 2021 -0500

    🎨 screws_tilt_adjust_pos => tramming_points

commit d95d452b29b80e66d534b36c78262454664ce5a1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 23:02:53 2021 -0500

    🌐 MSG_PROBING_MESH => MSG_PROBING_POINT

commit 8f57a21176d217c1c55c03be18876bf187ca786f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:04:14 2021 -0500

    🔨 Three columns in mftest menu

commit 4d5f6b2a7817609f58f20aa8e1d2a40f139fa2ae
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 30 00:57:24 2021 +0000

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

commit 6e40dbe0d34037089de070f0215735828b28e2a3
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sun Aug 29 16:05:30 2021 -0600

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

commit ab03c9a56063c4ae0e27f46a5622ffe1564b0c1b
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sun Aug 29 16:03:10 2021 -0600

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

commit f721c44c225c084785b296dac43df7b272702b7d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 15:15:53 2021 -0500

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

    Co-authored-by: Sebastiaan Dammann <sebastiaandammann@outlook.com>

commit 4b4de71304a426e0d9b2696dae4e82eb55ba7079
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 13:57:47 2021 -0500

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

commit 09a83d565e0db2157baa3662020500476b931ec6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 28 17:46:22 2021 -0500

    🩹 Sensorless homing tweak

commit 6d3dec8b6390bd1fb9ce24814249ab0e3cf8719e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 13:51:57 2021 -0500

    🎨 Update more EXP Headers
@github-actions
Copy link

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked and limited conversation to collaborators Nov 11, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants