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

M919 : Chopper Timing #23400

Merged
merged 5 commits into from
Jan 2, 2022

Conversation

thinkyhead
Copy link
Member

The PR #23333 suddenly became corrupted, so this PR is a squashed copy, continuing with some updates to fix parameter handling.

@magnificu
Copy link

... and now how can I make commits to this PR?

@magnificu
Copy link

magnificu commented Dec 31, 2021

I think those conditions will create unnecessary updates of the ct struct.
e.g. I1 parameter will do this:
ct = CHOPPER_TIMING_X;
ct = CHOPPER_TIMING_X2 (this struct values will be applied)

     #if AXIS_IS_TMC(X) || AXIS_IS_TMC(X2)
        case X_AXIS:
          #if AXIS_IS_TMC(X)
            if (index <= 0) ct = CHOPPER_TIMING_X;
          #endif
          #if AXIS_IS_TMC(X2)
            if (index < 0 || index == 1) ct = CHOPPER_TIMING_X2;
          #endif
          break;
      #endif

This should be better.
e.g. I1 parameter will do this:
ct = CHOPPER_TIMING_X2

     #if AXIS_IS_TMC(X) || AXIS_IS_TMC(X2)
        case X_AXIS:
          #if AXIS_IS_TMC(X)
            if (index == 0) ct = CHOPPER_TIMING_X;
          #endif
          #if AXIS_IS_TMC(X2)
            if (index == 1) ct = CHOPPER_TIMING_X2;
          #endif
          break;
      #endif

@thinkyhead
Copy link
Member Author

thinkyhead commented Dec 31, 2021

how can I make commits to this PR?

You must add my fork as a remote in your working copy, check out the remake-pr-23333 branch, make new commits, then push a copy of that branch to your fork (i.e., "origin"). You can then submit a PR to my remake-pr-23333 branch, and when I accept your commits they become part of this PR.

Getting this branch into your working copy:

git remote add --fetch thinkyhead [email protected]:thinkyhead/Marlin.git
git checkout thinkyhead/remake-pr-23333 -b work-m919-pr-23400

Pushing your work:

git push --set-upstream origin work-m919-pr-23400

At that point you may use GitHub Desktop to start a PR (targeted to thinkyhead/remake-pr-23333) with the Branch > Compare on GitHub command.

@magnificu
Copy link

magnificu commented Dec 31, 2021

@thinkyhead
I get an error when compiling

Marlin/src/gcode/feature/trinamic/M919.cpp:27:19: error: missing binary operator before token "("
   27 | #if AXIS_COLLISION('I')
      |                   ^

If I comment out this if works fine

#if AXIS_COLLISION('I')
  #error "M919 parameter collision with axis name."
#endif

@thinkyhead
Copy link
Member Author

CI and I are not able to reproduce your "missing binary operator" error. Do you see AXIS_COLLISION defined in types.h ?

@magnificu
Copy link

Marlin/src/core/types.h does not contain "AXIS_COLLISION"

@thinkyhead
Copy link
Member Author

Marlin/src/core/types.h does not contain "AXIS_COLLISION"

It should!

@thinkyhead thinkyhead merged commit 0f24494 into MarlinFirmware:bugfix-2.0.x Jan 2, 2022
@thinkyhead thinkyhead deleted the remake-pr-23333 branch January 2, 2022 04:54
thinkyhead added a commit that referenced this pull request Jan 2, 2022
thinkyhead added a commit that referenced this pull request Jan 9, 2022
AlexColello pushed a commit to AlexColello/Marlin that referenced this pull request Jan 14, 2022
mashurex pushed a commit to mashurex/Marlin that referenced this pull request Jan 26, 2022
commit db4172b5fa05e818f42427001398db5f13d13024
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 16 00:54:53 2022 -0600

    🔨 Prevent two [cron] in a row

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

    🐛 Fix SHOW_REMAINING_TIME compile (#23503)

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

    🚑️ Fix M105 regression (#23505)

    Fixes #23504

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

    🐛 Fix Arduino build issues (#23510)

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

    🧑‍💻 Move PB0 init for MKS_ROBIN_NANO

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

    🧑‍💻 Fewer string macros

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

    🚸 Include extra axes in position report (#23490)

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

    🚑️ Fix preheat target bug

    Fixes Jyers/Marlin#1651

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

    🌐 Update auto home axis strings

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

    🌐 Update Slovak language (#23475)

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

    🔨 Rename (not copy) with board_build.rename

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

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

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

    🚸 Do G34 "Z Backoff" at full current

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

    📌 LCD_FOR_MELZI for BTT E3 RRF (#23453)

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

    🌐 Localize E3V2 Enhanced UI (#23424)

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

    📺 Tune ULTI_CONTROLLER encoder, enable PCA9632 (#23461)

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

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

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

    🐛 Define required endstop enums (#23425)

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

    🔨 Strip CR in mftest > awk

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

    🐛 Fix strlen_P parameter error

    Fixes #23447

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

    🩹 Fix RADDS+RRD encoder button

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

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

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

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

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

    💚 Fix Teensy CI test (#23433)

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

    🧑‍💻 Apply axis conditionals

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

    🚨 Fix M906 warning

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

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

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

    🔧 Update deprecated auto_build.py (#23427)

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

    🔨 Upload to Optiboot at 115200 (#23403)

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

    ✨ M919 : Chopper Timing (#23400)

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

    🔧 Only warn about enabled CONFIGURATION_EMBEDDING (#23408)

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

    🚑️ Fix thermal conditionals, structure

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

    🔧 DWIN_MARLINUI sanity checks (#23399)

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

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

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

    🎨 E3V2 corner leveling => tramming (#23375)

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

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

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

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

    🚚 Rename L6470 G-code file

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

    🧑‍💻 Remove extraneous 'inline' hints

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

    🎨 Misc. cleanup

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

    🔨 Get FIRMWARE_BIN from env

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

    🐛 Fix EEPROM_INIT_NOW build hash test (#23479)

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

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

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

    🧑‍💻 Add AXIS_COLLISION to catch broken parameters

    \

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

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

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

    📝 Consistent pin header orientation

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

    📌 Define MKS Monster8 pins for MKS_MINI_12864

    Fixes #23324

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

    🐛 Fix mffp usage

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

    🎨 Pins and SDIO cleanup

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

    🔧 Check Chiron LCD requirements (#23353)

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

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

    🎨 Simplify some debug echos

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

    🔨 Add .vscode/extensions.json

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

    🐛 Fix RRW Keypad & Zonestar buttons (#23388)

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

    🩹 Fix Enhanced UI max E speed (#23387)

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

    🔖 Marlin 2.0.9.3

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

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

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

    🐛 Fix open for bin rename (#23351)

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

    🔧 Move MOTHERBOARD closer to top

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

    ✨ Per-axis TMC hold multiplier (#23345)

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

    ✨ MKS TinyBee board support (#23340)

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

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

    🔧 Group FAST_PWM_FAN.options (#23331)

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

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

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

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

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

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

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

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

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

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

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

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

    🐛 Fix and improve MAX31865 (#23215)

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

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

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

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

    ✨ X Twist Compensation & Calibration (#23238)

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

    🔧 Chamber Fan index option (#23262)

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

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

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

    🏗️ Rework STM32 timer frequency protection (#23187)

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

    🐛 Fix STM32 FastPWM

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

    🎨 Rename HAL timer elements

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

    ✨ EasyThreeD ET4000+ board and UI (#23080)

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

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

    ✨ MarkForged YX kinematics (#23163)

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

    ✨ BigTreeTech Mini 12864 V1.0 (#23130)

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

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

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

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

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

    🔧 SOUND_MENU_ITEM for E3V2

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

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

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

    📌 Overridable probe-related pins (#23107)

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

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

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

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

    🔨 Configurable firmware bin filename

    Configuration.h > FIRMWARE_BIN

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

    🔨 Ignore more generated files

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

    🔧 Sanity check MMU2_MENUS

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

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

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

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

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

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

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

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

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

    🐛 Fix Chitu Z_STOP_PIN (#23330)

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

    🩹 Fix settings G21 report (#23338)

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

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

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

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

    🐛 Fix LCD_BED_LEVELING compile (#23298)

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

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

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

    🎨 Update SKR V2 pins

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

    🚸 Use M600 for disabled MMU (#21865)

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

    🐛 Fix TFT_COLOR_UI Release Media issue (#23123)

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

    🔧 Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)

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

    📝 Fix a config comment

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

    ✨ M115 flag EXTENDED_M20 (#22941)

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

    ✏️ Clean up duplicate defs (#23182)

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

    🩹 Init fan speed at boot (#23181)

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

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

    🔧 Fix unknown board test

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

    🩹 SD abort requires open file

    See #22566

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

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

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

    Fix Endstops::report_states (#23280)

    Fix regression 4d45fdf0eb

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

    🎨 Misc. probe / endstop cleanup

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

    🐛 Fix MKS LVGL UI retraction (#23267)

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

    🩹 Coerce pin_t in set_pwm_duty macros (#23273)

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

    🐛 Fix ACTION_ITEM with nullptr (#23195)

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

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

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

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

    🎨 Rename MAX31865 elements

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

    ✏️ MAX31856 => MAX31865

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

    🩹 Fix non-PWM cutter compile (#23169)

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

    🐛 Fix TWIBus Wire.begin call (#23183)

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

    🐛 HAL_reboot for native HAL (#23246)

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

    🐛 Fix env:chitu_f103 (#23225)

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

    📌 More Longer3D LKx Pro serial tests  (#23260)

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

    ✨ M3426 to read i2c MCP3426 ADC (#23184)

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

    🔧 Cutter pins for SKR 2.0

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

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

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

    ✨ BigTree SKR 2 with F429 (#23177)

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

    🐛 Fix TIMER_TONE for ZM3E4 (#23212)

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

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

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

    🐛 Fix STM32 FastPWM

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

    ✏️ Fix Unicode (#23186)

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

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

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

    🩹 UM2 extruder cooling fan on PJ6 (#23194)

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

    ✨  FYSETC Spider v2.2 (#23208)

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

    🩹 Fix include path (#23150)

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

    📌 Biqu BX temporary framework workaround (#23131)

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

    🐛 Fix STM32 set_pwm_duty (#23125)

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

    🐛 Fix TFT backlight sleep/wake (#23153)

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

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

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

    🎨 Misc formatting

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

    🐛 Init PROBE_ENABLE_PIN (#23133)

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

    🎨 Fix misspelling (#23137)

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

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

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

    🐛 Fix fast PWM WGM code

    Followup to #23102

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

    🔨 Bring Makefile up to date

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

    🔨 Ignore sim flashdrive file (#23129)

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

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

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

    🚸 LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)

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

    🐛 Fix SENSORLESS_HOMING for 6-axis

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

    🚸 Simplify touchscreen calibration for SimUI (#23124)

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

    🚸 Fix up E3V2 Enhanced (#23100)

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

    🎨 Misc. issue review patches

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

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

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

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

    🎨 MPX ARM Mini pins cleanup (#23113)

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

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

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

    🩹 Fix RGB case light compile (#23108)

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

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

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

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

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

    fix breaks in F() resolution

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

    🔨 Port libsdl2_net required for macOS simulator

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

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

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

    🎨 Misc. code cleanup

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

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

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

    🚸 Indicate Preheating for probe / leveling (#23088)

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

    🩹 Fix M503 report (#23084)

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

    🍻 Preliminary fix for Max31865 SPI (#22682)

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

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

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

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

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

    🐛 Fix DGUS Reloaded status message (#23090)

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

    🍻 Get/clear reset source earlier

    Followup to #23075

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

    🐛 Prevent AVR watchdogpile (#23075)

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

    🐛 Fix TFT backlight [STM32] (#23062)

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

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

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

    🔨 Fix IntelliSense / PIO conflicts (#23058)

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

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

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

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

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

    🔨 Script 'mfprep' finds pending commits

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

    🔨 Update git helper scripts

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

    🔨 Support ABM in mf scripts

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

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

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

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

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

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

    🔧 Endstop / DIAG homing conflict warning (#23050)

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

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

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

    ✨ Artillery Ruby (STM32F401RCT6) (#23029)

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

    🚸 More flexible Probe Temperature Compensation (#23033)

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

    📝 Tweak EXP comments

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

    🔨 Help for GDB remote debugging

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

    🩹 Fix linker error (transfer_port_index)

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

    💚 Update Ender-3 V2 config path

    MarlinFirmware/Configurations#600

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

    🎨 Adjust Ender-3 V2 DWIN options

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

    ✨ Shutdown Host Action (#22908)

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

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

    ✨ "Rutilea" ESP32 board (#22880)

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

    🔧 Configuration version 02000903

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

    🎨 Standard 'cooldown' method

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

    🎨 Standard material presets behavior

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

    🎨 Define HAS_PREHEAT conditional

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

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

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

    🐛 Fix EZBoard V2 board name

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

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

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

    🎨 Apply HAS_MULTI_HOTEND conditional

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

    🚸 Scroll long filename on MKS TFT (#23031)

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

    🩹 Retain LCD pins with motor expansion (#23024)

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

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

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

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

    Followup to #23005, #22778

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

    🚸 Tweaks to UBL G29 Q

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

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

    Regression from 9823a37

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

    🐛 Add USE_TEMP_EXT_COMPENSATION options (#23007)

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

    🔧 Fewer alerts about Z_SAFE_HOMING

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

    🐛 Fix SHOW_REMAINING_TIME option for JyersUI (#22999)

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

    ✨ BigTreeTech TFT35 SPI V1.0 (#22986)

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

    🩹 Fix pragma ignored for older GCC (#22978)

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

    🎨 Refactor MOSFET pins layout (#22983)

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

    🎨 Pragma GCC cleanup

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

    🐛 Fix max chamber fan speed (#22977)

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

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

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

    🐛 Fix MMU1 compile (#22965)

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

    🎨 Suppress type warning (#22976)

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

    🎨 Add MKS UI goto_previous_ui

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

    🚸 Tweak MKS UI G-code console

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

    🎨 Fix up MKS UI defines

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

    🎨 Refactor Host Actions as singleton

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

    🔧 Add, update TFT sanity checks (#22928)

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

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

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

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

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

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

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

    🐛 Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)

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

    ✨ M261 S I2C output format (#22890)

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

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

    🐛 Queue string followup (#22900)

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

    🐛 LCD string followup (#22892)

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

    🐛 Followup to F() in config_line

    Followup to 1dafd1887e

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

    🐛 ExtUI F() followups

    Followup to 12b5d997a2

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

    🎨 Apply F() to kill / sendinfoscreen

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

    🎨 Apply F() to MKS UI errors, assets

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

    🎨 Apply F() to various reports

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

    🎨 Apply F() to G-code report header

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

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

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

    🎨 Apply F() to some ExtUI functions

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

    🎨 Apply F() to Host Actions strings

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

    🎨 Apply F() to status message

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

    🎨 Apply F() to serial macros

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

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

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

    🎨 Apply F() to G-code subcommands

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

    🎨 Update F string declarations

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

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

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

    🐛 Fix loud_kill heater disable (#23314)

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

    🐛 Fix homing current for extra axes (#23152)

    Followup to #19112

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

    🐛 Fix IDEX Duplication Mode Positioning (#22914)

    Fixing #22538

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

    🐛 Fix serial_data_available (#23160)

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

    🔨 Move Creality 4.2.2 warning

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

    🐛 Fix NEOPIXEL2_SEPARATE default color (#23057)

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

    🩹 Fill gaps in pinsDebug_list (#23051)

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

    🐛 Fix Y_SERIAL_RX_PIN for FYSETC S6 (#23055)

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

    🎨 Fix redefine warnings (#23061)

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

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

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

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

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

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

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

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

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

    🐛 Fix børken E_DUAL_STEPPER_DRIVERS (#23017)

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

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

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

    🚸 E3V2 Enhanced cosmetic fixes (#23009)

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

    🎨 Apply F() to E3V2 titles, popups

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

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

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

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

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

    🐛 More explicit allocation of solenoids

    In reference to #22887

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

    🐛 Fix probe temp compensation maths (#23004)

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

    🐛 Fix E3V2 width/height defines (#22994)

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

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

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

    🔨 Fix older GCC CXXFLAGS warning

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

    🎨 Fix pinsDebug_list warnings

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

    💡 Sub-include pins labels

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

    🔨 Delete after encrypt. Lerdge encrypt only once

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

    🔨 Update 'pio vscode init' detection

commit fed72e4607b864d8048ae87b08063f0ac6f1eaed
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 11:17:36 2021 -0500

    🔨 Use pull_request_target for check-pr

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

    ✅ Warn about dummy thermistors

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

    Fix JyersUI ZOffset Multiplication (#22975)

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

    Fix Tool Change Park (#22968)

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

    🔨 Improve 'mftest' error message

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

    🔧 Safety feature warnings

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

    💡 Update old gnu.org links

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

    ✨ Add option EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN (#22960)

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

    🐛 Fix G33 homing current (#22909)

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

    ✨ MKS Eagle (STM32F407VET6) board (#22897)

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

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

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

    🎨 Define Octopus allocated endstop pins (#22882)

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

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

    🎨 Tweak FORCE_INLINE

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

    ✨ ESP32 Panda_ZHU and Panda_M4 (#22644)

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

    🎨 Rename MarlinUI::zoffset_overlay

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

    🔨 Port libsdl2_net required for macOS simulator

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

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

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

    🔧 Remove obsolete G34 sanity check (#22929)

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

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

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

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

    Followup to #20609

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

    🔨 Add 'opt_find' to find matching options

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

    🩹 Fix EXTRUDER 0 compile warning (#22868)

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

    🐛 Fix ExtUI Pause messages (#22874)

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

    🐛 Fix Arduino IDE compile error (#22877)

commit a185ce22cf6e4fb15250815c5c39318606a7e65a
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 22:08:11 2021 -0500

    Marlin 2.0.9.2

commit 2a4ee1a482278abb830c0f5180bfa7571c00c9f7
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 21:54:07 2021 -0500

    MKS Robin pins updates

commit 3a82b8a25195f448018e7a2267d9916814434c65
Author: Cytown <[email protected]>
Date:   Sat Jun 26 03:50:09 2021 +0800

    🎨 Power-off tone followup (#22222)

commit 765b2b43f6ea80920a3eb85be64f77ed8fe9dcbd
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 21:51:52 2021 -0500

    🎨 FTDI Eve Touch UI spinner enqueue string

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

    🚑️ Fix DWIN_CompletedLeveling (#22851)

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

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

    🐛 E3V2 Mesh Viewer followup (#22850)

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

    🎨 Condense reverse-protection code

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

    ⚡️ Handle shared enable pins (#22824)

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

    ✨ E3V2 (Enhanced) Mesh Viewer (#22844)

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

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

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

    🎨 steps_to_mm => mm_per_step (#22847)

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

    🚸 TFT backlight PWM / brightness (#22841)

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

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

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

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

    🩹 Fix M412_report formatting (#22834)

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

    🎨 Updated string macros

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

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

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

    🐛 Fix M420 / M851 reports (#22829)

    Followup to 79c72ed821

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

    🐛 Fix reset_hotend_offsets

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

    🎨 Various multi-axis patches (#22823)

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

    ⚡️ Improve LVGL touch driver (#22817)

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

    🐛 Fix anycubic_i3mega_lcd debug macros (#22820)

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

    🩹 Add MarlinSPI to more HALs

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

    🎨 Less use of undef for RAMPS pins

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

    🎨 Fix L64xx enable, clean up conditionals

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

    🩹 Remove extra #include, misc. style

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

    ✨ Polargraph / Makelangelo kinematics (#22790)

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

    🌐 Update Greek language (#22799)

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

    🌐 Skip non-essential translations

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

    🔨 Improve pins_set script

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

    🔨 Case-insensitive tests list

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

    🌐 Reduce language file sizes

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

    🐛 STM32 ADC followup (#22798)

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

    🚸 Wake up TFT for some events (#22788)

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

    🎨 Replace some infrequently-used macros

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

    📝 Update some pins comments

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

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

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

    🚸 Move fade item up

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

    🚸 Better bed position

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

    💬 Add non-translated STR_DONE

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

    🚸 Fix and improve MKS LVGL UI (#22783)

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

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

    💡 Adjust headers, formatting

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

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

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

    🔧 Add MANUAL_FEEDRATE sanity-check

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

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

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

    🐛 E3V2 Brightness followup (#22821)

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

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

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

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

    ✏️ Fix TFT field names (#22776)

commit 9c…
DalBartos added a commit to DalBartos/Marlin that referenced this pull request Mar 5, 2022
commit b9cef2e2e3ec4131d785c084e658e669f59b28ce
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 4 15:18:27 2022 -0600

    🚸 12345.6 num-to-string

commit 186d2ba6b4420b41ae977cad4028a37b57030ceb
Author: ellensp <[email protected]>
Date:   Fri Feb 18 13:37:22 2022 +1300

    🐛 Fix HAS_TMC26X feature path (#23757)

commit 4dfd398d7ddc32e61457989d4156418c57c6e5d7
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 17 14:41:56 2022 -0600

    🐛 Patch Creality RAMPS FET / FAN pins

    Improvement for multi-hotend setup by TH3D.

commit bfdb7c71358bb787a6b8d2a9e4948ad19fac93db
Author: Giuseppe499 <[email protected]>
Date:   Tue Feb 15 20:21:05 2022 +0100

    🐛 Fix XATC divide-by-zero (#23743)

commit bf067738f2faea96717b3810efb001348dba9bfa
Author: Mads Ynddal <[email protected]>
Date:   Thu Feb 10 18:58:36 2022 +0100

    🐛 Fix XYZEval::set(XY, Z) and (XY, Z, E) (#23704)

    Fix regression in #21953

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

commit e028a3c44194518aa9fab1148a102f12407bf0f9
Author: Maeyanie <[email protected]>
Date:   Tue Feb 1 18:27:14 2022 -0500

    🐛 Fix M852 report (#23660)

commit 9847470b387c43b16713f5854b2dfd7b334bd31e
Author: Timothy Hoogland <[email protected]>
Date:   Mon Jan 31 14:02:07 2022 -0600

    🐛 Fix EZBoard V2 Environment for OpenBLT (#23659)

commit 51209667a5dae1206ed38b8966c1783f7a41e466
Author: Timothy Hoogland <[email protected]>
Date:   Sun Jan 30 05:26:37 2022 -0600

    🐛 Fix EZBoard V2 timer conflict (#23648)

commit db4172b5fa05e818f42427001398db5f13d13024
Author: Scott Lahteine <[email protected]>
Date:   Sun Jan 16 00:54:53 2022 -0600

    🔨 Prevent two [cron] in a row

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

    🐛 Fix SHOW_REMAINING_TIME compile (#23503)

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

    🚑️ Fix M105 regression (#23505)

    Fixes #23504

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

    🐛 Fix Arduino build issues (#23510)

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

    🧑‍💻 Move PB0 init for MKS_ROBIN_NANO

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

    🧑‍💻 Fewer string macros

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

    🚸 Include extra axes in position report (#23490)

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

    🚑️ Fix preheat target bug

    Fixes Jyers/Marlin#1651

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

    🌐 Update auto home axis strings

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

    🌐 Update Slovak language (#23475)

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

    🔨 Rename (not copy) with board_build.rename

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

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

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

    🚸 Do G34 "Z Backoff" at full current

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

    📌 LCD_FOR_MELZI for BTT E3 RRF (#23453)

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

    🌐 Localize E3V2 Enhanced UI (#23424)

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

    📺 Tune ULTI_CONTROLLER encoder, enable PCA9632 (#23461)

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

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

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

    🐛 Define required endstop enums (#23425)

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

    🔨 Strip CR in mftest > awk

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

    🐛 Fix strlen_P parameter error

    Fixes #23447

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

    🩹 Fix RADDS+RRD encoder button

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

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

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

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

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

    💚 Fix Teensy CI test (#23433)

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

    🧑‍💻 Apply axis conditionals

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

    🚨 Fix M906 warning

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

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

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

    🔧 Update deprecated auto_build.py (#23427)

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

    🔨 Upload to Optiboot at 115200 (#23403)

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

    ✨ M919 : Chopper Timing (#23400)

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

    🔧 Only warn about enabled CONFIGURATION_EMBEDDING (#23408)

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

    🚑️ Fix thermal conditionals, structure

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

    🔧 DWIN_MARLINUI sanity checks (#23399)

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

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

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

    🎨 E3V2 corner leveling => tramming (#23375)

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

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

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

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

    🚚 Rename L6470 G-code file

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

    🧑‍💻 Remove extraneous 'inline' hints

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

    🎨 Misc. cleanup

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

    🔨 Get FIRMWARE_BIN from env

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

    🐛 Fix EEPROM_INIT_NOW build hash test (#23479)

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

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

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

    🧑‍💻 Add AXIS_COLLISION to catch broken parameters

    \

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

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

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

    📝 Consistent pin header orientation

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

    📌 Define MKS Monster8 pins for MKS_MINI_12864

    Fixes #23324

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

    🐛 Fix mffp usage

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

    🎨 Pins and SDIO cleanup

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

    🔧 Check Chiron LCD requirements (#23353)

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

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

    🎨 Simplify some debug echos

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

    🔨 Add .vscode/extensions.json

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

    🐛 Fix RRW Keypad & Zonestar buttons (#23388)

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

    🩹 Fix Enhanced UI max E speed (#23387)

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

    🔖 Marlin 2.0.9.3

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

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

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

    🐛 Fix open for bin rename (#23351)

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

    🔧 Move MOTHERBOARD closer to top

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

    ✨ Per-axis TMC hold multiplier (#23345)

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

    ✨ MKS TinyBee board support (#23340)

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

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

    🔧 Group FAST_PWM_FAN.options (#23331)

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

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

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

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

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

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

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

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

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

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

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

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

    🐛 Fix and improve MAX31865 (#23215)

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

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

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

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

    ✨ X Twist Compensation & Calibration (#23238)

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

    🔧 Chamber Fan index option (#23262)

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

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

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

    🏗️ Rework STM32 timer frequency protection (#23187)

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

    🐛 Fix STM32 FastPWM

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

    🎨 Rename HAL timer elements

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

    ✨ EasyThreeD ET4000+ board and UI (#23080)

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

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

    ✨ MarkForged YX kinematics (#23163)

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

    ✨ BigTreeTech Mini 12864 V1.0 (#23130)

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

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

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

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

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

    🔧 SOUND_MENU_ITEM for E3V2

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

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

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

    📌 Overridable probe-related pins (#23107)

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

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

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

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

    🔨 Configurable firmware bin filename

    Configuration.h > FIRMWARE_BIN

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

    🔨 Ignore more generated files

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

    🔧 Sanity check MMU2_MENUS

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

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

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

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

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

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

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

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

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

    🐛 Fix Chitu Z_STOP_PIN (#23330)

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

    🩹 Fix settings G21 report (#23338)

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

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

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

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

    🐛 Fix LCD_BED_LEVELING compile (#23298)

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

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

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

    🎨 Update SKR V2 pins

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

    🚸 Use M600 for disabled MMU (#21865)

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

    🐛 Fix TFT_COLOR_UI Release Media issue (#23123)

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

    🔧 Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)

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

    📝 Fix a config comment

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

    ✨ M115 flag EXTENDED_M20 (#22941)

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

    ✏️ Clean up duplicate defs (#23182)

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

    🩹 Init fan speed at boot (#23181)

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

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

    🔧 Fix unknown board test

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

    🩹 SD abort requires open file

    See #22566

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

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

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

    Fix Endstops::report_states (#23280)

    Fix regression 4d45fdf0eb

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

    🎨 Misc. probe / endstop cleanup

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

    🐛 Fix MKS LVGL UI retraction (#23267)

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

    🩹 Coerce pin_t in set_pwm_duty macros (#23273)

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

    🐛 Fix ACTION_ITEM with nullptr (#23195)

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

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

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

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

    🎨 Rename MAX31865 elements

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

    ✏️ MAX31856 => MAX31865

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

    🩹 Fix non-PWM cutter compile (#23169)

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

    🐛 Fix TWIBus Wire.begin call (#23183)

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

    🐛 HAL_reboot for native HAL (#23246)

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

    🐛 Fix env:chitu_f103 (#23225)

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

    📌 More Longer3D LKx Pro serial tests  (#23260)

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

    ✨ M3426 to read i2c MCP3426 ADC (#23184)

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

    🔧 Cutter pins for SKR 2.0

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

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

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

    ✨ BigTree SKR 2 with F429 (#23177)

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

    🐛 Fix TIMER_TONE for ZM3E4 (#23212)

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

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

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

    🐛 Fix STM32 FastPWM

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

    ✏️ Fix Unicode (#23186)

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

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

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

    🩹 UM2 extruder cooling fan on PJ6 (#23194)

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

    ✨  FYSETC Spider v2.2 (#23208)

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

    🩹 Fix include path (#23150)

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

    📌 Biqu BX temporary framework workaround (#23131)

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

    🐛 Fix STM32 set_pwm_duty (#23125)

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

    🐛 Fix TFT backlight sleep/wake (#23153)

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

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

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

    🎨 Misc formatting

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

    🐛 Init PROBE_ENABLE_PIN (#23133)

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

    🎨 Fix misspelling (#23137)

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

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

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

    🐛 Fix fast PWM WGM code

    Followup to #23102

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

    🔨 Bring Makefile up to date

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

    🔨 Ignore sim flashdrive file (#23129)

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

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

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

    🚸 LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)

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

    🐛 Fix SENSORLESS_HOMING for 6-axis

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

    🚸 Simplify touchscreen calibration for SimUI (#23124)

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

    🚸 Fix up E3V2 Enhanced (#23100)

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

    🎨 Misc. issue review patches

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

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

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

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

    🎨 MPX ARM Mini pins cleanup (#23113)

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

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

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

    🩹 Fix RGB case light compile (#23108)

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

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

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

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

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

    fix breaks in F() resolution

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

    🔨 Port libsdl2_net required for macOS simulator

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

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

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

    🎨 Misc. code cleanup

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

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

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

    🚸 Indicate Preheating for probe / leveling (#23088)

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

    🩹 Fix M503 report (#23084)

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

    🍻 Preliminary fix for Max31865 SPI (#22682)

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

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

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

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

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

    🐛 Fix DGUS Reloaded status message (#23090)

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

    🍻 Get/clear reset source earlier

    Followup to #23075

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

    🐛 Prevent AVR watchdogpile (#23075)

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

    🐛 Fix TFT backlight [STM32] (#23062)

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

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

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

    🔨 Fix IntelliSense / PIO conflicts (#23058)

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

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

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

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

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

    🔨 Script 'mfprep' finds pending commits

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

    🔨 Update git helper scripts

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

    🔨 Support ABM in mf scripts

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

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

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

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

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

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

    🔧 Endstop / DIAG homing conflict warning (#23050)

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

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

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

    ✨ Artillery Ruby (STM32F401RCT6) (#23029)

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

    🚸 More flexible Probe Temperature Compensation (#23033)

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

    📝 Tweak EXP comments

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

    🔨 Help for GDB remote debugging

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

    🩹 Fix linker error (transfer_port_index)

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

    💚 Update Ender-3 V2 config path

    MarlinFirmware/Configurations#600

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

    🎨 Adjust Ender-3 V2 DWIN options

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

    ✨ Shutdown Host Action (#22908)

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

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

    ✨ "Rutilea" ESP32 board (#22880)

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

    🔧 Configuration version 02000903

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

    🎨 Standard 'cooldown' method

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

    🎨 Standard material presets behavior

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

    🎨 Define HAS_PREHEAT conditional

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

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

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

    🐛 Fix EZBoard V2 board name

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

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

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

    🎨 Apply HAS_MULTI_HOTEND conditional

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

    🚸 Scroll long filename on MKS TFT (#23031)

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

    🩹 Retain LCD pins with motor expansion (#23024)

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

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

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

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

    Followup to #23005, #22778

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

    🚸 Tweaks to UBL G29 Q

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

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

    Regression from 9823a37

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

    🐛 Add USE_TEMP_EXT_COMPENSATION options (#23007)

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

    🔧 Fewer alerts about Z_SAFE_HOMING

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

    🐛 Fix SHOW_REMAINING_TIME option for JyersUI (#22999)

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

    ✨ BigTreeTech TFT35 SPI V1.0 (#22986)

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

    🩹 Fix pragma ignored for older GCC (#22978)

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

    🎨 Refactor MOSFET pins layout (#22983)

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

    🎨 Pragma GCC cleanup

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

    🐛 Fix max chamber fan speed (#22977)

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

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

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

    🐛 Fix MMU1 compile (#22965)

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

    🎨 Suppress type warning (#22976)

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

    🎨 Add MKS UI goto_previous_ui

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

    🚸 Tweak MKS UI G-code console

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

    🎨 Fix up MKS UI defines

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

    🎨 Refactor Host Actions as singleton

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

    🔧 Add, update TFT sanity checks (#22928)

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

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

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

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

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

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

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

    🐛 Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)

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

    ✨ M261 S I2C output format (#22890)

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

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

    🐛 Queue string followup (#22900)

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

    🐛 LCD string followup (#22892)

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

    🐛 Followup to F() in config_line

    Followup to 1dafd1887e

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

    🐛 ExtUI F() followups

    Followup to 12b5d997a2

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

    🎨 Apply F() to kill / sendinfoscreen

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

    🎨 Apply F() to MKS UI errors, assets

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

    🎨 Apply F() to various reports

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

    🎨 Apply F() to G-code report header

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

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

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

    🎨 Apply F() to some ExtUI functions

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

    🎨 Apply F() to Host Actions strings

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

    🎨 Apply F() to status message

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

    🎨 Apply F() to serial macros

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

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

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

    🎨 Apply F() to G-code subcommands

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

    🎨 Update F string declarations

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

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

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

    🐛 Fix loud_kill heater disable (#23314)

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

    🐛 Fix homing current for extra axes (#23152)

    Followup to #19112

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

    🐛 Fix IDEX Duplication Mode Positioning (#22914)

    Fixing #22538

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

    🐛 Fix serial_data_available (#23160)

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

    🔨 Move Creality 4.2.2 warning

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

    🐛 Fix NEOPIXEL2_SEPARATE default color (#23057)

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

    🩹 Fill gaps in pinsDebug_list (#23051)

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

    🐛 Fix Y_SERIAL_RX_PIN for FYSETC S6 (#23055)

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

    🎨 Fix redefine warnings (#23061)

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

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

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

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

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

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

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

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

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

    🐛 Fix børken E_DUAL_STEPPER_DRIVERS (#23017)

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

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

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

    🚸 E3V2 Enhanced cosmetic fixes (#23009)

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

    🎨 Apply F() to E3V2 titles, popups

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

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

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

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

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

    🐛 More explicit allocation of solenoids

    In reference to #22887

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

    🐛 Fix probe temp compensation maths (#23004)

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

    🐛 Fix E3V2 width/height defines (#22994)

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

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

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

    🔨 Fix older GCC CXXFLAGS warning

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

    🎨 Fix pinsDebug_list warnings

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

    💡 Sub-include pins labels

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

    🔨 Delete after encrypt. Lerdge encrypt only once

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

    🔨 Update 'pio vscode init' detection

commit fed72e4607b864d8048ae87b08063f0ac6f1eaed
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 19 11:17:36 2021 -0500

    🔨 Use pull_request_target for check-pr

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

    ✅ Warn about dummy thermistors

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

    Fix JyersUI ZOffset Multiplication (#22975)

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

    Fix Tool Change Park (#22968)

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

    🔨 Improve 'mftest' error message

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

    🔧 Safety feature warnings

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

    💡 Update old gnu.org links

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

    ✨ Add option EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN (#22960)

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

    🐛 Fix G33 homing current (#22909)

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

    ✨ MKS Eagle (STM32F407VET6) board (#22897)

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

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

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

    🎨 Define Octopus allocated endstop pins (#22882)

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

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

    🎨 Tweak FORCE_INLINE

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

    ✨ ESP32 Panda_ZHU and Panda_M4 (#22644)

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

    🎨 Rename MarlinUI::zoffset_overlay

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

    🔨 Port libsdl2_net required for macOS simulator

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

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

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

    🔧 Remove obsolete G34 sanity check (#22929)

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

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

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

    🐛 Fix SKR Mini E3 V2 I2C-based EEPROM (#22919)

    Followup to #20609

commit 40cb7cf8d6e31cf768a946e3248618256c021fb6
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 4 18:58:20 2021 -0500

    🔨 Add 'opt_find' to find matching options

commit d0c0630c1f91cb43dc23c1ed9e4c166d284785eb
Author: ellensp <[email protected]>
Date:   Mon Oct 4 19:12:19 2021 +1300

    🩹 Fix EXTRUDER 0 compile warning (#22868)

commit 11c829fb28a4fdc37ae86e6ac674589331f0712d
Author: Sebastien Andrivet <[email protected]>
Date:   Mon Oct 4 08:06:49 2021 +0200

    🐛 Fix ExtUI Pause messages (#22874)

commit e0dda615012a99e1ad591972b4bbc5238e7361a9
Author: ellensp <[email protected]>
Date:   Mon Oct 4 18:25:45 2021 +1300

    🐛 Fix Arduino IDE compile error (#22877)

commit a185ce22cf6e4fb15250815c5c39318606a7e65a
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 22:08:11 2021 -0500

    Marlin 2.0.9.2

commit 2a4ee1a482278abb830c0f5180bfa7571c00c9f7
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 21:54:07 2021 -0500

    MKS Robin pins updates

commit 3a82b8a25195f448018e7a2267d9916814434c65
Author: Cytown <[email protected]>
Date:   Sat Jun 26 03:50:09 2021 +0800

    🎨 Power-off tone followup (#22222)

commit 765b2b43f6ea80920a3eb85be64f77ed8fe9dcbd
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 2 21:51:52 2021 -0500

    🎨 FTDI Eve Touch UI spinner enqueue string

commit 2e602b9b88e75a261d8d1a71c0857ce47f5e92fa
Author: Steven Haigh <[email protected]>
Date:   Thu Sep 30 02:22:46 2021 +1000

    🚑️ Fix DWIN_CompletedLeveling (#22851)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d3e75905d9316853462321bac7b43f635366768
Author: Malderin <[email protected]>
Date:   Wed Sep 29 04:20:03 2021 +0300

    🐛 E3V2 Mesh Viewer followup (#22850)

commit eacb660e4b1008245361d8db6054ef30ccf031fa
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 02:39:11 2021 -0500

    🎨 Condense reverse-protection code

commit 021ceeba0b0ccadd7246d5e2da56df7868349206
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 28 01:07:51 2021 -0500

    ⚡️ Handle shared enable pins (#22824)

commit 25a131b9421c81245e1d9094fc85476349baf941
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Sep 27 14:47:47 2021 -0500

    ✨ E3V2 (Enhanced) Mesh Viewer (#22844)

commit b4c025a451580cdc15f9506e923c4ffe5afdde90
Author: Sola <[email protected]>
Date:   Tue Sep 28 03:08:29 2021 +0800

    🚸 Fix MKS LVGL UI temperature set interface (#22848, #22842)

commit 604a01cd1a87850a5fe2fde1a204a9c313863db3
Author: espr14 <[email protected]>
Date:   Mon Sep 27 21:05:52 2021 +0200

    🎨 steps_to_mm => mm_per_step (#22847)

commit 064f91e9b0e71b55dda7dea86881863190c37516
Author: Tanguy Pruvot <[email protected]>
Date:   Mon Sep 27 21:01:47 2021 +0200

    🚸 TFT backlight PWM / brightness (#22841)

commit 34c9f649252f173b9c046dcab56d86e0526ed163
Author: ellensp <[email protected]>
Date:   Tue Sep 28 04:17:00 2021 +1300

    🔧 Sanity-check BLTOUCH_SET_5V_MODE on 5V pins (#22840)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 060b705dab5ad7eaf0f1babd6113d5908b485db9
Author: Giuliano Zaro <[email protected]>
Date:   Sun Sep 26 04:59:29 2021 +0200

    🩹 Fix M412_report formatting (#22834)

commit 262cd757fc4b91592932d4335878bc0aaf45af20
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 25 02:27:07 2021 -0500

    🎨 Updated string macros

commit dc4d2165f2175a5f0f2e492b3a4f3f4cecf15ead
Author: Steve Wills <[email protected]>
Date:   Fri Sep 24 22:12:43 2021 -0400

    🐛 Add 'static' to fix 'duplicates' (#22826)

commit bcd2a483da49030ae5f1837474c95b027f915340
Author: Manuel McLure <[email protected]>
Date:   Fri Sep 24 19:08:07 2021 -0700

    🐛 Fix M420 / M851 reports (#22829)

    Followup to 79c72ed821

commit d338872e8571e45c961d768b1d5068bff20e9daf
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 11:09:43 2021 -0500

    🐛 Fix reset_hotend_offsets

commit 2c30b75268a0cb7791c00b91579db6ab42b3dd28
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 10:01:37 2021 -0500

    🎨 Various multi-axis patches (#22823)

commit 3deb54d0fde6bb84310e78ce3b70296041552af1
Author: Sola <[email protected]>
Date:   Thu Sep 23 15:53:48 2021 +0800

    ⚡️ Improve LVGL touch driver (#22817)

commit 9ae6351a026d9b91813e8f1c3e7749e7f8cab790
Author: ellensp <[email protected]>
Date:   Thu Sep 23 18:58:52 2021 +1200

    🐛 Fix anycubic_i3mega_lcd debug macros (#22820)

commit b7f95dc8d4903122db3692fc7540a593983f1af1
Author: Scott Lahteine <[email protected]>
Date:   Thu Sep 23 00:51:35 2021 -0500

    🩹 Add MarlinSPI to more HALs

commit 99647fa9403ef3c9f419000cb0be6667105f8aaf
Author: Scott Lahteine <[email protected]>
Date:   Wed Sep 22 00:19:26 2021 -0500

    🎨 Less use of undef for RAMPS pins

commit ea3df942137362e6916b51f8152389f1d6ac3415
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 21 06:25:13 2021 -0500

    🎨 Fix L64xx enable, clean up conditionals

commit a37580e4e837b1de576a7b529f56d225fa6a6dde
Author: Scott Lahteine <[email protected]>
Date:   Mon Sep 20 18:44:35 2021 -0500

    🩹 Remove extra #include, misc. style

commit b3fd03198af688bbd7b3d74500c441007bcf890d
Author: Dan Royer <[email protected]>
Date:   Mon Sep 20 13:42:33 2021 -0700

    ✨ Polargraph / Makelangelo kinematics (#22790)

commit 71b8a22d96735791789aeceed4877b2f1edfdb3d
Author: Lefteris Garyfalakis <[email protected]>
Date:   Mon Sep 20 03:26:46 2021 +0300

    🌐 Update Greek language (#22799)

commit 669b68497cc0194fb963dfe8066e556f6ada03e4
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 19:25:01 2021 -0500

    🌐 Skip non-essential translations

commit 6014dd9c7b06917a251506afcf9acf11a54c26a6
Author: Scott Lahteine <[email protected]>
Date:   Tue Sep 21 02:42:01 2021 -0500

    🔨 Improve pins_set script

commit 5a54ba8316357c8bc4233bede1b29d5f62521fd0
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 18:58:12 2021 -0500

    🔨 Case-insensitive tests list

commit be8e8260e2969ce80a1ff51a39deed23aba0e6d1
Author: Scott Lahteine <[email protected]>
Date:   Sun Sep 19 18:40:56 2021 -0500

    🌐 Reduce language file sizes

commit 5d8ca7c9445dac3d8bb52eafd9c45826e9c3387b
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Sep 19 05:16:29 2021 +0200

    🐛 STM32 ADC followup (#22798)

commit 0e8e215d4e173e6d742b6aa198859e1a6cf50089
Author: Tanguy Pruvot <[email protected]>
Date:   Sun Sep 19 01:27:58 2021 +0200

    🚸 Wake up TFT for some events (#22788)

commit 6cf95509cd1483b52076322679e2426550fdf1df
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 18 18:24:39 2021 -0500

    🎨 Replace some infrequently-used macros

commit ded719cc1481c8b67a4015a0077294ba7640d20d
Author: Scott Lahteine <[email protected]>
Date:   Sat Sep 18 18:22:15 2021 -0500

    📝 Update some pins comments

commit 2630eefcc462b200c7bf748735387e7b055f300e
Author: Steven Haigh <[email protected]>
Date:   Sat Sep 18 16:33:18 2021 +1000

    🐛 STM32 ADC Resolution = 12 bit (or ADC_RESOLUTION) (#22789)

commit 2b54a9c0ff0351f92b7e835f7c8dafe6f9cc5390
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 17 19:09:54 2021 -0500

    🚸 Move fade item up

commit bb1eb39ecbe2edfecb171b3e4f689b0413c5bf60
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 12 17:08:57 2021 -0500

    🚸 Better bed position

commit 8b818f4ae561d6ef1ba708a78cc0ed5cb5054358
Author: Scott Lahteine <[email protected]>
Date:   Fri Sep 17 18:58:55 2021 -0500

    💬 Add non-translated STR_DONE

commit 4d113c2efd1e17171b87f46053fb574842832a96
Author: Sola <[email protected]>
Date:   Thu Sep 16 19:48:24 2021 +0800

    🚸 Fix and improve MKS LVGL UI (#22783)

    Co-authored-by: m…
thinkyhead added a commit that referenced this pull request Apr 20, 2022
thinkyhead added a commit that referenced this pull request May 7, 2022
mh-dm pushed a commit to mh-dm/Marlin that referenced this pull request May 15, 2022
luizbgomide added a commit to luizbgomide/Marlin that referenced this pull request May 21, 2022
* ✏️ Fix MKS enum

* ✅ FYSETC TFT81050 CI Test (MarlinFirmware#23604)

* ✨ BOARD_CREALITY_V24S1_301 (MarlinFirmware#23620)

Co-Authored-By: Miguel Risco-Castillo <[email protected]>

* 🚸 Better "Bed Tramming Done" dialog (MarlinFirmware#23616)

Co-authored-by: Scott Lahteine <[email protected]>

* 📝 Update Creality 4.2.2 driver warning

* 🐛 Fix SPI DMA and default mode (MarlinFirmware#23627)

Followup to MarlinFirmware#23464

* 🧑‍💻 Simplify Fast PWM timer macros

* 🐛 Fix AVR 644/1284 Timer / PWM conflicts (MarlinFirmware#23629)

* 🐛 Fix FYSETC S6, S6 V2 Serial RX pins (MarlinFirmware#23642)

* 🔧 Board temp sensor check

* 🔨 Workspace file with recommendation

* 🐛 Creality v4 cleanup, pin correction (MarlinFirmware#23666)

* 🔧 Sanity-check AVR D9 Fan PWM / SPEAKER Timer2 (MarlinFirmware#23672)

* 💡 Comment variant timers

* 🍻 STM32 set_pwm_duty "on/off" for digital pins (MarlinFirmware#23665)

* 🐛 Fix RUMBA + MKS Mini12864 Neopixel pin (MarlinFirmware#23646)

* 🧑‍💻 Relocate a variant

* ✨ Add ZRIB v53, patch G35 Z drop, related issues (MarlinFirmware#23636)

* 📌 Distinct BOARD_CREALITY_V422 (MarlinFirmware#23674)

* ✨ SAMD51 Bricolemon / Bricolemon Lite boards (MarlinFirmware#23658)

* 🐛 Fix Index Mobo Rev03 upload (MarlinFirmware#23676)

* 🩹 Init brightness/contrast later (MarlinFirmware#23645)

* 🚨 Deprecate Maple build (MarlinFirmware#23661)

Update Warnings.cpp

* 🩹 Prevent Z error with UBL + Park unscaled E move (MarlinFirmware#23568)

* 🐛 Fix dual MAX31865 initialization issues (MarlinFirmware#23496)

* 🔨 Clean up upload.py (MarlinFirmware#23679)

* 🐛 Fix missing u8g_esp32_spi (MarlinFirmware#23562)

* 🐛 Fix init of delta safe height (for G29, G33, etc.) (MarlinFirmware#23622)

* 🧑‍💻 Generic Maple STM32F103RC envs for devs (MarlinFirmware#23686)

* 🚨 Cleaner errors for renamed envs (MarlinFirmware#23690)

* 🩹 Fix Maple HAL compile errors (MarlinFirmware#23685)

* PLR accessors for Ext UI (MarlinFirmware#23687)

* 🔧 Update MIXING_EXTRUDER sanity checks

Fixing MarlinFirmware#23693

* ✨ Optional HOST_STATUS_NOTIFICATIONS (MarlinFirmware#22833)

* 🧑‍💻 Drop hostui.flag

* 🚸 Restore active tool after ABL G29 (MarlinFirmware#23692)

Co-authored-by: Scott Lahteine <[email protected]>

* 🚸 Fix, Improve Power-Loss Recovery (MarlinFirmware#22828)

Co-authored-by: Scott Lahteine <[email protected]>

* 🩹 Simplify quick homing feedrate (MarlinFirmware#23714)

Co-authored-by: Scott Lahteine <[email protected]>

* 🧑‍💻 Wrap MMU1 pins

* ✨ Pxmalion Core i3 (MarlinFirmware#23711)

* 🎨 Misc. DGUS cleanup

* 💥 Change 'M42 M' to 'M42 T'

* 🚸 Align MKS UI heated bed status with HAS_MULTI_HOTEND (MarlinFirmware#23718)

* ✏️ Fix E3V2 display with BTT SKR Mini E3 v3 (MarlinFirmware#23719)

* 🔧 HAS_LCDPRINT conditional

* 📝 Update conditionals descriptions

* ♻️ No ui.reinit_lcd on any ExtUI (MarlinFirmware#23722)

Co-authored-by: Scott Lahteine <[email protected]>

* ♻️ Rename XATC z_values => z_offset

* 🧑‍💻 Update MightyBoard FET pins (MarlinFirmware#23728)

* 🚨 Fix TEMP_SENSOR_BOARD warnings (MarlinFirmware#23754)

* ✏️ Fix getLFNName parameter (MarlinFirmware#23752)

* 📌 Creality RAMPS optional SD_DETECT_PIN (MarlinFirmware#23740)

Co-authored-by: Scott Lahteine <[email protected]>

* 🚸 Case Light, LED menus for E3V2 DWIN Enhanced UI (MarlinFirmware#23590)

* 🚸 Enhanced UI => Professional UI - with updates (MarlinFirmware#23624)

* ✨ More Nozzle Park move options (MarlinFirmware#23158)

Co-authored-by: Scott Lahteine <[email protected]>

* ♻️ Refactor HAL as singleton (MarlinFirmware#23357, MarlinFirmware#23871, MarlinFirmware#23897)

* ⚡️ Apply PTC on all probing (MarlinFirmware#23764)

Co-authored-by: Scott Lahteine <[email protected]>

* 📝 Update Toolchange FS comments

* ✨ Dyze Design PT100 Amplifier Board (MarlinFirmware#23760)

* 🔧 Warning for MK3_FAN_PINS (MarlinFirmware#23727)

* 🐛 Fix TMC26X CS pins init (MarlinFirmware#23778)

* 🔨 More renamed.ini envs (MarlinFirmware#23786)

* 🎨  Move PROPORTIONAL_FONT_RATIO

* 🐛 Fix steps-to-mm with backlash (MarlinFirmware#23814)

Co-authored-by: Scott Lahteine <[email protected]>

* 🐛 ESP32 _delay_ms, fix u8g_esp32_spi.cpp (MarlinFirmware#23810)

* ✨ MKS Robin Nano 3.1 (MarlinFirmware#23795)

* 📺 BTT SKR Mini E3 with Fysetc V2.1 / MKS V3 / BTT V1 Mini 12864 (MarlinFirmware#23793)

* 🔧 SHOW_CUSTOM_BOOTSCREEN sanity-check (MarlinFirmware#23807)

* ✨ LCD Backlight Timer (MarlinFirmware#23768)

Co-authored-by: Scott Lahteine <[email protected]>

* ✨ M21 P / S / U - Select Volume (MarlinFirmware#23780)

Co-authored-by: Scott Lahteine <[email protected]>

* 🌐 Update German language (MarlinFirmware#23832)

* 🔨 Fix 'renamed' env (platform = ststm32) (MarlinFirmware#23831)

* 🐛 Fix backlash applied steps when config changes (MarlinFirmware#23826)

Followup to MarlinFirmware#23814

* 🚨 Fix BLTouch 5V pin tolerance checks (MarlinFirmware#23823)

* ⚡️ E3V2 blank bg for S1 compatibility (MarlinFirmware#23822)

* ✨ Weedo 62A Tina2 / Monoprice Cadet (MarlinFirmware#23817)

* 🐛 Fix M_State_grbl when G29 calls G28

* 🚸 Universal X_AXIS_TWIST_COMPENSATION (MarlinFirmware#23828)

* 🚸 Use Z_STEPPER_ALIGN_STEPPER_XY to enable

* ⚡️ Use seen_test in `M422`

* 🩹 Improve and apply XATC reset() (MarlinFirmware#23840)

* 🐛 Emergency Parser with STM32 Mass Storage (MarlinFirmware#23827)

* 🔧 Mark Thermal Variance Monitor EXPERIMENTAL

* 🚸 Improve M422 error messages

* 🩹 Fix 'hdsl' warning

* 🔧 DWIN_CREALITY_LCD_ENHANCED => DWIN_LCD_PROUI

Followup to MarlinFirmware#23624

* 📝 Update laser/spindle docs link (MarlinFirmware#23886)

* 🐛 Fix UI include

Followup to ~2

* fix g29 (MarlinFirmware#23887)

* 🚸 Update Ender3 V2/S1 Pro UI (MarlinFirmware#23878)

* 🚸 Fix, extend X Axis Twist Compensation (MarlinFirmware#23745)

Co-authored-by: Scott Lahteine <[email protected]>

* 📌 Fix, extend Index Rev03 Mobo (MarlinFirmware#23851)

Co-authored-by: Scott Lahteine <[email protected]>

* 🚸 M401 H - Report BLTouch HS State (MarlinFirmware#23724)

* 🧑‍💻 STM32G0Bx : Use PLLQ for USB clock (MarlinFirmware#23870)

* 🧑‍💻 Add ExtUI::onLevelingDone, match DWIN to ExtUI

* 🐛 Fix UBL 'G29 Q1' bug

* 🌐 Fix, add some menu labels (MarlinFirmware#23895)

* 🧑‍💻  Add standard BUZZ types

* 🩹 Fix FSTR / PSTR usage

* 🐛 Fix Chiron new TFT SD print after reset (MarlinFirmware#23855)

* 🔨 Drop extraneous build flag (MarlinFirmware#23862)

* ⚡️ G12 - Only require used axes to be homed (MarlinFirmware#23422)

Co-authored-by: Scott Lahteine <[email protected]>

* 🚸 Test LIN_ADVANCE in a pins file

* 📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

* 📝 Fix X2_MAX_POS comment (MarlinFirmware#23873)

* 🩹 Fix ExtUI build with Host Keepalive disabled (MarlinFirmware#23898)

* 🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (MarlinFirmware#23885)

* 🩹 Fix DWIN E3V2 display issues by allowing re-init (MarlinFirmware#23879)

* 🐛 MKS TinyBee - 2.5V ADC Vref (MarlinFirmware#23903)

* 🩹 Fix redundant var declaration (MarlinFirmware#23913)

* ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (MarlinFirmware#23867)

* 🩹 Fix xatc EEPROM debug (MarlinFirmware#23911)

* ✨ ESP32 - Hardware PWM for fan, cutter, servos (MarlinFirmware#23802)

* 📌 PandaPi V2.9 – Standalone mode (MarlinFirmware#23908)

* ✨ Encoder button noise filter (MarlinFirmware#23925)

* 🚸 Allow one servo with cutter on RAMPS

* 🔨 Allow I2CPE_ENC_n_INVERT set to false

* 🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

* 🔧 No Switching Nozzle with MMU2

* 🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

* 🧑‍💻 Add neo.set_background_color(rgbw)

* 🔨 Suppress MMU2 resume_position warning

* 🎨 Apply _TERN where possible

* 🧑‍💻 PIO --silent in build_example

* 🩹 Fix ADC math overflow

* 🔨 Fix 'mftest -s'

* 🎨 Clean up tool change with tool sensor

* 🧑‍💻 EXTRUDER_LOOP macro

* 🎨 General cleanup, comments

* 🧑‍💻 Improve STATUS_BED_X

* 💡 Misc. cleanup, comments

* 🩹 Wrap endstop_diag.cpp (MarlinFirmware#23931)

* 🌐 Update Ukrainian language (MarlinFirmware#23935)

* 📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (MarlinFirmware#23936)

* ✏️ Encoder noise followup

Followup to MarlinFirmware#23925

* 🩹 Print English to serial out

* 🐛 Fix status_printf alert level

* 🎨 Format, use status macros

* 🚸 Clear "heating/cooling" message on temp reached

* ✨ STATUS_MESSAGE_TIMEOUT_SEC (MarlinFirmware#23135)

Co-authored-by: Scott Lahteine <[email protected]>

* 🐛 Fix MMU2 buzz (MarlinFirmware#23943)

Followup to 89a9c3a

* 🐛 Fix pulldown sanity check

* ✨ Configurable FREEZE pin state (MarlinFirmware#23944, MarlinFirmware#23948)

Co-Authored-By: Scott Lahteine <[email protected]>

* 🔨 Fix Makefile GCC warning (MarlinFirmware#23957)

* 🐛 Fix MMU2 buzz (MarlinFirmware#23950)

Followup to MarlinFirmware#23943

* 📝 Fix extraneous URL args (MarlinFirmware#24125)

* 📝 Replace KB with K in pins

* 🐛 Some EEPROM size fixes (MarlinFirmware#24113)

Co-authored-by: Scott Lahteine <[email protected]>

* 🔨 Use first g++ in path for 'native' targets

* 🔨 Prevent build attribute define conflicts

* 🔨 Improved mfprep script

* 🎨  INI cleanup

* ✏️ Fix parking extruder compile (MarlinFirmware#23961)

Followup to d3e3e6a

* 🐛 Use ADC_VREF for Filament Width ADC Vref (MarlinFirmware#23977)

* 🌐 Clean up languages

* ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (MarlinFirmware#23990)

* 🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (MarlinFirmware#23976)

* 📌 SKR Mini V1.1 TMC UART Pins (MarlinFirmware#23970)

* 🩹 SKR2 Pins DIAG flag (MarlinFirmware#23968)

Followup to MarlinFirmware#23050

* 🐛 Fix MKS Gen. L - EEB (MarlinFirmware#23965)

* 🐛 Fix MarlinUI on Ender 3 S1 (MarlinFirmware#23949)

* 🩹 Fix "elapsed" text on DOGLCD (MarlinFirmware#24087)

* 📝 Fix 'M150 S' comment

* ✨ enwi ESPNP board support (MarlinFirmware#24029)

* 🔨 Preflight check old abl files (MarlinFirmware#24010)

* ✏️ No such pin

* 🌐  Rename "LCD Timeout" string

* 🎨  misc. cleanup

* ✏️ Remove extra G29 line

Followup to 85a62bb

* 🎨  Misc. adjustments, spacing

* 🎨  Misc. USB flash code cleanup

* 🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

* 🐛  Prevent BABYSTEP freeze

See MarlinFirmware#22830, MarlinFirmware#13300

* 🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (MarlinFirmware#24063)

Co-authored-by: Scott Lahteine <[email protected]>

* 🚸  Home Y before X on belt printers

* 🐛  Home Z to Max after Z_SAFE_HOMING

* 🚸 Prevent accidental button press

* 🧑‍💻 Strip #errors in Configurations deployment

* 🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

* 🎨  Combine common LPC1768 I2C code

* 🐛 Fix MKS_MINI_12864 build for ESP32 (MarlinFirmware#24071)

* 🐛 Prefer os.replace, fix TFT_LVGL_UI build (MarlinFirmware#24001)

* 🔨 Fix LPC176x debug build

See MarlinFirmware#23635

* 🩹 Apply 100% leveling correction below the bed

See MarlinFirmware#24002

* 🩹 Use LCD_CONTRAST_INIT in pins files

* 🐛 Fix STM32 Pins Debugging (MarlinFirmware#22896)

* 🩹 Fix and clean up E3V2 draw (MarlinFirmware#23979, MarlinFirmware#24013)

* 🐛 Fix Manual Move cold extrude override (MarlinFirmware#24045)

Followup to MarlinFirmware#19606

Co-authored-by: Scott Lahteine <[email protected]>

* 🧑‍💻 Preheat menu improvements (MarlinFirmware#24017)

Co-authored-by: Scott Lahteine <[email protected]>

* 🌐 Update Russian language (MarlinFirmware#23978)

* 🌐 Update Chinese language (MarlinFirmware#23865)

* ✨ Add M3426 A<addr> parameter (MarlinFirmware#24130)

Co-authored-by: Scott Lahteine <[email protected]>

* 🧑‍💻 Define isr_float_t to assert a non-FPU float (MarlinFirmware#23969)

Co-authored-by: Scott Lahteine <[email protected]>

* 💥 Rename ExtUI settings methods

* ♻️ Refactor and fix ABL Bilinear (MarlinFirmware#23868, MarlinFirmware#24009, MarlinFirmware#24107)

* 🐛 Fix PID edit menu for Bed, Chamber (MarlinFirmware#23987)

* 🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (MarlinFirmware#23985)

* ✏️ Fix FYSETC Mini Panel neopixel type (MarlinFirmware#24011, MarlinFirmware#24111)

* 🌐 Update Italian language (MarlinFirmware#24019)

* 🐛  Update M913, M914 report

Followup to MarlinFirmware#11248, MarlinFirmware#11249, MarlinFirmware#23400

* 🎨 Use LEDColor default C-CTOR

* 🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (MarlinFirmware#24066)

* 🩹 Fix DEBUG_CARDREADER (MarlinFirmware#24023)

* 🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

Fixes MarlinFirmware#23824

* 🐛 Fix ProUI / JyersUI leveling preheat (MarlinFirmware#24060, MarlinFirmware#24064)

Co-Authored-By: Scott Lahteine <[email protected]>

* 🧑‍💻 Handle PLR in manage_media

* 🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

Fixes MarlinFirmware#24007
Followup to aaf5bf0

* 🚸 More ExtUI events for ABL / UBL

* ⚰️ Clean up dead option (MarlinFirmware#24006)

* ♻️ Consolidate DGUSScreenHandler class (MarlinFirmware#24067)

* 📝 Obsolete freeze comment (MarlinFirmware#23964)

Followup to MarlinFirmware#23944

* 🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

* 🎨 Tweak NEOPIXEL_LED format (MarlinFirmware#24110)

* ✏️Fix Markforged endstops/G38 (MarlinFirmware#24141)

* 📌 Use ESP3DLib master branch (MarlinFirmware#24140)

* 🔧 Fix Neo RGB sanity check (MarlinFirmware#24146)

* 🩹 Fix Fan Tail Speed Init (MarlinFirmware#24076)

Co-authored-by: Scott Lahteine <[email protected]>

* 🔨 OpenOCD Debug for VSCode

* ✏️ Fix spurious UTF

* 📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

See MarlinFirmware#23501

* 🧑‍💻 Clarify acceleration factor

* 🩹 Fix accel dividend

* 🔨 Fix g++ locator for CI

* 🧑‍💻 General and Axis-based bitfield flags (MarlinFirmware#23989)

* 🩹 Fix ProUI leveling start message

* 🧑‍💻 Misc. LCD cleanup

* ✨ Creality CR-10 SmartPro (MarlinFirmware#24151)

Co-authored-by: Scott Lahteine <[email protected]>

* ✨ Add BOARD_CREALITY_V24S1_301F4

Co-Authored-By: Miguel Risco-Castillo <[email protected]>

* 🔧 AVR/DUE Serial Port pin conflict checks (MarlinFirmware#24148)

Co-authored-by: Scott Lahteine <[email protected]>

* 🎨 Clean up warnings / extra check (MarlinFirmware#24163)

* 🚚 Move speed_lookuptable.h

* 🎨 Nextion cleanup

* 🔨 BTT Octopus ST-Link programming/debugging

* 🐛 Fix Mightyboard LED pin, fan override (MarlinFirmware#24168)

* 🔧 Allow board & probe dummy thermistors (MarlinFirmware#24165)

* 🐛 Fix AIR_ASSIST (MarlinFirmware#24162)

* 🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (MarlinFirmware#24147)

* 🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

* 🚸 DWIN/DACAI for Creality 4.2.3 (MarlinFirmware#24132)

* 🩹 Run TMC test last in setup (MarlinFirmware#24160)

* 🎨 HAL_MinSerial.* => MinSerial.*

* 🐛 Fix Due cli/sei (MarlinFirmware#24182)

Followup to MarlinFirmware#23357

* 🩹 Suppress ZERO() warning (MarlinFirmware#24178)

* 🩹 Fix MarlinUI allow-cold-extrude (MarlinFirmware#24176)

Co-authored-by: Scott Lahteine <[email protected]>

* 🚸 ProUI APRIL2022 updates (MarlinFirmware#24084)

* 🔨 Use PlatformIO Core 6.0 Dev for CI (MarlinFirmware#24194)

* 🔨 Require PIO >= 6.0.1 (MarlinFirmware#24205)

* 🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (MarlinFirmware#24195)

* 🐛 Fix Polargraph G92 command (MarlinFirmware#24223)

Co-authored-by: Scott Lahteine <[email protected]>
Co-authored-by: ellensp <[email protected]>
Co-authored-by: Scott Lahteine <[email protected]>
Co-authored-by: Miguel Risco-Castillo <[email protected]>
Co-authored-by: Keith Bennett <[email protected]>
Co-authored-by: Mike La Spina <[email protected]>
Co-authored-by: Bob Kuhn <[email protected]>
Co-authored-by: Bones <[email protected]>
Co-authored-by: Bruno Henrique de Paula <[email protected]>
Co-authored-by: Kelroy <[email protected]>
Co-authored-by: Stephen Hawes <[email protected]>
Co-authored-by: GHGiampy <[email protected]>
Co-authored-by: John Lagonikas <[email protected]>
Co-authored-by: InsanityAutomation <[email protected]>
Co-authored-by: Taylor Talkington <[email protected]>
Co-authored-by: MOHAMMAD RASIM <[email protected]>
Co-authored-by: espr14 <[email protected]>
Co-authored-by: Thomas White <[email protected]>
Co-authored-by: Simon Pilepich <[email protected]>
Co-authored-by: jefflessard <[email protected]>
Co-authored-by: John Robertson <[email protected]>
Co-authored-by: tombrazier <[email protected]>
Co-authored-by: sam <[email protected]>
Co-authored-by: M. FURIC Franck <[email protected]>
Co-authored-by: kisslorand <[email protected]>
Co-authored-by: Ludy <[email protected]>
Co-authored-by: Julien Staub <[email protected]>
Co-authored-by: Jack Wilsdon <[email protected]>
Co-authored-by: Giuseppe499 <[email protected]>
Co-authored-by: GatCode <[email protected]>
Co-authored-by: BIGTREETECH <[email protected]>
Co-authored-by: Nick <[email protected]>
Co-authored-by: Mathew Winters <[email protected]>
Co-authored-by: Mrnt <[email protected]>
Co-authored-by: Jelmer van der Stel <[email protected]>
Co-authored-by: Mark <[email protected]>
Co-authored-by: Fredrik Andersson <[email protected]>
Co-authored-by: Serhiy-K <[email protected]>
Co-authored-by: Oleg Belov <[email protected]>
Co-authored-by: Robby Candra <[email protected]>
Co-authored-by: David Forrest <[email protected]>
Co-authored-by: Manianac <[email protected]>
Co-authored-by: grauerfuchs <[email protected]>
Co-authored-by: Jon <[email protected]>
Co-authored-by: aegelsky <[email protected]>
Co-authored-by: Giuliano Zaro <[email protected]>
Co-authored-by: Moritz Wirger <[email protected]>
Co-authored-by: Christian Piper <[email protected]>
Co-authored-by: stream2me <[email protected]>
Co-authored-by: LPRtypeCN <[email protected]>
Co-authored-by: Roxy-3D <[email protected]>
Co-authored-by: Dominic <[email protected]>
Co-authored-by: Marcio T <[email protected]>
Co-authored-by: Oliver Jean Eifler <[email protected]>
Co-authored-by: Ivan Kravets <[email protected]>
Co-authored-by: Arthur Masson <[email protected]>
danmattsson added a commit to danmattsson/Marlin that referenced this pull request Jun 1, 2022
commit 30a7c4ca52db1a46460666bed5c0aa30cdf2e2b5
Author: thinkyhead <[email protected]>
Date:   Wed Jun 1 00:25:07 2022 +0000

    [cron] Bump distribution date (2022-06-01)

commit 85c0875db28477d7ed6515c39376b93407353b27
Author: John Robertson <[email protected]>
Date:   Tue May 31 23:09:44 2022 +0100

    ✨ Laser Safety Timeout (#24189)

commit 6f3d7d864fe930517f5b0d81875a38fd1eafaad8
Author: Keith Bennett <[email protected]>
Date:   Tue May 31 14:28:01 2022 -0700

    👔 Configs required to submit a Bug Report (#24256)

commit 3d70aca6e8c88ae8ab7a5d05c3cade0c6c760e7d
Author: thinkyhead <[email protected]>
Date:   Tue May 31 18:24:10 2022 +0000

    [cron] Bump distribution date (2022-05-31)

commit 58ce5182c2ea93e79ccaef4c912c68aa554e637e
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 12:43:44 2022 -0500

    🎨 Fix spelling, whitespace

commit 7dd34848b6244ac72771080706716dee57894eb5
Author: ellensp <[email protected]>
Date:   Wed Jun 1 05:21:59 2022 +1200

    🩹 Fix EXTRUDERS 0 manual move compile (#24255)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 1a555b381235878650cb2e9c6e74db5254bbff68
Author: kisslorand <[email protected]>
Date:   Tue May 31 20:05:57 2022 +0300

    Fix axis string 'N' (#24259)

    Followup to 167672d

commit ea7bebb56887491d9c6b2a2ba2c2aee98dabc3e5
Author: tombrazier <[email protected]>
Date:   Tue May 31 18:01:59 2022 +0100

    💥 More M306 M => M306 H (#24258)

    Followup to #24253

commit 68a7a3f88f93326bd4b904b0c8c7e0ebc7e63082
Author: thinkyhead <[email protected]>
Date:   Sun May 29 00:21:51 2022 +0000

    [cron] Bump distribution date (2022-05-29)

commit 6ecf52f196d08d399c24b1516fc0b33b227ed66c
Author: tombrazier <[email protected]>
Date:   Sat May 28 23:40:08 2022 +0100

    🚩 MPC update (#24253)

commit eec9c800c9e82eb36b566ea6aca7cf7c1483a4bf
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat May 28 17:34:36 2022 -0500

    🚸 Fix, improve, update ProUI (#24251)

commit 41a469208afd14e3f804039291e0f2437b44aefc
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 17:05:09 2022 -0500

    🚸 Change M201 G to S

commit a59766195cd19e6cded497499044bed76137d8ea
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 15:24:09 2022 -0500

    🎨 Use pos.set method

commit 2b4a89eafe50322d276a6104374e797c00cedfac
Author: elimisback <[email protected]>
Date:   Sat May 28 16:22:59 2022 -0400

    🔨 BTT STM32G0B1RE xfer build (#24245)

commit 26f5c32872d39e9ce2595edc368bc463522fd5ac
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 14:41:50 2022 -0500

    🎨  Misc. boards/pins cleanup

commit 21d2d22a6fd334934d5663f53e80a9e7bf9f4530
Author: thinkyhead <[email protected]>
Date:   Sat May 28 00:22:28 2022 +0000

    [cron] Bump distribution date (2022-05-28)

commit 4407ff31ec86f54dff543560b40622ffc5b2beaa
Author: Simon Pilepich <[email protected]>
Date:   Sat May 28 08:08:24 2022 +1000

    📝 Fix Mightyboard MOSFET comments (#24183)

commit 1f322b565f409ab5068e225a4d9a929907c966f1
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:31:05 2022 -0500

    ♻️ More updates for multi-axis

commit 1d4f928342a104ba97538ab68697f83c00c05a69
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ff201e6552d319134f70cce0588fd6b12e2c1252
Author: thinkyhead <[email protected]>
Date:   Fri May 27 00:24:11 2022 +0000

    [cron] Bump distribution date (2022-05-27)

commit 460e2436935e65ddbd32d6342063cbab5eab2d38
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit 740f652b6ae77c0bb87bbc5d52ce0465989e678f
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 54c9358964a71e28dcff0f5f64055b07333757c4
Author: thinkyhead <[email protected]>
Date:   Wed May 25 00:24:56 2022 +0000

    [cron] Bump distribution date (2022-05-25)

commit e197695f4caaa24dd30f91bf1563a0ed177e3e8d
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit eb0c4682d5e89b07038fa98346db1ab68c7ddc1a
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 0da862fd1e78559ec31d5bd03c4c1db65c53cd26
Author: thinkyhead <[email protected]>
Date:   Tue May 24 06:07:20 2022 +0000

    [cron] Bump distribution date (2022-05-24)

commit 0a8672ae6c070e68864d04f7b623cf537a67707e
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 22:03:59 2022 -0500

    👔 Move actions to default branch

commit 31413a7d773e384753dd889ca2f5dcd8aa1fdeca
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 21:59:36 2022 -0500

    🧑‍💻 Combined axis strings

commit 639b1f64c64c581f67c5133f5d13144eccfb90bd
Author: ellensp <[email protected]>
Date:   Mon May 23 19:39:50 2022 +1200

    Revert "Firmware upload…" (#24229)

commit 7d9bd3a97cc15bab0de9813a19eb44c47b3043da
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit f26b8bf8efd16cc2412880f0976645a8e4cb7b89
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit c1ff38c7a0d2d578638324212677d2e855fb190f
Author: ellensp <[email protected]>
Date:   Mon May 23 14:19:10 2022 +1200

    🚸 Firmware upload destination prompt (using Tk) (#24074)

commit 15b6159f6af740f17db2dc8815697759c714cc12
Author: Robby Candra <[email protected]>
Date:   Mon May 23 09:13:17 2022 +0700

    🩹 Adjust manage_media for slow/late media init (USB FD) (#24015)

commit 04d0d9431be774d4e7801498a12e31d4d3060d91
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 20:44:43 2022 -0500

    ♻️ Watchdog followup

    Followup to 52eefa90e1

commit a5e1d4c50ae40c8203d8490be83ef86e16ebf1c2
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 19:56:46 2022 -0500

    ♻️ Apply F() to more LCD code (#24228)

commit e88fabafc8b2650aba43f7c57ecff536d8351e4b
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit c6b5bf7c00a949512317cb0d96909d3a0082bebd
Author: InsanityAutomation <[email protected]>
Date:   Sun May 22 18:47:30 2022 -0400

    🚨 Fix build warnings on Lulzbot Taz (#24227)

commit 167672dcd760fcfa7124eecb77ccdbedd3d99948
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 17:45:07 2022 -0500

    🧑‍💻 Forward-compatible axis strings

commit a93146b71d723e6cd0520fc0b0c75752d59d190f
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit d99185be24e035d6370c8f36851e09917d7fe342
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 14:32:16 2022 -0700

    🎨 Fix/adjust warnings (#24225)

commit c5126de559719ebdaf4475b0db4ab21c26b90a1a
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:08:29 2022 -0500

    🧑‍💻 MAP macro for axis lists, etc. (#24191)

commit c16ae2451d83518fc43da17bc09527ab71372384
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit e340a61e5226f4a93ec9ad0e5d6feeea452b90a2
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit af59056c0904dfc95c870b905ada0ebb6dc9b05e
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 4b0b6e22a7b0050b696e8b4a15f94a8483bcb976
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 2bb9e0d58e6513b47f90e729876de98ac7ccdade
Author: Scott Lahteine <[email protected]>
Date:   Fri May 20 11:27:09 2022 -0500

    🔧 Remove LCD_SERIAL_PORT defaults, warn on auto-assign (#24170)

commit 52eefa90e1c18616f127cdf43798907880e05ee5
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 11:36:13 2022 -0500

    ♻️ Move watchdog to MarlinHAL

commit 12da2e92882a67d29456f02882ff1ee747191939
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 22c5bd7eae574d5efdceafb69a55fbe20d134338
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 62057d3204c727fdf5c2c5e9f112e0c597e60924
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 00075990d062088f1a291f0546295c1d36821c63
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 6a880280e4c7e7ed6ebc72d9b446017bd7db3702
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit b523ddf1b2820488c6cc46887ee85e8a781ce726
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit c814fe98d7e250692908af03836a7c362a5ce843
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit a65e4edb1c794dcd22980f3cce9bf2993da1514b
Author: Miguel Risco-Castillo <[email protected]>
Date:   Tue May 17 15:44:30 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 310ff2367690a9b3c40cec756f193add76900fe3
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🎨 Misc. E3V2 DWIN cleanup

commit 7894cd9d6a108653f77ccb59de389b53405af1eb
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0b787e8ed3d1743728eff28ccbb247cbb3101f04
Author: thinkyhead <[email protected]>
Date:   Tue May 17 06:00:50 2022 +0000

    [cron] Bump distribution date (2022-05-17)

commit 79789571bc6141e8889e6aa062a8103a6892e680
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit e092a02d77c83a3d44e2d0e3ea66a801ea5c3cc5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit 66d94aad21018bb082d85579d775430514c957eb
Author: thinkyhead <[email protected]>
Date:   Sun May 15 00:01:54 2022 +0000

    [cron] Bump distribution date (2022-05-15)

commit 86fe4fde4002fbdf24d128aac51fb9f8b551a60e
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 956f7d32fbd74845b4d64a416460bdc6f25ed118
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit be0f1088f0f537be5e75af5e0a63a0c110b96efa
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 66e32cb0fa1ed6cfae482bec31dfbb834340a408
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a62dc7c70c8869083c407b758d3c8a4edb115add
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 0e4348c718a44eb32ba70c5253daae93197b10b7
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1397cf0eaa66424caf5c54adcb8ee42f93db1619
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit eb352b11b9653150e902e9b664dda83618c056cc
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 6c2249451e006d957275899bd707946d77465b20
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:06:25 2022 -0500

    [cron] Bump distribution date (2022-05-14)

commit a7ade2d63e1fb7fe0740f5a07958611ffc796ae8
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit c1b53d63fc5a7fa5f17e5459e632cd8e7a0fd5ec
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit e438c77c6a5bb59966d39a6ea6aa7703ec4131a3
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit 8ccc601218d96f6735d69719afce2cfc2551dbfc
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit b934a4c612a09cfd577e3811df01e8a2fdbb81dd
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 23:40:56 2022 -0500

    🩹 Fix printer_busy, M73

    Followup to "Misc. LCD cleanup"

commit cb31a9931938a65f2ac5022e06ddd044d464f78d
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 23:29:29 2022 -0500

    ✏️ Fix MSG_LOCKSCREEN

commit ecc138fc9e15b0805448dcf58a0e7c753bdbe098
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 1e749e4f48f528179213e736c99371843a90b4fb
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 38f4d8abfcc89d188674ec3b809102995efc9436
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit e039d51d183314a1cfb1b2b088e5edfe4af054ea
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d1e9f53cb80e110a980b77e1a352935318d5bc19
Author: thinkyhead <[email protected]>
Date:   Fri May 13 00:01:33 2022 +0000

    [cron] Bump distribution date (2022-05-13)

commit 64ebb78892026e22996dca50af1480232f915dac
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f1ab24d0ae2aa226235755be2345a677103952aa
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit 84b9de9a19554275ad3a4ea5b10c02353bada43f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit 30eb2aa869afb218394b98f747b09fe9b40d1aea
Author: thinkyhead <[email protected]>
Date:   Thu May 12 06:00:54 2022 +0000

    [cron] Bump distribution date (2022-05-12)

commit 672d0d444821408f3f76af70ed5f2c806cc92ea6
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:37:40 2022 -0500

    📝 Refer to 'PROGMEM' as 'flash'

commit 04fe50936e23a8aca7a400591e700c1220f68b3f
Author: Pauli Jokela <[email protected]>
Date:   Thu May 12 05:23:16 2022 +0300

    ✨ SOUND_ON_DEFAULT option (#24102)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 11c701af9b03280f43ea261bc0cd9111700266ad
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 20:44:11 2022 -0500

    ✏️ Maple warning followup

    Followup to #23661

commit ba95e85e5363258604cdb03adacf67ab2aace41b
Author: thinkyhead <[email protected]>
Date:   Tue May 10 00:01:50 2022 +0000

    [cron] Bump distribution date (2022-05-10)

commit 918a9cf3d1c613e59dca5c59b567af86a5a3c8c9
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit 8e24b34160e462fc8f3cff30cdb28e5cbdb2457d
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit 9d32bc31535eea64f78021cbe82316db492fee8d
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 3bf768f925b83705be69728fe0d87ef9f2b09ccf
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 726a38712e17f1f31436d033d0597237c086d309
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 4a17589496d1499c52ebcb24bdc9063e2485a653
Author: thinkyhead <[email protected]>
Date:   Sun May 8 06:01:02 2022 +0000

    [cron] Bump distribution date (2022-05-08)

commit 198ef1e474276afb0a712cf2ec7dc7bf06b0898d
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 22:02:18 2022 -0500

    🎨 Misc. code cleanup

commit 9e43ec9dcdcda708f3c24428e8089f9c0809199f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit 1a9e8c047b6ce512a6462ac0681028cafe3242fa
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit e43f4207a006e93d0def10ffa0d4793334dc70b7
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 5f4ec825448cd5c9a7a03d3292b3d4a74377bba2
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 2a88cc0fcdec3f728784526e9e0c531a3e743286
Author: thinkyhead <[email protected]>
Date:   Sat May 7 00:01:30 2022 +0000

    [cron] Bump distribution date (2022-05-07)

commit 505ab1bb62033d08e94ae15b515beefec343177a
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 659b4172aa49d82e54a08b5ed674b3ba4ad51fb0
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit a5b57a09fdc29959299eae6d19fa1859891974e3
Author: thinkyhead <[email protected]>
Date:   Fri May 6 00:01:36 2022 +0000

    [cron] Bump distribution date (2022-05-06)

commit 6e902727830e217b32f349c8c974220d2df9d7d9
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 14:57:29 2022 -0500

    🩹 Bring G425 report up to date

    Followup to #23112

commit 9d6b4a2e97a214beeca7fb9e1d6cbd87ff3948e1
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit 3cea0a00b102096318f44d3ba8ede29d7f14ab8b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 81a6834876cf30b73e38683ec12603a11f45a4c1
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit df40181357b08761766067ef5012b2b3d0e34d3e
Author: Keith Bennett <[email protected]>
Date:   Wed May 4 17:25:02 2022 -0700

    💥 Num Axes and Multi-Stepper based on Driver Types (#24120)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 6237a6a6d31710955467df703b8f487dd1a6675a
Author: thinkyhead <[email protected]>
Date:   Thu May 5 00:12:10 2022 +0000

    [cron] Bump distribution date (2022-05-05)

commit 23a26e4033763b4c7b8763fd420211423e558d08
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit 492d91791c5effa894d22977ff5032bed7856877
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:24:15 2022 -0500

    💚 Lock CI testing to PlatformIO 5.2.5

commit 0a6c58ea71b556da6f1a0d133f46c1eeee67ac00
Author: thinkyhead <[email protected]>
Date:   Wed May 4 18:13:21 2022 +0000

    [cron] Bump distribution date (2022-05-04)

commit 4c8c02f66ff501fdf84082f9b89a9cc04be626d3
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit b038078541251aa33c6220b9b8370a37ca558ef4
Author: thinkyhead <[email protected]>
Date:   Tue May 3 00:01:42 2022 +0000

    [cron] Bump distribution date (2022-05-03)

commit 43b43491ab87169518172995a5cd698be453420e
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit a1d4942f760fa1d589af11d378a938fba6f45cd2
Author: thinkyhead <[email protected]>
Date:   Sun May 1 00:01:58 2022 +0000

    [cron] Bump distribution date (2022-05-01)

commit 3bcbd3259f8d1ff3fc262b2ede83efd873863d5f
Author: Keith Bennett <[email protected]>
Date:   Fri Apr 29 22:54:42 2022 -0700

    🔧 Mini LCD followup (#24111)

commit 60f8287208006a64afa32d98634b3f056c33e5e4
Author: thinkyhead <[email protected]>
Date:   Sat Apr 30 00:02:33 2022 +0000

    [cron] Bump distribution date (2022-04-30)

commit b37d13af7278c241064b61279e7e8538a03206a3
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    🔧 Base NUM_AXES on defined DRIVER_TYPEs (#24106)

commit 12eb1e0829e5c4625d8ecddfd3bdea8f7e2ccc9f
Author: Keith Bennett <[email protected]>
Date:   Fri Apr 29 13:19:38 2022 -0700

    📝 Update NEOPIXEL_TYPE comment (#24110)

commit 5c47476e0c961401c55a97e4b1cc146150221c60
Author: thinkyhead <[email protected]>
Date:   Fri Apr 29 18:14:41 2022 +0000

    [cron] Bump distribution date (2022-04-29)

commit 60b6df4542d78e8263f75a989c77c2f386a894fc
Author: tombrazier <[email protected]>
Date:   Fri Apr 29 18:54:57 2022 +0100

    🐛 Fix kinetic ABL mesh after refactor (#24107)

    Followup to #23868

commit e633ef895db41799606c396855de076e21c66b20
Author: thinkyhead <[email protected]>
Date:   Tue Apr 26 06:00:51 2022 +0000

    [cron] Bump distribution date (2022-04-26)

commit a0a963fe1d989c7ef04b9f5f42dc42590bff1203
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit a8419738bee99a6945116c99c43801b8a114fc8d
Author: thinkyhead <[email protected]>
Date:   Sun Apr 24 00:01:59 2022 +0000

    [cron] Bump distribution date (2022-04-24)

commit 7501d253c7814fa5a4105e6c747b48428c6c168c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format

commit d9ccf0a1445bcfa5c9eca40f2809f98fbf29e871
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit bd27490adb047701cbca2314817cd2e501483853
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit ac4fefa49a34ca299816419cc76715dd7fc9af62
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 6a05702c2048bcfac1acd5203013de612990404d
Author: ellensp <[email protected]>
Date:   Sat Apr 23 21:16:15 2022 +1200

    🐛 Fix BACKLASH_COMPENSATION compile (#24072)

    Followup to #23826

commit 9188f57938c4d7f901eed9f76ee065cbef096288
Author: thinkyhead <[email protected]>
Date:   Sat Apr 23 00:01:45 2022 +0000

    [cron] Bump distribution date (2022-04-23)

commit 1a131d17b6996268d20949f303daaab7c16a90bb
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 4a73fa18d8d6b7b8909fad8a84dfe90cf8fefab1
Author: Mateusz Kleina <[email protected]>
Date:   Fri Apr 22 12:12:39 2022 +0200

    🐛 Fix ProUI / JyersUI leveling preheat (#24064)

    Co-authored-by: Scott Lahteine <[email protected]>

commit fe745fdef051e5c0cce4368d5a3f2a95140f57a5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 5b2071448f2e88de54f5f3590b3c034fb5307606
Author: tombrazier <[email protected]>
Date:   Fri Apr 22 07:50:38 2022 +0100

    🩹 Fix MPC Edit Menu (#24059)

    Followup to #23984

    Co-authored-by: Scott Lahteine <[email protected]>

commit 633fb5f941e375ec1444f2ae2afbc91000875b93
Author: thinkyhead <[email protected]>
Date:   Fri Apr 22 00:01:30 2022 +0000

    [cron] Bump distribution date (2022-04-22)

commit 741eb0c3e9e9a1c480ee49f85a071d38171e40c1
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit bf38ef23e50677a5fe949e74131e9377bc3f743a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit 91cf4eb977ff2ce04e7703f8b1599e68e71f7e46
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit 01bb11b415d976e57878f75d7ec44675b529a29c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 0ff3035f3a45c6a818e6ca0dd6f82b6a47e6b78d
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 2dcfa140e9bcce81fd383b6401965aeaa04fdaf9
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit 367c11dfa2be8531e6fda660be8110db159cb6ba
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit d507ea117e6d943f1fc708bf58f48487e367cd95
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit 3905234b0d4a8543614e1e76b537350ca4976f11
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 6fc284231c2f07651340f07ef16af35a3c774b10
Author: thinkyhead <[email protected]>
Date:   Thu Apr 21 00:06:20 2022 +0000

    [cron] Bump distribution date (2022-04-21)

commit a0d28f1770870a90be5c7887d7bfc4b34db5d5d2
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 04:29:39 2022 -0500

    🎨 Minimize block->steps.set

commit aca0d3dba592c19c534117e2ba94fce096784ba1
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 04:29:21 2022 -0500

    💚 Use PIO-develop for CI

commit d4fd39f05fe9ac17f987eda2f6f5996fbfb8947e
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 42be79b3a2f4ccbaf244cf659eb7da83e118e8a0
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix JyersUI Preheat Items (#24060)

commit 5844128a77727c189c6a120cd87b1f148d533937
Author: thinkyhead <[email protected]>
Date:   Wed Apr 20 00:01:47 2022 +0000

    [cron] Bump distribution date (2022-04-20)

commit 8aaf64d9172bacff2231823ccedbe27a1a968d45
Author: DerAndere <[email protected]>
Date:   Tue Apr 19 05:15:15 2022 +0200

    💥 Update Motor Current G-codes for extra axes (#23975)

commit 5005c7b64c1763eca767ad476f404301d6ef754a
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit bb5dbd13a815205c6d23616cd6c4ebf360b9be6a
Author: thinkyhead <[email protected]>
Date:   Tue Apr 19 00:01:38 2022 +0000

    [cron] Bump distribution date (2022-04-19)

commit 696ae3cc14b659f3ff9151c465d06b6ee3cf26c8
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit 9d623160a60edc15a95014559787d43dd7652f4d
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 3d3898145ab501792a731cfeec7b859aa7a2dda7
Author: Ludy <[email protected]>
Date:   Mon Apr 18 11:43:34 2022 +0200

    🌐 Update German language, FTDI cleanup (#24047)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 3b3dbcbeb405801cb2175100c388345ba716a594
Author: thinkyhead <[email protected]>
Date:   Mon Apr 18 06:00:58 2022 +0000

    [cron] Bump distribution date (2022-04-18)

commit fc87834cc03a0d4ee77b9156570dbd14742f54af
Author: Ludy <[email protected]>
Date:   Mon Apr 18 07:01:28 2022 +0200

    🐛 Fix FTDI::get_utf8_char_and_inc compile (#24048)

commit c58c5b09ab48b059607b4146e162cc0babd60e62
Author: John Lagonikas <[email protected]>
Date:   Mon Apr 18 07:56:52 2022 +0300

    🐛 Fix MPC compile (#24049)

    Followup to #23984, #23751

    Co-authored-by: Scott Lahteine <[email protected]>

commit 2ee39b62f33027f49fc1c62a05379a37fc52077c
Author: DerAndere <[email protected]>
Date:   Mon Apr 18 06:03:39 2022 +0200

    🩹 Fix some parameters w/out values (#24051)

commit fd082df077aead6e567201d6289c020e69a87011
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:19:50 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit aaf5bf0218a3c20d27a9aeab064b0a6090052b1f
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:19:33 2022 -0500

    🧑‍💻 Add RESET_STEPPERS_ON_MEDIA_INSERT flag

commit fb54d06582aaea77b86721b39e6f07317ecf12a4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🎨 Flatten manage_media code

commit 5eeb6e0bcafe21d6d7169cf5c1689b199909aed7
Author: thinkyhead <[email protected]>
Date:   Sat Apr 16 00:02:34 2022 +0000

    [cron] Bump distribution date (2022-04-16)

commit b0e974e208316d86e5b8030e4e92c7af5c5d72f1
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit d6cc851c67525bdecfc9d7db2802b83f897cac2c
Author: thinkyhead <[email protected]>
Date:   Fri Apr 15 06:03:40 2022 +0000

    [cron] Bump distribution date (2022-04-15)

commit 14603112a465d4b510c953678293703b9aead3ed
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 15 06:22:08 2022 +0200

    🩹 Fix MPC_EDIT_DEFS (#24018)

commit a52dfc0373b2a1c9a2a264597ad13a25724ae10d
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 3e1dd0d64019e11b5f3e1d19450fa3fa0bcc8eb7
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit 2e121014b0a33ab54bc91fe3166e1c8da5c8da18
Author: ellensp <[email protected]>
Date:   Fri Apr 15 14:38:27 2022 +1200

    ✏️ Fix 9-axis Z axis typo (#24036)

    Followup to #23112

commit cbf8622670a20f967106d2dccd380cc25763c64b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 80810f1b187661860a2ded43e2a0c4cc356edebe
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 17:49:54 2022 -0600

    🚨 Fix some compiler warnings

commit 29d3f6a024672a960f7e033e360178f4e80ce98b
Author: thinkyhead <[email protected]>
Date:   Tue Apr 12 00:01:44 2022 +0000

    [cron] Bump distribution date (2022-04-12)

commit 80d09044f7838ae11c97b03f465bd92558fc2c24
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 11c41600a33e803080bdf614f6a7450dd5b4d301
Author: thinkyhead <[email protected]>
Date:   Mon Apr 11 00:01:51 2022 +0000

    [cron] Bump distribution date (2022-04-11)

commit 416fb66118ed7101de7b0820f20be1e9f011200d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 2af765721484d5ffe9ab1cfbd09321b59be39b02
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit f31d3c67496ff0ea3937a727539db12be4ee4675
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit c53af0df0b7bb2059e101c1e386cd4f4bfb4c724
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit cec7836959ab13908cbf469b485b219e52323576
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (#24014)

commit e4a8c693b0b3f0659ac2c324a9b60e6a93bd766e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 7ff5e02f6ba91c675257a26e7bc35540c131941d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit f7cb1ce3f41e48e48edcb5301da2c2ae247014e4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:17:53 2022 -0500

    🩹 Fix PID helper functions

commit 577831bf1a412a617b04a58551223903ff0a932f
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit 6cb1a4a48b4e920bd2e88707384ddc9c569588a9
Author: thinkyhead <[email protected]>
Date:   Sun Apr 10 06:25:51 2022 +0000

    [cron] Bump distribution date (2022-04-10)

commit 3da29b4a04691d4e8dc8691b006cf51c0bf46fc9
Author: tombrazier <[email protected]>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (#23984)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 6ee34331b7a0e5ea82768f4df5f3956ce5322742
Author: Robert Brenckman <[email protected]>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (#21142)

    Co-authored-by: Scott Lahteine <[email protected]>

commit e2353be24f2c7914c51441c2135cf2eb4cb1262d
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 9 22:52:36 2022 -0500

    🎨 Misc. cleanup, string optimization

commit 46e282bd6dd0b5e9125aae396addf48c934396d0
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 6fa930f04378283e8d5af9e3190508ae07a83860
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit b19f745659b4799deb2252c933b039b892b187bd
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:39:04 2022 +0700

    ♻️ Bilinear refactor followup (#24009)

    Followup to #23868

commit febf7e54fea915f23452585e216e44146450fc24
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 88f36ac82fcaf9d7d77435094cc4545f94ed186f
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011)

commit 02f5e2de9c180926a360ad6628387fbe7668dbee
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#24013)

commit 6567e0e0aa0dc429dcfc65870a7471b55c63f506
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 9 19:17:04 2022 -0500

    🎨 Misc. 9-axis cleanup

commit fc50018b06285bc5c28288530df38f1d6724eaa0
Author: thinkyhead <[email protected]>
Date:   Tue Apr 5 00:01:35 2022 +0000

    [cron] Bump distribution date (2022-04-05)

commit 32e6767b5acfc57ced0a58c269ff5ae1d6f5cfd2
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (#23992)

    Co-authored-by: borland1 <[email protected]>

commit f22307a0af5bcb6b144e39a8fbf18a27d9a074a6
Author: DerAndere <[email protected]>
Date:   Mon Apr 4 04:43:42 2022 +0200

    🚸 Better M350, M114 with more axes (#23986)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 877e10205b286a6c1b8da869c54b50db866c1db8
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:13:11 2022 -0500

    🏗️ Axis name arrays

    Co-Authored-By: DerAndere <[email protected]>

commit 8b8defeacc5f7ba2bac63baf65c1d3b1ef60177c
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:52:27 2022 -0500

    🏗️ Extend AXIS_CHAR to include E

    Co-Authored-By: DerAndere <[email protected]>

commit f5daefb09d1fdf3fc931e2ce84a28d4af1ba2bea
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:34:48 2022 -0500

    🏗️ More 9-axis updates

commit 1fdad42c5f396bc048a2c8b4b5f12c3f236d7a69
Author: thinkyhead <[email protected]>
Date:   Mon Apr 4 00:17:29 2022 +0000

    [cron] Bump distribution date (2022-04-04)

commit 591fa8b7534fd5329b2611a3b400a1c23844ae56
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit f7fff4d455411f639cc05f68b56376d6b1afeea1
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 283aca50ba5e607659701a0ee78eb7dbbb366480
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 1bc9a530bd879677393a1b4c073e5f1c41e1648e
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (#23983)

commit 01797f74dcc7dde30db7e6b9cd121a24ae01b907
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:30:49 2022 -0500

    ✏️  Fix HAS_GCODE_M876

commit ff07c2b37569e9d566d011a1827f65cb89ba7e95
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 90289b0ca0577a4676896b369222bc8c00f31d8e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 19838d97be0d9ae22efa9d51a412bb1ac0bf056b
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit c4873a64ecd54dc0bbccb1eaeecd1b5ae2f6aef5
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit 7ce4a7f641e09f9cdc23f153b5c3cffe094b96b8
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 4f1967a0a536bcc0bfb18e8a35df31c8fc4e21ef
Author: thinkyhead <[email protected]>
Date:   Sun Apr 3 00:46:28 2022 +0000

    [cron] Bump distribution date (2022-04-03)

commit e4c7c550fcb3a69b2d89f718b23166fcad4d0f15
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit d98c61cafba1df39316f90af21b99d6c7183f58c
Author: thinkyhead <[email protected]>
Date:   Sat Apr 2 00:01:39 2022 +0000

    [cron] Bump distribution date (2022-04-02)

commit 931e24311686a0d4637985f376e9c45a17414d68
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 1 04:57:41 2022 -0500

    Draw flags followup

commit 0c366d35742b9a64e551f608c56bebaa4e4998a5
Author: ellensp <[email protected]>
Date:   Fri Apr 1 21:01:34 2022 +1300

    ✏️ Fix E3V2 MarlinUI draw flags (#23979)

commit 72b2e2b2c7230245dea9fcb46b9b8a92bcb11bcc
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (#23751)

commit 8fb65211fc3bd55db9aac2145d327aad3d5d547d
Author: thinkyhead <[email protected]>
Date:   Fri Apr 1 06:01:01 2022 +0000

    [cron] Bump distribution date (2022-04-01)

commit e5b651f407fcb743e2d00c45b0d361fb98230efb
Author: DerAndere <[email protected]>
Date:   Fri Apr 1 07:10:38 2022 +0200

    ✨ Support for up to 9 axes (linear, rotary) (#23112)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 2786592b62aa0972496f25487ae5358ed2b613be
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 04ab653f5efd5b71c4fab401a8156885cb35d316
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit f15b1c16c9a743e9b4eafaf37c37ab2f919d1fe1
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit c7f03b820aed66e1c91c9fd8f9c2d1645694604f
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit 108cc4ba1621d149ad6a6a073e4a69fd53d2b202
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit ae53033cea506209310fb014b304f3a07c59e9d7
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868)

commit 72a9a02c17e59fa91e8284ca70f8d675498e9f0f
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit 2dbb28f5e47c9f2b4018dc8a0ece064ef62cdd71
Author: thinkyhead <[email protected]>
Date:   Wed Mar 30 00:26:34 2022 +0000

    [cron] Bump distribution date (2022-03-30)

commit 49539463b8ed8b15286014b122f87962b7c0f6f4
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit 6015ee2531269e9382370babba63f883592a416a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit 0752082b85ce94cd81153145d7940fca96b3286a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit d6fcae40c4ded0901aae33f7a1a9d5049ab12b89
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit 4edfb690dd7a3327bb80c1ffe6940b73554d0a53
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:24:15 2022 -0500

    💚 Lock CI testing to PlatformIO 5.2.5

commit 51d4c5abea02764e096e846f7fa2cff93cf75d90
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 0b669067b9e6b19432007fbe0ec22941ae215631
Author: thinkyhead <[email protected]>
Date:   Tue Mar 29 00:31:43 2022 +0000

    [cron] Bump distribution date (2022-03-29)

commit 59f2f4fd47deaea59b7a8f1a43e8a66e05f17ca6
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit bdc2b2b9653aeaef1922176b82a1d99c940cc5e7
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit d806a668e856b1ea91e0c8311bf83e8b330c77d1
Author: thinkyhead <[email protected]>
Date:   Mon Mar 28 00:01:49 2022 +0000

    [cron] Bump distribution date (2022-03-28)

commit d95dca94b9db85fdad3297ff28af6132573c972c
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 26 21:58:19 2022 -0500

    🔨 Update TMC26XStepper link

commit 4a54f8469e66a4f59c6284646885545d52f6e164
Author: thinkyhead <[email protected]>
Date:   Sun Mar 27 00:01:26 2022 +0000

    [cron] Bump distribution date (2022-03-27)

commit 692f42ee7d5773f66c6bb018ae55f3f74c83d5d9
Author: Giuliano Zaro <[email protected]>
Date:   Sun Mar 27 00:22:41 2022 +0100

    ✨ Configurable FREEZE pin state (#23948)

commit 20b5615305639c9e33907a755cee1c22cc5aa664
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944)

    Co-authored-by: Scott Lahteine <[email protected]>

commit b1958a43fc2a4536df7402a5f2420d14dc8fb810
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 959c559c438e0da9e8597f1d4b9c46bdfa5b453e
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 20:54:01 2022 -0500

    🔨 Try out v3 actions

commit f1471c1549f8143b171b7decc7646ba2e09a6aee
Author: ellensp <[email protected]>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (#23943)

    Followup to 89a9c3a391

commit 80c4abc2e1756a01cb18e660d9266eeeebe71d79
Author: thinkyhead <[email protected]>
Date:   Sat Mar 26 00:06:22 2022 +0000

    [cron] Bump distribution date (2022-03-26)

commit b7ffcd6941e8d75fefc5c454ad0e334d554c4cea
Author: Robby Candra <[email protected]>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (#23135)

    Co-authored-by: Scott Lahteine <[email protected]>

commit fd742616ba6fd2db1607df197dea142cbf1a9d3f
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 8dfdf51678a4a3975df8250bedf3489fd4835796
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 4ff063440d5bbf00b43c933caffe83940b58b4f0
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit 6b55eec9bbc72db2777d3ff3577f2bf1ef13a613
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 4a50d89bdb5415403f02c3427fa4ad235fd316d7
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to #23925

commit 867e274172262a8e06088921c909b7ae6135dc4d
Author: thinkyhead <[email protected]>
Date:   Fri Mar 25 00:01:44 2022 +0000

    [cron] Bump distribution date (2022-03-25)

commit d189cda61679369bb029a347afb5a860e18f5224
Author: Oleg Belov <[email protected]>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (#23936)

commit e119d9bae9f07dd5088ff118fac4d090c2b5b28a
Author: Serhiy-K <[email protected]>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (#23935)

commit 0d3f79e6d6a570f87dc19c526324b819af8048a7
Author: ellensp <[email protected]>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (#23931)

commit b44357db9df70559751b31f6a2e7483878253976
Author: thinkyhead <[email protected]>
Date:   Thu Mar 24 00:01:46 2022 +0000

    [cron] Bump distribution date (2022-03-24)

commit 0b32c3900f68895d8a454d164e225dbcea608a83
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 6b47db3a68668022aa096d6983c89df3f926dc30
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit a80a303cbe057b02e8d9cd29bc94c161e48784f1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit 8ba6e8a74d1ddd963881dcd77e26a5dc0a7b6096
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit e458aa41fcbc817a21a0376e5dc36c0a0b755c47
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit a63205a034180fdc515818ce8bad789b82da9d01
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 92d3a038c20747999a402924640f7d0c4ef377f8
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit 258a2ed112da097969d36187b53805df7f98a3ec
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 98dcb9e614a4cc81d7f33d91f02de1d55bc7b3e6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit de8e4361104c31cab943cc321e2055c18272edd6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 58fcaebe76eabacbe79af3d26661ee1c33146bf2
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit c47c52c146a920f82d7b78e4782c8ce1d715e054
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit d3e3e6a4917969eba85f88e5de0366cc9a2eb4f1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit ef07c2c8dd431ce4976eba44143cb3686bdc0bf7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit e183e3814dd455869ee9dc4f09ff3721aed93333
Author: thinkyhead <[email protected]>
Date:   Wed Mar 23 00:01:36 2022 +0000

    [cron] Bump distribution date (2022-03-23)

commit 2baf49af93a3bf69be0b77d3a92ee022cd5bfe41
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 10ce88f810f08675140edb6cf248c87ee549855e
Author: thinkyhead <[email protected]>
Date:   Mon Mar 21 06:00:58 2022 +0000

    [cron] Bump distribution date (2022-03-21)

commit a8cf2909f79105bfafce207cd3b914e63f5c8545
Author: Fredrik Andersson <[email protected]>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (#23925)

commit 032e5c99369a5d70f9ce1828fb78f2bbd5a6c2a1
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 20 19:12:19 2022 -0500

    ✏️ Misc. cleanup
talldonkey added a commit to talldonkey/Marlin-2.0-Ender-3-SKR-1.3 that referenced this pull request Jun 5, 2022
commit 959a6c4f7037345dd6f2bf5abe3c376981988aed
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 18:44:57 2022 -0500

    🔖 Marlin 2.1

commit a0248c20f94fea27c906471f87e0f419473103ab
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 18:16:43 2022 -0500

    🔧 LEVEL_BED_CORNERS => LCD_BED_TRAMMING

commit 9e31b0b611e78ec5cfc8496c6dbec2d17ca1778c
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 12:43:44 2022 -0500

    🎨 Fix spelling, whitespace

commit 15dea99025aa7617cf46f27eafaf08c112900275
Author: ellensp <[email protected]>
Date:   Wed Jun 1 05:21:59 2022 +1200

    🩹 Fix EXTRUDERS 0 manual move compile (#24255)

commit 1d037f18c792f64752c7b0e9ad292fbc18dcd27f
Author: tombrazier <[email protected]>
Date:   Tue May 31 18:01:59 2022 +0100

    💥 More M306 M => M306 H (#24258)

    Followup to #24253

commit e9a2955030f9ab7b153e5264b476a652f971e3f5
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat May 28 17:34:36 2022 -0500

    🚸 Fix, improve, update ProUI (#24251)

commit 1e76266666a71eb3583f848aa01676b1b83fe01f
Author: elimisback <[email protected]>
Date:   Sat May 28 16:22:59 2022 -0400

    🔨 BTT STM32G0B1RE xfer build (#24245)

commit d6417ff0d5c9a992c5b57e3370eb26f511890aee
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:31:05 2022 -0500

    ♻️ More updates for multi-axis

commit 5f481ca16cef1bfff5894ab5287b1ea45adad89a
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 21:59:36 2022 -0500

    🧑‍💻 Combined axis strings

commit a8cd64ba5f0d440460eda00c808936de52d49347
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 17:45:07 2022 -0500

    🧑‍💻 Forward-compatible axis strings (167672d, #24259)

commit 1e6770939841a49e190857f00b18c7bb44aa2368
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 14:32:16 2022 -0700

    🎨 Fix/adjust warnings (#24225)

commit 93c74d17d5fdf76e4b1939c11db2698dce0fdea5
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:08:29 2022 -0500

    🧑‍💻 MAP macro for axis lists, etc. (#24191)

commit a2cf60f45f3ecefe8725daaff50577f60dd3b22d
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    💥 Num Axes / Multi-Stepper based on Driver Types (#24106, #24120)

commit 89ad60cf8faf58a280b78a4dedb0e0aa223e0a1d
Author: DerAndere <[email protected]>
Date:   Mon Apr 18 06:03:39 2022 +0200

    🩹 Fix some parameters w/out values (#24051)

commit 5d600ea34962fe8a2bcfea9e075160ff5fa358fc
Author: DerAndere <[email protected]>
Date:   Mon Apr 4 04:43:42 2022 +0200

    🚸 Better M350, M114 with more axes (#23986)

commit 463cc68301709420b9cd3af5c146c84e1a850753
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 17:49:54 2022 -0600

    🚨 Fix some compiler warnings

commit 5c667ef67ab696c99cffa019851a95c412ca7baa
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:13:11 2022 -0500

    🏗️ Axis name arrays

    Co-Authored-By: DerAndere <[email protected]>

commit f44edb4372ca8daa534315e7f7e61650f2d96197
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:52:27 2022 -0500

    🏗️ Extend AXIS_CHAR to include E

    Co-Authored-By: DerAndere <[email protected]>

commit a21ab5d1193fc6d63c9dac3daad9ba868ec0014a
Author: DerAndere <[email protected]>
Date:   Tue Apr 19 05:15:15 2022 +0200

    💥 Update Motor Current G-codes for extra axes (#23975)

commit 63b59c2dd5b9d33d0d6377596770ccb72e52232b
Author: ellensp <[email protected]>
Date:   Sat Apr 23 21:16:15 2022 +1200

    🐛 Fix BACKLASH_COMPENSATION compile (#24072)

    Followup to #23826

commit 0a23f2e7fdda782826bd41f4545c52ce89a1a0f8
Author: DerAndere <[email protected]>
Date:   Fri Apr 1 07:10:38 2022 +0200

    ✨ Support for up to 9 axes (#23112, #24036, #24231)

commit 04983e63351489f80e3365780802f1dbec44b880
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:23:43 2022 -0500

    🔖 Marlin 2.0.9.4

commit 1e127a93c4c1446cf11aacecc9597a7355262ac8
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:15:23 2022 -0500

    🧑‍💻 Extend LCD string substitution (#24278)

commit fcef8d946cbd45e27ba9888f1e18327b68d52b00
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 0253500ccd5a7192f3e545cb5552c4ab7b309c5d
Author: Tanguy Pruvot <[email protected]>
Date:   Wed May 25 08:07:11 2022 +0200

    Use default null args in select_screen

commit 0d783a76907ace17f0d61ebe8882ebee9bc6ce3b
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:22:09 2022 +1200

    🐛 Init Stepper SPI before PSU Control (#24269)

commit e784e0413204680f3c8f3a8cdf519fb5bee7a164
Author: BIGTREETECH <[email protected]>
Date:   Thu Jun 2 17:02:06 2022 +0800

    ✨ BigTreeTech SKR3 - STM32H743 (#24271, #24272, #24275)

    Co-Authored-By: Alan.Ma <[email protected]>

commit 11d68e31274fccd20c8bb72eec0b4ad547962823
Author: bryan065 <[email protected]>
Date:   Thu Jun 2 04:51:39 2022 -0400

    🚸 Custom Menu Items for JyersUI (#24270)

commit 8b8b2a7ed35908b6a49d5b3badb230d3283792bb
Author: ledzepman71 <[email protected]>
Date:   Thu Jun 2 02:49:48 2022 -0600

    📌 Tenlog PSU pin (#24266)

commit fc1a620b878b45675b9a7972be6c1fb2882b8092
Author: tombrazier <[email protected]>
Date:   Sat May 28 23:40:08 2022 +0100

    🚩 MPC update (#24253)

commit 9799907dc9a53810e87fd5b54e2194d30e70eff8
Author: Keith Bennett <[email protected]>
Date:   Tue May 31 14:28:01 2022 -0700

    👔 Configs required to submit a Bug Report (#24256)

commit 6fc4dbbbc4b3b1e6820f4f18b81602451bb1786c
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 17:05:09 2022 -0500

    🚸 Change M201 G to S

commit 74596ad4d7f9117e06829b5657d7402f27a445ce
Author: Robby Candra <[email protected]>
Date:   Mon May 23 09:13:17 2022 +0700

    🩹 Adjust manage_media for slow/late media init (USB FD) (#24015)

commit 28f8646aa64b8baf6f93197d04b0802580272e40
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 19:56:46 2022 -0500

    ♻️ Apply F() to more LCD code (#24228)

commit 9a74bcd4cf13efa2d7cfb365182d7e097eaa1f1d
Author: John Robertson <[email protected]>
Date:   Tue May 31 23:09:44 2022 +0100

    ✨ Laser Safety Timeout (#24189)

commit 07cd248b91a59db8e2bc7ad10bbf160852af34fb
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 20:45:37 2022 -0500

    ♻️ Move watchdog to MarlinHAL

commit 209c792ef7e97dc48bf3517c9f8f56e6be80e97f
Author: Scott Lahteine <[email protected]>
Date:   Fri May 20 11:27:09 2022 -0500

    🔧 Remove LCD_SERIAL_PORT defaults, warn on auto-assign (#24170)

commit dbd00d992705a07b3da769549495d6505cb96b43
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (#23992)

    Co-authored-by: borland1 <[email protected]>

commit 4ae54a6229d1704bfc54a85233af40b69e924246
Author: Ludy <[email protected]>
Date:   Mon Apr 18 11:43:34 2022 +0200

    🐛 Update German language, Fix FTDI (#24047, #24048, #24227)

commit ce0af56d0aa4371620b142ba5b2ed3b455813a5d
Author: tombrazier <[email protected]>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (#23984, #24018, #24049, #24059)

commit 6c557a248016f2e89e259d2d5ee8e000521099bb
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (#23983)

commit a6ce9bf559d963c3cdcb6db7f57a572bc58016ea
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (#24014)

commit 21c838cb1b86c3ffd5958c68d82f6c0c25e78dbe
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (#23751)

commit 3443a9e18bf2c9797037f141d68ab409d6b3c00b
Author: Pauli Jokela <[email protected]>
Date:   Thu May 12 05:23:16 2022 +0300

    ✨ SOUND_ON_DEFAULT option (#24102)

commit b2b5b85045e689d311e472d803817e08b49ccaec
Author: Robert Brenckman <[email protected]>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (#21142)

commit 2086cc9f4e21dfc060c1ff034856ad4e6219f5f8
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:37:40 2022 -0500

    📝 Refer to 'PROGMEM' as 'flash'

commit 8eccfd4a6f90da93a4f13b8aa7fbd88a1f8cca46
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:35:38 2022 -0500

    🔧 Bed/Chamber PID Autotune menus

    Derived from MarlinFirmware/Marlin#23983

commit 9ab654adcb15ba23b42ed1f13ca34130e422dbc2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 22:06:32 2022 -0500

    🐛 Fix min/max temp evaluation

    Fixes #24257

commit 0ae982188c23ddab4e3a2d819c679166a7e19532
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 23:19:18 2022 -0500

    🐛 Fix M203 report

commit bed0788f723a0695726eab52e8da0b48298c619f
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit deb1ba73bbdd3aacaeec6c7d9540c41e93ddfdfe
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 15:11:43 2022 -0500

    🎨 Use pos.set method

commit 57f0ac88af9e8c5eb398c8367edf471900a5171f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 14:41:50 2022 -0500

    🎨  Misc. boards/pins cleanup

commit 915bce495cdc5168c982274f6deabc92e052c2c7
Author: Simon Pilepich <[email protected]>
Date:   Sat May 28 08:08:24 2022 +1000

    📝 Fix Mightyboard MOSFET comments (#24183)

commit 800a936caae83f4e5ca5dd2c2660518bd6fc43b2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ccf39b1c42fa787f645fbf0ac075cc47b72b18d3
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit d19179ce281cec58865fcbc99185abeb48a611b9
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 4a6ae1b64df5fa8824e20688399683bf11b840e2
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit 0daaef589c956d152c846760dfc157fdd1b7975b
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 4831cbebd80d6e2c6bcf504446cf6d0f2441c285
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit e0deb75764938995e32bc589d646ec397c4a3019
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0fe4f48956299cb298e6e48255ea72ba93dad79
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 4d65d7f142882bcd77072fc7dc5c01ca937a2e81
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit 1b879f0ee4e5539c237edf235b6ca38b5b2beb43
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit b6abc760cef73a1dfc0e186f40687d0a45c8a769
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 0ae061713c631d44cd12ad266ca9c7fdd856d72c
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 1d12e72bf697f7e3cb63995a20ba9e98fbce3eb9
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit c97cf10956ee33c80e557fb09e4cc75d30a0db82
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit b72f9277e9e89a7dcdc12c8f11273f7c76a064d4
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit 06c4a9acdb3f08a2052ea55d00fa350e9249bcb4
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit 8a301196e11d87d7e9db065d0d802910a664c5be
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 1e7219f4a643f8cbdbcd9685ebb5a76d02c89601
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 02c267f542223ed0d8b098da4bec6f09710d6bc8
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit fe77fc66c0004ba9a4459dd5a12c978dd0308bb1
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit 268a16b1ef1c5cd462e81aef08e4e9f7d2c65658
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 8351b1431f8bad178f2f8a3ec70b32a1d4d7ca2c
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 718806761f1e9d903d61408e2039357bfe46fff8
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit 78c7fedcea34f0c630f8e9fd46bc5d3244de04c5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit c4b8339b842958faae2567c339bcf9b44434a2ce
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 94ed67e36ef84cb4ecd8f3f1470041d4d72f7088
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit 03b819bdb235c6eb2cd0a02b832bb8f108cc5962
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 2204f05dcaabf0e639f1e1722ffd293d4b415fe3
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a13cceaad16dd2caedbf3b05ae0854b1200cb51e
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 5c25ed60c80d7b06cb91e91f98b1aca6bc648d79
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1c516bdd5e71fc3da05fb52da692c9c5ccb0c0d7
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit 425684e2ffecf85dccab1eb4242772bc97992eb8
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 63aecad7eef034d8cb2b3e81f8a22db8a148b90b
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit dcd769b4a18bd40f9664262d081d553994d8eb78
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit f9b7f00d1e1c1004e0c2a9c35e23c1c67dc47172
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit a6ff63d5060c0ef68c2ae9f6ccf3bcada2ec6b6e
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit 7d37ae2b2b1ea6613dbc8be0ec5fa30dbd6a87de
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7d40ec654a3eca783a19e93e7bb6f394f2e6d29
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit 7ed339cfa0a2d8298e0293cf465daaf4ac74c0f9
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit cb4ad020af2f56dc060ecafdfd58b0639a8f0199
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 0805f9bf3f631d914bb6ff4817d65a9ab237fe6c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d235bc9e1c5eeb210275a4abcf89a757d0259cc0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit d5f472a6cf4456bf715ee3b3a85132f3fbe7e15f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit d67fa98cf601a8ef2642641a8aefbcdab1d5bcc2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit d3fe0caa7f83b8e971e8503b5344e20811d6c812
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit bd09f8acff3c40fe9294cfc6b6a9220ec5b766fc
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit a9aca5f5e8c5c1ce40e09ce5cf80a875ec009aa0
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 13d1eb7241b8621267520e57811f8069b2e466e9
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 238ab1dd061145a525edd27bb8203ae216380894
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7e4061d1221531340e9f82bc6f1560e5d6feab8
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit 31c87adba80d50a90ae3c85b08cd01c5545c78b4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 727e7e7fd71fb0404e0f5bf7f36dc10419d155c4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 975b90c0b7e6b836f67f3603c80f818dc095ffa5
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format (#24110)

commit 8f0180802ad327a0be47be9405a9a2764b5937db
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit aa4c9917552df8a383816a0af516b86e1237ff48
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 9ab1a57d729cfa207adfe3ee6d24d40de3bb159c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 044bf8ab7ef7045583c9da175b8ebddd2b750f84
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit 4bdec5e99330a35387c09adc27be94c5082b4405
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 7444933d5d4fc93c6278e091be5af7e4f61b1d9c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit f35404f853ba185814bd17a4742ef34688ceba98
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit 7fa2dceddafcfeea4b2599fa2b9fe3542abd4c1f
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix ProUI / JyersUI leveling preheat (#24060, #24064)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 4c84769a814ab6534a1edebc66529b568c9d6d7e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit 8fb3074901f83034cc240834a2fc75aad0ed43ad
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 230db90b70f1cafdea6fe3a8c28499e92004be53
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 28d2bc353ebbddc0ce0b96a634108392eb1089b4
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 7b5e2cd78619ba4334c0fe94b3f8293ed8d6e1ee
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 4b456078ddc1099c081e1e7149aba612c8f41008
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 8d3c84a6d969bf9fa576a17b0054d5b98324622d
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011, #24111)

commit cbc6f23a8af0c864e3607dc24764582149c0d1f3
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit bed8abe5b6df751d7dafc6f0f8d8dff7338625ce
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit 74565890f335f26fa7012d0164eb2964c0f2918d
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868, #24009, #24107)

commit 4ec9af42b8e24cf6ce9f238c9342bc1c11120429
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit b0d621d8b96fffda485efa45e61a68126613a766
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 995221e68e15693697fc7f10dfc31273ea188157
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 54e543872be13439523cecb6b670b7b4bf818164
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit 7b39604d6f58b46de18a41eb4a7de5058d9c4b35
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 01c9c2666123f0959b02b757d2acd6adc18f4284
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 27b148442826780c8fc4f7ab8c21608de21f0587
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7f1c5ad7aa6dc437d3a76abf8a36cb971e1f424e
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#23979, #24013)

commit 4fd7d1b056bfab9f31c272ae6d8f256ed2ed202d
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit 7ffe4de021254d34762d2a7ecd239ded0eca949d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit eada17ed69ede29d83f7c3897d64e2872faaae18
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit cd5c5ea60eb20d643ab2447bc3550b3eb5874a39
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit e9ea82e78d0c95ef1cee599093b4c91a6f97d709
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 18b17fc97d8474b2fe5c5cd7afcfdce05ba7d5cc
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit 89d5ed0c9e5570e4a025719a9ad183e505c8ed8a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit a56bf9045d3e68101c42ced30884fa34675279c5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit c23d0351495a7fc1c396d157642db49db2754135
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 7ff4b706947e63d708cef90c936b936305947e58
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 421c38ff2e0de3a8d5cd913232aa3448dbfbc487
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit ec447dba04409c2b60d61b9bacab54c101bd9f3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit be6535e5f7a39529bd081ed38a1bf76fa645488f
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99252cf0cd5a8a01228c715a505cb1eaf6b853e5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit f6f31434b8c0e21f98fef460e0c8492fd4c240d5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 2f3960904e1a7b830c686fa793b122de49f3d674
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 2dc4c642e78bb4fa99ca41f3ae3c92335248ffd4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit 70ea0e7c3450680e1062088243d2cf139eadc02a
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit a81fd009f081eca3685e42cffac7f35e75428fea
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit e667d4e6e43b407cedce6bbf543ea1d815e8d520
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 2d0af75d37c9ea8ab44c889ef4e489b3b533eb30
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 5e68a86968d63f97f0febb8378b2a508e909ec90
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 8bd1547c3bb16cdce37412624161fab5b9d5ead6
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit a5e083603f1435a4a0e2e9fa7449c9133aa73225
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit c5f7547e8cf0d744fb1392b3651078d3985cecb1
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit 5c5b380fda9f541ee182e614966fc39a72ac6a18
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit bb0e0cf7f35cf3b89aac4f395185d55f3aa62979
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit 5ee99dfc49eaa8e81f5beb66eb1c160ac2d217fb
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit a083b1280ec80a525766c0a9487865b76de64c81
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit b7b5cee88baadfb10822b6bb13b6e7d3b0acaff8
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit 7456fd68a41b12592f3ac3f47308f7037ca22b86
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 20154718b5a41c1522a313ada06ef5c35ce2023d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit a6794c1862c663b387637597dba5f258a3e0e1e2
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit bd5c6bf23c1478dcab31cc1c2edcd0fa546eb6ea
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 68ee64283a7aab95c2f70eaf734e24b9d909dfa7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit dd29394bbe17ab6458817cce65b94f106252092f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit ceb99e89a081d2230479e9bb7b63c23d14bf0b98
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit 6112277f9b2d24a7c9effeb5966dadef279a261c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 81f403025c3ddb479ccf363fb091ac0fcf8e667b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eeda8b451acb2a0ae96656876f6a7682d43aca1d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit c7e8ba78576af230278a5662103acf421dc59bfd
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit 071e5c336a157ca39b75081b8cb4436a72af965e
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit be08d4c4f01e2c297365664bd3e0f7dc2b051fde
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit e99104a0040f58477809c9e2b9506fe2bcd94331
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944, #23948)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit edc4089121bcd96645b7be6bbd3dafa88c510ede
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 3bce266ef7865a62b5e79c7c5c67a068bb5e4c20
Author: ellensp <[email protected]>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (#23943)

    Followup to 89a9c3a391

commit c89d0114acba957d63e894bc1a479ec10cb18a81
Author: Robby Candra <[email protected]>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (#23135)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e693854d0c86fa0998a5d497607d42d6798f6ab
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 9324132a401cf0ab3781c9992d607bd4f88ba086
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 5632ad65f59710ca64e4abca99afa64cb99d559e
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit eccbfbcede60922b95971e90bf3a1d7983a5fe39
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 5ef4fb378e345e20d1fa3bdbc5312598dc571276
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to #23925

commit 21f0945d2cfada672756709bc420feb11768e687
Author: Oleg Belov <[email protected]>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (#23936)

commit b2a318af9a0c8e91b1f66a5576226b50b1b49f1b
Author: Serhiy-K <[email protected]>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (#23935)

commit 1c89c0470f2778f8051ff8514831138e64a2d9ed
Author: ellensp <[email protected]>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (#23931)

commit 2ee4a667e1999839e61fa4c7d4e31a88d6e301d6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:47:22 2022 -0600

    💡 Misc. cleanup, comments

commit f8e177a43efa3e7a173e2799562d354ab95544ab
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 9ac1c73041cbf4015b48d9d7a70a59e840a1d442
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit 4a8b99d505584d1fa5eb71d588da1bb60c3a2878
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit b094a3fc0d647f7daff7c4d97db32f9d41e4c11d
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit 2d99a608fd993fd5cb75223b72deadfc969a13c1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit fba8805c0cd87845c80d9cd7738b94332a35e27b
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 039a22649f4e0201d7580b63c1a414450353438a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit ced0ad8e094baecf6e3ee8eaa36c61baaa5743fc
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 10a0c9a9b3d4070326954c5c2354cfd8ba490f0c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit abfb0411809568970221281a3614e30970f0dfc1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 72f207f4895d5db34f697cb203876405b98d89c8
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit 7186037f20a2a2c57624e31c1e99adc37759c5f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit b0a400da72f6752619a82246fac55a07a4e67f3c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit cc4c2c2f98a1742d6b462481f74dacf5b5b93961
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit 5dae8a67344cfeda3de6d40fcd14498542004fe9
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 05dea4e30a1768913ec7d1f38c65b9423200a558
Author: Fredrik Andersson <[email protected]>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (#23925)

commit 7e88ee8c5cc87395e73c45bcd743f3ab0302773b
Author: Mark <[email protected]>
Date:   Fri Mar 18 12:49:47 2022 +0800

    📌 PandaPi V2.9 – Standalone mode (#23908)

commit cc8e485e1c55fb2fcdba7dc8f6b89041ed18e9ce
Author: John Robertson <[email protected]>
Date:   Fri Mar 18 03:21:53 2022 +0000

    ✨ ESP32 - Hardware PWM for fan, cutter, servos (#23802)

commit c7a2ecc31aa4def9e60668f5cfc648d87776be9b
Author: ellensp <[email protected]>
Date:   Fri Mar 18 16:17:41 2022 +1300

    🩹 Fix xatc EEPROM debug (#23911)

commit 260b40d1453a9310581c45d3e1327a3103b36a22
Author: tombrazier <[email protected]>
Date:   Fri Mar 18 03:15:26 2022 +0000

    ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (#23867)

commit c87eded8f6183c33bd9b9a74dd577fe6c77c32df
Author: Ludy <[email protected]>
Date:   Fri Mar 18 02:55:33 2022 +0100

    🩹 Fix redundant var declaration (#23913)

commit 2f2a999368f22f2c6b3105ab481987c2025bc50e
Author: John Robertson <[email protected]>
Date:   Thu Mar 17 19:35:33 2022 +0000

    🐛 MKS TinyBee - 2.5V ADC Vref (#23903)

commit 2558b323e85006c3c9f6a03bcaa82f61c95da0bb
Author: Jelmer van der Stel <[email protected]>
Date:   Sun Mar 13 23:20:30 2022 +0100

    🩹 Fix DWIN E3V2 display issues by allowing re-init (#23879)

commit 1db685593922214e49496d805dc9ea099e227f50
Author: Mrnt <[email protected]>
Date:   Sun Mar 13 15:17:35 2022 -0700

    🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (#23885)

commit 62f298aca39ff17bc7a51f49b9ff6b5b17a76c30
Author: Julien Staub <[email protected]>
Date:   Sun Mar 13 23:09:32 2022 +0100

    🩹 Fix ExtUI build with Host Keepalive disabled (#23898)

commit 8d20c5aadfff34a024665ea349c0b66834e4d305
Author: InsanityAutomation <[email protected]>
Date:   Sun Mar 13 18:00:35 2022 -0400

    📝 Fix X2_MAX_POS comment (#23873)

commit 61b470249c1cfa361f25060940cc8b7f8a8f64e9
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:59:43 2022 -0500

    📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

commit 4ffa88f814f3ddcb7273b73c9bb68773bcf1fd51
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:46:08 2022 -0500

    🚸 Test LIN_ADVANCE in a pins file

commit 8257040fafe758ac1913e9bf633fa0c9930dd9cb
Author: Mathew Winters <[email protected]>
Date:   Sun Mar 13 14:13:41 2022 +1300

    ⚡️ G12 - Only require used axes to be homed (#23422)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d9ab7e71eed56f242d4fae32836f305bb1ff680
Author: Keith Bennett <[email protected]>
Date:   Sat Mar 12 16:23:29 2022 -0800

    🔨 Drop extraneous build flag (#23862)

commit 1a76d4d467ebb3d8ed1df39767efa99beb08e854
Author: Nick <[email protected]>
Date:   Sat Mar 12 23:47:47 2022 +0000

    🐛 Fix Chiron new TFT SD print after reset (#23855)

commit 4028c1cfc7bcaf78e49bb98b527353ec30a970de
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 17:12:21 2022 -0600

    🩹 Fix FSTR / PSTR usage

commit c49f26a7ae6499f4e19dc1f75bb4438cb0d549cf
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 16:34:58 2022 -0600

    🧑‍💻  Add standard BUZZ types

commit f82b13359520baf4da4e41aa85ed0fe3f8d31173
Author: Ludy <[email protected]>
Date:   Sun Mar 13 00:36:23 2022 +0100

    🌐 Fix, add some menu labels (#23895)

commit 2c3f2a14715665d7309e212bfd2a48240118e627
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 15:59:01 2022 -0600

    🐛 Fix UBL 'G29 Q1' bug

commit 4817efcf81d353032b2873dc958ec63bcb298d19
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 15:58:28 2022 -0600

    🧑‍💻 Add ExtUI::onLevelingDone, match DWIN to ExtUI

commit 16271377e2a00c2cd416ec21e5a21272e9f805ed
Author: BIGTREETECH <[email protected]>
Date:   Sat Mar 12 08:23:18 2022 +0800

    🧑‍💻 STM32G0Bx : Use PLLQ for USB clock (#23870)

commit 61fb3828688c377178031142ba9cfaa3512cb915
Author: kisslorand <[email protected]>
Date:   Sat Mar 12 02:21:08 2022 +0200

    🚸 M401 H - Report BLTouch HS State (#23724)

commit 7dae720de5c4fdea5fab657c09a2c8ba66f5a054
Author: GatCode <[email protected]>
Date:   Sat Mar 12 00:56:31 2022 +0100

    📌 Fix, extend Index Rev03 Mobo (#23851)

    Co-authored-by: Scott Lahteine <[email protected]>

commit c6f4b38877d6ff5973c5273bf28c0fa1b60226a3
Author: Giuseppe499 <[email protected]>
Date:   Sat Mar 12 00:12:03 2022 +0100

    🚸 Fix, extend X Axis Twist Compensation (#23745)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eabeac29fd311dc09799ce8a0db742048b07a2a9
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri Mar 11 15:06:49 2022 -0500

    🚸 Update Ender3 V2/S1 Pro UI (#23878)

commit b045c91f266d222f5851d76fb9723552c1f00313
Author: ellensp <[email protected]>
Date:   Sat Mar 12 03:51:25 2022 +1300

    fix g29 (#23887)

commit 56955c179d1fb6991f6267a344e712b1caeae154
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 11 02:56:24 2022 -0600

    🐛 Fix UI include

    Followup to ~2

commit 4eb1326355aaa022e1a9d41625851876b20b5aa3
Author: ellensp <[email protected]>
Date:   Fri Mar 11 21:52:35 2022 +1300

    📝 Update laser/spindle docs link (#23886)

commit b669aa49cccf4ceb41b99dfdbb88dac5945bed01
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 22:07:47 2022 -0600

    🔧 DWIN_CREALITY_LCD_ENHANCED => DWIN_LCD_PROUI

    Followup to #23624

commit 152ec49b8b43e40a9cceaaa90f3ebf1c194dfe11
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 17:35:03 2022 -0600

    🩹 Fix 'hdsl' warning

commit e4ca822dcf62c5a38b30472bd51ab40212ee2eb5
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 17:25:09 2022 -0600

    🚸 Improve M422 error messages

commit 0fafcd20cddc0e76003454d7c292430f367f1106
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 4 16:07:38 2022 -0600

    🔧 Mark Thermal Variance Monitor EXPERIMENTAL

commit bd72df3bb6387af9421b1503ab74e29b8a1e705c
Author: Jack Wilsdon <[email protected]>
Date:   Fri Mar 4 21:59:38 2022 +0000

    🐛 Emergency Parser with STM32 Mass Storage (#23827)

commit fd582dc863785b53048834d0c9789f1d264603b2
Author: tombrazier <[email protected]>
Date:   Fri Mar 4 21:57:51 2022 +0000

    🩹 Improve and apply XATC reset() (#23840)

commit 2986bc3b768e047fb333d35633900d512dbff439
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 17:58:23 2022 -0600

    ⚡️ Use seen_test in `M422`

commit e082a141f63e7af1d301a994c0ee796946bcb3a8
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 17:50:55 2022 -0600

    🚸 Use Z_STEPPER_ALIGN_STEPPER_XY to enable

commit 575c3150f96a7d43d93d092c9f0dd7f395ef6a78
Author: tombrazier <[email protected]>
Date:   Wed Mar 2 22:13:46 2022 +0000

    🚸 Universal X_AXIS_TWIST_COMPENSATION (#23828)

commit 43d4e306680d0a006f431b4ab29246450c6ee5e2
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 16:04:17 2022 -0600

    🐛 Fix M_State_grbl when G29 calls G28

commit 9b17699b9b371a88d7e5d79b60721e652c56c173
Author: Julien Staub <[email protected]>
Date:   Tue Mar 1 23:42:20 2022 +0100

    ✨ Weedo 62A Tina2 / Monoprice Cadet (#23817)

commit 0337602bbe289b72167a8ee49e996f799b281edc
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 1 17:25:30 2022 -0500

    ⚡️ E3V2 blank bg for S1 compatibility (#23822)

commit fbfe0642b6411d12340d6d53338af0cd386b4ab8
Author: ellensp <[email protected]>
Date:   Wed Mar 2 11:22:36 2022 +1300

    🚨 Fix BLTouch 5V pin tolerance checks (#23823)

commit 41a51e952792653059019e9e6064f6cd7a0beadb
Author: tombrazier <[email protected]>
Date:   Tue Mar 1 22:14:52 2022 +0000

    🐛 Fix backlash applied steps when config changes (#23826)

    Followup to #23814

commit 2d648e4dd94fd93ed0df9390dafe3e23335b5c29
Author: ellensp <[email protected]>
Date:   Wed Mar 2 11:11:26 2022 +1300

    🔨 Fix 'renamed' env (platform = ststm32) (#23831)

commit 35d11070b493a03e0011f96ec5af0ba72662dbe7
Author: Ludy <[email protected]>
Date:   Tue Mar 1 23:09:11 2022 +0100

    🌐 Update German language (#23832)

commit feafb7d49af67dd11172baf883d307eaea1e1b26
Author: kisslorand <[email protected]>
Date:   Mon Feb 28 04:38:11 2022 +0200

    ✨ M21 P / S / U - Select Volume (#23780)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 39001bd8d22f8a6f3b36b4b923b3ace359416c0a
Author: M. FURIC Franck <[email protected]>
Date:   Sat Feb 26 23:54:04 2022 +0100

    ✨ LCD Backlight Timer (#23768)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 3db2fecaa443634f80203b0762d503b7c706951e
Author: ellensp <[email protected]>
Date:   Sun Feb 27 11:50:17 2022 +1300

    🔧 SHOW_CUSTOM_BOOTSCREEN sanity-check (#23807)

commit c0288590b3319dd0a7afffbd52587b6071596cbb
Author: sam <[email protected]>
Date:   Sun Feb 27 00:48:59 2022 +0200

    📺 BTT SKR Mini E3 with Fysetc V2.1 / MKS V3 / BTT V1 Mini 12864 (#23793)

commit d2cd3f2e6830f10846871e6ce83342593c6cd67e
Author: ellensp <[email protected]>
Date:   Sun Feb 27 11:45:33 2022 +1300

    ✨ MKS Robin Nano 3.1 (#23795)

commit 893c6624384d68f7c6da7a383380fa13ccfc1ad0
Author: ellensp <[email protected]>
Date:   Sun Feb 27 09:34:44 2022 +1300

    🐛 ESP32 _delay_ms, fix u8g_esp32_spi.cpp (#23810)

commit b0fdbede9c98e8b807dd4a7a291b1b668c1a8e15
Author: tombrazier <[email protected]>
Date:   Sat Feb 26 20:30:33 2022 +0000

    🐛 Fix steps-to-mm with backlash (#23814)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 8e11a2bb8393c84a43a8c19a2f8ab499123cccb4
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 24 18:47:57 2022 -0600

    🎨  Move PROPORTIONAL_FONT_RATIO

commit 9588f21d2e8b91ab9061efdbb2d43df9c81e239e
Author: ellensp <[email protected]>
Date:   Thu Feb 24 05:36:39 2022 +1300

    🔨 More renamed.ini envs (#23786)

commit 80e569015bcd97cb9da43e4cecf20f0d0a8bd5f6
Author: ellensp <[email protected]>
Date:   Tue Feb 22 16:16:57 2022 +1300

    🐛 Fix TMC26X CS pins init (#23778)

commit be703522036250c4753d5ae1100c78bf01e8a124
Author: Keith Bennett <[email protected]>
Date:   Mon Feb 21 18:47:53 2022 -0800

    🔧 Warning for MK3_FAN_PINS (#23727)

commit 980c009fc7ff8ec07d37a1d936cf5711cb50cbdd
Author: Scott Lahteine <[email protected]>
Date:   Mon Feb 21 19:55:19 2022 -0600

    ✨ Dyze Design PT100 Amplifier Board (#23760)

commit 8a02646f5244a67cfdae32ba6a8b4dd68467f149
Author: Scott Lahteine <[email protected]>
Date:   Mon Feb 21 19:54:03 2022 -0600

    📝 Update Toolchange FS comments

commit 7ec2167a73d630e1408911bc172ede11189da27f
Author: tombrazier <[email protected]>
Date:   Tue Feb 22 01:15:52 2022 +0000

    ⚡️ Apply PTC on all probing (#23764)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 56cec9690a3717ce9ed2803b7c8f6486d532eae9
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 17 18:50:31 2022 -0600

    ♻️ Refactor HAL as singleton (#23357, #23871, #23897)

commit 428b67db316ceb11e41152270a97844c897feb39
Author: John Robertson <[email protected]>
Date:   Fri Feb 11 21:04:47 2022 +0000

    ✨ More Nozzle Park move options (#23158)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 1b2715ccf2722182ef787fa4639619b282647b1b
Author: Scott Lahteine <[email protected]>
Date:   Sat Feb 5 10:30:17 2022 -0600

    🚸 Enhanced UI => Professional UI - with updates (#23624)

commit ac76ed7eceee1063c53ce88c4d3471552c0aa279
Author: GHGiampy <[email protected]>
Date:   Wed Feb 2 00:35:38 2022 +0100

    🚸 Case Light, LED menus for E3V2 DWIN Enhanced UI (#23590)

commit 4ba4ab1c75bbf87c33b94bbb18b6cae4897fc226
Author: ellensp <[email protected]>
Date:   Tue Feb 22 13:31:44 2022 +1300

    📌 Creality RAMPS optional SD_DETECT_PIN (#23740)

    Co-authored-by: Scott Lahteine <[email protected]>

commit c0f6d2f78ca50852587d58cb3931d117baf0f5cc
Author: GHGiampy <[email protected]>
Date:   Fri Feb 18 01:45:42 2022 +0100

    ✏️ Fix getLFNName parameter (#23752)

commit 0b4f5298f5022666fedcb873b2d6e9a573ae42ef
Author: jefflessard <[email protected]>
Date:   Thu Feb 17 19:44:41 2022 -0500

    🚨 Fix TEMP_SENSOR_BOARD warnings (#23754)

commit 195383bc33e708e533ee7d7199184351d8f6e55b
Author: Simon Pilepich <[email protected]>
Date:   Wed Feb 16 13:46:09 2022 +1100

    🧑‍💻 Update MightyBoard FET pins (#23728)

commit 4199191e999667e66cbaa4ff7844c520774304ed
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 15 15:09:09 2022 -0600

    ♻️ Rename XATC z_values => z_offset

commit 7da28768f7bd60c936b66edc85c5d830dd86811a
Author: InsanityAutomation <[email protected]>
Date:   Sun Feb 13 14:44:24 2022 -0500

    ♻️ No ui.reinit_lcd on any ExtUI (#23722)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 172cd2eefb803a2a171c66b2b2bb453944bd5e61
Author: Scott Lahteine <[email protected]>
Date:   Sun Feb 13 13:12:38 2022 -0600

    📝 Update conditionals descriptions

commit 341113bcfb5e20d6587ebe44a746780b3b293867
Author: Scott Lahteine <[email protected]>
Date:   Sun Feb 13 12:55:00 2022 -0600

    🔧 HAS_LCDPRINT conditional

commit 5f0e1a15dfe63f250513e052b0de186a1ad805a1
Author: ellensp <[email protected]>
Date:   Sat Feb 12 08:50:07 2022 +1300

    ✏️ Fix E3V2 display with BTT SKR Mini E3 v3 (#23719)

commit 3abf4de4ae696f3c234b0be6d7cce5efa60d111e
Author: ellensp <[email protected]>
Date:   Sat Feb 12 08:39:34 2022 +1300

    🚸 Align MKS UI heated bed status with HAS_MULTI_HOTEND (#23718)

commit cc1a48ad2d86c8e53684a066c17e033cb20615ad
Author: Scott Lahteine <[email protected]>
Date:   Fri Feb 11 09:36:52 2022 -0600

    💥 Change 'M42 M' to 'M42 T'

commit 2a584cea96c885df2f6b2c7700d71dfcafe08551
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 10 16:03:48 2022 -0600

    🎨 Misc. DGUS cleanup

commit 9f57f6f36f464b412314144d2c72ff0dc8b4be9b
Author: Thomas White <[email protected]>
Date:   Fri Feb 11 04:02:45 2022 +0800

    ✨ Pxmalion Core i3 (#23711)

commit 59548410b8e76c5a2f18565c9f37338e4f2a4be6
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 10 13:58:50 2022 -0600

    🧑‍💻 Wrap MMU1 pins

commit 65c4f14a9e943451ae7379de9c40decd143caae9
Author: espr14 <[email protected]>
Date:   Thu Feb 10 20:28:38 2022 +0100

    🩹 Simplify quick homing feedrate (#23714)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 3e18cf2b6ac354ec679f028d3b3616e4cc51e72c
Author: MOHAMMAD RASIM <[email protected]>
Date:   Wed Feb 9 21:29:34 2022 +0300

    🚸 Fix, Improve Power-Loss Recovery (#22828)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 11071c747272d3546ee02e16c1a2a2ffe4893f61
Author: ellensp <[email protected]>
Date:   Thu Feb 10 05:46:53 2022 +1300

    🚸 Restore active tool after ABL G29 (#23692)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 38484c6eb6b0f1c8a49f46efaef707165dc539f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 8 18:02:28 2022 -0600

    🧑‍💻 Drop hostui.flag

commit b964d2fff00a138d59d46cf3213956067df930b3
Author: Taylor Talkington <[email protected]>
Date:   Tue Feb 8 18:36:06 2022 -0500

    ✨ Optional HOST_STATUS_NOTIFICATIONS (#22833)

commit 973366e6aafd2eca76105c4948c310e750e65cc2
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 8 17:03:38 2022 -0600

    🔧 Update MIXING_EXTRUDER sanity checks

    Fixing #23693

commit e255e4a69fa07c194b44e242cd3d20e2dacffa9b
Author: InsanityAutomation <[email protected]>
Date:   Mon Feb 7 17:24:18 2022 -0500

    PLR accessors for Ext UI (#23687)

commit 942f08852241a4584e82581967d6d01b375a5474
Author: InsanityAutomation <[email protected]>
Date:   Mon Feb 7 17:22:18 2022 -0500

    🩹 Fix Maple HAL compile errors (#23685)

commit c4341a4e351978a228272e583dd72f999eca643c
Author: ellensp <[email protected]>
Date:   Tue Feb 8 09:49:26 2022 +1300

    🚨 Cleaner errors for renamed envs (#23690)

commit 6e23ffd12c459908a5c9f8f02c02cd4841cf691f
Author: InsanityAutomation <[email protected]>
Date:   Mon Feb 7 15:40:14 2022 -0500

    🧑‍💻 Generic Maple STM32F103RC envs for devs (#23686)

commit 58239c65cbe0563d8f3a223b3ca2091dbbd1ee14
Author: Bob Kuhn <[email protected]>
Date:   Sun Feb 6 08:35:18 2022 -0600

    🐛 Fix init of delta safe height (for G29, G33, etc.) (#23622)

commit 82ae3646cb709537574869e469c242b406087827
Author: ellensp <[email protected]>
Date:   Sun Feb 6 05:52:18 2022 +1300

    🐛 Fix missing u8g_esp32_spi (#23562)

commit 8799837d75744c697f7dee994b327632c27cbfe4
Author: GHGiampy <[email protected]>
Date:   Sat Feb 5 17:23:44 2022 +0100

    🔨 Clean up upload.py (#23679)

commit cdcf31453b605fb133f10ddd1d1f952fc5a594c4
Author: John Lagonikas <[email protected]>
Date:   Sat Feb 5 03:10:59 2022 +0200

    🐛 Fix dual MAX31865 initialization issues (#23496)

commit a23ecf0d2f96d9c7547b8c545fb39e9396d271dd
Author: Bob Kuhn <[email protected]>
Date:   Fri Feb 4 19:00:35 2022 -0600

    🩹 Prevent Z error with UBL + Park unscaled E move (#23568)

commit f5046a41cd306cf107f8b7bc61bedb81f22ace78
Author: ellensp <[email protected]>
Date:   Sat Feb 5 13:51:00 2022 +1300

    🚨 Deprecate Maple build (#23661)

    Update Warnings.cpp

commit 0d07c49c1d91483c59294fce2e58577a4bf23bb9
Author: GHGiampy <[email protected]>
Date:   Sat Feb 5 01:44:21 2022 +0100

    🩹 Init brightness/contrast later (#23645)

commit f193729f546600eae327c688e1da46b1cc105586
Author: Stephen Hawes <[email protected]>
Date:   Fri Feb 4 19:42:15 2022 -0500

    🐛 Fix Index Mobo Rev03 upload (#23676)

commit 22db62d95a81ce67ea6157a3eb1957045de2b63a
Author: Kelroy <[email protected]>
Date:   Sat Feb 5 01:40:35 2022 +0100

    ✨ SAMD51 Bricolemon / Bricolemon Lite boards (#23658)

commit 50ffacfb90a672b6915ea407fce921c72be72a02
Author: Bruno Henrique de Paula <[email protected]>
Date:   Fri Feb 4 18:57:43 2022 -0300

    📌 Distinct BOARD_CREALITY_V422 (#23674)

commit 21935b41f076eb04bd851f35b31657e79db6584c
Author: Bones <[email protected]>
Date:   Fri Feb 4 14:52:57 2022 -0700

    ✨ Add ZRIB v53, patch G35 Z drop, related issues (#23636)

commit 15eabba11d3f0cc3c772e865719802d779a1f21e
Author: Scott Lahteine <[email protected]>
Date:   Fri Feb 4 15:49:39 2022 -0600

    🧑‍💻 Relocate a variant

commit b2d0f2fd8c1b5eea4be90163b71895651b93d851
Author: Bob Kuhn <[email protected]>
Date:   Fri Feb 4 13:34:48 2022 -0600

    🐛 Fix RUMBA + MKS Mini12864 Neopixel pin (#23646)

commit a07d7e4b8ab0cdc19ea6f88cc1fc8be4e8294fd7
Author: Mike La Spina <[email protected]>
Date:   Fri Feb 4 13:33:52 2022 -0600

    🍻 STM32 set_pwm_duty "on/off" for digital pins (#23665)

commit d4801461f504f1a2a68393b57d492b9bb9ac1ff5
Author: Scott Lahteine <[email protected]>
Date:   Fri Feb 4 12:39:30 2022 -0600

    💡 Comment variant timers

commit f42c1b4cae9549cdc260543aa17f220ee2dbaa53
Author: Mike La Spina <[email protected]>
Date:   Fri Feb 4 10:45:34 2022 -0600

    🔧 Sanity-check AVR D9 Fan PWM / SPEAKER Timer2 (#23672)

commit f8571fc18fc7a846e321581979a093d135c71999
Author: ellensp <[email protected]>
Date:   Sat Feb 5 05:24:38 2022 +1300

    🐛 Creality v4 cleanup, pin correction (#23666)

commit fbbf556e0886d8b2d69bf5b64540b123d37f4894
Author: Scott Lahteine <[email protected]>
Date:   Mon Feb 21 20:50:09 2022 -0600

    🔨 Workspace file with recommendation

commit 1cdaddaaf20fa359f4513e13baf08e4df0271fd9
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 1 17:28:29 2022 -0600

    🔧 Board temp sensor check

commit 4d8976bf6bbf8cd3f8ab25f48cfa163265da4469
Author: ellensp <[email protected]>
Date:   Mon Jan 31 00:34:03 2022 +1300

    🐛 Fix FYSETC S6, S6 V2 Serial RX pins (#23642)

commit c02bc3887aa23dfeb933a47c38bcf8ddfd6fe40c
Author: Mike La Spina <[email protected]>
Date:   Sun Jan 30 05:31:56 2022 -0600

    🐛 Fix AVR 644/1284 Timer / PWM conflicts (#23629)

commit 68dfc5056492f70c24b780564622d178346e240d
Author: Scott Lahteine <[email protected]>
Date:   Thu Jan 27 07:05:26 2022 -0600

    🧑‍💻 Simplify Fast PWM timer macros

commit c7b0626b02fba7ac37a918e6cc2b2f86556fd1e1
Author: Mike La Spina <[email protected]>
Date:   Wed Jan 26 14:01:22 2022 -0600

    🐛 Fix SPI DMA and default mode (#23627)

    Followup to #23464

commit 30d1f0ba81ffdb477fab7370584238e69f88cc8f
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 26 13:40:29 2022 -0600

    📝 Update Creality 4.2.2 driver warning

commit 758dc7af9d340dd5ece4c98374e60a213567a4ec
Author: Keith Bennett <[email protected]>
Date:   Wed Jan 26 10:33:10 2022 -0800

    🚸 Better "Bed Tramming Done" dialog (#23616)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 361dab93b387d3b1b5b62da016da0614d457db3d
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 25 18:33:30 2022 -0600

    ✨ BOARD_CREALITY_V24S1_301 (#23620)

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit f0f1d33980acef6ab2e202d7c4922453e6ad46dc
Author: ellensp <[email protected]>
Date:   Wed Jan 26 13:08:15 2022 +1300

    ✅ FYSETC TFT81050 CI Test (#23604)

commit 38e0e92e9d798fa8bb373e7b876b5f08b07fac0f
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 25 17:19:20 2022 -0600

    ✏️ Fix MKS enum

commit 2dcc3ddeedcbebf1bbd1b1cfc4bd8be17f14d020
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 25 15:33:03 2022 -0600

    🧑‍💻 HAS_MARLINUI_MENU, HAS_MANUAL_MOVE_MENU

commit 33c89547f041843c3bb8e247654ed861825b5f4a
Author: Timofey Titovets <[email protected]>
Date:   Tue Jan 25 12:36:09 2022 +0300

    ⚡️ Tuned Thermistor 66 (T-D500) (#23585)

commit a4ea8bc1e121301fe4dfaf304ae482709fae1754
Author: Lars <[email protected]>
Date:   Tue Jan 25 10:30:45 2022 +0100

    🐛 Fix DGUS_Reloaded G-code execution (#23592)

commit 9f06079549ffad265579e6933bb81491fc179892
Author: Keith Bennett <[email protected]>
Date:   Tue Jan 25 01:25:19 2022 -0800

    🐛 Fix Creality DWIN LCD with SKR Mini E3 V3 (#23593)

commit 2f48c30445281266adf19bc00232db66f885f516
Author: DejitaruJin <[email protected]>
Date:   Tue Jan 25 03:52:23 2022 -0500

    🩹 Fix DWIN float debugging (#23601)

commit 50906876824881a807917310e05f77b9d6f9b04b
Author: Keith Bennett <[email protected]>
Date:   Tue Jan 25 00:09:53 2022 -0800

    🔨 Creality RCT6 (256K) variants (#23599)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 2d032b734c7a2e92af597e44dcf111b551d4f6a6
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 22 10:19:26 2022 -0600

    🧑‍💻 Fix up some AUX / EXP pins (#23577)

commit 2142456a255d66aa8bda782d9950c024039e21f5
Author: Mike La Spina <[email protected]>
Date:   Sat Jan 22 10:16:41 2022 -0600

    🐛 Fix LCD contrast/brightness init (#23567)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99f3b8b4a8238bf11ae6ee70c58e3e053abfcffc
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 22 10:14:47 2022 -0600

    ♻️ Adjust LCD init, contrast default, settings load

commit de0bc19230a0d253fd6d6f4a945a465abf67ab70
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 10 15:20:13 2022 -0800

    🚸 TH3D EZBoard V2 TMC slave addresses (#23857)

commit 17099e797334abeb0cd92156e32af1e9e5d671ee
Author: John Lagonikas <[email protected]>
Date:   Thu Jan 20 13:58:36 2022 +0200

    🩹 Fix power.h compile (#23573)

commit 63f3e347d999767f98810955621847a989f642ac
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 19 18:33:19 2022 -0600

    🩹 BOARD_INIT followup

commit …
Graylag-PD added a commit to Graylag-PD/Marlin that referenced this pull request Jun 13, 2022
commit f976e56a1993adede0ed854326e0cab214d90295
Author: ellensp <[email protected]>
Date:   Sat Jun 11 17:03:20 2022 +1200

    🐛 Fix JGAurora A5S A1 build (#24326)

commit 571007e5c9a1e407ef7f72b555e1d207be2f256f
Author: Steven Haigh <[email protected]>
Date:   Sat Jun 11 12:08:55 2022 +1000

    🩹 Fix ProUI compile (#24310)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 00527f38d59d8b466d515da801844197073c7bcc
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:47 2022 -0500

    🧑‍💻 Misc. servo code cleanup

commit 1c7696838b04051115d246fff173846cf74ea4d9
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:08 2022 -0500

    🧑‍💻 Remove servo macros

commit ad786a7930f1a0516427f7e0d827402387549ead
Author: tombrazier <[email protected]>
Date:   Tue Jun 7 01:23:55 2022 +0100

    🩹 Fix Mesh Leveling + Debug compile (#24297)

commit ce9c81dfa12ebde0a0a55663523c782afecbd85c
Author: ellensp <[email protected]>
Date:   Tue Jun 7 18:59:21 2022 +1200

    🩹 Media Change followup (#24302)

    Followup to #24015

commit 92910721d0c4cc79ad0f8a64fb11b2c15bf3619d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 19:06:03 2022 -0500

    👔 Fix and comment use_example_configs

commit 236251a2ce4f055ab96af0008c882ffe77f5dac8
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Jun 6 00:01:06 2022 -0500

    🚸 ProUI G-code preview, PID plot (#24282)

commit 369542db3bb34c28196a77838a2f018180a7da74
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:23:43 2022 -0500

    🔖 Marlin 2.0.9.4

commit 40d96c3460117eeab1742d74c2d78b57b4a9a1b6
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 5 20:26:40 2022 -0500

    👔 Remove actions from misc. branch

commit d7a71beaf4f08e60c3d13049f1046bbb663c643d
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 18:16:43 2022 -0500

    🔧 LEVEL_BED_CORNERS => LCD_BED_TRAMMING

commit f3b593ae73b5d21b5c270a5f5ede0fe982822b07
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 12:43:44 2022 -0500

    🎨 Fix spelling, whitespace

commit 1d8d8dccf45d2090e075b148d4f08e299184392c
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    💥 Num Axes / Multi-Stepper based on Driver Types (#24106, #24120)

commit 1e127a93c4c1446cf11aacecc9597a7355262ac8
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:15:23 2022 -0500

    🧑‍💻 Extend LCD string substitution (#24278)

commit fcef8d946cbd45e27ba9888f1e18327b68d52b00
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 0253500ccd5a7192f3e545cb5552c4ab7b309c5d
Author: Tanguy Pruvot <[email protected]>
Date:   Wed May 25 08:07:11 2022 +0200

    Use default null args in select_screen

commit 0d783a76907ace17f0d61ebe8882ebee9bc6ce3b
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:22:09 2022 +1200

    🐛 Init Stepper SPI before PSU Control (#24269)

commit e784e0413204680f3c8f3a8cdf519fb5bee7a164
Author: BIGTREETECH <[email protected]>
Date:   Thu Jun 2 17:02:06 2022 +0800

    ✨ BigTreeTech SKR3 - STM32H743 (#24271, #24272, #24275)

    Co-Authored-By: Alan.Ma <[email protected]>

commit 11d68e31274fccd20c8bb72eec0b4ad547962823
Author: bryan065 <[email protected]>
Date:   Thu Jun 2 04:51:39 2022 -0400

    🚸 Custom Menu Items for JyersUI (#24270)

commit 8b8b2a7ed35908b6a49d5b3badb230d3283792bb
Author: ledzepman71 <[email protected]>
Date:   Thu Jun 2 02:49:48 2022 -0600

    📌 Tenlog PSU pin (#24266)

commit fc1a620b878b45675b9a7972be6c1fb2882b8092
Author: tombrazier <[email protected]>
Date:   Sat May 28 23:40:08 2022 +0100

    🚩 MPC update (#24253)

commit 9799907dc9a53810e87fd5b54e2194d30e70eff8
Author: Keith Bennett <[email protected]>
Date:   Tue May 31 14:28:01 2022 -0700

    👔 Configs required to submit a Bug Report (#24256)

commit 6fc4dbbbc4b3b1e6820f4f18b81602451bb1786c
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 17:05:09 2022 -0500

    🚸 Change M201 G to S

commit 74596ad4d7f9117e06829b5657d7402f27a445ce
Author: Robby Candra <[email protected]>
Date:   Mon May 23 09:13:17 2022 +0700

    🩹 Adjust manage_media for slow/late media init (USB FD) (#24015)

commit 28f8646aa64b8baf6f93197d04b0802580272e40
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 19:56:46 2022 -0500

    ♻️ Apply F() to more LCD code (#24228)

commit 9a74bcd4cf13efa2d7cfb365182d7e097eaa1f1d
Author: John Robertson <[email protected]>
Date:   Tue May 31 23:09:44 2022 +0100

    ✨ Laser Safety Timeout (#24189)

commit 07cd248b91a59db8e2bc7ad10bbf160852af34fb
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 20:45:37 2022 -0500

    ♻️ Move watchdog to MarlinHAL

commit 209c792ef7e97dc48bf3517c9f8f56e6be80e97f
Author: Scott Lahteine <[email protected]>
Date:   Fri May 20 11:27:09 2022 -0500

    🔧 Remove LCD_SERIAL_PORT defaults, warn on auto-assign (#24170)

commit dbd00d992705a07b3da769549495d6505cb96b43
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (#23992)

    Co-authored-by: borland1 <[email protected]>

commit 4ae54a6229d1704bfc54a85233af40b69e924246
Author: Ludy <[email protected]>
Date:   Mon Apr 18 11:43:34 2022 +0200

    🐛 Update German language, Fix FTDI (#24047, #24048, #24227)

commit ce0af56d0aa4371620b142ba5b2ed3b455813a5d
Author: tombrazier <[email protected]>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (#23984, #24018, #24049, #24059)

commit 6c557a248016f2e89e259d2d5ee8e000521099bb
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (#23983)

commit a6ce9bf559d963c3cdcb6db7f57a572bc58016ea
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (#24014)

commit 21c838cb1b86c3ffd5958c68d82f6c0c25e78dbe
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (#23751)

commit 3443a9e18bf2c9797037f141d68ab409d6b3c00b
Author: Pauli Jokela <[email protected]>
Date:   Thu May 12 05:23:16 2022 +0300

    ✨ SOUND_ON_DEFAULT option (#24102)

commit b2b5b85045e689d311e472d803817e08b49ccaec
Author: Robert Brenckman <[email protected]>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (#21142)

commit 2086cc9f4e21dfc060c1ff034856ad4e6219f5f8
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:37:40 2022 -0500

    📝 Refer to 'PROGMEM' as 'flash'

commit 8eccfd4a6f90da93a4f13b8aa7fbd88a1f8cca46
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:35:38 2022 -0500

    🔧 Bed/Chamber PID Autotune menus

    Derived from MarlinFirmware/Marlin#23983

commit 9ab654adcb15ba23b42ed1f13ca34130e422dbc2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 22:06:32 2022 -0500

    🐛 Fix min/max temp evaluation

    Fixes #24257

commit 0ae982188c23ddab4e3a2d819c679166a7e19532
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 23:19:18 2022 -0500

    🐛 Fix M203 report

commit bed0788f723a0695726eab52e8da0b48298c619f
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit deb1ba73bbdd3aacaeec6c7d9540c41e93ddfdfe
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 15:11:43 2022 -0500

    🎨 Use pos.set method

commit 57f0ac88af9e8c5eb398c8367edf471900a5171f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 14:41:50 2022 -0500

    🎨  Misc. boards/pins cleanup

commit 915bce495cdc5168c982274f6deabc92e052c2c7
Author: Simon Pilepich <[email protected]>
Date:   Sat May 28 08:08:24 2022 +1000

    📝 Fix Mightyboard MOSFET comments (#24183)

commit 800a936caae83f4e5ca5dd2c2660518bd6fc43b2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ccf39b1c42fa787f645fbf0ac075cc47b72b18d3
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit d19179ce281cec58865fcbc99185abeb48a611b9
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 4a6ae1b64df5fa8824e20688399683bf11b840e2
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit 0daaef589c956d152c846760dfc157fdd1b7975b
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 4831cbebd80d6e2c6bcf504446cf6d0f2441c285
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit e0deb75764938995e32bc589d646ec397c4a3019
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0fe4f48956299cb298e6e48255ea72ba93dad79
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 4d65d7f142882bcd77072fc7dc5c01ca937a2e81
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit 1b879f0ee4e5539c237edf235b6ca38b5b2beb43
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit b6abc760cef73a1dfc0e186f40687d0a45c8a769
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 0ae061713c631d44cd12ad266ca9c7fdd856d72c
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 1d12e72bf697f7e3cb63995a20ba9e98fbce3eb9
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit c97cf10956ee33c80e557fb09e4cc75d30a0db82
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit b72f9277e9e89a7dcdc12c8f11273f7c76a064d4
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit 06c4a9acdb3f08a2052ea55d00fa350e9249bcb4
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit 8a301196e11d87d7e9db065d0d802910a664c5be
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 1e7219f4a643f8cbdbcd9685ebb5a76d02c89601
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 02c267f542223ed0d8b098da4bec6f09710d6bc8
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit fe77fc66c0004ba9a4459dd5a12c978dd0308bb1
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit 268a16b1ef1c5cd462e81aef08e4e9f7d2c65658
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 8351b1431f8bad178f2f8a3ec70b32a1d4d7ca2c
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 718806761f1e9d903d61408e2039357bfe46fff8
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit 78c7fedcea34f0c630f8e9fd46bc5d3244de04c5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit c4b8339b842958faae2567c339bcf9b44434a2ce
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 94ed67e36ef84cb4ecd8f3f1470041d4d72f7088
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit 03b819bdb235c6eb2cd0a02b832bb8f108cc5962
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 2204f05dcaabf0e639f1e1722ffd293d4b415fe3
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a13cceaad16dd2caedbf3b05ae0854b1200cb51e
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 5c25ed60c80d7b06cb91e91f98b1aca6bc648d79
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1c516bdd5e71fc3da05fb52da692c9c5ccb0c0d7
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit 425684e2ffecf85dccab1eb4242772bc97992eb8
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 63aecad7eef034d8cb2b3e81f8a22db8a148b90b
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit dcd769b4a18bd40f9664262d081d553994d8eb78
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit f9b7f00d1e1c1004e0c2a9c35e23c1c67dc47172
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit a6ff63d5060c0ef68c2ae9f6ccf3bcada2ec6b6e
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit 7d37ae2b2b1ea6613dbc8be0ec5fa30dbd6a87de
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7d40ec654a3eca783a19e93e7bb6f394f2e6d29
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit 7ed339cfa0a2d8298e0293cf465daaf4ac74c0f9
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit cb4ad020af2f56dc060ecafdfd58b0639a8f0199
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 0805f9bf3f631d914bb6ff4817d65a9ab237fe6c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d235bc9e1c5eeb210275a4abcf89a757d0259cc0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit d5f472a6cf4456bf715ee3b3a85132f3fbe7e15f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit d67fa98cf601a8ef2642641a8aefbcdab1d5bcc2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit d3fe0caa7f83b8e971e8503b5344e20811d6c812
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit bd09f8acff3c40fe9294cfc6b6a9220ec5b766fc
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit a9aca5f5e8c5c1ce40e09ce5cf80a875ec009aa0
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 13d1eb7241b8621267520e57811f8069b2e466e9
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 238ab1dd061145a525edd27bb8203ae216380894
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7e4061d1221531340e9f82bc6f1560e5d6feab8
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit 31c87adba80d50a90ae3c85b08cd01c5545c78b4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 727e7e7fd71fb0404e0f5bf7f36dc10419d155c4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 975b90c0b7e6b836f67f3603c80f818dc095ffa5
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format (#24110)

commit 8f0180802ad327a0be47be9405a9a2764b5937db
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit aa4c9917552df8a383816a0af516b86e1237ff48
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 9ab1a57d729cfa207adfe3ee6d24d40de3bb159c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 044bf8ab7ef7045583c9da175b8ebddd2b750f84
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit 4bdec5e99330a35387c09adc27be94c5082b4405
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 7444933d5d4fc93c6278e091be5af7e4f61b1d9c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit f35404f853ba185814bd17a4742ef34688ceba98
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit 7fa2dceddafcfeea4b2599fa2b9fe3542abd4c1f
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix ProUI / JyersUI leveling preheat (#24060, #24064)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 4c84769a814ab6534a1edebc66529b568c9d6d7e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit 8fb3074901f83034cc240834a2fc75aad0ed43ad
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 230db90b70f1cafdea6fe3a8c28499e92004be53
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 28d2bc353ebbddc0ce0b96a634108392eb1089b4
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 7b5e2cd78619ba4334c0fe94b3f8293ed8d6e1ee
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 4b456078ddc1099c081e1e7149aba612c8f41008
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 8d3c84a6d969bf9fa576a17b0054d5b98324622d
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011, #24111)

commit cbc6f23a8af0c864e3607dc24764582149c0d1f3
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit bed8abe5b6df751d7dafc6f0f8d8dff7338625ce
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit 74565890f335f26fa7012d0164eb2964c0f2918d
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868, #24009, #24107)

commit 4ec9af42b8e24cf6ce9f238c9342bc1c11120429
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit b0d621d8b96fffda485efa45e61a68126613a766
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 995221e68e15693697fc7f10dfc31273ea188157
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 54e543872be13439523cecb6b670b7b4bf818164
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit 7b39604d6f58b46de18a41eb4a7de5058d9c4b35
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 01c9c2666123f0959b02b757d2acd6adc18f4284
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 27b148442826780c8fc4f7ab8c21608de21f0587
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7f1c5ad7aa6dc437d3a76abf8a36cb971e1f424e
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#23979, #24013)

commit 4fd7d1b056bfab9f31c272ae6d8f256ed2ed202d
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit 7ffe4de021254d34762d2a7ecd239ded0eca949d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit eada17ed69ede29d83f7c3897d64e2872faaae18
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit cd5c5ea60eb20d643ab2447bc3550b3eb5874a39
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit e9ea82e78d0c95ef1cee599093b4c91a6f97d709
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 18b17fc97d8474b2fe5c5cd7afcfdce05ba7d5cc
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit 89d5ed0c9e5570e4a025719a9ad183e505c8ed8a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit a56bf9045d3e68101c42ced30884fa34675279c5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit c23d0351495a7fc1c396d157642db49db2754135
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 7ff4b706947e63d708cef90c936b936305947e58
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 421c38ff2e0de3a8d5cd913232aa3448dbfbc487
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit ec447dba04409c2b60d61b9bacab54c101bd9f3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit be6535e5f7a39529bd081ed38a1bf76fa645488f
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99252cf0cd5a8a01228c715a505cb1eaf6b853e5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit f6f31434b8c0e21f98fef460e0c8492fd4c240d5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 2f3960904e1a7b830c686fa793b122de49f3d674
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 2dc4c642e78bb4fa99ca41f3ae3c92335248ffd4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit 70ea0e7c3450680e1062088243d2cf139eadc02a
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit a81fd009f081eca3685e42cffac7f35e75428fea
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit e667d4e6e43b407cedce6bbf543ea1d815e8d520
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 2d0af75d37c9ea8ab44c889ef4e489b3b533eb30
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 5e68a86968d63f97f0febb8378b2a508e909ec90
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 8bd1547c3bb16cdce37412624161fab5b9d5ead6
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit a5e083603f1435a4a0e2e9fa7449c9133aa73225
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit c5f7547e8cf0d744fb1392b3651078d3985cecb1
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit 5c5b380fda9f541ee182e614966fc39a72ac6a18
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit bb0e0cf7f35cf3b89aac4f395185d55f3aa62979
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit 5ee99dfc49eaa8e81f5beb66eb1c160ac2d217fb
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit a083b1280ec80a525766c0a9487865b76de64c81
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit b7b5cee88baadfb10822b6bb13b6e7d3b0acaff8
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit 7456fd68a41b12592f3ac3f47308f7037ca22b86
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 20154718b5a41c1522a313ada06ef5c35ce2023d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit a6794c1862c663b387637597dba5f258a3e0e1e2
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit bd5c6bf23c1478dcab31cc1c2edcd0fa546eb6ea
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 68ee64283a7aab95c2f70eaf734e24b9d909dfa7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit dd29394bbe17ab6458817cce65b94f106252092f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit ceb99e89a081d2230479e9bb7b63c23d14bf0b98
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit 6112277f9b2d24a7c9effeb5966dadef279a261c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 81f403025c3ddb479ccf363fb091ac0fcf8e667b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eeda8b451acb2a0ae96656876f6a7682d43aca1d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit c7e8ba78576af230278a5662103acf421dc59bfd
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit 071e5c336a157ca39b75081b8cb4436a72af965e
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit be08d4c4f01e2c297365664bd3e0f7dc2b051fde
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit e99104a0040f58477809c9e2b9506fe2bcd94331
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944, #23948)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit edc4089121bcd96645b7be6bbd3dafa88c510ede
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 3bce266ef7865a62b5e79c7c5c67a068bb5e4c20
Author: ellensp <[email protected]>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (#23943)

    Followup to 89a9c3a391

commit c89d0114acba957d63e894bc1a479ec10cb18a81
Author: Robby Candra <[email protected]>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (#23135)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e693854d0c86fa0998a5d497607d42d6798f6ab
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 9324132a401cf0ab3781c9992d607bd4f88ba086
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 5632ad65f59710ca64e4abca99afa64cb99d559e
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit eccbfbcede60922b95971e90bf3a1d7983a5fe39
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 5ef4fb378e345e20d1fa3bdbc5312598dc571276
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to #23925

commit 21f0945d2cfada672756709bc420feb11768e687
Author: Oleg Belov <[email protected]>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (#23936)

commit b2a318af9a0c8e91b1f66a5576226b50b1b49f1b
Author: Serhiy-K <[email protected]>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (#23935)

commit 1c89c0470f2778f8051ff8514831138e64a2d9ed
Author: ellensp <[email protected]>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (#23931)

commit 2ee4a667e1999839e61fa4c7d4e31a88d6e301d6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:47:22 2022 -0600

    💡 Misc. cleanup, comments

commit f8e177a43efa3e7a173e2799562d354ab95544ab
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 9ac1c73041cbf4015b48d9d7a70a59e840a1d442
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit 4a8b99d505584d1fa5eb71d588da1bb60c3a2878
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit b094a3fc0d647f7daff7c4d97db32f9d41e4c11d
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit 2d99a608fd993fd5cb75223b72deadfc969a13c1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit fba8805c0cd87845c80d9cd7738b94332a35e27b
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 039a22649f4e0201d7580b63c1a414450353438a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit ced0ad8e094baecf6e3ee8eaa36c61baaa5743fc
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 10a0c9a9b3d4070326954c5c2354cfd8ba490f0c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit abfb0411809568970221281a3614e30970f0dfc1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 72f207f4895d5db34f697cb203876405b98d89c8
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit 7186037f20a2a2c57624e31c1e99adc37759c5f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit b0a400da72f6752619a82246fac55a07a4e67f3c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit cc4c2c2f98a1742d6b462481f74dacf5b5b93961
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit 5dae8a67344cfeda3de6d40fcd14498542004fe9
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 05dea4e30a1768913ec7d1f38c65b9423200a558
Author: Fredrik Andersson <[email protected]>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (#23925)

commit 7e88ee8c5cc87395e73c45bcd743f3ab0302773b
Author: Mark <[email protected]>
Date:   Fri Mar 18 12:49:47 2022 +0800

    📌 PandaPi V2.9 – Standalone mode (#23908)

commit cc8e485e1c55fb2fcdba7dc8f6b89041ed18e9ce
Author: John Robertson <[email protected]>
Date:   Fri Mar 18 03:21:53 2022 +0000

    ✨ ESP32 - Hardware PWM for fan, cutter, servos (#23802)

commit c7a2ecc31aa4def9e60668f5cfc648d87776be9b
Author: ellensp <[email protected]>
Date:   Fri Mar 18 16:17:41 2022 +1300

    🩹 Fix xatc EEPROM debug (#23911)

commit 260b40d1453a9310581c45d3e1327a3103b36a22
Author: tombrazier <[email protected]>
Date:   Fri Mar 18 03:15:26 2022 +0000

    ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (#23867)

commit c87eded8f6183c33bd9b9a74dd577fe6c77c32df
Author: Ludy <[email protected]>
Date:   Fri Mar 18 02:55:33 2022 +0100

    🩹 Fix redundant var declaration (#23913)

commit 2f2a999368f22f2c6b3105ab481987c2025bc50e
Author: John Robertson <[email protected]>
Date:   Thu Mar 17 19:35:33 2022 +0000

    🐛 MKS TinyBee - 2.5V ADC Vref (#23903)

commit 2558b323e85006c3c9f6a03bcaa82f61c95da0bb
Author: Jelmer van der Stel <[email protected]>
Date:   Sun Mar 13 23:20:30 2022 +0100

    🩹 Fix DWIN E3V2 display issues by allowing re-init (#23879)

commit 1db685593922214e49496d805dc9ea099e227f50
Author: Mrnt <[email protected]>
Date:   Sun Mar 13 15:17:35 2022 -0700

    🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (#23885)

commit 62f298aca39ff17bc7a51f49b9ff6b5b17a76c30
Author: Julien Staub <[email protected]>
Date:   Sun Mar 13 23:09:32 2022 +0100

    🩹 Fix ExtUI build with Host Keepalive disabled (#23898)

commit 8d20c5aadfff34a024665ea349c0b66834e4d305
Author: InsanityAutomation <[email protected]>
Date:   Sun Mar 13 18:00:35 2022 -0400

    📝 Fix X2_MAX_POS comment (#23873)

commit 61b470249c1cfa361f25060940cc8b7f8a8f64e9
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:59:43 2022 -0500

    📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

commit 4ffa88f814f3ddcb7273b73c9bb68773bcf1fd51
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:46:08 2022 -0500

    🚸 Test LIN_ADVANCE in a pins file

commit 8257040fafe758ac1913e9bf633fa0c9930dd9cb
Author: Mathew Winters <[email protected]>
Date:   Sun Mar 13 14:13:41 2022 +1300

    ⚡️ G12 - Only require used axes to be homed (#23422)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d9ab7e71eed56f242d4fae32836f305bb1ff680
Author: Keith Bennett <[email protected]>
Date:   Sat Mar 12 16:23:29 2022 -0800

    🔨 Drop extraneous build flag (#23862)

commit 1a76d4d467ebb3d8ed1df39767efa99beb08e854
Author: Nick <[email protected]>
Date:   Sat Mar 12 23:47:47 2022 +0000

    🐛 Fix Chiron new TFT SD print after reset (#23855)

commit 4028c1cfc7bcaf78e49bb98b527353ec30a970de
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 17:12:21 2022 -0600

    🩹 Fix FSTR / PSTR usage

commit c49f26a7ae6499f4e19dc1f75bb4438cb0d549cf
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 16:34:58 2022 -0600

    🧑‍💻  Add standard BUZZ types

commit f82b13359520baf4da4e41aa85ed0fe3f8d31173
Author: Ludy <[email protected]>
Date:   Sun Mar 13 00:36:23 2022 +0100

    🌐 Fix, add some menu labels (#23895)

commit 2c3f2a14715665d7309e212bfd2a48240118e627
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 15:59:01 2022 -0600

    🐛 Fix UBL 'G29 Q1' bug

commit 4817efcf81d353032b2873dc958ec63bcb298d19
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 15:58:28 2022 -0600

    🧑‍💻 Add ExtUI::onLevelingDone, match DWIN to ExtUI

commit 16271377e2a00c2cd416ec21e5a21272e9f805ed
Author: BIGTREETECH <[email protected]>
Date:   Sat Mar 12 08:23:18 2022 +0800

    🧑‍💻 STM32G0Bx : Use PLLQ for USB clock (#23870)

commit 61fb3828688c377178031142ba9cfaa3512cb915
Author: kisslorand <[email protected]>
Date:   Sat Mar 12 02:21:08 2022 +0200

    🚸 M401 H - Report BLTouch HS State (#23724)

commit 7dae720de5c4fdea5fab657c09a2c8ba66f5a054
Author: GatCode <[email protected]>
Date:   Sat Mar 12 00:56:31 2022 +0100

    📌 Fix, extend Index Rev03 Mobo (#23851)

    Co-authored-by: Scott Lahteine <[email protected]>

commit c6f4b38877d6ff5973c5273bf28c0fa1b60226a3
Author: Giuseppe499 <[email protected]>
Date:   Sat Mar 12 00:12:03 2022 +0100

    🚸 Fix, extend X Axis Twist Compensation (#23745)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eabeac29fd311dc09799ce8a0db742048b07a2a9
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri Mar 11 15:06:49 2022 -0500

    🚸 Update Ender3 V2/S1 Pro UI (#23878)

commit b045c91f266d222f5851d76fb9723552c1f00313
Author: ellensp <[email protected]>
Date:   Sat Mar 12 03:51:25 2022 +1300

    fix g29 (#23887)

commit 56955c179d1fb6991f6267a344e712b1caeae154
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 11 02:56:24 2022 -0600

    🐛 Fix UI include

    Followup to ~2

commit 4eb1326355aaa022e1a9d41625851876b20b5aa3
Author: ellensp <[email protected]>
Date:   Fri Mar 11 21:52:35 2022 +1300

    📝 Update laser/spindle docs link (#23886)

commit b669aa49cccf4ceb41b99dfdbb88dac5945bed01
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 22:07:47 2022 -0600

    🔧 DWIN_CREALITY_LCD_ENHANCED => DWIN_LCD_PROUI

    Followup to #23624

commit 152ec49b8b43e40a9cceaaa90f3ebf1c194dfe11
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 17:35:03 2022 -0600

    🩹 Fix 'hdsl' warning

commit e4ca822dcf62c5a38b30472bd51ab40212ee2eb5
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 17:25:09 2022 -0600

    🚸 Improve M422 error messages

commit 0fafcd20cddc0e76003454d7c292430f367f1106
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 4 16:07:38 2022 -0600

    🔧 Mark Thermal Variance Monitor EXPERIMENTAL

commit bd72df3bb6387af9421b1503ab74e29b8a1e705c
Author: Jack Wilsdon <[email protected]>
Date:   Fri Mar 4 21:59:38 2022 +0000

    🐛 Emergency Parser with STM32 Mass Storage (#23827)

commit fd582dc863785b53048834d0c9789f1d264603b2
Author: tombrazier <[email protected]>
Date:   Fri Mar 4 21:57:51 2022 +0000

    🩹 Improve and apply XATC reset() (#23840)

commit 2986bc3b768e047fb333d35633900d512dbff439
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 17:58:23 2022 -0600

    ⚡️ Use seen_test in `M422`

commit e082a141f63e7af1d301a994c0ee796946bcb3a8
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 17:50:55 2022 -0600

    🚸 Use Z_STEPPER_ALIGN_STEPPER_XY to enable

commit 575c3150f96a7d43d93d092c9f0dd7f395ef6a78
Author: tombrazier <[email protected]>
Date:   Wed Mar 2 22:13:46 2022 +0000

    🚸 Universal X_AXIS_TWIST_COMPENSATION (#23828)

commit 43d4e306680d0a006f431b4ab29246450c6ee5e2
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 16:04:17 2022 -0600

    🐛 Fix M_State_grbl when G29 calls G28

commit 9b17699b9b371a88d7e5d79b60721e652c56c173
Author: Julien Staub <[email protected]>
Date:   Tue Mar 1 23:42:20 2022 +0100

    ✨ Weedo 62A Tina2 / Monoprice Cadet (#23817)

commit 0337602bbe289b72167a8ee49e996f799b281edc
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 1 17:25:30 2022 -0500

    ⚡️ E3V2 blank bg for S1 compatibility (#23822)

commit fbfe0642b6411d12340d6d53338af0cd386b4ab8
Author: ellensp <[email protected]>
Date:   Wed Mar 2 11:22:36 2022 +1300

    🚨 Fix BLTouch 5V pin tolerance checks (#23823)

commit 41a51e952792653059019e9e6064f6cd7a0beadb
Author: tombrazier <[email protected]>
Date:   Tue Mar 1 22:14:52 2022 +0000

    🐛 Fix backlash applied steps when config changes (#23826)

    Followup to #23814

commit 2d648e4dd94fd93ed0df9390dafe3e23335b5c29
Author: ellensp <[email protected]>
Date:   Wed Mar 2 11:11:26 2022 +1300

    🔨 Fix 'renamed' env (platform = ststm32) (#23831)

commit 35d11070b493a03e0011f96ec5af0ba72662dbe7
Author: Ludy <[email protected]>
Date:   Tue Mar 1 23:09:11 2022 +0100

    🌐 Update German language (#23832)

commit feafb7d49af67dd11172baf883d307eaea1e1b26
Author: kisslorand <[email protected]>
Date:   Mon Feb 28 04:38:11 2022 +0200

    ✨ M21 P / S / U - Select Volume (#23780)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 39001bd8d22f8a6f3b36b4b923b3ace359416c0a
Author: M. FURIC Franck <[email protected]>
Date:   Sat Feb 26 23:54:04 2022 +0100

    ✨ LCD Backlight Timer (#23768)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 3db2fecaa443634f80203b0762d503b7c706951e
Author: ellensp <[email protected]>
Date:   Sun Feb 27 11:50:17 2022 +1300

    🔧 SHOW_CUSTOM_BOOTSCREEN sanity-check (#23807)

commit c0288590b3319dd0a7afffbd52587b6071596cbb
Author: sam <[email protected]>
Date:   Sun Feb 27 00:48:59 2022 +0200

    📺 BTT SKR Mini E3 with Fysetc V2.1 / MKS V3 / BTT V1 Mini 12864 (#23793)

commit d2cd3f2e6830f10846871e6ce83342593c6cd67e
Author: ellensp <[email protected]>
Date:   Sun Feb 27 11:45:33 2022 +1300

    ✨ MKS Robin Nano 3.1 (#23795)

commit 893c6624384d68f7c6da7a383380fa13ccfc1ad0
Author: ellensp <[email protected]>
Date:   Sun Feb 27 09:34:44 2022 +1300

    🐛 ESP32 _delay_ms, fix u8g_esp32_spi.cpp (#23810)

commit b0fdbede9c98e8b807dd4a7a291b1b668c1a8e15
Author: tombrazier <[email protected]>
Date:   Sat Feb 26 20:30:33 2022 +0000

    🐛 Fix steps-to-mm with backlash (#23814)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 8e11a2bb8393c84a43a8c19a2f8ab499123cccb4
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 24 18:47:57 2022 -0600

    🎨  Move PROPORTIONAL_FONT_RATIO

commit 9588f21d2e8b91ab9061efdbb2d43df9c81e239e
Author: ellensp <[email protected]>
Date:   Thu Feb 24 05:36:39 2022 +1300

    🔨 More renamed.ini envs (#23786)

commit 80e569015bcd97cb9da43e4cecf20f0d0a8bd5f6
Author: ellensp <[email protected]>
Date:   Tue Feb 22 16:16:57 2022 +1300

    🐛 Fix TMC26X CS pins init (#23778)

commit be703522036250c4753d5ae1100c78bf01e8a124
Author: Keith Bennett <[email protected]>
Date:   Mon Feb 21 18:47:53 2022 -0800

    🔧 Warning for MK3_FAN_PINS (#23727)

commit 980c009fc7ff8ec07d37a1d936cf5711cb50cbdd
Author: Scott Lahteine <[email protected]>
Date:   Mon Feb 21 19:55:19 2022 -0600

    ✨ Dyze Design PT100 Amplifier Board (#23760)

commit 8a02646f5244a67cfdae32ba6a8b4dd68467f149
Author: Scott Lahteine <[email protected]>
Date:   Mon Feb 21 19:54:03 2022 -0600

    📝 Update Toolchange FS comments

commit 7ec2167a73d630e1408911bc172ede11189da27f
Author: tombrazier <[email protected]>
Date:   Tue Feb 22 01:15:52 2022 +0000

    ⚡️ Apply PTC on all probing (#23764)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 56cec9690a3717ce9ed2803b7c8f6486d532eae9
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 17 18:50:31 2022 -0600

    ♻️ Refactor HAL as singleton (#23357, #23871, #23897)

commit 428b67db316ceb11e41152270a97844c897feb39
Author: John Robertson <[email protected]>
Date:   Fri Feb 11 21:04:47 2022 +0000

    ✨ More Nozzle Park move options (#23158)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 1b2715ccf2722182ef787fa4639619b282647b1b
Author: Scott Lahteine <[email protected]>
Date:   Sat Feb 5 10:30:17 2022 -0600

    🚸 Enhanced UI => Professional UI - with updates (#23624)

commit ac76ed7eceee1063c53ce88c4d3471552c0aa279
Author: GHGiampy <[email protected]>
Date:   Wed Feb 2 00:35:38 2022 +0100

    🚸 Case Light, LED menus for E3V2 DWIN Enhanced UI (#23590)

commit 4ba4ab1c75bbf87c33b94bbb18b6cae4897fc226
Author: ellensp <[email protected]>
Date:   Tue Feb 22 13:31:44 2022 +1300

    📌 Creality RAMPS optional SD_DETECT_PIN (#23740)

    Co-authored-by: Scott Lahteine <[email protected]>

commit c0f6d2f78ca50852587d58cb3931d117baf0f5cc
Author: GHGiampy <[email protected]>
Date:   Fri Feb 18 01:45:42 2022 +0100

    ✏️ Fix getLFNName parameter (#23752)

commit 0b4f5298f5022666fedcb873b2d6e9a573ae42ef
Author: jefflessard <[email protected]>
Date:   Thu Feb 17 19:44:41 2022 -0500

    🚨 Fix TEMP_SENSOR_BOARD warnings (#23754)

commit 195383bc33e708e533ee7d7199184351d8f6e55b
Author: Simon Pilepich <[email protected]>
Date:   Wed Feb 16 13:46:09 2022 +1100

    🧑‍💻 Update MightyBoard FET pins (#23728)

commit 4199191e999667e66cbaa4ff7844c520774304ed
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 15 15:09:09 2022 -0600

    ♻️ Rename XATC z_values => z_offset

commit 7da28768f7bd60c936b66edc85c5d830dd86811a
Author: InsanityAutomation <[email protected]>
Date:   Sun Feb 13 14:44:24 2022 -0500

    ♻️ No ui.reinit_lcd on any ExtUI (#23722)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 172cd2eefb803a2a171c66b2b2bb453944bd5e61
Author: Scott Lahteine <[email protected]>
Date:   Sun Feb 13 13:12:38 2022 -0600

    📝 Update conditionals descriptions

commit 341113bcfb5e20d6587ebe44a746780b3b293867
Author: Scott Lahteine <[email protected]>
Date:   Sun Feb 13 12:55:00 2022 -0600

    🔧 HAS_LCDPRINT conditional

commit 5f0e1a15dfe63f250513e052b0de186a1ad805a1
Author: ellensp <[email protected]>
Date:   Sat Feb 12 08:50:07 2022 +1300

    ✏️ Fix E3V2 display with BTT SKR Mini E3 v3 (#23719)

commit 3abf4de4ae696f3c234b0be6d7cce5efa60d111e
Author: ellensp <[email protected]>
Date:   Sat Feb 12 08:39:34 2022 +1300

    🚸 Align MKS UI heated bed status with HAS_MULTI_HOTEND (#23718)

commit cc1a48ad2d86c8e53684a066c17e033cb20615ad
Author: Scott Lahteine <[email protected]>
Date:   Fri Feb 11 09:36:52 2022 -0600

    💥 Change 'M42 M' to 'M42 T'

commit 2a584cea96c885df2f6b2c7700d71dfcafe08551
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 10 16:03:48 2022 -0600

    🎨 Misc. DGUS cleanup

commit 9f57f6f36f464b412314144d2c72ff0dc8b4be9b
Author: Thomas White <[email protected]>
Date:   Fri Feb 11 04:02:45 2022 +0800

    ✨ Pxmalion Core i3 (#23711)

commit 59548410b8e76c5a2f18565c9f37338e4f2a4be6
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 10 13:58:50 2022 -0600

    🧑‍💻 Wrap MMU1 pins

commit 65c4f14a9e943451ae7379de9c40decd143caae9
Author: espr14 <[email protected]>
Date:   Thu Feb 10 20:28:38 2022 +0100

    🩹 Simplify quick homing feedrate (#23714)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 3e18cf2b6ac354ec679f028d3b3616e4cc51e72c
Author: MOHAMMAD RASIM <[email protected]>
Date:   Wed Feb 9 21:29:34 2022 +0300

    🚸 Fix, Improve Power-Loss Recovery (#22828)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 11071c747272d3546ee02e16c1a2a2ffe4893f61
Author: ellensp <[email protected]>
Date:   Thu Feb 10 05:46:53 2022 +1300

    🚸 Restore active tool after ABL G29 (#23692)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 38484c6eb6b0f1c8a49f46efaef707165dc539f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 8 18:02:28 2022 -0600

    🧑‍💻 Drop hostui.flag

commit b964d2fff00a138d59d46cf3213956067df930b3
Author: Taylor Talkington <[email protected]>
Date:   Tue Feb 8 18:36:06 2022 -0500

    ✨ Optional HOST_STATUS_NOTIFICATIONS (#22833)

commit 973366e6aafd2eca76105c4948c310e750e65cc2
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 8 17:03:38 2022 -0600

    🔧 Update MIXING_EXTRUDER sanity checks

    Fixing #23693

commit e255e4a69fa07c194b44e242cd3d20e2dacffa9b
Author: InsanityAutomation <[email protected]>
Date:   Mon Feb 7 17:24:18 2022 -0500

    PLR accessors for Ext UI (#23687)

commit 942f08852241a4584e82581967d6d01b375a5474
Author: InsanityAutomation <[email protected]>
Date:   Mon Feb 7 17:22:18 2022 -0500

    🩹 Fix Maple HAL compile errors (#23685)

commit c4341a4e351978a228272e583dd72f999eca643c
Author: ellensp <[email protected]>
Date:   Tue Feb 8 09:49:26 2022 +1300

    🚨 Cleaner errors for renamed envs (#23690)

commit 6e23ffd12c459908a5c9f8f02c02cd4841cf691f
Author: InsanityAutomation <[email protected]>
Date:   Mon Feb 7 15:40:14 2022 -0500

    🧑‍💻 Generic Maple STM32F103RC envs for devs (#23686)

commit 58239c65cbe0563d8f3a223b3ca2091dbbd1ee14
Author: Bob Kuhn <[email protected]>
Date:   Sun Feb 6 08:35:18 2022 -0600

    🐛 Fix init of delta safe height (for G29, G33, etc.) (#23622)

commit 82ae3646cb709537574869e469c242b406087827
Author: ellensp <[email protected]>
Date:   Sun Feb 6 05:52:18 2022 +1300

    🐛 Fix missing u8g_esp32_spi (#23562)

commit 8799837d75744c697f7dee994b327632c27cbfe4
Author: GHGiampy <[email protected]>
Date:   Sat Feb 5 17:23:44 2022 +0100

    🔨 Clean up upload.py (#23679)

commit cdcf31453b605fb133f10ddd1d1f952fc5a594c4
Author: John Lagonikas <[email protected]>
Date:   Sat Feb 5 03:10:59 2022 +0200

    🐛 Fix dual MAX31865 initialization issues (#23496)

commit a23ecf0d2f96d9c7547b8c545fb39e9396d271dd
Author: Bob Kuhn <[email protected]>
Date:   Fri Feb 4 19:00:35 2022 -0600

    🩹 Prevent Z error with UBL + Park unscaled E move (#23568)

commit f5046a41cd306cf107f8b7bc61bedb81f22ace78
Author: ellensp <[email protected]>
Date:   Sat Feb 5 13:51:00 2022 +1300

    🚨 Deprecate Maple build (#23661)

    Update Warnings.cpp

commit 0d07c49c1d91483c59294fce2e58577a4bf23bb9
Author: GHGiampy <[email protected]>
Date:   Sat Feb 5 01:44:21 2022 +0100

    🩹 Init brightness/contrast later (#23645)

commit f193729f546600eae327c688e1da46b1cc105586
Author: Stephen Hawes <[email protected]>
Date:   Fri Feb 4 19:42:15 2022 -0500

    🐛 Fix Index Mobo Rev03 upload (#23676)

commit 22db62d95a81ce67ea6157a3eb1957045de2b63a
Author: Kelroy <[email protected]>
Date:   Sat Feb 5 01:40:35 2022 +0100

    ✨ SAMD51 Bricolemon / Bricolemon Lite boards (#23658)

commit 50ffacfb90a672b6915ea407fce921c72be72a02
Author: Bruno Henrique de Paula <[email protected]>
Date:   Fri Feb 4 18:57:43 2022 -0300

    📌 Distinct BOARD_CREALITY_V422 (#23674)

commit 21935b41f076eb04bd851f35b31657e79db6584c
Author: Bones <[email protected]>
Date:   Fri Feb 4 14:52:57 2022 -0700

    ✨ Add ZRIB v53, patch G35 Z drop, related issues (#23636)

commit 15eabba11d3f0cc3c772e865719802d779a1f21e
Author: Scott Lahteine <[email protected]>
Date:   Fri Feb 4 15:49:39 2022 -0600

    🧑‍💻 Relocate a variant

commit b2d0f2fd8c1b5eea4be90163b71895651b93d851
Author: Bob Kuhn <[email protected]>
Date:   Fri Feb 4 13:34:48 2022 -0600

    🐛 Fix RUMBA + MKS Mini12864 Neopixel pin (#23646)

commit a07d7e4b8ab0cdc19ea6f88cc1fc8be4e8294fd7
Author: Mike La Spina <[email protected]>
Date:   Fri Feb 4 13:33:52 2022 -0600

    🍻 STM32 set_pwm_duty "on/off" for digital pins (#23665)

commit d4801461f504f1a2a68393b57d492b9bb9ac1ff5
Author: Scott Lahteine <[email protected]>
Date:   Fri Feb 4 12:39:30 2022 -0600

    💡 Comment variant timers

commit f42c1b4cae9549cdc260543aa17f220ee2dbaa53
Author: Mike La Spina <[email protected]>
Date:   Fri Feb 4 10:45:34 2022 -0600

    🔧 Sanity-check AVR D9 Fan PWM / SPEAKER Timer2 (#23672)

commit f8571fc18fc7a846e321581979a093d135c71999
Author: ellensp <[email protected]>
Date:   Sat Feb 5 05:24:38 2022 +1300

    🐛 Creality v4 cleanup, pin correction (#23666)

commit fbbf556e0886d8b2d69bf5b64540b123d37f4894
Author: Scott Lahteine <[email protected]>
Date:   Mon Feb 21 20:50:09 2022 -0600

    🔨 Workspace file with recommendation

commit 1cdaddaaf20fa359f4513e13baf08e4df0271fd9
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 1 17:28:29 2022 -0600

    🔧 Board temp sensor check

commit 4d8976bf6bbf8cd3f8ab25f48cfa163265da4469
Author: ellensp <[email protected]>
Date:   Mon Jan 31 00:34:03 2022 +1300

    🐛 Fix FYSETC S6, S6 V2 Serial RX pins (#23642)

commit c02bc3887aa23dfeb933a47c38bcf8ddfd6fe40c
Author: Mike La Spina <[email protected]>
Date:   Sun Jan 30 05:31:56 2022 -0600

    🐛 Fix AVR 644/1284 Timer / PWM conflicts (#23629)

commit 68dfc5056492f70c24b780564622d178346e240d
Author: Scott Lahteine <[email protected]>
Date:   Thu Jan 27 07:05:26 2022 -0600

    🧑‍💻 Simplify Fast PWM timer macros

commit c7b0626b02fba7ac37a918e6cc2b2f86556fd1e1
Author: Mike La Spina <[email protected]>
Date:   Wed Jan 26 14:01:22 2022 -0600

    🐛 Fix SPI DMA and default mode (#23627)

    Followup to #23464

commit 30d1f0ba81ffdb477fab7370584238e69f88cc8f
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 26 13:40:29 2022 -0600

    📝 Update Creality 4.2.2 driver warning

commit 758dc7af9d340dd5ece4c98374e60a213567a4ec
Author: Keith Bennett <[email protected]>
Date:   Wed Jan 26 10:33:10 2022 -0800

    🚸 Better "Bed Tramming Done" dialog (#23616)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 361dab93b387d3b1b5b62da016da0614d457db3d
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 25 18:33:30 2022 -0600

    ✨ BOARD_CREALITY_V24S1_301 (#23620)

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit f0f1d33980acef6ab2e202d7c4922453e6ad46dc
Author: ellensp <[email protected]>
Date:   Wed Jan 26 13:08:15 2022 +1300

    ✅ FYSETC TFT81050 CI Test (#23604)

commit 38e0e92e9d798fa8bb373e7b876b5f08b07fac0f
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 25 17:19:20 2022 -0600

    ✏️ Fix MKS enum

commit 2dcc3ddeedcbebf1bbd1b1cfc4bd8be17f14d020
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 25 15:33:03 2022 -0600

    🧑‍💻 HAS_MARLINUI_MENU, HAS_MANUAL_MOVE_MENU

commit 33c89547f041843c3bb8e247654ed861825b5f4a
Author: Timofey Titovets <[email protected]>
Date:   Tue Jan 25 12:36:09 2022 +0300

    ⚡️ Tuned Thermistor 66 (T-D500) (#23585)

commit a4ea8bc1e121301fe4dfaf304ae482709fae1754
Author: Lars <[email protected]>
Date:   Tue Jan 25 10:30:45 2022 +0100

    🐛 Fix DGUS_Reloaded G-code execution (#23592)

commit 9f06079549ffad265579e6933bb81491fc179892
Author: Keith Bennett <[email protected]>
Date:   Tue Jan 25 01:25:19 2022 -0800

    🐛 Fix Creality DWIN LCD with SKR Mini E3 V3 (#23593)

commit 2f48c30445281266adf19bc00232db66f885f516
Author: DejitaruJin <[email protected]>
Date:   Tue Jan 25 03:52:23 2022 -0500

    🩹 Fix DWIN float debugging (#23601)

commit 50906876824881a807917310e05f77b9d6f9b04b
Author: Keith Bennett <[email protected]>
Date:   Tue Jan 25 00:09:53 2022 -0800

    🔨 Creality RCT6 (256K) variants (#23599)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 2d032b734c7a2e92af597e44dcf111b551d4f6a6
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 22 10:19:26 2022 -0600

    🧑‍💻 Fix up some AUX / EXP pins (#23577)

commit 2142456a255d66aa8bda782d9950c024039e21f5
Author: Mike La Spina <[email protected]>
Date:   Sat Jan 22 10:16:41 2022 -0600

    🐛 Fix LCD contrast/brightness init (#23567)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99f3b8b4a8238bf11ae6ee70c58e3e053abfcffc
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 22 10:14:47 2022 -0600

    ♻️ Adjust LCD init, contrast default, settings load

commit de0bc19230a0d253fd6d6f4a945a465abf67ab70
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 10 15:20:13 2022 -0800

    🚸 TH3D EZBoard V2 TMC slave addresses (#23857)

commit 17099e797334abeb0cd92156e32af1e9e5d671ee
Author: John Lagonikas <[email protected]>
Date:   Thu Jan 20 13:58:36 2022 +0200

    🩹 Fix power.h compile (#23573)

commit 63f3e347d999767f98810955621847a989f642ac
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 19 18:33:19 2022 -0600

    🩹 BOARD_INIT followup

commit 32ff8c1489e658c2c29c8664ccee04d988c9f4ca
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 19 05:12:03 2022 -0600

    🧑‍💻 Add chmod to mfprep

commit 369ba99fdb95887371e3fcac3e88b8fb6e980b81
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 19 05:11:06 2022 -0600

    🩹 Fix Robin Nano BOARD_INIT

commit f33ec4aacfff4af61879d8cd2de66e03706e1b84
Author: Scott Lahteine <[email protected]>
Date:   Mon Feb 15 04:10:17 2021 -0600

    📝 Tweak G26 Q description

commit 1d0ca179b54efed64e6951fc93e974ee92df9a9e
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 19 03:27:10 2022 -0600

    🎨 LCD_SCREEN_ROT_* => LCD_SCREEN_ROTATE

commit 8ea172cafeed9d39afe5dbdda3aec6e876d9b513
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 19 02:20:32 2022 -0600

    🎨 Misc. style and cleanup

commit 7b4f5108ace3e4a8891613465e86602f0b2ce5c1
Author: John Lagonikas <[email protected]>
Date:   Wed Jan 19 10:13:47 2022 +0200

    🐛 Fix conditional M81 suicide (#23549)

commit 6f82d1befbb8061fab4730b4d0adf7a745257959
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 18 03:18:37 2022 -0600

    📌 RAMPS AUX 1-2 headers (#23544)

commit 5d5be55ef9fd9607d5c02380890472df99039cf0
Author: Fahad Alduraibi <[email protected]>
Date:   Tue Jan 18 12:16:39 2022 +0300

    🐛 Fix RAMPS 1.4 Plus EXP headers (#23523)

commit e704de9bb05ac57011ac80700f7bd97c9d45eaff
Author: GHGiampy <[email protected]>
Date:   Tue Jan 18 07:56:11 2022 +0100

    ✨ Long filename open/create/write (#23526)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 8695f462b757eb0762d9b108f2329ebc9f7e1678
Author: A. Herlas <[email protected]>
Date:   Sun Jan 16 06:08:31 2022 +0100

    ✨ Z Offset Wizard for TFT_LVGL_UI (English) (#23489)

commit d8c5e49281…
LCh-77 pushed a commit to LCh-77/Marlin that referenced this pull request Jun 29, 2022
LCh-77 pushed a commit to LCh-77/Marlin that referenced this pull request Jun 29, 2022
LCh-77 pushed a commit to LCh-77/Marlin that referenced this pull request Jul 18, 2022
PhilomathJ pushed a commit to PhilomathJ/Marlin-Firmware that referenced this pull request Jul 18, 2022
Stigoe added a commit to Stigoe/Marlin that referenced this pull request Oct 14, 2022
commit 01f96a103be4369f27a009f9b524c3cc5cd821d2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:46 2022 -0500

    🔖 Marlin 2.0.9.5

commit 3638ce2b31ea3749685e034c4bf6a0eba92ee0f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:03 2022 -0500

    🚑️ Fix XYZEval = N not setting E

commit 889d1224907240aee42331ec3b011260c3f56ffe
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:14:01 2022 -0500

    🧑‍💻 Further script updates

commit dc3322b639223e4592ef724ca7d1aadd8451feee
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:08:42 2022 -0500

    🧑‍💻 Axis macros parity with 2.1.x

commit 25521cb9b2069db9bf2ab0b9576e6201c34d97e4
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat May 28 17:34:36 2022 -0500

    🚸 Fix, update ProUI (#24251, #24473, #24500)

commit 593b734d18847298acc6c1489ea97fb8528f53ec
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:53:36 2022 -0500

    ♻️ Small sound / buzz refactor (#24520)

commit 2952f0be5de7a82f706f74550aba17e7be3d378f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 29 04:12:38 2022 -0700

    Updates from #24560

commit 752f3d440dd72d869140268dc79f3efb49043c1e
Author: tombrazier <[email protected]>
Date:   Sat Jul 16 00:15:51 2022 +0100

    ⚡️ Optimize Planner calculations (#24484, #24509)

commit 5c46ae4f003a796292fa585f4d8f959dc2e503a7
Author: tombrazier <[email protected]>
Date:   Fri Jul 8 20:41:39 2022 +0100

    ⚡️ Optimize G2-G3 Arcs (#24366)

commit af6995845cfe50edc81881b5de523cfc28efc099
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:30:26 2022 -0500

    🩹 Revert extra axis changes

commit 8e6aa1b113bafea1af6c0ffa9d07980cb6f90e41
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:00:07 2022 -0500

    🧑‍💻 Fix and improve build_all_examples

commit 929ce5e859858bf3db475fb4aaa49899b22f1d68
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 10 22:00:10 2022 -0500

    🧑‍💻 Add Sim debug with lldb

commit 3a5e87cdb76ced2e84eccecf220289dc70e9a741
Author: ellensp <[email protected]>
Date:   Wed Jul 20 10:32:08 2022 +1200

    📺 SKR_MINI_SCREEN_ADAPTER for BTT SKR Mini E3 V3 (#24521)

commit 35e1384decb6b521c729c5eb77281e01b8cdc29f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 15 15:43:43 2022 -0700

    📝 Update board MCU comments (#24486)

commit 406c2342fd5556a0c54a090f38b674cd82f9fa2a
Author: InsanityAutomation <[email protected]>
Date:   Mon Jul 18 21:12:27 2022 -0400

    🚸 Machine-relative Z_STEPPER_ALIGN_XY (#24261)

    Co-authored-by: Scott Lahteine <[email protected]>

commit fa50d2c757f9b1fecc133d511c4fc1297842e184
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 04:00:39 2022 -0500

    🧑‍💻 Fix MAP macro use

    Followup to #24191

commit 6523b92014f2fd6de97c6b44dc1cfd22526b03a2
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit 2461138661bdeed44c8291229237107680803843
Author: lujios <[email protected]>
Date:   Tue Jun 7 02:22:17 2022 +0200

    🩹 Fix G33 Delta Sensorless Probing compile (#24291)

commit 2bb9a5ee5efbf054a7f63083532c4762437a19f1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 03:42:04 2022 -0500

    🩹 Apply linearval in M600

commit 0a4aa0978dfa6c198eac85cdcc09f6de59cbba55
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 8 13:30:03 2022 -0700

    🔧 Assert Probe Temp Comp requirements (#24468)

commit 39863d54b06e9b9394815467bde3b44500eebab3
Author: ellensp <[email protected]>
Date:   Sat Apr 23 21:16:15 2022 +1200

    🐛 Fix BACKLASH_COMPENSATION compile (#24072)

    Followup to #23826

commit cea45d49bc3c510e4fa38dead1d65c335f0737ae
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 9 19:17:04 2022 -0500

    🎨 Misc. 6-axis cleanup

commit 34f9c28fd16e5cc77636bcaad5ba40c56a521375
Author: Pauli Jokela <[email protected]>
Date:   Thu Jul 7 18:59:23 2022 +0300

    🩹 Fix safe homing sanity-check (#24462)

commit bf084254dab5dab9a38ea275db4846e956589758
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:15:57 2022 -0500

    🎨 Fix comments, formatting

commit 6f51f19257a1f3a3594270169d8a8d74e312f2ba
Author: Christophe Huriaux <[email protected]>
Date:   Wed Jul 6 22:43:38 2022 +0200

    🩹 Fix ST7565 LCD contrast init (#24457)

commit 56974af3e5c8958569b409ddcffabf35ecb53692
Author: Mike La Spina <[email protected]>
Date:   Fri Jul 8 15:02:12 2022 -0500

    🐛 Fix laser/fan sync (#24460)

    Followup to #22690, 307dfb15

commit f9154eca8cdfbff885934f90f49209ea112593d8
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 21:46:38 2022 -0500

    🩹 Fix TFT image packing

commit a03516a9f40f8723c21fc4d1f26b6e06c635ed2c
Author: DerAndere <[email protected]>
Date:   Mon Apr 4 04:43:42 2022 +0200

    🚸 Better M350, M114 with more axes (#23986)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f18b0f6f4b42baa2f3aa7761ae3263dbea04ee4b
Author: toomuchwonder <[email protected]>
Date:   Thu Jul 14 04:17:53 2022 +0100

    🩹 Fix MKS UI extruder speed (#24476)

commit d617002a6eec353cc1dcc69aab268cb8d71c52e3
Author: Miguel Risco-Castillo <[email protected]>
Date:   Thu Jul 14 00:00:33 2022 -0500

    🚸 Fix and update ProUI (#24477)

commit 01f16daf42a49c6c37f63e389c9c1df2d6d130f8
Author: InsanityAutomation <[email protected]>
Date:   Wed Jul 20 04:08:19 2022 -0400

    🐛 Fix Archim2 USB Hang (#24314)

commit ff1ecb00cc52b33136a1a42d0d339af7db92fcae
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 28 20:52:33 2022 -0500

    🎨 Misc. 'else' cleanup

commit 750a8dbe7fedcbbe1a651cb0bc24fe0b5753eaf1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 12:38:00 2022 -0500

    🩹 Fix MAX31865 approximations

    Followup to #24407

commit ba8f109f8aa7de5b869244ef95441f5870729856
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:52:47 2022 -0500

    🩹 Fix manual move titles (#24518)

commit 77fc65ddc2753c8170597157c77cc58132f4c092
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:52:27 2022 -0500

    🏗️ Extend AXIS_CHAR to include E

    Co-Authored-By: DerAndere <[email protected]>

commit af24e1b77ee9fdff8a9551bdc7cd5ef47c302afd
Author: kisslorand <[email protected]>
Date:   Tue May 31 20:05:57 2022 +0300

    Fix axis string 'N' (#24259)

    Followup to 167672d

commit 36d508c5a0c959191bf8f6ec7508dfdc259a7661
Author: Ludy <[email protected]>
Date:   Thu Jul 28 04:44:21 2022 +0200

    🌐 Update German language (#24555)

commit 9f5aab1a6164c7837b8352cd63ac7b2c8e1f8988
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 27 04:24:50 2022 -0500

    🧑‍💻  Update planner/stepper includes

commit 62d29ade426328a4924ed2838fcea8e113e1c1f9
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 21:15:44 2022 -0500

    🩹 Fix lcd_preheat compile

commit c801cc4830eca838f19a61cc55a0bf31cfcfd43c
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 14:54:54 2022 -0500

    🔨 Update build/CI scripts

commit bc91b1cdcdc09d368653d5a9430d349e6775f81e
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 24 13:51:43 2022 -0500

    🎨 PIO scripts cleanup

commit c847ef02a1c6b9c88f523b8fc2961df0a28c0904
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 12:02:37 2022 -0700

    📺 Fix TFT Classic UI non-Touchscreen 1024x600 (#24541)

commit cdda90f56c3dc4a9a40eb2528cc92a7cd408436f
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 11:47:07 2022 -0700

    📝 Update MPCTEMP G-Code M306 T (#24535)

    M306 simply reports current values. M306 T starts autotune process.

commit ad4bc378b7b574a8c094872b42b541de3596fb7b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:43:03 2022 -0500

    📝 Update Driver Type comments

commit 99710b94d29763c25ab764513ce1efdbb5baf13b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 78fc5acca99f1717033d09f0358d9564857d1f09
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:11:33 2022 -0500

    🔨 Add mftest --default flag

commit e616542c891e3f2d107da528fc46173c84652a47
Author: Arthur Masson <[email protected]>
Date:   Sat Jul 16 23:58:18 2022 +0200

    ✨ Polargraph M665 settings (#24401)

commit a50bb96d2dd22263c3e55566c789bd717cb7fcdf
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 653f0ab9dd95e07afb2e5f3a5536328f1f3daff1
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 02:56:55 2022 -0500

    🔨 Fix and update Makefile

    Followup to 89fe5f6d

commit c96ed8998b971a5a00a6aa4aca6d9f9b812fdab1
Author: Jason Smith <[email protected]>
Date:   Thu Jul 7 21:43:56 2022 -0700

    🩹 Fix LCD_BACKLIGHT_TIMEOUT compile (#24463)

commit b025c18d5b9d86c09b766a15f2ccaf45f340626f
Author: Mike La Spina <[email protected]>
Date:   Wed Jul 6 07:46:39 2022 -0500

    ⚡️ Fix and improve Inline Laser Power (#22690)

commit b49da1d4ca1056cd28a396e878bf37c45af43441
Author: tombrazier <[email protected]>
Date:   Tue May 31 18:01:59 2022 +0100

    💥 More M306 M => M306 H (#24258)

    Followup to #24253

commit 90074e626012ae74d51f4e47216b99cbe2c783d4
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 14:32:16 2022 -0700

    🎨 Fix/adjust warnings (#24225, #24404)

commit e570c4cc2ed1b284834fcb809973c80a1002b784
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 17:45:07 2022 -0500

    🧑‍💻 Forward-compatible axis strings

commit 543bbf02fc552cd121b85f3444bcbf87fbb1faee
Author: DerAndere <[email protected]>
Date:   Tue Apr 19 05:15:15 2022 +0200

    💥 Update Motor Current G-codes for extra axes (#23975)

commit 5ccdc9ced7639f646c01f757ac6afa1f42007021
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:13:11 2022 -0500

    🏗️ Axis name arrays

    Co-Authored-By: DerAndere <[email protected]>

commit ddb0168e29878d626d6b36a89b6b4850ad5d4ebe
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 22:37:20 2022 -0500

    ♻️ More updates for multi-axis

commit 0caf234aa5ae143bec8e9fc0ef52f632317e8fd1
Author: GHGiampy <[email protected]>
Date:   Fri Jul 15 10:18:57 2022 +0200

    🔨 Fix firmware upload (#24499)

commit dddbc4d730a1120b5f37b40f7393bc42e3651297
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:56:13 2022 -0500

    🔨 PlatformIO "--target upload" == "--target exec"

commit 08e6e8b9be0614fbacab998a20bf9bad1b1af94f
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 3 10:32:47 2022 -0500

    ♻️ Encapsulate PID in class (#24389)

commit 12ae80bcecb8329fb0548342228d8edffeeba115
Author: Victor Oliveira <[email protected]>
Date:   Sat Jul 2 21:31:27 2022 -0300

    🔨 Disable stack protector on macOS simulator (#24443)

commit 9e530cd27b790f3dce30963c6d98af043ba5abf5
Author: Eduard Sukharev <[email protected]>
Date:   Wed Jul 6 16:30:47 2022 +0300

    🐛 Fix MKS TinyBee compile (#24454)

commit 0ec1cb58c77d37886d0b6a0c683122ea614d7e20
Author: EvilGremlin <[email protected]>
Date:   Mon Jul 4 04:49:23 2022 +0300

    🔨 Fix OpenBLT encode; no-bootloader envs (#24446)

commit b548e21b656f751305acf9d613144748e847b1e0
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:30:05 2022 -0500

    ♻️  reset_acceleration_rates => refresh_…

commit e170460855cf002c44a4a2d5cc8d538794fea7fa
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:24:59 2022 -0500

    ♻️ Planner flags refactor

commit b7b2286e49c3ddf5060e26b9c03bdb6c2207eeba
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 047d0264c5ddc5dde152eaebc6507b242d05ca02
Author: elimisback <[email protected]>
Date:   Sat May 28 16:22:59 2022 -0400

    🔨 BTT STM32G0B1RE xfer build (#24245)

commit c56fb1c1820248f256b4255de175eab854591d49
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 04:29:39 2022 -0500

    🎨 Minimize block->steps.set

commit d5a79c27fe764edb295c3ed9ee3df1765c9ded27
Author: DerAndere <[email protected]>
Date:   Fri Apr 1 07:10:38 2022 +0200

    ♻️ More updates for multi-axis

    Based on #23112

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 1e3fe65b9dd0555b77cac1832ad820253e200618
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 17:49:54 2022 -0600

    🚨 Fix some compiler warnings

commit af4160af6f79acc4725916f311c16dfc3d1013c7
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 13:03:33 2022 -0500

    🐛 Fix types.h macros and fields

    Fixes #24419

commit 53b73bbd7fc17172c5d5c4820ee11092e9c92926
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 17 22:25:51 2022 -0500

    🔧 Config parity with 2.1.x

commit 3b37e859491000034f73ada784931da9aaa63e1a
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:26:36 2022 -0500

    🚸 Arrange EXP pins in common order (#24525)

commit a1881f70a89e96ab9d95a3c6f169d97416f729db
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 11 11:33:42 2022 -0700

    ✨ MKS Monster8 V2 (#24483)

commit 6ad7f7ce985831c2947703cc2d5a7daf5cd0f201
Author: Christophe Huriaux <[email protected]>
Date:   Sat Jul 16 23:35:40 2022 +0200

    ✨ eMotion-Tech eMotronic (Micro-Delta rework) (#24488)

commit 9fe4d2cc6cee4db08f16deffa7356c1de0477f8e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jul 14 03:30:00 2022 -0300

    ✨ Creality3D v4.2.5 / CR200B (#24491)

commit 5bd0541985c1571ba753160957a418ce47df9abf
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 22:31:06 2022 -0700

    ✨ BigTreeTech SKR SE BX V3.0 (#24449)

    SKR SE BX V3.0 removes the Reverse Driver Protection feature.

commit 35d5393a3e2f41cdc0b5929af6f349e41d705c13
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 20:16:16 2022 -0500

    📝 Index Mobo Rev03 => Opulo Lumen Rev3

commit 1ffc4ba861cce00457c4ce79503eacac58297c29
Author: DerAndere <[email protected]>
Date:   Mon Apr 18 06:03:39 2022 +0200

    🩹 Fix some parameters w/out values (#24051)

commit 2bf6573098687b203ee1f3adf3f66b7a3e05163b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 9 11:08:53 2022 -0500

    🐛 Fix SDIO for STM32 (#24470)

    Followup to #24271

commit 5e0a39265ac82952a0ec73144de6f9d2497b6b48
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 495002e158e289ee7c90663aaa0aeb61942cb28d
Author: tombrazier <[email protected]>
Date:   Sat Jul 23 05:32:28 2022 +0100

    🐛 Fix 2d mesh print (#24536)

commit adeca472922700cc63a0d0e1324c5b0cf91be68c
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 686d1fbb510b5060d4a23baae67a8fda0374b65c
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 13 21:22:53 2022 -0500

    🎨 ANY => EITHER

commit 8f84ce72e118478e582d45e97b7f7f0727e59522
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 8 22:45:17 2022 -0500

    Fix SDIO for STM32

    Followup to #24271

commit 5bf02e39a9159b0397a93f10571841f4d1bbc807
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 09:08:43 2022 -0700

    🚸 MPCTEMP: Home before cooling (#24434)

commit a5b076dff727fba479fe00e97e9d9332953addb3
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 08:08:40 2022 -0700

    🩹 Fix MKS TinyBee ADC Vref (#24432)

commit b79231cc59d6746f6714af102763d59488ea753a
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 21:17:32 2022 -0500

    🩹 Remove poison wchar_t macro

commit 86e6f9e38ea7a4653f11094221bcf4be20d0fef3
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 20:10:51 2022 -0500

    🩹 Remove obsolete split_move

commit b3018da60c6cf12f22c9e9b7954bcddc2cb4b686
Author: Moonglow <[email protected]>
Date:   Fri Jul 1 05:51:55 2022 +0300

    🐛 Fix M149 (#24430)

commit 0d04aa960f49196eca9f3da17846460b322d10c6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 17:14:23 2022 -0500

    🩹 Fix memset block warning

commit 0d34c2e287b582598a75cad0bb6ddd8bbd1fbba6
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 29 06:24:22 2022 -0700

    🐛 Fix Axis Homing (#24425)

    Followup to 4520a51

commit 1690f49656788ddb580c0f8311095800ad65881b
Author: John Lagonikas <[email protected]>
Date:   Wed Jun 29 01:53:05 2022 +0300

    🐛 Fix MAX31865 PT1000 normalization (#24407)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dbdb39f60ff1a97050f09d76f8f4de101d03d30a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:32:00 2022 -0500

    📝  Note about UBL bad splits

commit 843c04baa6df0db350ff759abcfa3f3fe431e5a2
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 10:01:22 2022 -0500

    🎨  Misc. shorthand operators

commit a7c58c1fd6463407331596623f8ff07c8a07481a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 05:47:18 2022 -0500

    🐛 Fix Manual Move axis selection (#24404)

commit 3af5c32ea23e8bca1e7c233006987286e980f982
Author: Shlee <[email protected]>
Date:   Sun Jun 26 06:56:57 2022 +0000

    📝 Add STM32F4 example, Ruby (#24399)

commit 4039075a1d7b96482a59987fb78f3e500ede0efb
Author: Giuliano Zaro <[email protected]>
Date:   Sun Jun 26 08:52:19 2022 +0200

    🌐 Update Italian language (#24398)

commit ed796c83541a9cbbb615fe7be6007735ad279f07
Author: Roman Moravčík <[email protected]>
Date:   Sun Jun 26 08:51:16 2022 +0200

    🌐 Update Slovak language (#24397)

commit f3c64fd397b28d132e72852956a36e64d9d53f43
Author: sgparry <[email protected]>
Date:   Sun Jun 26 07:49:57 2022 +0100

    🩹 Fix LCD contrast with K8800 board

commit b220342b26b3ed327ce6723e4912163bd76661f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 24 22:07:06 2022 -0500

    🌐 Drop unused delta strings

commit 4dad5871888fd99fea0ec918c04f1c134f49ab8a
Author: InsanityAutomation <[email protected]>
Date:   Tue Jun 21 22:09:24 2022 -0400

    🐛 Resolve DUE Servo pulse issue (#24305)

    Co-authored-by: sjasonsmith <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 1efe48ef656b38e6f60bbd193e66ae9c54f85a9d
Author: tombrazier <[email protected]>
Date:   Sat Jun 18 05:17:12 2022 +0100

    🐛 Fix G2/G3 Arcs stutter / JD speed (#24362)

commit ae8365a4e56d91374e1ea20e6edb1c0bf041ad46
Author: Bob Kuhn <[email protected]>
Date:   Thu Jun 23 23:58:26 2022 -0500

    🐛 Fix Lerdge build / encrypt (#24391)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dd68461bb1a2bc714f6b48008d2cf87c1e9e1d4e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jun 23 06:18:36 2022 -0300

    ✨ Classic UI BIQU BX (#24387)

commit 010fbcccf7fc2aa7c421fa5df1a9d1a32f477fcc
Author: ellensp <[email protected]>
Date:   Wed Jun 22 22:08:24 2022 +1200

    🩹 Fix DGUS (MKS) compile (#24378)

commit 185fe5696c9843096a0619797566d7e27d573d75
Author: Victor Oliveira <[email protected]>
Date:   Wed Jun 22 05:33:03 2022 -0300

    🚑️ Fix BIQU BX touch freeze (#24383)

commit 7edd37bc5aeeff9c55442bf6d142c3cb9357995c
Author: ellensp <[email protected]>
Date:   Wed Jun 22 16:13:18 2022 +1200

    🐛 Fix M423 invocation (#24360)

    Followup to #23745

commit 000042702108a0c0e8428350961398c4d39e3273
Author: tombrazier <[email protected]>
Date:   Wed Jun 22 03:45:22 2022 +0100

    🩹 LCD strings followup, fix warning (#24328)

commit 0d1d125bc69bf1634faecea6d0a2862677f584d3
Author: ellensp <[email protected]>
Date:   Wed Jun 22 10:33:25 2022 +1200

    🚑️ Fix SD mount bug (#24319)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 22e82a13d993e5b0ac1e7f56a77eabbf6da79dfe
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:12 2022 -0500

    🎨 Simplify move menus with substitution

commit 70d72354e2469eb66378e2da3a52ecd6db3f3447
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:23 2022 -0500

    🎨 Use MAP for home axis items

commit 821f4983d01430b9fc9ba5ccb44ea7ace4bf31e0
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:35 2022 -0500

    🧑‍💻 Fix STATIC_ITEM_N arg order

commit 15ca479708d39977c76acb73aaf1deca78810206
Author: Scott Lahteine <[email protected]>
Date:   Tue Jun 21 23:28:19 2022 -0500

    🎨 Fix comments, formatting

commit 2b8d115ebc08ee3ac03d680eff40d2b8079c2b44
Author: John Robertson <[email protected]>
Date:   Sat Jun 4 07:26:08 2022 +0100

    ⚡️ PWM for ESP32 I2S expander (#24193)

commit ae78a8844ae47d1b22f04e4545a29c19a0f8b214
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:08:29 2022 -0500

    🧑‍💻 MAP macro for axis lists, etc. (#24191)

commit f26438ef2870d88b057fba3c892f1ab4fd82b952
Author: Keith Bennett <[email protected]>
Date:   Mon Jun 13 19:04:49 2022 -0700

    👷 Use Biqu BX for CI test (#24331)

commit ce6c8adcb1002049f27513fdb0c74ce9831386cc
Author: ellensp <[email protected]>
Date:   Wed Jun 15 20:02:32 2022 +1200

    👷 CI test without src filter (emulate Arduino) (#24335)

commit d57cf9bd6b6d70dda6fe2bba9b83849a9688408a
Author: luzpaz <[email protected]>
Date:   Sat Jun 18 00:19:01 2022 -0400

    🌐 Fix LCD string, typos (#24324)

commit 5408259f51394e2c2a48879c0119251f324f0e12
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 13 20:43:23 2022 -0500

    🧑‍💻 Apply F() to some LCD / TFT strings

    Followup to #24228

commit f31178f868882905d210504e763052ca639782f9
Author: ellensp <[email protected]>
Date:   Tue Jun 14 13:38:19 2022 +1200

    🩹 Fix missing ProUI cpp wrapper (#24313)

commit f976e56a1993adede0ed854326e0cab214d90295
Author: ellensp <[email protected]>
Date:   Sat Jun 11 17:03:20 2022 +1200

    🐛 Fix JGAurora A5S A1 build (#24326)

commit 571007e5c9a1e407ef7f72b555e1d207be2f256f
Author: Steven Haigh <[email protected]>
Date:   Sat Jun 11 12:08:55 2022 +1000

    🩹 Fix ProUI compile (#24310)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 00527f38d59d8b466d515da801844197073c7bcc
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:47 2022 -0500

    🧑‍💻 Misc. servo code cleanup

commit 1c7696838b04051115d246fff173846cf74ea4d9
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:08 2022 -0500

    🧑‍💻 Remove servo macros

commit ad786a7930f1a0516427f7e0d827402387549ead
Author: tombrazier <[email protected]>
Date:   Tue Jun 7 01:23:55 2022 +0100

    🩹 Fix Mesh Leveling + Debug compile (#24297)

commit ce9c81dfa12ebde0a0a55663523c782afecbd85c
Author: ellensp <[email protected]>
Date:   Tue Jun 7 18:59:21 2022 +1200

    🩹 Media Change followup (#24302)

    Followup to #24015

commit 92910721d0c4cc79ad0f8a64fb11b2c15bf3619d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 19:06:03 2022 -0500

    👔 Fix and comment use_example_configs

commit 236251a2ce4f055ab96af0008c882ffe77f5dac8
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Jun 6 00:01:06 2022 -0500

    🚸 ProUI G-code preview, PID plot (#24282)

commit 369542db3bb34c28196a77838a2f018180a7da74
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:23:43 2022 -0500

    🔖 Marlin 2.0.9.4

commit 40d96c3460117eeab1742d74c2d78b57b4a9a1b6
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 5 20:26:40 2022 -0500

    👔 Remove actions from misc. branch

commit d7a71beaf4f08e60c3d13049f1046bbb663c643d
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 18:16:43 2022 -0500

    🔧 LEVEL_BED_CORNERS => LCD_BED_TRAMMING

commit f3b593ae73b5d21b5c270a5f5ede0fe982822b07
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 12:43:44 2022 -0500

    🎨 Fix spelling, whitespace

commit 1d8d8dccf45d2090e075b148d4f08e299184392c
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    💥 Num Axes / Multi-Stepper based on Driver Types (#24106, #24120)

commit 1e127a93c4c1446cf11aacecc9597a7355262ac8
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:15:23 2022 -0500

    🧑‍💻 Extend LCD string substitution (#24278)

commit fcef8d946cbd45e27ba9888f1e18327b68d52b00
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 0253500ccd5a7192f3e545cb5552c4ab7b309c5d
Author: Tanguy Pruvot <[email protected]>
Date:   Wed May 25 08:07:11 2022 +0200

    Use default null args in select_screen

commit 0d783a76907ace17f0d61ebe8882ebee9bc6ce3b
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:22:09 2022 +1200

    🐛 Init Stepper SPI before PSU Control (#24269)

commit e784e0413204680f3c8f3a8cdf519fb5bee7a164
Author: BIGTREETECH <[email protected]>
Date:   Thu Jun 2 17:02:06 2022 +0800

    ✨ BigTreeTech SKR3 - STM32H743 (#24271, #24272, #24275)

    Co-Authored-By: Alan.Ma <[email protected]>

commit 11d68e31274fccd20c8bb72eec0b4ad547962823
Author: bryan065 <[email protected]>
Date:   Thu Jun 2 04:51:39 2022 -0400

    🚸 Custom Menu Items for JyersUI (#24270)

commit 8b8b2a7ed35908b6a49d5b3badb230d3283792bb
Author: ledzepman71 <[email protected]>
Date:   Thu Jun 2 02:49:48 2022 -0600

    📌 Tenlog PSU pin (#24266)

commit fc1a620b878b45675b9a7972be6c1fb2882b8092
Author: tombrazier <[email protected]>
Date:   Sat May 28 23:40:08 2022 +0100

    🚩 MPC update (#24253)

commit 9799907dc9a53810e87fd5b54e2194d30e70eff8
Author: Keith Bennett <[email protected]>
Date:   Tue May 31 14:28:01 2022 -0700

    👔 Configs required to submit a Bug Report (#24256)

commit 6fc4dbbbc4b3b1e6820f4f18b81602451bb1786c
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 17:05:09 2022 -0500

    🚸 Change M201 G to S

commit 74596ad4d7f9117e06829b5657d7402f27a445ce
Author: Robby Candra <[email protected]>
Date:   Mon May 23 09:13:17 2022 +0700

    🩹 Adjust manage_media for slow/late media init (USB FD) (#24015)

commit 28f8646aa64b8baf6f93197d04b0802580272e40
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 19:56:46 2022 -0500

    ♻️ Apply F() to more LCD code (#24228)

commit 9a74bcd4cf13efa2d7cfb365182d7e097eaa1f1d
Author: John Robertson <[email protected]>
Date:   Tue May 31 23:09:44 2022 +0100

    ✨ Laser Safety Timeout (#24189)

commit 07cd248b91a59db8e2bc7ad10bbf160852af34fb
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 20:45:37 2022 -0500

    ♻️ Move watchdog to MarlinHAL

commit 209c792ef7e97dc48bf3517c9f8f56e6be80e97f
Author: Scott Lahteine <[email protected]>
Date:   Fri May 20 11:27:09 2022 -0500

    🔧 Remove LCD_SERIAL_PORT defaults, warn on auto-assign (#24170)

commit dbd00d992705a07b3da769549495d6505cb96b43
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (#23992)

    Co-authored-by: borland1 <[email protected]>

commit 4ae54a6229d1704bfc54a85233af40b69e924246
Author: Ludy <[email protected]>
Date:   Mon Apr 18 11:43:34 2022 +0200

    🐛 Update German language, Fix FTDI (#24047, #24048, #24227)

commit ce0af56d0aa4371620b142ba5b2ed3b455813a5d
Author: tombrazier <[email protected]>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (#23984, #24018, #24049, #24059)

commit 6c557a248016f2e89e259d2d5ee8e000521099bb
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (#23983)

commit a6ce9bf559d963c3cdcb6db7f57a572bc58016ea
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (#24014)

commit 21c838cb1b86c3ffd5958c68d82f6c0c25e78dbe
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (#23751)

commit 3443a9e18bf2c9797037f141d68ab409d6b3c00b
Author: Pauli Jokela <[email protected]>
Date:   Thu May 12 05:23:16 2022 +0300

    ✨ SOUND_ON_DEFAULT option (#24102)

commit b2b5b85045e689d311e472d803817e08b49ccaec
Author: Robert Brenckman <[email protected]>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (#21142)

commit 2086cc9f4e21dfc060c1ff034856ad4e6219f5f8
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:37:40 2022 -0500

    📝 Refer to 'PROGMEM' as 'flash'

commit 8eccfd4a6f90da93a4f13b8aa7fbd88a1f8cca46
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:35:38 2022 -0500

    🔧 Bed/Chamber PID Autotune menus

    Derived from MarlinFirmware/Marlin#23983

commit 9ab654adcb15ba23b42ed1f13ca34130e422dbc2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 22:06:32 2022 -0500

    🐛 Fix min/max temp evaluation

    Fixes #24257

commit 0ae982188c23ddab4e3a2d819c679166a7e19532
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 23:19:18 2022 -0500

    🐛 Fix M203 report

commit bed0788f723a0695726eab52e8da0b48298c619f
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit deb1ba73bbdd3aacaeec6c7d9540c41e93ddfdfe
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 15:11:43 2022 -0500

    🎨 Use pos.set method

commit 57f0ac88af9e8c5eb398c8367edf471900a5171f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 14:41:50 2022 -0500

    🎨  Misc. boards/pins cleanup

commit 915bce495cdc5168c982274f6deabc92e052c2c7
Author: Simon Pilepich <[email protected]>
Date:   Sat May 28 08:08:24 2022 +1000

    📝 Fix Mightyboard MOSFET comments (#24183)

commit 800a936caae83f4e5ca5dd2c2660518bd6fc43b2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ccf39b1c42fa787f645fbf0ac075cc47b72b18d3
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit d19179ce281cec58865fcbc99185abeb48a611b9
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 4a6ae1b64df5fa8824e20688399683bf11b840e2
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit 0daaef589c956d152c846760dfc157fdd1b7975b
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 4831cbebd80d6e2c6bcf504446cf6d0f2441c285
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit e0deb75764938995e32bc589d646ec397c4a3019
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0fe4f48956299cb298e6e48255ea72ba93dad79
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 4d65d7f142882bcd77072fc7dc5c01ca937a2e81
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit 1b879f0ee4e5539c237edf235b6ca38b5b2beb43
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit b6abc760cef73a1dfc0e186f40687d0a45c8a769
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 0ae061713c631d44cd12ad266ca9c7fdd856d72c
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 1d12e72bf697f7e3cb63995a20ba9e98fbce3eb9
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit c97cf10956ee33c80e557fb09e4cc75d30a0db82
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit b72f9277e9e89a7dcdc12c8f11273f7c76a064d4
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit 06c4a9acdb3f08a2052ea55d00fa350e9249bcb4
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit 8a301196e11d87d7e9db065d0d802910a664c5be
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 1e7219f4a643f8cbdbcd9685ebb5a76d02c89601
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 02c267f542223ed0d8b098da4bec6f09710d6bc8
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit fe77fc66c0004ba9a4459dd5a12c978dd0308bb1
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit 268a16b1ef1c5cd462e81aef08e4e9f7d2c65658
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 8351b1431f8bad178f2f8a3ec70b32a1d4d7ca2c
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 718806761f1e9d903d61408e2039357bfe46fff8
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit 78c7fedcea34f0c630f8e9fd46bc5d3244de04c5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit c4b8339b842958faae2567c339bcf9b44434a2ce
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 94ed67e36ef84cb4ecd8f3f1470041d4d72f7088
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit 03b819bdb235c6eb2cd0a02b832bb8f108cc5962
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 2204f05dcaabf0e639f1e1722ffd293d4b415fe3
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a13cceaad16dd2caedbf3b05ae0854b1200cb51e
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 5c25ed60c80d7b06cb91e91f98b1aca6bc648d79
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1c516bdd5e71fc3da05fb52da692c9c5ccb0c0d7
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit 425684e2ffecf85dccab1eb4242772bc97992eb8
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 63aecad7eef034d8cb2b3e81f8a22db8a148b90b
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit dcd769b4a18bd40f9664262d081d553994d8eb78
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit f9b7f00d1e1c1004e0c2a9c35e23c1c67dc47172
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit a6ff63d5060c0ef68c2ae9f6ccf3bcada2ec6b6e
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit 7d37ae2b2b1ea6613dbc8be0ec5fa30dbd6a87de
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7d40ec654a3eca783a19e93e7bb6f394f2e6d29
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit 7ed339cfa0a2d8298e0293cf465daaf4ac74c0f9
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit cb4ad020af2f56dc060ecafdfd58b0639a8f0199
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 0805f9bf3f631d914bb6ff4817d65a9ab237fe6c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d235bc9e1c5eeb210275a4abcf89a757d0259cc0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit d5f472a6cf4456bf715ee3b3a85132f3fbe7e15f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit d67fa98cf601a8ef2642641a8aefbcdab1d5bcc2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit d3fe0caa7f83b8e971e8503b5344e20811d6c812
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit bd09f8acff3c40fe9294cfc6b6a9220ec5b766fc
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit a9aca5f5e8c5c1ce40e09ce5cf80a875ec009aa0
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 13d1eb7241b8621267520e57811f8069b2e466e9
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 238ab1dd061145a525edd27bb8203ae216380894
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7e4061d1221531340e9f82bc6f1560e5d6feab8
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit 31c87adba80d50a90ae3c85b08cd01c5545c78b4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 727e7e7fd71fb0404e0f5bf7f36dc10419d155c4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 975b90c0b7e6b836f67f3603c80f818dc095ffa5
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format (#24110)

commit 8f0180802ad327a0be47be9405a9a2764b5937db
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit aa4c9917552df8a383816a0af516b86e1237ff48
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 9ab1a57d729cfa207adfe3ee6d24d40de3bb159c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 044bf8ab7ef7045583c9da175b8ebddd2b750f84
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit 4bdec5e99330a35387c09adc27be94c5082b4405
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 7444933d5d4fc93c6278e091be5af7e4f61b1d9c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit f35404f853ba185814bd17a4742ef34688ceba98
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit 7fa2dceddafcfeea4b2599fa2b9fe3542abd4c1f
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix ProUI / JyersUI leveling preheat (#24060, #24064)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 4c84769a814ab6534a1edebc66529b568c9d6d7e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit 8fb3074901f83034cc240834a2fc75aad0ed43ad
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 230db90b70f1cafdea6fe3a8c28499e92004be53
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 28d2bc353ebbddc0ce0b96a634108392eb1089b4
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 7b5e2cd78619ba4334c0fe94b3f8293ed8d6e1ee
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 4b456078ddc1099c081e1e7149aba612c8f41008
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 8d3c84a6d969bf9fa576a17b0054d5b98324622d
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011, #24111)

commit cbc6f23a8af0c864e3607dc24764582149c0d1f3
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit bed8abe5b6df751d7dafc6f0f8d8dff7338625ce
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit 74565890f335f26fa7012d0164eb2964c0f2918d
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868, #24009, #24107)

commit 4ec9af42b8e24cf6ce9f238c9342bc1c11120429
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit b0d621d8b96fffda485efa45e61a68126613a766
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 995221e68e15693697fc7f10dfc31273ea188157
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 54e543872be13439523cecb6b670b7b4bf818164
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit 7b39604d6f58b46de18a41eb4a7de5058d9c4b35
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 01c9c2666123f0959b02b757d2acd6adc18f4284
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 27b148442826780c8fc4f7ab8c21608de21f0587
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7f1c5ad7aa6dc437d3a76abf8a36cb971e1f424e
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#23979, #24013)

commit 4fd7d1b056bfab9f31c272ae6d8f256ed2ed202d
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit 7ffe4de021254d34762d2a7ecd239ded0eca949d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit eada17ed69ede29d83f7c3897d64e2872faaae18
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit cd5c5ea60eb20d643ab2447bc3550b3eb5874a39
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit e9ea82e78d0c95ef1cee599093b4c91a6f97d709
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 18b17fc97d8474b2fe5c5cd7afcfdce05ba7d5cc
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit 89d5ed0c9e5570e4a025719a9ad183e505c8ed8a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit a56bf9045d3e68101c42ced30884fa34675279c5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit c23d0351495a7fc1c396d157642db49db2754135
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 7ff4b706947e63d708cef90c936b936305947e58
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 421c38ff2e0de3a8d5cd913232aa3448dbfbc487
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit ec447dba04409c2b60d61b9bacab54c101bd9f3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit be6535e5f7a39529bd081ed38a1bf76fa645488f
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99252cf0cd5a8a01228c715a505cb1eaf6b853e5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit f6f31434b8c0e21f98fef460e0c8492fd4c240d5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 2f3960904e1a7b830c686fa793b122de49f3d674
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 2dc4c642e78bb4fa99ca41f3ae3c92335248ffd4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit 70ea0e7c3450680e1062088243d2cf139eadc02a
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit a81fd009f081eca3685e42cffac7f35e75428fea
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit e667d4e6e43b407cedce6bbf543ea1d815e8d520
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 2d0af75d37c9ea8ab44c889ef4e489b3b533eb30
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 5e68a86968d63f97f0febb8378b2a508e909ec90
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 8bd1547c3bb16cdce37412624161fab5b9d5ead6
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit a5e083603f1435a4a0e2e9fa7449c9133aa73225
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit c5f7547e8cf0d744fb1392b3651078d3985cecb1
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit 5c5b380fda9f541ee182e614966fc39a72ac6a18
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit bb0e0cf7f35cf3b89aac4f395185d55f3aa62979
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit 5ee99dfc49eaa8e81f5beb66eb1c160ac2d217fb
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit a083b1280ec80a525766c0a9487865b76de64c81
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit b7b5cee88baadfb10822b6bb13b6e7d3b0acaff8
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit 7456fd68a41b12592f3ac3f47308f7037ca22b86
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 20154718b5a41c1522a313ada06ef5c35ce2023d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit a6794c1862c663b387637597dba5f258a3e0e1e2
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit bd5c6bf23c1478dcab31cc1c2edcd0fa546eb6ea
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 68ee64283a7aab95c2f70eaf734e24b9d909dfa7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit dd29394bbe17ab6458817cce65b94f106252092f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit ceb99e89a081d2230479e9bb7b63c23d14bf0b98
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit 6112277f9b2d24a7c9effeb5966dadef279a261c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 81f403025c3ddb479ccf363fb091ac0fcf8e667b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eeda8b451acb2a0ae96656876f6a7682d43aca1d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit c7e8ba78576af230278a5662103acf421dc59bfd
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit 071e5c336a157ca39b75081b8cb4436a72af965e
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit be08d4c4f01e2c297365664bd3e0f7dc2b051fde
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit e99104a0040f58477809c9e2b9506fe2bcd94331
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944, #23948)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit edc4089121bcd96645b7be6bbd3dafa88c510ede
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 3bce266ef7865a62b5e79c7c5c67a068bb5e4c20
Author: ellensp <[email protected]>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (#23943)

    Followup to 89a9c3a391

commit c89d0114acba957d63e894bc1a479ec10cb18a81
Author: Robby Candra <[email protected]>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (#23135)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e693854d0c86fa0998a5d497607d42d6798f6ab
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 9324132a401cf0ab3781c9992d607bd4f88ba086
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 5632ad65f59710ca64e4abca99afa64cb99d559e
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit eccbfbcede60922b95971e90bf3a1d7983a5fe39
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 5ef4fb378e345e20d1fa3bdbc5312598dc571276
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to #23925

commit 21f0945d2cfada672756709bc420feb11768e687
Author: Oleg Belov <[email protected]>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (#23936)

commit b2a318af9a0c8e91b1f66a5576226b50b1b49f1b
Author: Serhiy-K <[email protected]>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (#23935)

commit 1c89c0470f2778f8051ff8514831138e64a2d9ed
Author: ellensp <[email protected]>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (#23931)

commit 2ee4a667e1999839e61fa4c7d4e31a88d6e301d6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:47:22 2022 -0600

    💡 Misc. cleanup, comments

commit f8e177a43efa3e7a173e2799562d354ab95544ab
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 9ac1c73041cbf4015b48d9d7a70a59e840a1d442
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit 4a8b99d505584d1fa5eb71d588da1bb60c3a2878
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit b094a3fc0d647f7daff7c4d97db32f9d41e4c11d
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit 2d99a608fd993fd5cb75223b72deadfc969a13c1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit fba8805c0cd87845c80d9cd7738b94332a35e27b
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 039a22649f4e0201d7580b63c1a414450353438a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit ced0ad8e094baecf6e3ee8eaa36c61baaa5743fc
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 10a0c9a9b3d4070326954c5c2354cfd8ba490f0c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit abfb0411809568970221281a3614e30970f0dfc1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 72f207f4895d5db34f697cb203876405b98d89c8
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit 7186037f20a2a2c57624e31c1e99adc37759c5f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit b0a400da72f6752619a82246fac55a07a4e67f3c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit cc4c2c2f98a1742d6b462481f74dacf5b5b93961
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit 5dae8a67344cfeda3de6d40fcd14498542004fe9
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 05dea4e30a1768913ec7d1f38c65b9423200a558
Author: Fredrik Andersson <[email protected]>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (#23925)

commit 7e88ee8c5cc87395e73c45bcd743f3ab0302773b
Author: Mark <[email protected]>
Date:   Fri Mar 18 12:49:47 2022 +0800

    📌 PandaPi V2.9 – Standalone mode (#23908)

commit cc8e485e1c55fb2fcdba7dc8f6b89041ed18e9ce
Author: John Robertson <[email protected]>
Date:   Fri Mar 18 03:21:53 2022 +0000

    ✨ ESP32 - Hardware PWM for fan, cutter, servos (#23802)

commit c7a2ecc31aa4def9e60668f5cfc648d87776be9b
Author: ellensp <[email protected]>
Date:   Fri Mar 18 16:17:41 2022 +1300

    🩹 Fix xatc EEPROM debug (#23911)

commit 260b40d1453a9310581c45d3e1327a3103b36a22
Author: tombrazier <[email protected]>
Date:   Fri Mar 18 03:15:26 2022 +0000

    ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (#23867)

commit c87eded8f6183c33bd9b9a74dd577fe6c77c32df
Author: Ludy <[email protected]>
Date:   Fri Mar 18 02:55:33 2022 +0100

    🩹 Fix redundant var declaration (#23913)

commit 2f2a999368f22f2c6b3105ab481987c2025bc50e
Author: John Robertson <[email protected]>
Date:   Thu Mar 17 19:35:33 2022 +0000

    🐛 MKS TinyBee - 2.5V ADC Vref (#23903)

commit 2558b323e85006c3c9f6a03bcaa82f61c95da0bb
Author: Jelmer van der Stel <[email protected]>
Date:   Sun Mar 13 23:20:30 2022 +0100

    🩹 Fix DWIN E3V2 display issues by allowing re-init (#23879)

commit 1db685593922214e49496d805dc9ea099e227f50
Author: Mrnt <[email protected]>
Date:   Sun Mar 13 15:17:35 2022 -0700

    🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (#23885)

commit 62f298aca39ff17bc7a51f49b9ff6b5b17a76c30
Author: Julien Staub <[email protected]>
Date:   Sun Mar 13 23:09:32 2022 +0100

    🩹 Fix ExtUI build with Host Keepalive disabled (#23898)

commit 8d20c5aadfff34a024665ea349c0b66834e4d305
Author: InsanityAutomation <[email protected]>
Date:   Sun Mar 13 18:00:35 2022 -0400

    📝 Fix X2_MAX_POS comment (#23873)

commit 61b470249c1cfa361f25060940cc8b7f8a8f64e9
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:59:43 2022 -0500

    📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

commit 4ffa88f814f3ddcb7273b73c9bb68773bcf1fd51
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:46:08 2022 -0500

    🚸 Test LIN_ADVANCE in a pins file

commit 8257040fafe758ac1913e9bf633fa0c9930dd9cb
Author: Mathew Winters <[email protected]>
Date:   Sun Mar 13 14:13:41 2022 +1300

    ⚡️ G12 - Only require used axes to be homed (#23422)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d9ab7e71eed56f242d4fae32836f305bb1ff680
Author: Keith Bennett <[email protected]>
Date:   Sat Mar 12 16:23:29 2022 -0800

    🔨 Drop extraneous build flag (#23862)

commit 1a76d4d467ebb3d8ed1df39767efa99beb08e854
Author: Nick <[email protected]>
Date:   Sat Mar 12 23:47:47 2022 +0000

    🐛 Fix Chiron new TFT SD print after reset (#23855)

commit 4028c1cfc7bcaf78e49bb98b527353ec30a970de
Author: Scott…
Krifto pushed a commit to Krifto/Marlin-Neptune3 that referenced this pull request Oct 19, 2022
pierre-quelin added a commit to pierre-quelin/MyMarlin that referenced this pull request Nov 13, 2022
commit 01f96a103be4369f27a009f9b524c3cc5cd821d2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:46 2022 -0500

    🔖 Marlin 2.0.9.5

commit 3638ce2b31ea3749685e034c4bf6a0eba92ee0f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:03 2022 -0500

    🚑️ Fix XYZEval = N not setting E

commit 889d1224907240aee42331ec3b011260c3f56ffe
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:14:01 2022 -0500

    🧑‍💻 Further script updates

commit dc3322b639223e4592ef724ca7d1aadd8451feee
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:08:42 2022 -0500

    🧑‍💻 Axis macros parity with 2.1.x

commit 25521cb9b2069db9bf2ab0b9576e6201c34d97e4
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat May 28 17:34:36 2022 -0500

    🚸 Fix, update ProUI (#24251, #24473, #24500)

commit 593b734d18847298acc6c1489ea97fb8528f53ec
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:53:36 2022 -0500

    ♻️ Small sound / buzz refactor (#24520)

commit 2952f0be5de7a82f706f74550aba17e7be3d378f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 29 04:12:38 2022 -0700

    Updates from #24560

commit 752f3d440dd72d869140268dc79f3efb49043c1e
Author: tombrazier <[email protected]>
Date:   Sat Jul 16 00:15:51 2022 +0100

    ⚡️ Optimize Planner calculations (#24484, #24509)

commit 5c46ae4f003a796292fa585f4d8f959dc2e503a7
Author: tombrazier <[email protected]>
Date:   Fri Jul 8 20:41:39 2022 +0100

    ⚡️ Optimize G2-G3 Arcs (#24366)

commit af6995845cfe50edc81881b5de523cfc28efc099
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:30:26 2022 -0500

    🩹 Revert extra axis changes

commit 8e6aa1b113bafea1af6c0ffa9d07980cb6f90e41
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:00:07 2022 -0500

    🧑‍💻 Fix and improve build_all_examples

commit 929ce5e859858bf3db475fb4aaa49899b22f1d68
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 10 22:00:10 2022 -0500

    🧑‍💻 Add Sim debug with lldb

commit 3a5e87cdb76ced2e84eccecf220289dc70e9a741
Author: ellensp <[email protected]>
Date:   Wed Jul 20 10:32:08 2022 +1200

    📺 SKR_MINI_SCREEN_ADAPTER for BTT SKR Mini E3 V3 (#24521)

commit 35e1384decb6b521c729c5eb77281e01b8cdc29f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 15 15:43:43 2022 -0700

    📝 Update board MCU comments (#24486)

commit 406c2342fd5556a0c54a090f38b674cd82f9fa2a
Author: InsanityAutomation <[email protected]>
Date:   Mon Jul 18 21:12:27 2022 -0400

    🚸 Machine-relative Z_STEPPER_ALIGN_XY (#24261)

    Co-authored-by: Scott Lahteine <[email protected]>

commit fa50d2c757f9b1fecc133d511c4fc1297842e184
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 04:00:39 2022 -0500

    🧑‍💻 Fix MAP macro use

    Followup to #24191

commit 6523b92014f2fd6de97c6b44dc1cfd22526b03a2
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit 2461138661bdeed44c8291229237107680803843
Author: lujios <[email protected]>
Date:   Tue Jun 7 02:22:17 2022 +0200

    🩹 Fix G33 Delta Sensorless Probing compile (#24291)

commit 2bb9a5ee5efbf054a7f63083532c4762437a19f1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 03:42:04 2022 -0500

    🩹 Apply linearval in M600

commit 0a4aa0978dfa6c198eac85cdcc09f6de59cbba55
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 8 13:30:03 2022 -0700

    🔧 Assert Probe Temp Comp requirements (#24468)

commit 39863d54b06e9b9394815467bde3b44500eebab3
Author: ellensp <[email protected]>
Date:   Sat Apr 23 21:16:15 2022 +1200

    🐛 Fix BACKLASH_COMPENSATION compile (#24072)

    Followup to #23826

commit cea45d49bc3c510e4fa38dead1d65c335f0737ae
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 9 19:17:04 2022 -0500

    🎨 Misc. 6-axis cleanup

commit 34f9c28fd16e5cc77636bcaad5ba40c56a521375
Author: Pauli Jokela <[email protected]>
Date:   Thu Jul 7 18:59:23 2022 +0300

    🩹 Fix safe homing sanity-check (#24462)

commit bf084254dab5dab9a38ea275db4846e956589758
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:15:57 2022 -0500

    🎨 Fix comments, formatting

commit 6f51f19257a1f3a3594270169d8a8d74e312f2ba
Author: Christophe Huriaux <[email protected]>
Date:   Wed Jul 6 22:43:38 2022 +0200

    🩹 Fix ST7565 LCD contrast init (#24457)

commit 56974af3e5c8958569b409ddcffabf35ecb53692
Author: Mike La Spina <[email protected]>
Date:   Fri Jul 8 15:02:12 2022 -0500

    🐛 Fix laser/fan sync (#24460)

    Followup to #22690, 307dfb15

commit f9154eca8cdfbff885934f90f49209ea112593d8
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 21:46:38 2022 -0500

    🩹 Fix TFT image packing

commit a03516a9f40f8723c21fc4d1f26b6e06c635ed2c
Author: DerAndere <[email protected]>
Date:   Mon Apr 4 04:43:42 2022 +0200

    🚸 Better M350, M114 with more axes (#23986)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f18b0f6f4b42baa2f3aa7761ae3263dbea04ee4b
Author: toomuchwonder <[email protected]>
Date:   Thu Jul 14 04:17:53 2022 +0100

    🩹 Fix MKS UI extruder speed (#24476)

commit d617002a6eec353cc1dcc69aab268cb8d71c52e3
Author: Miguel Risco-Castillo <[email protected]>
Date:   Thu Jul 14 00:00:33 2022 -0500

    🚸 Fix and update ProUI (#24477)

commit 01f16daf42a49c6c37f63e389c9c1df2d6d130f8
Author: InsanityAutomation <[email protected]>
Date:   Wed Jul 20 04:08:19 2022 -0400

    🐛 Fix Archim2 USB Hang (#24314)

commit ff1ecb00cc52b33136a1a42d0d339af7db92fcae
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 28 20:52:33 2022 -0500

    🎨 Misc. 'else' cleanup

commit 750a8dbe7fedcbbe1a651cb0bc24fe0b5753eaf1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 12:38:00 2022 -0500

    🩹 Fix MAX31865 approximations

    Followup to #24407

commit ba8f109f8aa7de5b869244ef95441f5870729856
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:52:47 2022 -0500

    🩹 Fix manual move titles (#24518)

commit 77fc65ddc2753c8170597157c77cc58132f4c092
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:52:27 2022 -0500

    🏗️ Extend AXIS_CHAR to include E

    Co-Authored-By: DerAndere <[email protected]>

commit af24e1b77ee9fdff8a9551bdc7cd5ef47c302afd
Author: kisslorand <[email protected]>
Date:   Tue May 31 20:05:57 2022 +0300

    Fix axis string 'N' (#24259)

    Followup to 167672d

commit 36d508c5a0c959191bf8f6ec7508dfdc259a7661
Author: Ludy <[email protected]>
Date:   Thu Jul 28 04:44:21 2022 +0200

    🌐 Update German language (#24555)

commit 9f5aab1a6164c7837b8352cd63ac7b2c8e1f8988
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 27 04:24:50 2022 -0500

    🧑‍💻  Update planner/stepper includes

commit 62d29ade426328a4924ed2838fcea8e113e1c1f9
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 21:15:44 2022 -0500

    🩹 Fix lcd_preheat compile

commit c801cc4830eca838f19a61cc55a0bf31cfcfd43c
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 14:54:54 2022 -0500

    🔨 Update build/CI scripts

commit bc91b1cdcdc09d368653d5a9430d349e6775f81e
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 24 13:51:43 2022 -0500

    🎨 PIO scripts cleanup

commit c847ef02a1c6b9c88f523b8fc2961df0a28c0904
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 12:02:37 2022 -0700

    📺 Fix TFT Classic UI non-Touchscreen 1024x600 (#24541)

commit cdda90f56c3dc4a9a40eb2528cc92a7cd408436f
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 11:47:07 2022 -0700

    📝 Update MPCTEMP G-Code M306 T (#24535)

    M306 simply reports current values. M306 T starts autotune process.

commit ad4bc378b7b574a8c094872b42b541de3596fb7b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:43:03 2022 -0500

    📝 Update Driver Type comments

commit 99710b94d29763c25ab764513ce1efdbb5baf13b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 78fc5acca99f1717033d09f0358d9564857d1f09
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:11:33 2022 -0500

    🔨 Add mftest --default flag

commit e616542c891e3f2d107da528fc46173c84652a47
Author: Arthur Masson <[email protected]>
Date:   Sat Jul 16 23:58:18 2022 +0200

    ✨ Polargraph M665 settings (#24401)

commit a50bb96d2dd22263c3e55566c789bd717cb7fcdf
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 653f0ab9dd95e07afb2e5f3a5536328f1f3daff1
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 02:56:55 2022 -0500

    🔨 Fix and update Makefile

    Followup to 89fe5f6d

commit c96ed8998b971a5a00a6aa4aca6d9f9b812fdab1
Author: Jason Smith <[email protected]>
Date:   Thu Jul 7 21:43:56 2022 -0700

    🩹 Fix LCD_BACKLIGHT_TIMEOUT compile (#24463)

commit b025c18d5b9d86c09b766a15f2ccaf45f340626f
Author: Mike La Spina <[email protected]>
Date:   Wed Jul 6 07:46:39 2022 -0500

    ⚡️ Fix and improve Inline Laser Power (#22690)

commit b49da1d4ca1056cd28a396e878bf37c45af43441
Author: tombrazier <[email protected]>
Date:   Tue May 31 18:01:59 2022 +0100

    💥 More M306 M => M306 H (#24258)

    Followup to #24253

commit 90074e626012ae74d51f4e47216b99cbe2c783d4
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 14:32:16 2022 -0700

    🎨 Fix/adjust warnings (#24225, #24404)

commit e570c4cc2ed1b284834fcb809973c80a1002b784
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 17:45:07 2022 -0500

    🧑‍💻 Forward-compatible axis strings

commit 543bbf02fc552cd121b85f3444bcbf87fbb1faee
Author: DerAndere <[email protected]>
Date:   Tue Apr 19 05:15:15 2022 +0200

    💥 Update Motor Current G-codes for extra axes (#23975)

commit 5ccdc9ced7639f646c01f757ac6afa1f42007021
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:13:11 2022 -0500

    🏗️ Axis name arrays

    Co-Authored-By: DerAndere <[email protected]>

commit ddb0168e29878d626d6b36a89b6b4850ad5d4ebe
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 22:37:20 2022 -0500

    ♻️ More updates for multi-axis

commit 0caf234aa5ae143bec8e9fc0ef52f632317e8fd1
Author: GHGiampy <[email protected]>
Date:   Fri Jul 15 10:18:57 2022 +0200

    🔨 Fix firmware upload (#24499)

commit dddbc4d730a1120b5f37b40f7393bc42e3651297
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:56:13 2022 -0500

    🔨 PlatformIO "--target upload" == "--target exec"

commit 08e6e8b9be0614fbacab998a20bf9bad1b1af94f
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 3 10:32:47 2022 -0500

    ♻️ Encapsulate PID in class (#24389)

commit 12ae80bcecb8329fb0548342228d8edffeeba115
Author: Victor Oliveira <[email protected]>
Date:   Sat Jul 2 21:31:27 2022 -0300

    🔨 Disable stack protector on macOS simulator (#24443)

commit 9e530cd27b790f3dce30963c6d98af043ba5abf5
Author: Eduard Sukharev <[email protected]>
Date:   Wed Jul 6 16:30:47 2022 +0300

    🐛 Fix MKS TinyBee compile (#24454)

commit 0ec1cb58c77d37886d0b6a0c683122ea614d7e20
Author: EvilGremlin <[email protected]>
Date:   Mon Jul 4 04:49:23 2022 +0300

    🔨 Fix OpenBLT encode; no-bootloader envs (#24446)

commit b548e21b656f751305acf9d613144748e847b1e0
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:30:05 2022 -0500

    ♻️  reset_acceleration_rates => refresh_…

commit e170460855cf002c44a4a2d5cc8d538794fea7fa
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:24:59 2022 -0500

    ♻️ Planner flags refactor

commit b7b2286e49c3ddf5060e26b9c03bdb6c2207eeba
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 047d0264c5ddc5dde152eaebc6507b242d05ca02
Author: elimisback <[email protected]>
Date:   Sat May 28 16:22:59 2022 -0400

    🔨 BTT STM32G0B1RE xfer build (#24245)

commit c56fb1c1820248f256b4255de175eab854591d49
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 04:29:39 2022 -0500

    🎨 Minimize block->steps.set

commit d5a79c27fe764edb295c3ed9ee3df1765c9ded27
Author: DerAndere <[email protected]>
Date:   Fri Apr 1 07:10:38 2022 +0200

    ♻️ More updates for multi-axis

    Based on #23112

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 1e3fe65b9dd0555b77cac1832ad820253e200618
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 17:49:54 2022 -0600

    🚨 Fix some compiler warnings

commit af4160af6f79acc4725916f311c16dfc3d1013c7
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 13:03:33 2022 -0500

    🐛 Fix types.h macros and fields

    Fixes #24419

commit 53b73bbd7fc17172c5d5c4820ee11092e9c92926
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 17 22:25:51 2022 -0500

    🔧 Config parity with 2.1.x

commit 3b37e859491000034f73ada784931da9aaa63e1a
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:26:36 2022 -0500

    🚸 Arrange EXP pins in common order (#24525)

commit a1881f70a89e96ab9d95a3c6f169d97416f729db
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 11 11:33:42 2022 -0700

    ✨ MKS Monster8 V2 (#24483)

commit 6ad7f7ce985831c2947703cc2d5a7daf5cd0f201
Author: Christophe Huriaux <[email protected]>
Date:   Sat Jul 16 23:35:40 2022 +0200

    ✨ eMotion-Tech eMotronic (Micro-Delta rework) (#24488)

commit 9fe4d2cc6cee4db08f16deffa7356c1de0477f8e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jul 14 03:30:00 2022 -0300

    ✨ Creality3D v4.2.5 / CR200B (#24491)

commit 5bd0541985c1571ba753160957a418ce47df9abf
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 22:31:06 2022 -0700

    ✨ BigTreeTech SKR SE BX V3.0 (#24449)

    SKR SE BX V3.0 removes the Reverse Driver Protection feature.

commit 35d5393a3e2f41cdc0b5929af6f349e41d705c13
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 20:16:16 2022 -0500

    📝 Index Mobo Rev03 => Opulo Lumen Rev3

commit 1ffc4ba861cce00457c4ce79503eacac58297c29
Author: DerAndere <[email protected]>
Date:   Mon Apr 18 06:03:39 2022 +0200

    🩹 Fix some parameters w/out values (#24051)

commit 2bf6573098687b203ee1f3adf3f66b7a3e05163b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 9 11:08:53 2022 -0500

    🐛 Fix SDIO for STM32 (#24470)

    Followup to #24271

commit 5e0a39265ac82952a0ec73144de6f9d2497b6b48
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 495002e158e289ee7c90663aaa0aeb61942cb28d
Author: tombrazier <[email protected]>
Date:   Sat Jul 23 05:32:28 2022 +0100

    🐛 Fix 2d mesh print (#24536)

commit adeca472922700cc63a0d0e1324c5b0cf91be68c
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 686d1fbb510b5060d4a23baae67a8fda0374b65c
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 13 21:22:53 2022 -0500

    🎨 ANY => EITHER

commit 8f84ce72e118478e582d45e97b7f7f0727e59522
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 8 22:45:17 2022 -0500

    Fix SDIO for STM32

    Followup to #24271

commit 5bf02e39a9159b0397a93f10571841f4d1bbc807
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 09:08:43 2022 -0700

    🚸 MPCTEMP: Home before cooling (#24434)

commit a5b076dff727fba479fe00e97e9d9332953addb3
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 08:08:40 2022 -0700

    🩹 Fix MKS TinyBee ADC Vref (#24432)

commit b79231cc59d6746f6714af102763d59488ea753a
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 21:17:32 2022 -0500

    🩹 Remove poison wchar_t macro

commit 86e6f9e38ea7a4653f11094221bcf4be20d0fef3
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 20:10:51 2022 -0500

    🩹 Remove obsolete split_move

commit b3018da60c6cf12f22c9e9b7954bcddc2cb4b686
Author: Moonglow <[email protected]>
Date:   Fri Jul 1 05:51:55 2022 +0300

    🐛 Fix M149 (#24430)

commit 0d04aa960f49196eca9f3da17846460b322d10c6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 17:14:23 2022 -0500

    🩹 Fix memset block warning

commit 0d34c2e287b582598a75cad0bb6ddd8bbd1fbba6
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 29 06:24:22 2022 -0700

    🐛 Fix Axis Homing (#24425)

    Followup to 4520a51

commit 1690f49656788ddb580c0f8311095800ad65881b
Author: John Lagonikas <[email protected]>
Date:   Wed Jun 29 01:53:05 2022 +0300

    🐛 Fix MAX31865 PT1000 normalization (#24407)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dbdb39f60ff1a97050f09d76f8f4de101d03d30a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:32:00 2022 -0500

    📝  Note about UBL bad splits

commit 843c04baa6df0db350ff759abcfa3f3fe431e5a2
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 10:01:22 2022 -0500

    🎨  Misc. shorthand operators

commit a7c58c1fd6463407331596623f8ff07c8a07481a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 05:47:18 2022 -0500

    🐛 Fix Manual Move axis selection (#24404)

commit 3af5c32ea23e8bca1e7c233006987286e980f982
Author: Shlee <[email protected]>
Date:   Sun Jun 26 06:56:57 2022 +0000

    📝 Add STM32F4 example, Ruby (#24399)

commit 4039075a1d7b96482a59987fb78f3e500ede0efb
Author: Giuliano Zaro <[email protected]>
Date:   Sun Jun 26 08:52:19 2022 +0200

    🌐 Update Italian language (#24398)

commit ed796c83541a9cbbb615fe7be6007735ad279f07
Author: Roman Moravčík <[email protected]>
Date:   Sun Jun 26 08:51:16 2022 +0200

    🌐 Update Slovak language (#24397)

commit f3c64fd397b28d132e72852956a36e64d9d53f43
Author: sgparry <[email protected]>
Date:   Sun Jun 26 07:49:57 2022 +0100

    🩹 Fix LCD contrast with K8800 board

commit b220342b26b3ed327ce6723e4912163bd76661f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 24 22:07:06 2022 -0500

    🌐 Drop unused delta strings

commit 4dad5871888fd99fea0ec918c04f1c134f49ab8a
Author: InsanityAutomation <[email protected]>
Date:   Tue Jun 21 22:09:24 2022 -0400

    🐛 Resolve DUE Servo pulse issue (#24305)

    Co-authored-by: sjasonsmith <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 1efe48ef656b38e6f60bbd193e66ae9c54f85a9d
Author: tombrazier <[email protected]>
Date:   Sat Jun 18 05:17:12 2022 +0100

    🐛 Fix G2/G3 Arcs stutter / JD speed (#24362)

commit ae8365a4e56d91374e1ea20e6edb1c0bf041ad46
Author: Bob Kuhn <[email protected]>
Date:   Thu Jun 23 23:58:26 2022 -0500

    🐛 Fix Lerdge build / encrypt (#24391)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dd68461bb1a2bc714f6b48008d2cf87c1e9e1d4e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jun 23 06:18:36 2022 -0300

    ✨ Classic UI BIQU BX (#24387)

commit 010fbcccf7fc2aa7c421fa5df1a9d1a32f477fcc
Author: ellensp <[email protected]>
Date:   Wed Jun 22 22:08:24 2022 +1200

    🩹 Fix DGUS (MKS) compile (#24378)

commit 185fe5696c9843096a0619797566d7e27d573d75
Author: Victor Oliveira <[email protected]>
Date:   Wed Jun 22 05:33:03 2022 -0300

    🚑️ Fix BIQU BX touch freeze (#24383)

commit 7edd37bc5aeeff9c55442bf6d142c3cb9357995c
Author: ellensp <[email protected]>
Date:   Wed Jun 22 16:13:18 2022 +1200

    🐛 Fix M423 invocation (#24360)

    Followup to #23745

commit 000042702108a0c0e8428350961398c4d39e3273
Author: tombrazier <[email protected]>
Date:   Wed Jun 22 03:45:22 2022 +0100

    🩹 LCD strings followup, fix warning (#24328)

commit 0d1d125bc69bf1634faecea6d0a2862677f584d3
Author: ellensp <[email protected]>
Date:   Wed Jun 22 10:33:25 2022 +1200

    🚑️ Fix SD mount bug (#24319)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 22e82a13d993e5b0ac1e7f56a77eabbf6da79dfe
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:12 2022 -0500

    🎨 Simplify move menus with substitution

commit 70d72354e2469eb66378e2da3a52ecd6db3f3447
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:23 2022 -0500

    🎨 Use MAP for home axis items

commit 821f4983d01430b9fc9ba5ccb44ea7ace4bf31e0
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:35 2022 -0500

    🧑‍💻 Fix STATIC_ITEM_N arg order

commit 15ca479708d39977c76acb73aaf1deca78810206
Author: Scott Lahteine <[email protected]>
Date:   Tue Jun 21 23:28:19 2022 -0500

    🎨 Fix comments, formatting

commit 2b8d115ebc08ee3ac03d680eff40d2b8079c2b44
Author: John Robertson <[email protected]>
Date:   Sat Jun 4 07:26:08 2022 +0100

    ⚡️ PWM for ESP32 I2S expander (#24193)

commit ae78a8844ae47d1b22f04e4545a29c19a0f8b214
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:08:29 2022 -0500

    🧑‍💻 MAP macro for axis lists, etc. (#24191)

commit f26438ef2870d88b057fba3c892f1ab4fd82b952
Author: Keith Bennett <[email protected]>
Date:   Mon Jun 13 19:04:49 2022 -0700

    👷 Use Biqu BX for CI test (#24331)

commit ce6c8adcb1002049f27513fdb0c74ce9831386cc
Author: ellensp <[email protected]>
Date:   Wed Jun 15 20:02:32 2022 +1200

    👷 CI test without src filter (emulate Arduino) (#24335)

commit d57cf9bd6b6d70dda6fe2bba9b83849a9688408a
Author: luzpaz <[email protected]>
Date:   Sat Jun 18 00:19:01 2022 -0400

    🌐 Fix LCD string, typos (#24324)

commit 5408259f51394e2c2a48879c0119251f324f0e12
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 13 20:43:23 2022 -0500

    🧑‍💻 Apply F() to some LCD / TFT strings

    Followup to #24228

commit f31178f868882905d210504e763052ca639782f9
Author: ellensp <[email protected]>
Date:   Tue Jun 14 13:38:19 2022 +1200

    🩹 Fix missing ProUI cpp wrapper (#24313)

commit f976e56a1993adede0ed854326e0cab214d90295
Author: ellensp <[email protected]>
Date:   Sat Jun 11 17:03:20 2022 +1200

    🐛 Fix JGAurora A5S A1 build (#24326)

commit 571007e5c9a1e407ef7f72b555e1d207be2f256f
Author: Steven Haigh <[email protected]>
Date:   Sat Jun 11 12:08:55 2022 +1000

    🩹 Fix ProUI compile (#24310)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 00527f38d59d8b466d515da801844197073c7bcc
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:47 2022 -0500

    🧑‍💻 Misc. servo code cleanup

commit 1c7696838b04051115d246fff173846cf74ea4d9
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:08 2022 -0500

    🧑‍💻 Remove servo macros

commit ad786a7930f1a0516427f7e0d827402387549ead
Author: tombrazier <[email protected]>
Date:   Tue Jun 7 01:23:55 2022 +0100

    🩹 Fix Mesh Leveling + Debug compile (#24297)

commit ce9c81dfa12ebde0a0a55663523c782afecbd85c
Author: ellensp <[email protected]>
Date:   Tue Jun 7 18:59:21 2022 +1200

    🩹 Media Change followup (#24302)

    Followup to #24015

commit 92910721d0c4cc79ad0f8a64fb11b2c15bf3619d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 19:06:03 2022 -0500

    👔 Fix and comment use_example_configs

commit 236251a2ce4f055ab96af0008c882ffe77f5dac8
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Jun 6 00:01:06 2022 -0500

    🚸 ProUI G-code preview, PID plot (#24282)

commit 369542db3bb34c28196a77838a2f018180a7da74
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:23:43 2022 -0500

    🔖 Marlin 2.0.9.4

commit 40d96c3460117eeab1742d74c2d78b57b4a9a1b6
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 5 20:26:40 2022 -0500

    👔 Remove actions from misc. branch

commit d7a71beaf4f08e60c3d13049f1046bbb663c643d
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 18:16:43 2022 -0500

    🔧 LEVEL_BED_CORNERS => LCD_BED_TRAMMING

commit f3b593ae73b5d21b5c270a5f5ede0fe982822b07
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 12:43:44 2022 -0500

    🎨 Fix spelling, whitespace

commit 1d8d8dccf45d2090e075b148d4f08e299184392c
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    💥 Num Axes / Multi-Stepper based on Driver Types (#24106, #24120)

commit 1e127a93c4c1446cf11aacecc9597a7355262ac8
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:15:23 2022 -0500

    🧑‍💻 Extend LCD string substitution (#24278)

commit fcef8d946cbd45e27ba9888f1e18327b68d52b00
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 0253500ccd5a7192f3e545cb5552c4ab7b309c5d
Author: Tanguy Pruvot <[email protected]>
Date:   Wed May 25 08:07:11 2022 +0200

    Use default null args in select_screen

commit 0d783a76907ace17f0d61ebe8882ebee9bc6ce3b
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:22:09 2022 +1200

    🐛 Init Stepper SPI before PSU Control (#24269)

commit e784e0413204680f3c8f3a8cdf519fb5bee7a164
Author: BIGTREETECH <[email protected]>
Date:   Thu Jun 2 17:02:06 2022 +0800

    ✨ BigTreeTech SKR3 - STM32H743 (#24271, #24272, #24275)

    Co-Authored-By: Alan.Ma <[email protected]>

commit 11d68e31274fccd20c8bb72eec0b4ad547962823
Author: bryan065 <[email protected]>
Date:   Thu Jun 2 04:51:39 2022 -0400

    🚸 Custom Menu Items for JyersUI (#24270)

commit 8b8b2a7ed35908b6a49d5b3badb230d3283792bb
Author: ledzepman71 <[email protected]>
Date:   Thu Jun 2 02:49:48 2022 -0600

    📌 Tenlog PSU pin (#24266)

commit fc1a620b878b45675b9a7972be6c1fb2882b8092
Author: tombrazier <[email protected]>
Date:   Sat May 28 23:40:08 2022 +0100

    🚩 MPC update (#24253)

commit 9799907dc9a53810e87fd5b54e2194d30e70eff8
Author: Keith Bennett <[email protected]>
Date:   Tue May 31 14:28:01 2022 -0700

    👔 Configs required to submit a Bug Report (#24256)

commit 6fc4dbbbc4b3b1e6820f4f18b81602451bb1786c
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 17:05:09 2022 -0500

    🚸 Change M201 G to S

commit 74596ad4d7f9117e06829b5657d7402f27a445ce
Author: Robby Candra <[email protected]>
Date:   Mon May 23 09:13:17 2022 +0700

    🩹 Adjust manage_media for slow/late media init (USB FD) (#24015)

commit 28f8646aa64b8baf6f93197d04b0802580272e40
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 19:56:46 2022 -0500

    ♻️ Apply F() to more LCD code (#24228)

commit 9a74bcd4cf13efa2d7cfb365182d7e097eaa1f1d
Author: John Robertson <[email protected]>
Date:   Tue May 31 23:09:44 2022 +0100

    ✨ Laser Safety Timeout (#24189)

commit 07cd248b91a59db8e2bc7ad10bbf160852af34fb
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 20:45:37 2022 -0500

    ♻️ Move watchdog to MarlinHAL

commit 209c792ef7e97dc48bf3517c9f8f56e6be80e97f
Author: Scott Lahteine <[email protected]>
Date:   Fri May 20 11:27:09 2022 -0500

    🔧 Remove LCD_SERIAL_PORT defaults, warn on auto-assign (#24170)

commit dbd00d992705a07b3da769549495d6505cb96b43
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (#23992)

    Co-authored-by: borland1 <[email protected]>

commit 4ae54a6229d1704bfc54a85233af40b69e924246
Author: Ludy <[email protected]>
Date:   Mon Apr 18 11:43:34 2022 +0200

    🐛 Update German language, Fix FTDI (#24047, #24048, #24227)

commit ce0af56d0aa4371620b142ba5b2ed3b455813a5d
Author: tombrazier <[email protected]>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (#23984, #24018, #24049, #24059)

commit 6c557a248016f2e89e259d2d5ee8e000521099bb
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (#23983)

commit a6ce9bf559d963c3cdcb6db7f57a572bc58016ea
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (#24014)

commit 21c838cb1b86c3ffd5958c68d82f6c0c25e78dbe
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (#23751)

commit 3443a9e18bf2c9797037f141d68ab409d6b3c00b
Author: Pauli Jokela <[email protected]>
Date:   Thu May 12 05:23:16 2022 +0300

    ✨ SOUND_ON_DEFAULT option (#24102)

commit b2b5b85045e689d311e472d803817e08b49ccaec
Author: Robert Brenckman <[email protected]>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (#21142)

commit 2086cc9f4e21dfc060c1ff034856ad4e6219f5f8
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:37:40 2022 -0500

    📝 Refer to 'PROGMEM' as 'flash'

commit 8eccfd4a6f90da93a4f13b8aa7fbd88a1f8cca46
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:35:38 2022 -0500

    🔧 Bed/Chamber PID Autotune menus

    Derived from MarlinFirmware/Marlin#23983

commit 9ab654adcb15ba23b42ed1f13ca34130e422dbc2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 22:06:32 2022 -0500

    🐛 Fix min/max temp evaluation

    Fixes #24257

commit 0ae982188c23ddab4e3a2d819c679166a7e19532
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 23:19:18 2022 -0500

    🐛 Fix M203 report

commit bed0788f723a0695726eab52e8da0b48298c619f
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit deb1ba73bbdd3aacaeec6c7d9540c41e93ddfdfe
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 15:11:43 2022 -0500

    🎨 Use pos.set method

commit 57f0ac88af9e8c5eb398c8367edf471900a5171f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 14:41:50 2022 -0500

    🎨  Misc. boards/pins cleanup

commit 915bce495cdc5168c982274f6deabc92e052c2c7
Author: Simon Pilepich <[email protected]>
Date:   Sat May 28 08:08:24 2022 +1000

    📝 Fix Mightyboard MOSFET comments (#24183)

commit 800a936caae83f4e5ca5dd2c2660518bd6fc43b2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ccf39b1c42fa787f645fbf0ac075cc47b72b18d3
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit d19179ce281cec58865fcbc99185abeb48a611b9
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 4a6ae1b64df5fa8824e20688399683bf11b840e2
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit 0daaef589c956d152c846760dfc157fdd1b7975b
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 4831cbebd80d6e2c6bcf504446cf6d0f2441c285
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit e0deb75764938995e32bc589d646ec397c4a3019
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0fe4f48956299cb298e6e48255ea72ba93dad79
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 4d65d7f142882bcd77072fc7dc5c01ca937a2e81
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit 1b879f0ee4e5539c237edf235b6ca38b5b2beb43
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit b6abc760cef73a1dfc0e186f40687d0a45c8a769
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 0ae061713c631d44cd12ad266ca9c7fdd856d72c
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 1d12e72bf697f7e3cb63995a20ba9e98fbce3eb9
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit c97cf10956ee33c80e557fb09e4cc75d30a0db82
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit b72f9277e9e89a7dcdc12c8f11273f7c76a064d4
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit 06c4a9acdb3f08a2052ea55d00fa350e9249bcb4
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit 8a301196e11d87d7e9db065d0d802910a664c5be
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 1e7219f4a643f8cbdbcd9685ebb5a76d02c89601
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 02c267f542223ed0d8b098da4bec6f09710d6bc8
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit fe77fc66c0004ba9a4459dd5a12c978dd0308bb1
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit 268a16b1ef1c5cd462e81aef08e4e9f7d2c65658
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 8351b1431f8bad178f2f8a3ec70b32a1d4d7ca2c
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 718806761f1e9d903d61408e2039357bfe46fff8
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit 78c7fedcea34f0c630f8e9fd46bc5d3244de04c5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit c4b8339b842958faae2567c339bcf9b44434a2ce
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 94ed67e36ef84cb4ecd8f3f1470041d4d72f7088
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit 03b819bdb235c6eb2cd0a02b832bb8f108cc5962
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 2204f05dcaabf0e639f1e1722ffd293d4b415fe3
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a13cceaad16dd2caedbf3b05ae0854b1200cb51e
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 5c25ed60c80d7b06cb91e91f98b1aca6bc648d79
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1c516bdd5e71fc3da05fb52da692c9c5ccb0c0d7
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit 425684e2ffecf85dccab1eb4242772bc97992eb8
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 63aecad7eef034d8cb2b3e81f8a22db8a148b90b
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit dcd769b4a18bd40f9664262d081d553994d8eb78
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit f9b7f00d1e1c1004e0c2a9c35e23c1c67dc47172
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit a6ff63d5060c0ef68c2ae9f6ccf3bcada2ec6b6e
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit 7d37ae2b2b1ea6613dbc8be0ec5fa30dbd6a87de
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7d40ec654a3eca783a19e93e7bb6f394f2e6d29
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit 7ed339cfa0a2d8298e0293cf465daaf4ac74c0f9
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit cb4ad020af2f56dc060ecafdfd58b0639a8f0199
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 0805f9bf3f631d914bb6ff4817d65a9ab237fe6c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d235bc9e1c5eeb210275a4abcf89a757d0259cc0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit d5f472a6cf4456bf715ee3b3a85132f3fbe7e15f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit d67fa98cf601a8ef2642641a8aefbcdab1d5bcc2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit d3fe0caa7f83b8e971e8503b5344e20811d6c812
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit bd09f8acff3c40fe9294cfc6b6a9220ec5b766fc
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit a9aca5f5e8c5c1ce40e09ce5cf80a875ec009aa0
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 13d1eb7241b8621267520e57811f8069b2e466e9
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 238ab1dd061145a525edd27bb8203ae216380894
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7e4061d1221531340e9f82bc6f1560e5d6feab8
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit 31c87adba80d50a90ae3c85b08cd01c5545c78b4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 727e7e7fd71fb0404e0f5bf7f36dc10419d155c4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 975b90c0b7e6b836f67f3603c80f818dc095ffa5
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format (#24110)

commit 8f0180802ad327a0be47be9405a9a2764b5937db
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit aa4c9917552df8a383816a0af516b86e1237ff48
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 9ab1a57d729cfa207adfe3ee6d24d40de3bb159c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 044bf8ab7ef7045583c9da175b8ebddd2b750f84
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit 4bdec5e99330a35387c09adc27be94c5082b4405
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 7444933d5d4fc93c6278e091be5af7e4f61b1d9c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit f35404f853ba185814bd17a4742ef34688ceba98
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit 7fa2dceddafcfeea4b2599fa2b9fe3542abd4c1f
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix ProUI / JyersUI leveling preheat (#24060, #24064)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 4c84769a814ab6534a1edebc66529b568c9d6d7e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit 8fb3074901f83034cc240834a2fc75aad0ed43ad
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 230db90b70f1cafdea6fe3a8c28499e92004be53
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 28d2bc353ebbddc0ce0b96a634108392eb1089b4
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 7b5e2cd78619ba4334c0fe94b3f8293ed8d6e1ee
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 4b456078ddc1099c081e1e7149aba612c8f41008
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 8d3c84a6d969bf9fa576a17b0054d5b98324622d
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011, #24111)

commit cbc6f23a8af0c864e3607dc24764582149c0d1f3
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit bed8abe5b6df751d7dafc6f0f8d8dff7338625ce
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit 74565890f335f26fa7012d0164eb2964c0f2918d
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868, #24009, #24107)

commit 4ec9af42b8e24cf6ce9f238c9342bc1c11120429
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit b0d621d8b96fffda485efa45e61a68126613a766
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 995221e68e15693697fc7f10dfc31273ea188157
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 54e543872be13439523cecb6b670b7b4bf818164
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit 7b39604d6f58b46de18a41eb4a7de5058d9c4b35
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 01c9c2666123f0959b02b757d2acd6adc18f4284
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 27b148442826780c8fc4f7ab8c21608de21f0587
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7f1c5ad7aa6dc437d3a76abf8a36cb971e1f424e
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#23979, #24013)

commit 4fd7d1b056bfab9f31c272ae6d8f256ed2ed202d
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit 7ffe4de021254d34762d2a7ecd239ded0eca949d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit eada17ed69ede29d83f7c3897d64e2872faaae18
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit cd5c5ea60eb20d643ab2447bc3550b3eb5874a39
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit e9ea82e78d0c95ef1cee599093b4c91a6f97d709
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 18b17fc97d8474b2fe5c5cd7afcfdce05ba7d5cc
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit 89d5ed0c9e5570e4a025719a9ad183e505c8ed8a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit a56bf9045d3e68101c42ced30884fa34675279c5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit c23d0351495a7fc1c396d157642db49db2754135
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 7ff4b706947e63d708cef90c936b936305947e58
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 421c38ff2e0de3a8d5cd913232aa3448dbfbc487
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit ec447dba04409c2b60d61b9bacab54c101bd9f3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit be6535e5f7a39529bd081ed38a1bf76fa645488f
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99252cf0cd5a8a01228c715a505cb1eaf6b853e5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit f6f31434b8c0e21f98fef460e0c8492fd4c240d5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 2f3960904e1a7b830c686fa793b122de49f3d674
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 2dc4c642e78bb4fa99ca41f3ae3c92335248ffd4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit 70ea0e7c3450680e1062088243d2cf139eadc02a
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit a81fd009f081eca3685e42cffac7f35e75428fea
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit e667d4e6e43b407cedce6bbf543ea1d815e8d520
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 2d0af75d37c9ea8ab44c889ef4e489b3b533eb30
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 5e68a86968d63f97f0febb8378b2a508e909ec90
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 8bd1547c3bb16cdce37412624161fab5b9d5ead6
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit a5e083603f1435a4a0e2e9fa7449c9133aa73225
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit c5f7547e8cf0d744fb1392b3651078d3985cecb1
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit 5c5b380fda9f541ee182e614966fc39a72ac6a18
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit bb0e0cf7f35cf3b89aac4f395185d55f3aa62979
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit 5ee99dfc49eaa8e81f5beb66eb1c160ac2d217fb
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit a083b1280ec80a525766c0a9487865b76de64c81
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit b7b5cee88baadfb10822b6bb13b6e7d3b0acaff8
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit 7456fd68a41b12592f3ac3f47308f7037ca22b86
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 20154718b5a41c1522a313ada06ef5c35ce2023d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit a6794c1862c663b387637597dba5f258a3e0e1e2
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit bd5c6bf23c1478dcab31cc1c2edcd0fa546eb6ea
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 68ee64283a7aab95c2f70eaf734e24b9d909dfa7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit dd29394bbe17ab6458817cce65b94f106252092f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit ceb99e89a081d2230479e9bb7b63c23d14bf0b98
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit 6112277f9b2d24a7c9effeb5966dadef279a261c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 81f403025c3ddb479ccf363fb091ac0fcf8e667b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eeda8b451acb2a0ae96656876f6a7682d43aca1d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit c7e8ba78576af230278a5662103acf421dc59bfd
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit 071e5c336a157ca39b75081b8cb4436a72af965e
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit be08d4c4f01e2c297365664bd3e0f7dc2b051fde
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit e99104a0040f58477809c9e2b9506fe2bcd94331
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944, #23948)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit edc4089121bcd96645b7be6bbd3dafa88c510ede
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 3bce266ef7865a62b5e79c7c5c67a068bb5e4c20
Author: ellensp <[email protected]>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (#23943)

    Followup to 89a9c3a391

commit c89d0114acba957d63e894bc1a479ec10cb18a81
Author: Robby Candra <[email protected]>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (#23135)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e693854d0c86fa0998a5d497607d42d6798f6ab
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 9324132a401cf0ab3781c9992d607bd4f88ba086
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 5632ad65f59710ca64e4abca99afa64cb99d559e
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit eccbfbcede60922b95971e90bf3a1d7983a5fe39
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 5ef4fb378e345e20d1fa3bdbc5312598dc571276
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to #23925

commit 21f0945d2cfada672756709bc420feb11768e687
Author: Oleg Belov <[email protected]>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (#23936)

commit b2a318af9a0c8e91b1f66a5576226b50b1b49f1b
Author: Serhiy-K <[email protected]>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (#23935)

commit 1c89c0470f2778f8051ff8514831138e64a2d9ed
Author: ellensp <[email protected]>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (#23931)

commit 2ee4a667e1999839e61fa4c7d4e31a88d6e301d6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:47:22 2022 -0600

    💡 Misc. cleanup, comments

commit f8e177a43efa3e7a173e2799562d354ab95544ab
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 9ac1c73041cbf4015b48d9d7a70a59e840a1d442
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit 4a8b99d505584d1fa5eb71d588da1bb60c3a2878
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit b094a3fc0d647f7daff7c4d97db32f9d41e4c11d
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit 2d99a608fd993fd5cb75223b72deadfc969a13c1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit fba8805c0cd87845c80d9cd7738b94332a35e27b
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 039a22649f4e0201d7580b63c1a414450353438a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit ced0ad8e094baecf6e3ee8eaa36c61baaa5743fc
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 10a0c9a9b3d4070326954c5c2354cfd8ba490f0c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit abfb0411809568970221281a3614e30970f0dfc1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 72f207f4895d5db34f697cb203876405b98d89c8
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit 7186037f20a2a2c57624e31c1e99adc37759c5f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit b0a400da72f6752619a82246fac55a07a4e67f3c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit cc4c2c2f98a1742d6b462481f74dacf5b5b93961
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit 5dae8a67344cfeda3de6d40fcd14498542004fe9
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 05dea4e30a1768913ec7d1f38c65b9423200a558
Author: Fredrik Andersson <[email protected]>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (#23925)

commit 7e88ee8c5cc87395e73c45bcd743f3ab0302773b
Author: Mark <[email protected]>
Date:   Fri Mar 18 12:49:47 2022 +0800

    📌 PandaPi V2.9 – Standalone mode (#23908)

commit cc8e485e1c55fb2fcdba7dc8f6b89041ed18e9ce
Author: John Robertson <[email protected]>
Date:   Fri Mar 18 03:21:53 2022 +0000

    ✨ ESP32 - Hardware PWM for fan, cutter, servos (#23802)

commit c7a2ecc31aa4def9e60668f5cfc648d87776be9b
Author: ellensp <[email protected]>
Date:   Fri Mar 18 16:17:41 2022 +1300

    🩹 Fix xatc EEPROM debug (#23911)

commit 260b40d1453a9310581c45d3e1327a3103b36a22
Author: tombrazier <[email protected]>
Date:   Fri Mar 18 03:15:26 2022 +0000

    ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (#23867)

commit c87eded8f6183c33bd9b9a74dd577fe6c77c32df
Author: Ludy <[email protected]>
Date:   Fri Mar 18 02:55:33 2022 +0100

    🩹 Fix redundant var declaration (#23913)

commit 2f2a999368f22f2c6b3105ab481987c2025bc50e
Author: John Robertson <[email protected]>
Date:   Thu Mar 17 19:35:33 2022 +0000

    🐛 MKS TinyBee - 2.5V ADC Vref (#23903)

commit 2558b323e85006c3c9f6a03bcaa82f61c95da0bb
Author: Jelmer van der Stel <[email protected]>
Date:   Sun Mar 13 23:20:30 2022 +0100

    🩹 Fix DWIN E3V2 display issues by allowing re-init (#23879)

commit 1db685593922214e49496d805dc9ea099e227f50
Author: Mrnt <[email protected]>
Date:   Sun Mar 13 15:17:35 2022 -0700

    🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (#23885)

commit 62f298aca39ff17bc7a51f49b9ff6b5b17a76c30
Author: Julien Staub <[email protected]>
Date:   Sun Mar 13 23:09:32 2022 +0100

    🩹 Fix ExtUI build with Host Keepalive disabled (#23898)

commit 8d20c5aadfff34a024665ea349c0b66834e4d305
Author: InsanityAutomation <[email protected]>
Date:   Sun Mar 13 18:00:35 2022 -0400

    📝 Fix X2_MAX_POS comment (#23873)

commit 61b470249c1cfa361f25060940cc8b7f8a8f64e9
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:59:43 2022 -0500

    📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

commit 4ffa88f814f3ddcb7273b73c9bb68773bcf1fd51
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:46:08 2022 -0500

    🚸 Test LIN_ADVANCE in a pins file

commit 8257040fafe758ac1913e9bf633fa0c9930dd9cb
Author: Mathew Winters <[email protected]>
Date:   Sun Mar 13 14:13:41 2022 +1300

    ⚡️ G12 - Only require used axes to be homed (#23422)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d9ab7e71eed56f242d4fae32836f305bb1ff680
Author: Keith Bennett <[email protected]>
Date:   Sat Mar 12 16:23:29 2022 -0800

    🔨 Drop extraneous build flag (#23862)

commit 1a76d4d467ebb3d8ed1df39767efa99beb08e854
Author: Nick <[email protected]>
Date:   Sat Mar 12 23:47:47 2022 +0000

    🐛 Fix Chiron new TFT SD print after reset (#23855)

commit 4028c1cfc7bcaf78e49bb98b527353ec30a970de
Author: Scott…
nanderson97651 added a commit to nanderson97651/Marlin that referenced this pull request Nov 14, 2022
commit 398cae762506a43eb27a815f10bee6e2821c6c5f
Author: Scott Lahteine <[email protected]>
Date:   Sat Aug 6 18:39:05 2022 -0500

    🔖 Version 2.1.1

commit 8192cc12d33fb860fff55ea68f5df9c9058b0293
Author: Scott Lahteine <[email protected]>
Date:   Sat Aug 6 18:38:12 2022 -0500

    🎨 Misc. config cleanup

commit 7f2a8362517181cde5b98bf88aa48821355f7692
Author: ExtNeon <[email protected]>
Date:   Sat Aug 6 23:37:03 2022 +0000

    ✨ SD Endstop Abort G-Code (#24461)

commit b02c3258b56f73ae6cff17d7e47c9e1fba7c91cd
Author: Mark <[email protected]>
Date:   Sat Aug 6 14:14:58 2022 +0800

    ✨ Bed Distance Sensor (#24554)

commit a0462eb01738516561ea9356ebcafcb523782457
Author: Keith Bennett <[email protected]>
Date:   Fri Aug 5 22:59:56 2022 -0700

    🩹 Fix AUTO_FAN_PIN sanity check (#24593)

commit a1704c10b977d31d2bb90cafe4935f3bdbfc3c89
Author: Scott Lahteine <[email protected]>
Date:   Sat Aug 6 00:57:37 2022 -0500

    🩹 G0/G1 S seen => seenval

commit 7196f1312508bdb04d8e943572773a5f23c8509e
Author: qwertymodo <[email protected]>
Date:   Fri Aug 5 22:07:30 2022 -0700

    ✨ M150 K – Keep unspecified components (#24315)

commit e06340abd13822fe54a1c0be5be57421b03490ef
Author: J.C. Nelson <[email protected]>
Date:   Fri Aug 5 22:09:46 2022 -0700

    🔨 Trigorilla Pro disk based update (#24591)

commit 98095ddad6818c1fd9dfca214d09f5107633106b
Author: Travis Ziegler <[email protected]>
Date:   Fri Aug 5 22:37:24 2022 -0400

    🩹 Fix LPC176x USB Host Shield (#24588)

commit 2f4b12170924d0090bcfd5a39e153c27cf44d8d9
Author: Scott Lahteine <[email protected]>
Date:   Fri Aug 5 19:39:41 2022 -0500

    👔 Keep "Needs: More Data" open

commit a0409289c8815e71b34eae1a09687229ed4e93b6
Author: Ruedi Steinmann <[email protected]>
Date:   Fri Aug 5 01:00:19 2022 +0200

    🚸 Laser with only PWM pin (#24345)

commit 2ccdc4f9ed232af3b55fe633fafe64a9be508ff8
Author: Scott Lahteine <[email protected]>
Date:   Thu Aug 4 17:56:09 2022 -0500

    🧑‍💻 MARLIN_TEST_BUILD – for future use (#24077)

commit bbf20332112948aad99bb8c7fba27fd661dc3a3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Aug 4 02:38:15 2022 -0500

    🔧 Config INI, dump options (#24528)

commit 9a42d1e577a364d6f4491657d1eabb92f14ed55a
Author: Scott Lahteine <[email protected]>
Date:   Thu Aug 4 01:17:10 2022 -0500

    🩹 Fix Malyan M300 with S-Curve compile

    Fixes #24548

commit 17794e18ae66793e0a4d6135de674d92e3d4b3d0
Author: ellensp <[email protected]>
Date:   Mon Aug 1 18:17:57 2022 +1200

    🔧 Update 644p/1284p Serial 1 sanity check (#24575)

commit 3b30951e83f0ec189c38ec993e5002f16556e087
Author: Scott Lahteine <[email protected]>
Date:   Mon Aug 1 01:14:58 2022 -0500

    🔨 Simplify scripts with pathlib (#24574)

commit c3f258644541cc81150e5e306aa3db60a31fc5bf
Author: Mike La Spina <[email protected]>
Date:   Mon Aug 1 01:03:45 2022 -0500

    🐛 Fix laser menu enable_state (#24557)

commit c0cb7e35afe4a2e94133506d0e7c1d95ddbf80ba
Author: InsanityAutomation <[email protected]>
Date:   Sat Jul 30 22:55:32 2022 -0400

    ✨ Configurable Switching Nozzle dwell (#24304)

commit fd319928d2889efe57c76913b3d5d28ff49a70d1
Author: tombrazier <[email protected]>
Date:   Sun Jul 31 03:39:48 2022 +0100

    Fix, improve Linear Advance (#24533)

commit 5dad7e0d035ec82d2eeb38c79101cba93f35c958
Author: tombrazier <[email protected]>
Date:   Sun Jul 31 03:05:16 2022 +0100

    🩹 Use _MIN/_MAX macros for native compatibility (#24570)

commit 9ee558afe1afc20e5e932fc0dcbecd7744065ec7
Author: DerAndere <[email protected]>
Date:   Sun Jul 31 03:49:15 2022 +0200

    🐛 Fix kinematic feedrate (#24568)

commit bbaccd342eaf5e4cdca6b988c367fa79faacab82
Author: Keith Bennett <[email protected]>
Date:   Sat Jul 30 17:51:25 2022 -0700

    ✨ Encoder Noise Filter (#24538)

commit 6134d55360b8155435bb2ed10f51704268f5450f
Author: lukasradek <[email protected]>
Date:   Sat Jul 30 01:53:39 2022 +0200

    📝 README Updates (#24564)

commit 868e76b96543ca5282558396c679d7e81d29df49
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 08:01:39 2022 -0500

    🎨 Renum boards.h

commit 5f105e254dfa6c4280f2a3c276bdb8587cc4c152
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 02:14:14 2022 -0500

    🐛 Fix M125 for 9 Axis

commit 9534c6e9033256f5d6de2b920124acf1fa829548
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 28 20:52:33 2022 -0500

    🎨 Misc. 'else' cleanup

commit ec9a2ee55711555bb1489e492120398a34ed52c5
Author: Ludy <[email protected]>
Date:   Thu Jul 28 04:44:21 2022 +0200

    🌐 Update German language (#24555)

commit d8db00e31febec6fa1a71e5ead6f0bff849fe15a
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 27 04:24:50 2022 -0500

    🧑‍💻  Update planner/stepper includes

commit e7c262dc30cd921d6dc1da7ec494adacb43ed5f8
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 21:15:44 2022 -0500

    🩹 Fix lcd_preheat compile

commit cee9da6132f9a02eea55522ad0342359f6cec26f
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 14:54:54 2022 -0500

    🔨 Update build/CI scripts

commit a24b9e16ff372a7b777fd72aad8c3d567ca07018
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 24 13:51:43 2022 -0500

    🎨 PIO scripts cleanup

commit 1e9232723d71ea6383969151809af3df9aea3571
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 12:02:37 2022 -0700

    📺 Fix TFT Classic UI non-Touchscreen 1024x600 (#24541)

commit 66369f8236c843bc933d42fc84d057bbbfe876e9
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 11:48:59 2022 -0700

    🩹 Fix JyersUI include (#24540)

commit 0ca76bf9ed4a5386b49943bd9c9bbf9951db4ff8
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 11:47:07 2022 -0700

    📝 Update MPCTEMP G-Code M306 T (#24535)

    M306 simply reports current values. M306 T starts autotune process.

commit 0f3c3c419e565bd16a86fbbd0a240ec55e0ae769
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 21:59:00 2022 -0500

    ✨ Reinstate JyersUI

commit 89e9ae06625d6244f172f6aac628d1001abf92e7
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 17 22:19:24 2022 -0500

    🧑‍💻 Give the simulator Stepper access

commit 5b8f7686cb1d514bcddb34aaddee24f6140a97e3
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 19:30:29 2022 -0500

    🧑‍💻 Fix and improve build_all_examples

commit 6e02f15dd6afffb761da2516a3764a64567a8583
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 21 04:18:17 2022 -0500

    🔨 Minor build script changes

commit c9445cfc4120ab9bcf47bdd2deffb59bcd901cad
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 21:46:38 2022 -0500

    🩹 Fix TFT image PACKED conflict

commit beacb73d93259486f66a6baf8f5809b3d0807531
Author: Frederik Kemner <[email protected]>
Date:   Wed Jul 20 23:25:15 2022 +0200

    🩹 Fix gcode.h include (#24527)

commit 53a57ff7bf807684af09b69cd1a3e5713394e544
Author: InsanityAutomation <[email protected]>
Date:   Wed Jul 20 04:08:19 2022 -0400

    🐛 Fix Archim2 USB Hang (#24314)

commit d726f641a571b13b7d55307bf50a253a49883d25
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 20 16:26:33 2022 -0500

    EXP header pin numbers redux (#24525)

    Followup to 504fec98

commit feafa321d7caa90f886ef7d66f6b0513d5c595e3
Author: InsanityAutomation <[email protected]>
Date:   Tue Jul 19 18:33:49 2022 -0400

    🚸 Use Tool 0 for G30 (#24511)

commit f5b972bb103bcac57d3c8bd26f80d93e3f86a5f8
Author: ellensp <[email protected]>
Date:   Wed Jul 20 10:32:08 2022 +1200

    📺 SKR_MINI_SCREEN_ADAPTER for BTT SKR Mini E3 V3 (#24521)

commit 196795c0cc1ea31380d4c06374cf032a25e47c1d
Author: Eduard Sukharev <[email protected]>
Date:   Wed Jul 20 01:30:19 2022 +0300

    ✅ More ESP32 (MKS TinyBee) tests (#24493)

commit c3085d666ffba28c67890bfc4424c30855188048
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 18 18:14:58 2022 -0700

    📝 Update Contributing Guide (#24320)

commit 807f2ef9697c241fdb8c354d90ca97050ccbca68
Author: InsanityAutomation <[email protected]>
Date:   Mon Jul 18 21:12:27 2022 -0400

    🚸 Machine-relative Z_STEPPER_ALIGN_XY (#24261)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f752fe75ee6e4304741c743fbb2b52b7d5760ae4
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:53:36 2022 -0500

    ♻️ Small sound / buzz refactor (#24520)

commit 97a73147fa47119d5600c28dd7bfc549a390e53f
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:52:47 2022 -0500

    🩹 Fix manual move titles (#24518)

commit 915203f545f6d3114a5965a19125545f5592c42e
Author: tombrazier <[email protected]>
Date:   Mon Jul 18 06:51:44 2022 +0100

    🩹 Arc/Planner optimization followup (#24509)

commit 173eb3ff715535e1144de9961700363dc5780884
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:26:36 2022 -0500

    🚸 Renumber EXP pins to match schematics/RRF/Klipper

commit 96d3c66b646c89115be4a6c27d8908bedd8dbfb7
Author: Nikolay-Po <[email protected]>
Date:   Sat Jul 16 03:56:15 2022 +0300

    ✨ Steinhart-Hart C Coeff for Custom Thermistor (#24428)

commit cc4fc28fe09eefe9a04c5521c47fa8ed796d8594
Author: tombrazier <[email protected]>
Date:   Sat Jul 16 00:15:51 2022 +0100

    ⚡️ Optimize Planner calculations (#24484)

commit 0a164a88fee6537d98ddaf6e1ef49dbfea813aaa
Author: Arthur Masson <[email protected]>
Date:   Sat Jul 16 23:58:18 2022 +0200

    ✨ Polargraph M665 settings (#24401)

commit c72fe1a2f96805e56798c926856602797fe6033c
Author: GHGiampy <[email protected]>
Date:   Sat Jul 16 03:14:15 2022 +0200

    🩹 Add'l ProUI fixes (#24500, #24508)

commit 2add8ca4eb962debc9f5a9c4a2670205cf58f10a
Author: Christophe Huriaux <[email protected]>
Date:   Sat Jul 16 23:35:40 2022 +0200

    ✨ eMotion-Tech eMotronic (Micro-Delta rework) (#24488)

commit 779c24122dc8ab079241b87c76861bd3e08d5906
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 17:16:37 2022 -0500

    🔨 Update mfprep comment

commit 6ac3f2738ea07c02f5c0629958828b1b4c807482
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:11:33 2022 -0500

    🔨 Add mftest --default flag

commit 77c6d9af201fcc6298184c763186ac3b8c4c6ecb
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:01:24 2022 -0500

    🩹 Fix TFT tImage struct packing

commit 929e12bf498ca6e6b0da60a1c4cd62e7dfebff57
Author: GHGiampy <[email protected]>
Date:   Sat Jul 16 03:11:47 2022 +0200

    🔨 Remove log2file monitor filter (#24502)

commit fd18ac56672a88df54c2597d265e4e0857c66b24
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 15 15:43:43 2022 -0700

    📝 Update board MCU comments (#24486)

commit 06c1409843687da76f845e9a35cd3dac16c33be1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 12:38:00 2022 -0500

    🩹 Fix MAX31865 approximations

    Followup to #24407

commit ec95e66ff04e8f9c1fa48fc266b53e769a1109c8
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 12:48:05 2022 -0500

    🔧 Base NUM_AXES on defined DRIVER_TYPEs (#24106)

commit 53ee7fce5bb0cb1630ed26d63bd5ce9efee53603
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 9 11:08:53 2022 -0500

    🐛 Fix SDIO for STM32 (#24470)

    Followup to #24271

commit 10f5f878ce3c29b77e45b7e0f1850fcb855bc848
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:03 2022 -0500

    🚑️ Fix XYZEval = N not setting E

commit 733ca940c0ed582fcd0e0a39b10b1fe8986b574c
Author: tombrazier <[email protected]>
Date:   Sat Jul 23 05:32:28 2022 +0100

    🐛 Fix 2d mesh print (#24536)

commit c880c7ed45540a375a8fb82d7c343d21a1c9060b
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 02:56:55 2022 -0500

    🔨 Fix and update Makefile

    Followup to 89fe5f6d

commit e5e4cf920d406c45a66d00cd379fee08f4da0985
Author: Keith Bennett <[email protected]>
Date:   Wed Jul 13 23:31:47 2022 -0700

    📌 Pin ESP32SSDP to 1.1.1 (#24489)

commit 3315f6faa4fed3fde158013c8575d6bc6b813f3d
Author: Victor Oliveira <[email protected]>
Date:   Thu Jul 14 03:30:00 2022 -0300

    ✨ Creality3D v4.2.5 / CR200B (#24491)

commit 4a6ad1c98bde764255511c5bce58740b6e5cfb13
Author: GHGiampy <[email protected]>
Date:   Thu Jul 14 07:03:27 2022 +0200

    🩹 Fix ProUI LED compile (#24473)

commit 3c9789fda810cb6cebfb835379780b27e1dbe6f5
Author: Miguel Risco-Castillo <[email protected]>
Date:   Thu Jul 14 00:00:33 2022 -0500

    🚸 Fix and update ProUI (#24477)

commit 3a19d34c7515598180abbc3e24d8991f8e8a098a
Author: toomuchwonder <[email protected]>
Date:   Thu Jul 14 04:17:53 2022 +0100

    🩹 Fix MKS UI extruder speed (#24476)

commit 6b19a58f035862292a3ec52b4efc388b746d69ad
Author: Bob Kuhn <[email protected]>
Date:   Wed Jul 13 22:16:22 2022 -0500

    🔥 Drop STM L64** drivers, STEVAL_3DP001V1 (#24427)

commit 9283859b1ef82d7aa82bcb64a70d1b25b8e6d22c
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 13 21:22:53 2022 -0500

    🎨 ANY => EITHER

commit e840015cad0bbbf882e0b90cb8d722725c6e1dd2
Author: GHGiampy <[email protected]>
Date:   Thu Jul 14 03:25:35 2022 +0200

    🔨 Abort firmware update on transfer error (#24472, #24499)

commit efe04e10168a21f361a325a8c93840c2562042e0
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 12 13:25:36 2022 -0500

    🧑‍💻 Update Mac Sim directions

commit f543b3cb84e26c7594b9be2da1bcfc3c7c2b5a60
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 12 13:02:54 2022 -0500

    📌 Ask for PlatformIO 6.1.1 or newer (#24435)

commit 6a86c5bad32da03b71c5f0223904b44e129185f0
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 11 11:33:42 2022 -0700

    ✨ MKS Monster8 V2 (#24483)

commit 7207a324341c3aaa8de8f103391576b274830c2d
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 10 22:00:10 2022 -0500

    🧑‍💻 Add Sim debug with lldb

commit 678474d55cd92d14bde24d00dbc9322919cfc1e1
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 8 13:30:03 2022 -0700

    🔧 Assert Probe Temp Comp requirements (#24468)

commit 24c211307d5a1d009d12c4d25d3828c05534f3e7
Author: Mike La Spina <[email protected]>
Date:   Fri Jul 8 15:02:12 2022 -0500

    🐛 Fix laser/fan sync (#24460)

    Followup to #22690, 307dfb15

commit 0c78a6f65791e1c2c3f4278ed2b48bcf20b9b063
Author: tombrazier <[email protected]>
Date:   Fri Jul 8 20:41:39 2022 +0100

    ⚡️ Optimize G2-G3 Arcs (#24366)

commit 79a332b57ea4a1ddb0e6b06d8dabae34268ed3bd
Author: Jason Smith <[email protected]>
Date:   Thu Jul 7 21:43:56 2022 -0700

    🩹 Fix LCD_BACKLIGHT_TIMEOUT compile (#24463)

commit d9ecbdcdbb8f5073987c848573d89cfb63719201
Author: Pauli Jokela <[email protected]>
Date:   Thu Jul 7 18:59:23 2022 +0300

    🩹 Fix safe homing sanity-check (#24462)

commit 527fe2496af924c47411c7aa3c3622b22d04b42e
Author: Farva42 <[email protected]>
Date:   Wed Jul 6 19:40:09 2022 -0600

    ✨ MAG_MOUNTED_PROBE (#24420)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 6c2ffe9d341f8f61bca8e19b07c3fc6a1d904375
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 6 19:34:45 2022 -0500

    🔥 Remove JyersUI (#24459)

commit 0fdedfa2fb46d665fbd5686bc58e7126ee82bd97
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 6 19:29:07 2022 -0500

    📝 Configurations 02010100 (#24458)

commit e93a1dd2fae37457894bf04b30e1c8ad5801b35c
Author: Meilleur Gars <[email protected]>
Date:   Wed Jul 6 13:46:11 2022 -0700

    🚸 JyersUI updates (#24451)

commit 03760fd79ea7f020f8739647f7a420bf4ec286b7
Author: Christophe Huriaux <[email protected]>
Date:   Wed Jul 6 22:43:38 2022 +0200

    🩹 Fix ST7565 LCD contrast init (#24457)

commit d3aed23e18bd9b165282ad83ef86422510af55c0
Author: Bob Kuhn <[email protected]>
Date:   Wed Jul 6 08:35:08 2022 -0500

    🐛 Fix Sensorless Probing compile (#24455)

commit 893707711e2a507aa48e41c3c59a267f9aea238f
Author: Eduard Sukharev <[email protected]>
Date:   Wed Jul 6 16:30:47 2022 +0300

    🐛 Fix MKS TinyBee compile (#24454)

commit d965303a7a1592e348853c1620cf54576652ace8
Author: Mike La Spina <[email protected]>
Date:   Wed Jul 6 07:46:39 2022 -0500

    ⚡️ Fix and improve Inline Laser Power (#22690)

commit 5b6c46db2910b3ec651793d8cb0c1d1b08a39384
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 22:31:06 2022 -0700

    ✨ BigTreeTech SKR SE BX V3.0 (#24449)

    SKR SE BX V3.0 removes the Reverse Driver Protection feature.

commit 8f40a2f257511370f587f15613b2308cabdb2ee0
Author: EvilGremlin <[email protected]>
Date:   Mon Jul 4 04:49:23 2022 +0300

    🔨 Fix OpenBLT encode; no-bootloader envs (#24446)

commit e4f85e8fbc57e4688b966fa29823c51ba5bb2588
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 3 10:32:47 2022 -0500

    ♻️ Encapsulate PID in class (#24389)

commit 678955949f980f2bfa942a1a8dc4542a20423bd1
Author: Victor Oliveira <[email protected]>
Date:   Sat Jul 2 21:31:27 2022 -0300

    🔨 Disable stack protector on macOS simulator (#24443)

commit 923d34550a828f483d73481242782715080ebc7e
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:56:13 2022 -0500

    🔨 PlatformIO "--target upload" == "--target exec"

commit ed643e634fbd98d21e22fdcdf615532cc9cf0def
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings/settings force-recompile

commit 3f4c8c31c6c9c3e1d6871ab6bca86818db5697f1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 8 22:45:17 2022 -0500

    Fix SDIO for STM32

    Followup to #24271

commit 171ed66de0a69b9811a636219f51792c3d59bf63
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 09:08:43 2022 -0700

    🚸 MPCTEMP: Home before cooling (#24434)

commit 5f2e4487e75812d32ace4667bccb6efb6134bdb0
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 08:08:40 2022 -0700

    🩹 Fix MKS TinyBee ADC Vref (#24432)

commit 80c7abd7271fcadacff8cf74c34184987f22f07d
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 04:49:37 2022 -0500

    🩹 Remove poison wchar_t macro

commit 814b53750fbc03ffc2572252474aca2f4bf043eb
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 20:10:51 2022 -0500

    🩹 Remove obsolete split_move

commit 23e93c51fd3a080c59ba0f5321a73eab0058873e
Author: Moonglow <[email protected]>
Date:   Fri Jul 1 05:51:55 2022 +0300

    🐛 Fix M149 (#24430)

commit afbdcc8eee9f3f13b1e3fe196728554ac8efdad7
Author: tombrazier <[email protected]>
Date:   Fri Jul 1 03:07:36 2022 +0100

    🚸 Vertical Max7219::quantity in portrait orientation (#24415)

commit 4820947203808400240898a487e4fa023f4976e1
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 30 20:57:34 2022 -0500

    ✅ Update path to Ender-3 S1 configs

commit d44aef8b6b54d29446b796f78a868e4bffdef7db
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 20:16:16 2022 -0500

    📝 Index Mobo Rev03 => Opulo Lumen Rev3

commit c1c0496073b8c70728f237fb2a99fdae19c7bb4f
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 17:14:23 2022 -0500

    🩹 Fix memset block warning

commit a48831d600f9077c43c2c841fccdd76b154025e9
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 29 06:24:22 2022 -0700

    🐛 Fix Axis Homing (#24425)

    Followup to 4520a51

commit c076094fa9eac463abe47fcf2921ed6d690ba3ee
Author: John Lagonikas <[email protected]>
Date:   Wed Jun 29 01:53:05 2022 +0300

    🐛 Fix MAX31865 PT1000 normalization (#24407)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 57c137a60f8af6f777a2fc04fd4412844dd85c59
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:30:05 2022 -0500

    ♻️  reset_acceleration_rates => refresh_…

commit 05bdc5640d20412d852730d77e0e42a8e0b6e2b4
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:24:59 2022 -0500

    ♻️ Planner flags refactor

commit 83784bd8b7a53b21d828923e9f3dfd854b83610a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:32:00 2022 -0500

    📝  Note about UBL bad splits

commit 23f19e9ce8452cc21f4c5cf0a5a3a2784c7ac512
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 10:01:22 2022 -0500

    🎨  Misc. shorthand operators

commit 0435b2220a695f40aaba29a6965f7406d9a30db9
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 05:47:18 2022 -0500

    🐛 Fix Manual Move axis selection (#24404)

commit ab2fceda2c3b50ee1de99e3471197cb151f6d61b
Author: Shlee <[email protected]>
Date:   Sun Jun 26 06:56:57 2022 +0000

    📝 Add STM32F4 example, Ruby (#24399)

commit 88dc360e9d72a0f3461b7e1f2ddd2904df3e7abd
Author: Giuliano Zaro <[email protected]>
Date:   Sun Jun 26 08:52:19 2022 +0200

    🌐 Update Italian language (#24398)

commit f5bdb8b4d23b1b6f50c91b74620c0b97c9531b10
Author: Roman Moravčík <[email protected]>
Date:   Sun Jun 26 08:51:16 2022 +0200

    🌐 Update Slovak language (#24397)

commit 3e01e0898953d4f00044904de324cb594c8c0541
Author: sgparry <[email protected]>
Date:   Sun Jun 26 07:49:57 2022 +0100

    🩹 Fix LCD contrast with K8800 board

commit 4694a7fe7468b19600354d07115d5eaba6f6406a
Author: tombrazier <[email protected]>
Date:   Sun Jun 26 06:38:23 2022 +0100

    ✨ MAX7219 idle profiler (#24375)

commit 537af0bb035ec4d669a78187dc85cf598cdb2330
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 24 22:07:06 2022 -0500

    🌐 Drop unused delta strings

commit 0dc59311ec3ccbeb0643a3384adec7bb24496d18
Author: InsanityAutomation <[email protected]>
Date:   Tue Jun 21 22:09:24 2022 -0400

    🐛 Resolve DUE Servo pulse issue (#24305)

    Co-authored-by: sjasonsmith <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 0523874e9c121d629c06f9f0022dd6f85d442ae0
Author: tombrazier <[email protected]>
Date:   Sat Jun 18 05:17:12 2022 +0100

    🐛 Fix G2/G3 Arcs stutter / JD speed (#24362)

commit 106537ff432f8b2ad1c6aa0842af1b8a6236fea7
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 24 01:08:06 2022 -0500

    ✏️ 9-axis followup (sanity-check)

commit ad96c36730675989cff969acaac9b679e9e92792
Author: Bob Kuhn <[email protected]>
Date:   Thu Jun 23 23:58:26 2022 -0500

    🐛 Fix Lerdge build / encrypt (#24391)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a3629a7c28b216c4a789c2f6fa59e7828158ebc3
Author: Victor Oliveira <[email protected]>
Date:   Thu Jun 23 06:18:36 2022 -0300

    ✨ Classic UI BIQU BX (#24387)

commit b7e1b6b8933f3a10a5bf1ec76ca7797aa5af54b4
Author: ellensp <[email protected]>
Date:   Wed Jun 22 22:08:24 2022 +1200

    🩹 Fix DGUS (MKS) compile (#24378)

commit 253e35e066db5b3fd6cbcdab3ec6f93123ac81cd
Author: Victor Oliveira <[email protected]>
Date:   Wed Jun 22 05:33:03 2022 -0300

    🚑️ Fix BIQU BX touch freeze (#24383)

commit 831e1b5ecfc17482b2e324abd32b427121ef7d00
Author: ellensp <[email protected]>
Date:   Wed Jun 22 16:13:18 2022 +1200

    🐛 Fix M423 invocation (#24360)

    Followup to #23745

commit c89ca2deb890d3e9b7c37e34935b6fccf559d470
Author: tombrazier <[email protected]>
Date:   Wed Jun 22 03:45:22 2022 +0100

    🩹 LCD strings followup, fix warning (#24328)

commit 85e94038aa34c82910384083ab8cea2dd984e351
Author: DerAndere <[email protected]>
Date:   Wed Jun 22 04:07:17 2022 +0200

    ✨ FOAMCUTTER_XYUV (for RAMPS) (#24325)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7c85f250421058f7fed8d29be4a6b0f15e7ca922
Author: ellensp <[email protected]>
Date:   Wed Jun 22 10:33:25 2022 +1200

    🚑️ Fix SD mount bug (#24319)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eca5e46d17322c0c45e1bea90238edf180cd4cca
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:19:41 2022 -0500

    🎨 Simplify move menus with substitution

commit 78b42ed387d4eeb706df2f9eb717443a872a7eff
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:19:00 2022 -0500

    🎨 Use MAP for home axis items

commit 95339c9561a701ede6b159dfc91edd0afd169e63
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:17:29 2022 -0500

    🧑‍💻 Fix STATIC_ITEM_N arg order

commit da6c16a9cdea1589ac02c382f3d790da90d7b922
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:15:57 2022 -0500

    🎨 Fix comments, formatting

commit cc27cfb66007b3d575f7532f7ac1e4ae5f4fde53
Author: ellensp <[email protected]>
Date:   Wed Jun 15 20:02:32 2022 +1200

    👷 CI test without src filter (emulate Arduino) (#24335)

commit 25c0593c9b762bfd4aa6ff26a5cfc27d71188ac8
Author: Keith Bennett <[email protected]>
Date:   Mon Jun 13 19:04:49 2022 -0700

    👷 Use Biqu BX for CI test (#24331)

commit 5fff7bbef4057ec0714bbc5137b892f3ab9e2612
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 19:06:03 2022 -0500

    👔 Fix and comment use_example_configs

commit 3fd592e64b81238947282bafaae796a8599a277a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 5 20:25:58 2022 -0500

    👔 Update Marlin actions for 2.1.x

commit c34dd64469fec8bcf712311296e0431815c894bd
Author: John Robertson <[email protected]>
Date:   Sat Jun 4 07:26:08 2022 +0100

    ⚡️ PWM for ESP32 I2S expander (#24193)

commit 7677368aafd21f03f9aa214696638a9714199c59
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 23:50:20 2022 -0500

    🔖  Moving to bugfix-2.1.x

commit ece124fdeafe6aad7c17703037c66930baf63a2b
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:08:31 2022 -0500

    🩹 M919 9-axis update

commit 9aa499dbe9d20567d08e5d5a3ce3c5cce6b1a7a8
Author: luzpaz <[email protected]>
Date:   Sat Jun 18 00:19:01 2022 -0400

    🌐 Fix LCD string, typos (#24324)

commit 78a3ea0ed4c53f2a4363c5548a78fa1e43cba162
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 13 20:43:23 2022 -0500

    🧑‍💻 Apply F() to some LCD / TFT strings

    Followup to #24228

commit c605c1ebb5f39cccb488946f1d04e8089e72da43
Author: ellensp <[email protected]>
Date:   Tue Jun 14 13:38:19 2022 +1200

    🩹 Fix missing ProUI cpp wrapper (#24313)

commit b2c4fb5f3a7dbe3d35f72d645e5a7fa961545e17
Author: ellensp <[email protected]>
Date:   Sat Jun 11 17:03:20 2022 +1200

    🐛 Fix JGAurora A5S A1 build (#24326)

commit 60cedf63f2bccd25c686d954e2d079040bf8ca80
Author: Steven Haigh <[email protected]>
Date:   Sat Jun 11 12:08:55 2022 +1000

    🩹 Fix ProUI compile (#24310)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 1156557a4747864ce4c6c6f04d8ac80fee0cd9f8
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:47 2022 -0500

    🧑‍💻 Misc. servo code cleanup

commit ea22640d78a11ae11d7caef894898532d5c5ffd8
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:08 2022 -0500

    🧑‍💻 Remove servo macros

commit d886320799693135a41ebd27e366e92254ef6b06
Author: lujios <[email protected]>
Date:   Tue Jun 7 02:22:17 2022 +0200

    🩹 Fix G33 Delta Sensorless Probing compile (#24291)

commit a65189c637e9fd7ee6285d1d51a13bc0e1d0773d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 19:06:03 2022 -0500

    👔 Fix and comment use_example_configs

commit dfc8acf376cda37c0b652f04a1cc44832b3c775d
Author: tombrazier <[email protected]>
Date:   Tue Jun 7 01:23:55 2022 +0100

    🩹 Fix Mesh Leveling + Debug compile (#24297)

commit 48d03ca0a9bc89a9f35b306a526a18308f040802
Author: ellensp <[email protected]>
Date:   Tue Jun 7 18:59:21 2022 +1200

    🩹 Media Change followup (#24302)

    Followup to #24015

commit 85e8d1f9fa7340e34587ffb83ac02790c7f68a22
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Jun 6 00:01:06 2022 -0500

    🚸 ProUI G-code preview, PID plot (#24282)

commit 679f4608ab94743c9478eb3e2035c097d6729b91
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 23:38:06 2022 -0500

    👔 Update mfconfig import

commit 5c225ba88720e3dd6cd26cd6989dbb26f9e52be8
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 18:44:57 2022 -0500

    🔖 Marlin 2.1

commit 268511933287d618807ce441c1eb484e090da5a9
Author: ellensp <[email protected]>
Date:   Wed Jun 1 05:21:59 2022 +1200

    🩹 Fix EXTRUDERS 0 manual move compile (#24255)

commit fc350701b2a5436c4a18650844d4270dc9337cba
Author: tombrazier <[email protected]>
Date:   Tue May 31 18:01:59 2022 +0100

    💥 More M306 M => M306 H (#24258)

    Followup to #24253

commit 0ad695d45ac9334f0502b391f7a3f4122a3b55cd
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat May 28 17:34:36 2022 -0500

    🚸 Fix, improve, update ProUI (#24251)

commit f1802bc7febd26fca1594c0b5aa54cbf5fc19b1f
Author: elimisback <[email protected]>
Date:   Sat May 28 16:22:59 2022 -0400

    🔨 BTT STM32G0B1RE xfer build (#24245)

commit d6c673b9de287f4102d3efdfe09a31662361aa6e
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:31:05 2022 -0500

    ♻️ More updates for multi-axis

commit 6a2a592c26c000aa656bdd10ee5dfe9fdc5330fd
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 21:59:36 2022 -0500

    🧑‍💻 Combined axis strings

commit c4ac695c15028b856bf3979c22f73bef9901dc90
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 17:45:07 2022 -0500

    🧑‍💻 Forward-compatible axis strings (167672d, #24259)

commit 8465818754884c6aeed668a6f9eed31196aa00ba
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 14:32:16 2022 -0700

    🎨 Fix/adjust warnings (#24225)

commit 3c482a9ba11e3fc86f55da1073ce41d6b8023e53
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:08:29 2022 -0500

    🧑‍💻 MAP macro for axis lists, etc. (#24191)

commit ecfe7b640096c8c9c2bc6bfe675570b46fa499e3
Author: DerAndere <[email protected]>
Date:   Mon Apr 18 06:03:39 2022 +0200

    🩹 Fix some parameters w/out values (#24051)

commit 85599abba7a0fb7c1700e3be2279120d5c02d673
Author: DerAndere <[email protected]>
Date:   Mon Apr 4 04:43:42 2022 +0200

    🚸 Better M350, M114 with more axes (#23986)

commit 494a2fc80c19c4a82abeb7eb39ff3c9f508c6286
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 17:49:54 2022 -0600

    🚨 Fix some compiler warnings

commit f7bea2846f65e9cc332a85eaa590cbcbfc448ea5
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:13:11 2022 -0500

    🏗️ Axis name arrays

    Co-Authored-By: DerAndere <[email protected]>

commit d56731cd0796639b4847868607dda65885c21ed0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:52:27 2022 -0500

    🏗️ Extend AXIS_CHAR to include E

    Co-Authored-By: DerAndere <[email protected]>

commit 0041de1a8a1176bbdfccd19b81faecc049c43c0c
Author: DerAndere <[email protected]>
Date:   Tue Apr 19 05:15:15 2022 +0200

    💥 Update Motor Current G-codes for extra axes (#23975)

commit d58497bc8ee72ee44891a3f6f9c1735ca6b43e9e
Author: ellensp <[email protected]>
Date:   Sat Apr 23 21:16:15 2022 +1200

    🐛 Fix BACKLASH_COMPENSATION compile (#24072)

    Followup to #23826

commit fd13a928c1a1692dc695a1f5edfe4b70d076121d
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    ✨ Support for up to 9 axes (#23112, #24036, #24231)

commit 369542db3bb34c28196a77838a2f018180a7da74
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:23:43 2022 -0500

    🔖 Marlin 2.0.9.4

commit 40d96c3460117eeab1742d74c2d78b57b4a9a1b6
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 5 20:26:40 2022 -0500

    👔 Remove actions from misc. branch

commit d7a71beaf4f08e60c3d13049f1046bbb663c643d
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 18:16:43 2022 -0500

    🔧 LEVEL_BED_CORNERS => LCD_BED_TRAMMING

commit f3b593ae73b5d21b5c270a5f5ede0fe982822b07
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 12:43:44 2022 -0500

    🎨 Fix spelling, whitespace

commit 1d8d8dccf45d2090e075b148d4f08e299184392c
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    💥 Num Axes / Multi-Stepper based on Driver Types (#24106, #24120)

commit 1e127a93c4c1446cf11aacecc9597a7355262ac8
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:15:23 2022 -0500

    🧑‍💻 Extend LCD string substitution (#24278)

commit fcef8d946cbd45e27ba9888f1e18327b68d52b00
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 0253500ccd5a7192f3e545cb5552c4ab7b309c5d
Author: Tanguy Pruvot <[email protected]>
Date:   Wed May 25 08:07:11 2022 +0200

    Use default null args in select_screen

commit 0d783a76907ace17f0d61ebe8882ebee9bc6ce3b
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:22:09 2022 +1200

    🐛 Init Stepper SPI before PSU Control (#24269)

commit e784e0413204680f3c8f3a8cdf519fb5bee7a164
Author: BIGTREETECH <[email protected]>
Date:   Thu Jun 2 17:02:06 2022 +0800

    ✨ BigTreeTech SKR3 - STM32H743 (#24271, #24272, #24275)

    Co-Authored-By: Alan.Ma <[email protected]>

commit 11d68e31274fccd20c8bb72eec0b4ad547962823
Author: bryan065 <[email protected]>
Date:   Thu Jun 2 04:51:39 2022 -0400

    🚸 Custom Menu Items for JyersUI (#24270)

commit 8b8b2a7ed35908b6a49d5b3badb230d3283792bb
Author: ledzepman71 <[email protected]>
Date:   Thu Jun 2 02:49:48 2022 -0600

    📌 Tenlog PSU pin (#24266)

commit fc1a620b878b45675b9a7972be6c1fb2882b8092
Author: tombrazier <[email protected]>
Date:   Sat May 28 23:40:08 2022 +0100

    🚩 MPC update (#24253)

commit 9799907dc9a53810e87fd5b54e2194d30e70eff8
Author: Keith Bennett <[email protected]>
Date:   Tue May 31 14:28:01 2022 -0700

    👔 Configs required to submit a Bug Report (#24256)

commit 6fc4dbbbc4b3b1e6820f4f18b81602451bb1786c
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 17:05:09 2022 -0500

    🚸 Change M201 G to S

commit 74596ad4d7f9117e06829b5657d7402f27a445ce
Author: Robby Candra <[email protected]>
Date:   Mon May 23 09:13:17 2022 +0700

    🩹 Adjust manage_media for slow/late media init (USB FD) (#24015)

commit 28f8646aa64b8baf6f93197d04b0802580272e40
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 19:56:46 2022 -0500

    ♻️ Apply F() to more LCD code (#24228)

commit 9a74bcd4cf13efa2d7cfb365182d7e097eaa1f1d
Author: John Robertson <[email protected]>
Date:   Tue May 31 23:09:44 2022 +0100

    ✨ Laser Safety Timeout (#24189)

commit 07cd248b91a59db8e2bc7ad10bbf160852af34fb
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 20:45:37 2022 -0500

    ♻️ Move watchdog to MarlinHAL

commit 209c792ef7e97dc48bf3517c9f8f56e6be80e97f
Author: Scott Lahteine <[email protected]>
Date:   Fri May 20 11:27:09 2022 -0500

    🔧 Remove LCD_SERIAL_PORT defaults, warn on auto-assign (#24170)

commit dbd00d992705a07b3da769549495d6505cb96b43
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (#23992)

    Co-authored-by: borland1 <[email protected]>

commit 4ae54a6229d1704bfc54a85233af40b69e924246
Author: Ludy <[email protected]>
Date:   Mon Apr 18 11:43:34 2022 +0200

    🐛 Update German language, Fix FTDI (#24047, #24048, #24227)

commit ce0af56d0aa4371620b142ba5b2ed3b455813a5d
Author: tombrazier <[email protected]>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (#23984, #24018, #24049, #24059)

commit 6c557a248016f2e89e259d2d5ee8e000521099bb
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (#23983)

commit a6ce9bf559d963c3cdcb6db7f57a572bc58016ea
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (#24014)

commit 21c838cb1b86c3ffd5958c68d82f6c0c25e78dbe
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (#23751)

commit 3443a9e18bf2c9797037f141d68ab409d6b3c00b
Author: Pauli Jokela <[email protected]>
Date:   Thu May 12 05:23:16 2022 +0300

    ✨ SOUND_ON_DEFAULT option (#24102)

commit b2b5b85045e689d311e472d803817e08b49ccaec
Author: Robert Brenckman <[email protected]>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (#21142)

commit 2086cc9f4e21dfc060c1ff034856ad4e6219f5f8
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:37:40 2022 -0500

    📝 Refer to 'PROGMEM' as 'flash'

commit 8eccfd4a6f90da93a4f13b8aa7fbd88a1f8cca46
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:35:38 2022 -0500

    🔧 Bed/Chamber PID Autotune menus

    Derived from MarlinFirmware/Marlin#23983

commit 9ab654adcb15ba23b42ed1f13ca34130e422dbc2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 22:06:32 2022 -0500

    🐛 Fix min/max temp evaluation

    Fixes #24257

commit 0ae982188c23ddab4e3a2d819c679166a7e19532
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 23:19:18 2022 -0500

    🐛 Fix M203 report

commit bed0788f723a0695726eab52e8da0b48298c619f
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit deb1ba73bbdd3aacaeec6c7d9540c41e93ddfdfe
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 15:11:43 2022 -0500

    🎨 Use pos.set method

commit 57f0ac88af9e8c5eb398c8367edf471900a5171f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 14:41:50 2022 -0500

    🎨  Misc. boards/pins cleanup

commit 915bce495cdc5168c982274f6deabc92e052c2c7
Author: Simon Pilepich <[email protected]>
Date:   Sat May 28 08:08:24 2022 +1000

    📝 Fix Mightyboard MOSFET comments (#24183)

commit 800a936caae83f4e5ca5dd2c2660518bd6fc43b2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ccf39b1c42fa787f645fbf0ac075cc47b72b18d3
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit d19179ce281cec58865fcbc99185abeb48a611b9
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 4a6ae1b64df5fa8824e20688399683bf11b840e2
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit 0daaef589c956d152c846760dfc157fdd1b7975b
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 4831cbebd80d6e2c6bcf504446cf6d0f2441c285
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit e0deb75764938995e32bc589d646ec397c4a3019
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0fe4f48956299cb298e6e48255ea72ba93dad79
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 4d65d7f142882bcd77072fc7dc5c01ca937a2e81
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit 1b879f0ee4e5539c237edf235b6ca38b5b2beb43
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit b6abc760cef73a1dfc0e186f40687d0a45c8a769
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 0ae061713c631d44cd12ad266ca9c7fdd856d72c
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 1d12e72bf697f7e3cb63995a20ba9e98fbce3eb9
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit c97cf10956ee33c80e557fb09e4cc75d30a0db82
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit b72f9277e9e89a7dcdc12c8f11273f7c76a064d4
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit 06c4a9acdb3f08a2052ea55d00fa350e9249bcb4
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit 8a301196e11d87d7e9db065d0d802910a664c5be
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 1e7219f4a643f8cbdbcd9685ebb5a76d02c89601
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 02c267f542223ed0d8b098da4bec6f09710d6bc8
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit fe77fc66c0004ba9a4459dd5a12c978dd0308bb1
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit 268a16b1ef1c5cd462e81aef08e4e9f7d2c65658
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 8351b1431f8bad178f2f8a3ec70b32a1d4d7ca2c
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 718806761f1e9d903d61408e2039357bfe46fff8
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit 78c7fedcea34f0c630f8e9fd46bc5d3244de04c5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit c4b8339b842958faae2567c339bcf9b44434a2ce
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 94ed67e36ef84cb4ecd8f3f1470041d4d72f7088
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit 03b819bdb235c6eb2cd0a02b832bb8f108cc5962
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 2204f05dcaabf0e639f1e1722ffd293d4b415fe3
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a13cceaad16dd2caedbf3b05ae0854b1200cb51e
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 5c25ed60c80d7b06cb91e91f98b1aca6bc648d79
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1c516bdd5e71fc3da05fb52da692c9c5ccb0c0d7
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit 425684e2ffecf85dccab1eb4242772bc97992eb8
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 63aecad7eef034d8cb2b3e81f8a22db8a148b90b
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit dcd769b4a18bd40f9664262d081d553994d8eb78
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit f9b7f00d1e1c1004e0c2a9c35e23c1c67dc47172
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit a6ff63d5060c0ef68c2ae9f6ccf3bcada2ec6b6e
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit 7d37ae2b2b1ea6613dbc8be0ec5fa30dbd6a87de
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7d40ec654a3eca783a19e93e7bb6f394f2e6d29
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit 7ed339cfa0a2d8298e0293cf465daaf4ac74c0f9
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit cb4ad020af2f56dc060ecafdfd58b0639a8f0199
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 0805f9bf3f631d914bb6ff4817d65a9ab237fe6c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d235bc9e1c5eeb210275a4abcf89a757d0259cc0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit d5f472a6cf4456bf715ee3b3a85132f3fbe7e15f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit d67fa98cf601a8ef2642641a8aefbcdab1d5bcc2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit d3fe0caa7f83b8e971e8503b5344e20811d6c812
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit bd09f8acff3c40fe9294cfc6b6a9220ec5b766fc
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit a9aca5f5e8c5c1ce40e09ce5cf80a875ec009aa0
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 13d1eb7241b8621267520e57811f8069b2e466e9
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 238ab1dd061145a525edd27bb8203ae216380894
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7e4061d1221531340e9f82bc6f1560e5d6feab8
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit 31c87adba80d50a90ae3c85b08cd01c5545c78b4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 727e7e7fd71fb0404e0f5bf7f36dc10419d155c4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 975b90c0b7e6b836f67f3603c80f818dc095ffa5
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format (#24110)

commit 8f0180802ad327a0be47be9405a9a2764b5937db
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit aa4c9917552df8a383816a0af516b86e1237ff48
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 9ab1a57d729cfa207adfe3ee6d24d40de3bb159c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 044bf8ab7ef7045583c9da175b8ebddd2b750f84
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit 4bdec5e99330a35387c09adc27be94c5082b4405
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 7444933d5d4fc93c6278e091be5af7e4f61b1d9c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit f35404f853ba185814bd17a4742ef34688ceba98
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit 7fa2dceddafcfeea4b2599fa2b9fe3542abd4c1f
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix ProUI / JyersUI leveling preheat (#24060, #24064)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 4c84769a814ab6534a1edebc66529b568c9d6d7e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit 8fb3074901f83034cc240834a2fc75aad0ed43ad
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 230db90b70f1cafdea6fe3a8c28499e92004be53
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 28d2bc353ebbddc0ce0b96a634108392eb1089b4
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 7b5e2cd78619ba4334c0fe94b3f8293ed8d6e1ee
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 4b456078ddc1099c081e1e7149aba612c8f41008
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 8d3c84a6d969bf9fa576a17b0054d5b98324622d
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011, #24111)

commit cbc6f23a8af0c864e3607dc24764582149c0d1f3
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit bed8abe5b6df751d7dafc6f0f8d8dff7338625ce
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit 74565890f335f26fa7012d0164eb2964c0f2918d
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868, #24009, #24107)

commit 4ec9af42b8e24cf6ce9f238c9342bc1c11120429
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit b0d621d8b96fffda485efa45e61a68126613a766
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 995221e68e15693697fc7f10dfc31273ea188157
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 54e543872be13439523cecb6b670b7b4bf818164
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit 7b39604d6f58b46de18a41eb4a7de5058d9c4b35
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 01c9c2666123f0959b02b757d2acd6adc18f4284
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 27b148442826780c8fc4f7ab8c21608de21f0587
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7f1c5ad7aa6dc437d3a76abf8a36cb971e1f424e
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#23979, #24013)

commit 4fd7d1b056bfab9f31c272ae6d8f256ed2ed202d
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit 7ffe4de021254d34762d2a7ecd239ded0eca949d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit eada17ed69ede29d83f7c3897d64e2872faaae18
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit cd5c5ea60eb20d643ab2447bc3550b3eb5874a39
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit e9ea82e78d0c95ef1cee599093b4c91a6f97d709
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 18b17fc97d8474b2fe5c5cd7afcfdce05ba7d5cc
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit 89d5ed0c9e5570e4a025719a9ad183e505c8ed8a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit a56bf9045d3e68101c42ced30884fa34675279c5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit c23d0351495a7fc1c396d157642db49db2754135
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 7ff4b706947e63d708cef90c936b936305947e58
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 421c38ff2e0de3a8d5cd913232aa3448dbfbc487
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit ec447dba04409c2b60d61b9bacab54c101bd9f3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit be6535e5f7a39529bd081ed38a1bf76fa645488f
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99252cf0cd5a8a01228c715a505cb1eaf6b853e5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit f6f31434b8c0e21f98fef460e0c8492fd4c240d5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 2f3960904e1a7b830c686fa793b122de49f3d674
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 2dc4c642e78bb4fa99ca41f3ae3c92335248ffd4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit 70ea0e7c3450680e1062088243d2cf139eadc02a
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit a81fd009f081eca3685e42cffac7f35e75428fea
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit e667d4e6e43b407cedce6bbf543ea1d815e8d520
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 2d0af75d37c9ea8ab44c889ef4e489b3b533eb30
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 5e68a86968d63f97f0febb8378b2a508e909ec90
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 8bd1547c3bb16cdce37412624161fab5b9d5ead6
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit a5e083603f1435a4a0e2e9fa7449c9133aa73225
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit c5f7547e8cf0d744fb1392b3651078d3985cecb1
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit 5c5b380fda9f541ee182e614966fc39a72ac6a18
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit bb0e0cf7f35cf3b89aac4f395185d55f3aa62979
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit 5ee99dfc49eaa8e81f5beb66eb1c160ac2d217fb
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit a083b1280ec80a525766c0a9487865b76de64c81
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit b7b5cee88baadfb10822b6bb13b6e7d3b0acaff8
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit 7456fd68a41b12592f3ac3f47308f7037ca22b86
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 20154718b5a41c1522a313ada06ef5c35ce2023d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit a6794c1862c663b387637597dba5f258a3e0e1e2
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit bd5c6bf23c1478dcab31cc1c2edcd0fa546eb6ea
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 68ee64283a7aab95c2f70eaf734e24b9d909dfa7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit dd29394bbe17ab6458817cce65b94f106252092f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit ceb99e89a081d2230479e9bb7b63c23d14bf0b98
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit 6112277f9b2d24a7c9effeb5966dadef279a261c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 81f403025c3ddb479ccf363fb091ac0fcf8e667b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eeda8b451acb2a0ae96656876f6a7682d43aca1d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit c7e8ba78576af230278a5662103acf421dc59bfd
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit 071e5c336a157ca39b75081b8cb4436a72af965e
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit be08d4c4f01e2c297365664bd3e0f7dc2b051fde
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit e99104a0040f58477809c9e2b9506fe2bcd94331
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944, #23948)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit edc4089121bcd96645b7be6bbd3dafa88c510ede
Author: Scott Lahteine <[email protected]>
…
TheRaf974 added a commit to CuriousMaker/Marlin that referenced this pull request Nov 25, 2022
commit aaa4e8ecdbd20e3a6e200f44f90c4d8a9ee5deb8
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 9 20:54:17 2022 -0600

    🐛 Fix recalculate_max_e_jerk

commit 01f96a103be4369f27a009f9b524c3cc5cd821d2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:46 2022 -0500

    🔖 Marlin 2.0.9.5

commit 3638ce2b31ea3749685e034c4bf6a0eba92ee0f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:03 2022 -0500

    🚑️ Fix XYZEval = N not setting E

commit 889d1224907240aee42331ec3b011260c3f56ffe
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:14:01 2022 -0500

    🧑‍💻 Further script updates

commit dc3322b639223e4592ef724ca7d1aadd8451feee
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:08:42 2022 -0500

    🧑‍💻 Axis macros parity with 2.1.x

commit 25521cb9b2069db9bf2ab0b9576e6201c34d97e4
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat May 28 17:34:36 2022 -0500

    🚸 Fix, update ProUI (#24251, #24473, #24500)

commit 593b734d18847298acc6c1489ea97fb8528f53ec
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:53:36 2022 -0500

    ♻️ Small sound / buzz refactor (#24520)

commit 2952f0be5de7a82f706f74550aba17e7be3d378f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 29 04:12:38 2022 -0700

    Updates from #24560

commit 752f3d440dd72d869140268dc79f3efb49043c1e
Author: tombrazier <[email protected]>
Date:   Sat Jul 16 00:15:51 2022 +0100

    ⚡️ Optimize Planner calculations (#24484, #24509)

commit 5c46ae4f003a796292fa585f4d8f959dc2e503a7
Author: tombrazier <[email protected]>
Date:   Fri Jul 8 20:41:39 2022 +0100

    ⚡️ Optimize G2-G3 Arcs (#24366)

commit af6995845cfe50edc81881b5de523cfc28efc099
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:30:26 2022 -0500

    🩹 Revert extra axis changes

commit 8e6aa1b113bafea1af6c0ffa9d07980cb6f90e41
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:00:07 2022 -0500

    🧑‍💻 Fix and improve build_all_examples

commit 929ce5e859858bf3db475fb4aaa49899b22f1d68
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 10 22:00:10 2022 -0500

    🧑‍💻 Add Sim debug with lldb

commit 3a5e87cdb76ced2e84eccecf220289dc70e9a741
Author: ellensp <[email protected]>
Date:   Wed Jul 20 10:32:08 2022 +1200

    📺 SKR_MINI_SCREEN_ADAPTER for BTT SKR Mini E3 V3 (#24521)

commit 35e1384decb6b521c729c5eb77281e01b8cdc29f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 15 15:43:43 2022 -0700

    📝 Update board MCU comments (#24486)

commit 406c2342fd5556a0c54a090f38b674cd82f9fa2a
Author: InsanityAutomation <[email protected]>
Date:   Mon Jul 18 21:12:27 2022 -0400

    🚸 Machine-relative Z_STEPPER_ALIGN_XY (#24261)

    Co-authored-by: Scott Lahteine <[email protected]>

commit fa50d2c757f9b1fecc133d511c4fc1297842e184
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 04:00:39 2022 -0500

    🧑‍💻 Fix MAP macro use

    Followup to #24191

commit 6523b92014f2fd6de97c6b44dc1cfd22526b03a2
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit 2461138661bdeed44c8291229237107680803843
Author: lujios <[email protected]>
Date:   Tue Jun 7 02:22:17 2022 +0200

    🩹 Fix G33 Delta Sensorless Probing compile (#24291)

commit 2bb9a5ee5efbf054a7f63083532c4762437a19f1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 03:42:04 2022 -0500

    🩹 Apply linearval in M600

commit 0a4aa0978dfa6c198eac85cdcc09f6de59cbba55
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 8 13:30:03 2022 -0700

    🔧 Assert Probe Temp Comp requirements (#24468)

commit 39863d54b06e9b9394815467bde3b44500eebab3
Author: ellensp <[email protected]>
Date:   Sat Apr 23 21:16:15 2022 +1200

    🐛 Fix BACKLASH_COMPENSATION compile (#24072)

    Followup to #23826

commit cea45d49bc3c510e4fa38dead1d65c335f0737ae
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 9 19:17:04 2022 -0500

    🎨 Misc. 6-axis cleanup

commit 34f9c28fd16e5cc77636bcaad5ba40c56a521375
Author: Pauli Jokela <[email protected]>
Date:   Thu Jul 7 18:59:23 2022 +0300

    🩹 Fix safe homing sanity-check (#24462)

commit bf084254dab5dab9a38ea275db4846e956589758
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:15:57 2022 -0500

    🎨 Fix comments, formatting

commit 6f51f19257a1f3a3594270169d8a8d74e312f2ba
Author: Christophe Huriaux <[email protected]>
Date:   Wed Jul 6 22:43:38 2022 +0200

    🩹 Fix ST7565 LCD contrast init (#24457)

commit 56974af3e5c8958569b409ddcffabf35ecb53692
Author: Mike La Spina <[email protected]>
Date:   Fri Jul 8 15:02:12 2022 -0500

    🐛 Fix laser/fan sync (#24460)

    Followup to #22690, 307dfb15

commit f9154eca8cdfbff885934f90f49209ea112593d8
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 21:46:38 2022 -0500

    🩹 Fix TFT image packing

commit a03516a9f40f8723c21fc4d1f26b6e06c635ed2c
Author: DerAndere <[email protected]>
Date:   Mon Apr 4 04:43:42 2022 +0200

    🚸 Better M350, M114 with more axes (#23986)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f18b0f6f4b42baa2f3aa7761ae3263dbea04ee4b
Author: toomuchwonder <[email protected]>
Date:   Thu Jul 14 04:17:53 2022 +0100

    🩹 Fix MKS UI extruder speed (#24476)

commit d617002a6eec353cc1dcc69aab268cb8d71c52e3
Author: Miguel Risco-Castillo <[email protected]>
Date:   Thu Jul 14 00:00:33 2022 -0500

    🚸 Fix and update ProUI (#24477)

commit 01f16daf42a49c6c37f63e389c9c1df2d6d130f8
Author: InsanityAutomation <[email protected]>
Date:   Wed Jul 20 04:08:19 2022 -0400

    🐛 Fix Archim2 USB Hang (#24314)

commit ff1ecb00cc52b33136a1a42d0d339af7db92fcae
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 28 20:52:33 2022 -0500

    🎨 Misc. 'else' cleanup

commit 750a8dbe7fedcbbe1a651cb0bc24fe0b5753eaf1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 12:38:00 2022 -0500

    🩹 Fix MAX31865 approximations

    Followup to #24407

commit ba8f109f8aa7de5b869244ef95441f5870729856
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:52:47 2022 -0500

    🩹 Fix manual move titles (#24518)

commit 77fc65ddc2753c8170597157c77cc58132f4c092
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:52:27 2022 -0500

    🏗️ Extend AXIS_CHAR to include E

    Co-Authored-By: DerAndere <[email protected]>

commit af24e1b77ee9fdff8a9551bdc7cd5ef47c302afd
Author: kisslorand <[email protected]>
Date:   Tue May 31 20:05:57 2022 +0300

    Fix axis string 'N' (#24259)

    Followup to 167672d

commit 36d508c5a0c959191bf8f6ec7508dfdc259a7661
Author: Ludy <[email protected]>
Date:   Thu Jul 28 04:44:21 2022 +0200

    🌐 Update German language (#24555)

commit 9f5aab1a6164c7837b8352cd63ac7b2c8e1f8988
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 27 04:24:50 2022 -0500

    🧑‍💻  Update planner/stepper includes

commit 62d29ade426328a4924ed2838fcea8e113e1c1f9
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 21:15:44 2022 -0500

    🩹 Fix lcd_preheat compile

commit c801cc4830eca838f19a61cc55a0bf31cfcfd43c
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 14:54:54 2022 -0500

    🔨 Update build/CI scripts

commit bc91b1cdcdc09d368653d5a9430d349e6775f81e
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 24 13:51:43 2022 -0500

    🎨 PIO scripts cleanup

commit c847ef02a1c6b9c88f523b8fc2961df0a28c0904
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 12:02:37 2022 -0700

    📺 Fix TFT Classic UI non-Touchscreen 1024x600 (#24541)

commit cdda90f56c3dc4a9a40eb2528cc92a7cd408436f
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 11:47:07 2022 -0700

    📝 Update MPCTEMP G-Code M306 T (#24535)

    M306 simply reports current values. M306 T starts autotune process.

commit ad4bc378b7b574a8c094872b42b541de3596fb7b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:43:03 2022 -0500

    📝 Update Driver Type comments

commit 99710b94d29763c25ab764513ce1efdbb5baf13b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 78fc5acca99f1717033d09f0358d9564857d1f09
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:11:33 2022 -0500

    🔨 Add mftest --default flag

commit e616542c891e3f2d107da528fc46173c84652a47
Author: Arthur Masson <[email protected]>
Date:   Sat Jul 16 23:58:18 2022 +0200

    ✨ Polargraph M665 settings (#24401)

commit a50bb96d2dd22263c3e55566c789bd717cb7fcdf
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 653f0ab9dd95e07afb2e5f3a5536328f1f3daff1
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 02:56:55 2022 -0500

    🔨 Fix and update Makefile

    Followup to 89fe5f6d

commit c96ed8998b971a5a00a6aa4aca6d9f9b812fdab1
Author: Jason Smith <[email protected]>
Date:   Thu Jul 7 21:43:56 2022 -0700

    🩹 Fix LCD_BACKLIGHT_TIMEOUT compile (#24463)

commit b025c18d5b9d86c09b766a15f2ccaf45f340626f
Author: Mike La Spina <[email protected]>
Date:   Wed Jul 6 07:46:39 2022 -0500

    ⚡️ Fix and improve Inline Laser Power (#22690)

commit b49da1d4ca1056cd28a396e878bf37c45af43441
Author: tombrazier <[email protected]>
Date:   Tue May 31 18:01:59 2022 +0100

    💥 More M306 M => M306 H (#24258)

    Followup to #24253

commit 90074e626012ae74d51f4e47216b99cbe2c783d4
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 14:32:16 2022 -0700

    🎨 Fix/adjust warnings (#24225, #24404)

commit e570c4cc2ed1b284834fcb809973c80a1002b784
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 17:45:07 2022 -0500

    🧑‍💻 Forward-compatible axis strings

commit 543bbf02fc552cd121b85f3444bcbf87fbb1faee
Author: DerAndere <[email protected]>
Date:   Tue Apr 19 05:15:15 2022 +0200

    💥 Update Motor Current G-codes for extra axes (#23975)

commit 5ccdc9ced7639f646c01f757ac6afa1f42007021
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:13:11 2022 -0500

    🏗️ Axis name arrays

    Co-Authored-By: DerAndere <[email protected]>

commit ddb0168e29878d626d6b36a89b6b4850ad5d4ebe
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 22:37:20 2022 -0500

    ♻️ More updates for multi-axis

commit 0caf234aa5ae143bec8e9fc0ef52f632317e8fd1
Author: GHGiampy <[email protected]>
Date:   Fri Jul 15 10:18:57 2022 +0200

    🔨 Fix firmware upload (#24499)

commit dddbc4d730a1120b5f37b40f7393bc42e3651297
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:56:13 2022 -0500

    🔨 PlatformIO "--target upload" == "--target exec"

commit 08e6e8b9be0614fbacab998a20bf9bad1b1af94f
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 3 10:32:47 2022 -0500

    ♻️ Encapsulate PID in class (#24389)

commit 12ae80bcecb8329fb0548342228d8edffeeba115
Author: Victor Oliveira <[email protected]>
Date:   Sat Jul 2 21:31:27 2022 -0300

    🔨 Disable stack protector on macOS simulator (#24443)

commit 9e530cd27b790f3dce30963c6d98af043ba5abf5
Author: Eduard Sukharev <[email protected]>
Date:   Wed Jul 6 16:30:47 2022 +0300

    🐛 Fix MKS TinyBee compile (#24454)

commit 0ec1cb58c77d37886d0b6a0c683122ea614d7e20
Author: EvilGremlin <[email protected]>
Date:   Mon Jul 4 04:49:23 2022 +0300

    🔨 Fix OpenBLT encode; no-bootloader envs (#24446)

commit b548e21b656f751305acf9d613144748e847b1e0
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:30:05 2022 -0500

    ♻️  reset_acceleration_rates => refresh_…

commit e170460855cf002c44a4a2d5cc8d538794fea7fa
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:24:59 2022 -0500

    ♻️ Planner flags refactor

commit b7b2286e49c3ddf5060e26b9c03bdb6c2207eeba
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 047d0264c5ddc5dde152eaebc6507b242d05ca02
Author: elimisback <[email protected]>
Date:   Sat May 28 16:22:59 2022 -0400

    🔨 BTT STM32G0B1RE xfer build (#24245)

commit c56fb1c1820248f256b4255de175eab854591d49
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 04:29:39 2022 -0500

    🎨 Minimize block->steps.set

commit d5a79c27fe764edb295c3ed9ee3df1765c9ded27
Author: DerAndere <[email protected]>
Date:   Fri Apr 1 07:10:38 2022 +0200

    ♻️ More updates for multi-axis

    Based on #23112

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 1e3fe65b9dd0555b77cac1832ad820253e200618
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 17:49:54 2022 -0600

    🚨 Fix some compiler warnings

commit af4160af6f79acc4725916f311c16dfc3d1013c7
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 13:03:33 2022 -0500

    🐛 Fix types.h macros and fields

    Fixes #24419

commit 53b73bbd7fc17172c5d5c4820ee11092e9c92926
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 17 22:25:51 2022 -0500

    🔧 Config parity with 2.1.x

commit 3b37e859491000034f73ada784931da9aaa63e1a
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:26:36 2022 -0500

    🚸 Arrange EXP pins in common order (#24525)

commit a1881f70a89e96ab9d95a3c6f169d97416f729db
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 11 11:33:42 2022 -0700

    ✨ MKS Monster8 V2 (#24483)

commit 6ad7f7ce985831c2947703cc2d5a7daf5cd0f201
Author: Christophe Huriaux <[email protected]>
Date:   Sat Jul 16 23:35:40 2022 +0200

    ✨ eMotion-Tech eMotronic (Micro-Delta rework) (#24488)

commit 9fe4d2cc6cee4db08f16deffa7356c1de0477f8e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jul 14 03:30:00 2022 -0300

    ✨ Creality3D v4.2.5 / CR200B (#24491)

commit 5bd0541985c1571ba753160957a418ce47df9abf
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 22:31:06 2022 -0700

    ✨ BigTreeTech SKR SE BX V3.0 (#24449)

    SKR SE BX V3.0 removes the Reverse Driver Protection feature.

commit 35d5393a3e2f41cdc0b5929af6f349e41d705c13
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 20:16:16 2022 -0500

    📝 Index Mobo Rev03 => Opulo Lumen Rev3

commit 1ffc4ba861cce00457c4ce79503eacac58297c29
Author: DerAndere <[email protected]>
Date:   Mon Apr 18 06:03:39 2022 +0200

    🩹 Fix some parameters w/out values (#24051)

commit 2bf6573098687b203ee1f3adf3f66b7a3e05163b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 9 11:08:53 2022 -0500

    🐛 Fix SDIO for STM32 (#24470)

    Followup to #24271

commit 5e0a39265ac82952a0ec73144de6f9d2497b6b48
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 495002e158e289ee7c90663aaa0aeb61942cb28d
Author: tombrazier <[email protected]>
Date:   Sat Jul 23 05:32:28 2022 +0100

    🐛 Fix 2d mesh print (#24536)

commit adeca472922700cc63a0d0e1324c5b0cf91be68c
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 686d1fbb510b5060d4a23baae67a8fda0374b65c
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 13 21:22:53 2022 -0500

    🎨 ANY => EITHER

commit 8f84ce72e118478e582d45e97b7f7f0727e59522
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 8 22:45:17 2022 -0500

    Fix SDIO for STM32

    Followup to #24271

commit 5bf02e39a9159b0397a93f10571841f4d1bbc807
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 09:08:43 2022 -0700

    🚸 MPCTEMP: Home before cooling (#24434)

commit a5b076dff727fba479fe00e97e9d9332953addb3
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 08:08:40 2022 -0700

    🩹 Fix MKS TinyBee ADC Vref (#24432)

commit b79231cc59d6746f6714af102763d59488ea753a
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 21:17:32 2022 -0500

    🩹 Remove poison wchar_t macro

commit 86e6f9e38ea7a4653f11094221bcf4be20d0fef3
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 20:10:51 2022 -0500

    🩹 Remove obsolete split_move

commit b3018da60c6cf12f22c9e9b7954bcddc2cb4b686
Author: Moonglow <[email protected]>
Date:   Fri Jul 1 05:51:55 2022 +0300

    🐛 Fix M149 (#24430)

commit 0d04aa960f49196eca9f3da17846460b322d10c6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 17:14:23 2022 -0500

    🩹 Fix memset block warning

commit 0d34c2e287b582598a75cad0bb6ddd8bbd1fbba6
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 29 06:24:22 2022 -0700

    🐛 Fix Axis Homing (#24425)

    Followup to 4520a51

commit 1690f49656788ddb580c0f8311095800ad65881b
Author: John Lagonikas <[email protected]>
Date:   Wed Jun 29 01:53:05 2022 +0300

    🐛 Fix MAX31865 PT1000 normalization (#24407)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dbdb39f60ff1a97050f09d76f8f4de101d03d30a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:32:00 2022 -0500

    📝  Note about UBL bad splits

commit 843c04baa6df0db350ff759abcfa3f3fe431e5a2
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 10:01:22 2022 -0500

    🎨  Misc. shorthand operators

commit a7c58c1fd6463407331596623f8ff07c8a07481a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 05:47:18 2022 -0500

    🐛 Fix Manual Move axis selection (#24404)

commit 3af5c32ea23e8bca1e7c233006987286e980f982
Author: Shlee <[email protected]>
Date:   Sun Jun 26 06:56:57 2022 +0000

    📝 Add STM32F4 example, Ruby (#24399)

commit 4039075a1d7b96482a59987fb78f3e500ede0efb
Author: Giuliano Zaro <[email protected]>
Date:   Sun Jun 26 08:52:19 2022 +0200

    🌐 Update Italian language (#24398)

commit ed796c83541a9cbbb615fe7be6007735ad279f07
Author: Roman Moravčík <[email protected]>
Date:   Sun Jun 26 08:51:16 2022 +0200

    🌐 Update Slovak language (#24397)

commit f3c64fd397b28d132e72852956a36e64d9d53f43
Author: sgparry <[email protected]>
Date:   Sun Jun 26 07:49:57 2022 +0100

    🩹 Fix LCD contrast with K8800 board

commit b220342b26b3ed327ce6723e4912163bd76661f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 24 22:07:06 2022 -0500

    🌐 Drop unused delta strings

commit 4dad5871888fd99fea0ec918c04f1c134f49ab8a
Author: InsanityAutomation <[email protected]>
Date:   Tue Jun 21 22:09:24 2022 -0400

    🐛 Resolve DUE Servo pulse issue (#24305)

    Co-authored-by: sjasonsmith <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 1efe48ef656b38e6f60bbd193e66ae9c54f85a9d
Author: tombrazier <[email protected]>
Date:   Sat Jun 18 05:17:12 2022 +0100

    🐛 Fix G2/G3 Arcs stutter / JD speed (#24362)

commit ae8365a4e56d91374e1ea20e6edb1c0bf041ad46
Author: Bob Kuhn <[email protected]>
Date:   Thu Jun 23 23:58:26 2022 -0500

    🐛 Fix Lerdge build / encrypt (#24391)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dd68461bb1a2bc714f6b48008d2cf87c1e9e1d4e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jun 23 06:18:36 2022 -0300

    ✨ Classic UI BIQU BX (#24387)

commit 010fbcccf7fc2aa7c421fa5df1a9d1a32f477fcc
Author: ellensp <[email protected]>
Date:   Wed Jun 22 22:08:24 2022 +1200

    🩹 Fix DGUS (MKS) compile (#24378)

commit 185fe5696c9843096a0619797566d7e27d573d75
Author: Victor Oliveira <[email protected]>
Date:   Wed Jun 22 05:33:03 2022 -0300

    🚑️ Fix BIQU BX touch freeze (#24383)

commit 7edd37bc5aeeff9c55442bf6d142c3cb9357995c
Author: ellensp <[email protected]>
Date:   Wed Jun 22 16:13:18 2022 +1200

    🐛 Fix M423 invocation (#24360)

    Followup to #23745

commit 000042702108a0c0e8428350961398c4d39e3273
Author: tombrazier <[email protected]>
Date:   Wed Jun 22 03:45:22 2022 +0100

    🩹 LCD strings followup, fix warning (#24328)

commit 0d1d125bc69bf1634faecea6d0a2862677f584d3
Author: ellensp <[email protected]>
Date:   Wed Jun 22 10:33:25 2022 +1200

    🚑️ Fix SD mount bug (#24319)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 22e82a13d993e5b0ac1e7f56a77eabbf6da79dfe
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:12 2022 -0500

    🎨 Simplify move menus with substitution

commit 70d72354e2469eb66378e2da3a52ecd6db3f3447
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:23 2022 -0500

    🎨 Use MAP for home axis items

commit 821f4983d01430b9fc9ba5ccb44ea7ace4bf31e0
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:35 2022 -0500

    🧑‍💻 Fix STATIC_ITEM_N arg order

commit 15ca479708d39977c76acb73aaf1deca78810206
Author: Scott Lahteine <[email protected]>
Date:   Tue Jun 21 23:28:19 2022 -0500

    🎨 Fix comments, formatting

commit 2b8d115ebc08ee3ac03d680eff40d2b8079c2b44
Author: John Robertson <[email protected]>
Date:   Sat Jun 4 07:26:08 2022 +0100

    ⚡️ PWM for ESP32 I2S expander (#24193)

commit ae78a8844ae47d1b22f04e4545a29c19a0f8b214
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:08:29 2022 -0500

    🧑‍💻 MAP macro for axis lists, etc. (#24191)

commit f26438ef2870d88b057fba3c892f1ab4fd82b952
Author: Keith Bennett <[email protected]>
Date:   Mon Jun 13 19:04:49 2022 -0700

    👷 Use Biqu BX for CI test (#24331)

commit ce6c8adcb1002049f27513fdb0c74ce9831386cc
Author: ellensp <[email protected]>
Date:   Wed Jun 15 20:02:32 2022 +1200

    👷 CI test without src filter (emulate Arduino) (#24335)

commit d57cf9bd6b6d70dda6fe2bba9b83849a9688408a
Author: luzpaz <[email protected]>
Date:   Sat Jun 18 00:19:01 2022 -0400

    🌐 Fix LCD string, typos (#24324)

commit 5408259f51394e2c2a48879c0119251f324f0e12
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 13 20:43:23 2022 -0500

    🧑‍💻 Apply F() to some LCD / TFT strings

    Followup to #24228

commit f31178f868882905d210504e763052ca639782f9
Author: ellensp <[email protected]>
Date:   Tue Jun 14 13:38:19 2022 +1200

    🩹 Fix missing ProUI cpp wrapper (#24313)

commit f976e56a1993adede0ed854326e0cab214d90295
Author: ellensp <[email protected]>
Date:   Sat Jun 11 17:03:20 2022 +1200

    🐛 Fix JGAurora A5S A1 build (#24326)

commit 571007e5c9a1e407ef7f72b555e1d207be2f256f
Author: Steven Haigh <[email protected]>
Date:   Sat Jun 11 12:08:55 2022 +1000

    🩹 Fix ProUI compile (#24310)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 00527f38d59d8b466d515da801844197073c7bcc
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:47 2022 -0500

    🧑‍💻 Misc. servo code cleanup

commit 1c7696838b04051115d246fff173846cf74ea4d9
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:08 2022 -0500

    🧑‍💻 Remove servo macros

commit ad786a7930f1a0516427f7e0d827402387549ead
Author: tombrazier <[email protected]>
Date:   Tue Jun 7 01:23:55 2022 +0100

    🩹 Fix Mesh Leveling + Debug compile (#24297)

commit ce9c81dfa12ebde0a0a55663523c782afecbd85c
Author: ellensp <[email protected]>
Date:   Tue Jun 7 18:59:21 2022 +1200

    🩹 Media Change followup (#24302)

    Followup to #24015

commit 92910721d0c4cc79ad0f8a64fb11b2c15bf3619d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 19:06:03 2022 -0500

    👔 Fix and comment use_example_configs

commit 236251a2ce4f055ab96af0008c882ffe77f5dac8
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Jun 6 00:01:06 2022 -0500

    🚸 ProUI G-code preview, PID plot (#24282)

commit 369542db3bb34c28196a77838a2f018180a7da74
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:23:43 2022 -0500

    🔖 Marlin 2.0.9.4

commit 40d96c3460117eeab1742d74c2d78b57b4a9a1b6
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 5 20:26:40 2022 -0500

    👔 Remove actions from misc. branch

commit d7a71beaf4f08e60c3d13049f1046bbb663c643d
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 18:16:43 2022 -0500

    🔧 LEVEL_BED_CORNERS => LCD_BED_TRAMMING

commit f3b593ae73b5d21b5c270a5f5ede0fe982822b07
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 12:43:44 2022 -0500

    🎨 Fix spelling, whitespace

commit 1d8d8dccf45d2090e075b148d4f08e299184392c
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    💥 Num Axes / Multi-Stepper based on Driver Types (#24106, #24120)

commit 1e127a93c4c1446cf11aacecc9597a7355262ac8
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:15:23 2022 -0500

    🧑‍💻 Extend LCD string substitution (#24278)

commit fcef8d946cbd45e27ba9888f1e18327b68d52b00
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 0253500ccd5a7192f3e545cb5552c4ab7b309c5d
Author: Tanguy Pruvot <[email protected]>
Date:   Wed May 25 08:07:11 2022 +0200

    Use default null args in select_screen

commit 0d783a76907ace17f0d61ebe8882ebee9bc6ce3b
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:22:09 2022 +1200

    🐛 Init Stepper SPI before PSU Control (#24269)

commit e784e0413204680f3c8f3a8cdf519fb5bee7a164
Author: BIGTREETECH <[email protected]>
Date:   Thu Jun 2 17:02:06 2022 +0800

    ✨ BigTreeTech SKR3 - STM32H743 (#24271, #24272, #24275)

    Co-Authored-By: Alan.Ma <[email protected]>

commit 11d68e31274fccd20c8bb72eec0b4ad547962823
Author: bryan065 <[email protected]>
Date:   Thu Jun 2 04:51:39 2022 -0400

    🚸 Custom Menu Items for JyersUI (#24270)

commit 8b8b2a7ed35908b6a49d5b3badb230d3283792bb
Author: ledzepman71 <[email protected]>
Date:   Thu Jun 2 02:49:48 2022 -0600

    📌 Tenlog PSU pin (#24266)

commit fc1a620b878b45675b9a7972be6c1fb2882b8092
Author: tombrazier <[email protected]>
Date:   Sat May 28 23:40:08 2022 +0100

    🚩 MPC update (#24253)

commit 9799907dc9a53810e87fd5b54e2194d30e70eff8
Author: Keith Bennett <[email protected]>
Date:   Tue May 31 14:28:01 2022 -0700

    👔 Configs required to submit a Bug Report (#24256)

commit 6fc4dbbbc4b3b1e6820f4f18b81602451bb1786c
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 17:05:09 2022 -0500

    🚸 Change M201 G to S

commit 74596ad4d7f9117e06829b5657d7402f27a445ce
Author: Robby Candra <[email protected]>
Date:   Mon May 23 09:13:17 2022 +0700

    🩹 Adjust manage_media for slow/late media init (USB FD) (#24015)

commit 28f8646aa64b8baf6f93197d04b0802580272e40
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 19:56:46 2022 -0500

    ♻️ Apply F() to more LCD code (#24228)

commit 9a74bcd4cf13efa2d7cfb365182d7e097eaa1f1d
Author: John Robertson <[email protected]>
Date:   Tue May 31 23:09:44 2022 +0100

    ✨ Laser Safety Timeout (#24189)

commit 07cd248b91a59db8e2bc7ad10bbf160852af34fb
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 20:45:37 2022 -0500

    ♻️ Move watchdog to MarlinHAL

commit 209c792ef7e97dc48bf3517c9f8f56e6be80e97f
Author: Scott Lahteine <[email protected]>
Date:   Fri May 20 11:27:09 2022 -0500

    🔧 Remove LCD_SERIAL_PORT defaults, warn on auto-assign (#24170)

commit dbd00d992705a07b3da769549495d6505cb96b43
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (#23992)

    Co-authored-by: borland1 <[email protected]>

commit 4ae54a6229d1704bfc54a85233af40b69e924246
Author: Ludy <[email protected]>
Date:   Mon Apr 18 11:43:34 2022 +0200

    🐛 Update German language, Fix FTDI (#24047, #24048, #24227)

commit ce0af56d0aa4371620b142ba5b2ed3b455813a5d
Author: tombrazier <[email protected]>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (#23984, #24018, #24049, #24059)

commit 6c557a248016f2e89e259d2d5ee8e000521099bb
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (#23983)

commit a6ce9bf559d963c3cdcb6db7f57a572bc58016ea
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (#24014)

commit 21c838cb1b86c3ffd5958c68d82f6c0c25e78dbe
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (#23751)

commit 3443a9e18bf2c9797037f141d68ab409d6b3c00b
Author: Pauli Jokela <[email protected]>
Date:   Thu May 12 05:23:16 2022 +0300

    ✨ SOUND_ON_DEFAULT option (#24102)

commit b2b5b85045e689d311e472d803817e08b49ccaec
Author: Robert Brenckman <[email protected]>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (#21142)

commit 2086cc9f4e21dfc060c1ff034856ad4e6219f5f8
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:37:40 2022 -0500

    📝 Refer to 'PROGMEM' as 'flash'

commit 8eccfd4a6f90da93a4f13b8aa7fbd88a1f8cca46
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:35:38 2022 -0500

    🔧 Bed/Chamber PID Autotune menus

    Derived from MarlinFirmware/Marlin#23983

commit 9ab654adcb15ba23b42ed1f13ca34130e422dbc2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 22:06:32 2022 -0500

    🐛 Fix min/max temp evaluation

    Fixes #24257

commit 0ae982188c23ddab4e3a2d819c679166a7e19532
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 23:19:18 2022 -0500

    🐛 Fix M203 report

commit bed0788f723a0695726eab52e8da0b48298c619f
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit deb1ba73bbdd3aacaeec6c7d9540c41e93ddfdfe
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 15:11:43 2022 -0500

    🎨 Use pos.set method

commit 57f0ac88af9e8c5eb398c8367edf471900a5171f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 14:41:50 2022 -0500

    🎨  Misc. boards/pins cleanup

commit 915bce495cdc5168c982274f6deabc92e052c2c7
Author: Simon Pilepich <[email protected]>
Date:   Sat May 28 08:08:24 2022 +1000

    📝 Fix Mightyboard MOSFET comments (#24183)

commit 800a936caae83f4e5ca5dd2c2660518bd6fc43b2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ccf39b1c42fa787f645fbf0ac075cc47b72b18d3
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit d19179ce281cec58865fcbc99185abeb48a611b9
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 4a6ae1b64df5fa8824e20688399683bf11b840e2
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit 0daaef589c956d152c846760dfc157fdd1b7975b
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 4831cbebd80d6e2c6bcf504446cf6d0f2441c285
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit e0deb75764938995e32bc589d646ec397c4a3019
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0fe4f48956299cb298e6e48255ea72ba93dad79
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 4d65d7f142882bcd77072fc7dc5c01ca937a2e81
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit 1b879f0ee4e5539c237edf235b6ca38b5b2beb43
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit b6abc760cef73a1dfc0e186f40687d0a45c8a769
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 0ae061713c631d44cd12ad266ca9c7fdd856d72c
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 1d12e72bf697f7e3cb63995a20ba9e98fbce3eb9
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit c97cf10956ee33c80e557fb09e4cc75d30a0db82
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit b72f9277e9e89a7dcdc12c8f11273f7c76a064d4
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit 06c4a9acdb3f08a2052ea55d00fa350e9249bcb4
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit 8a301196e11d87d7e9db065d0d802910a664c5be
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 1e7219f4a643f8cbdbcd9685ebb5a76d02c89601
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 02c267f542223ed0d8b098da4bec6f09710d6bc8
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit fe77fc66c0004ba9a4459dd5a12c978dd0308bb1
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit 268a16b1ef1c5cd462e81aef08e4e9f7d2c65658
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 8351b1431f8bad178f2f8a3ec70b32a1d4d7ca2c
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 718806761f1e9d903d61408e2039357bfe46fff8
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit 78c7fedcea34f0c630f8e9fd46bc5d3244de04c5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit c4b8339b842958faae2567c339bcf9b44434a2ce
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 94ed67e36ef84cb4ecd8f3f1470041d4d72f7088
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit 03b819bdb235c6eb2cd0a02b832bb8f108cc5962
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 2204f05dcaabf0e639f1e1722ffd293d4b415fe3
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a13cceaad16dd2caedbf3b05ae0854b1200cb51e
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 5c25ed60c80d7b06cb91e91f98b1aca6bc648d79
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1c516bdd5e71fc3da05fb52da692c9c5ccb0c0d7
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit 425684e2ffecf85dccab1eb4242772bc97992eb8
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 63aecad7eef034d8cb2b3e81f8a22db8a148b90b
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit dcd769b4a18bd40f9664262d081d553994d8eb78
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit f9b7f00d1e1c1004e0c2a9c35e23c1c67dc47172
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit a6ff63d5060c0ef68c2ae9f6ccf3bcada2ec6b6e
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit 7d37ae2b2b1ea6613dbc8be0ec5fa30dbd6a87de
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7d40ec654a3eca783a19e93e7bb6f394f2e6d29
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit 7ed339cfa0a2d8298e0293cf465daaf4ac74c0f9
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit cb4ad020af2f56dc060ecafdfd58b0639a8f0199
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 0805f9bf3f631d914bb6ff4817d65a9ab237fe6c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d235bc9e1c5eeb210275a4abcf89a757d0259cc0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit d5f472a6cf4456bf715ee3b3a85132f3fbe7e15f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit d67fa98cf601a8ef2642641a8aefbcdab1d5bcc2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit d3fe0caa7f83b8e971e8503b5344e20811d6c812
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit bd09f8acff3c40fe9294cfc6b6a9220ec5b766fc
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit a9aca5f5e8c5c1ce40e09ce5cf80a875ec009aa0
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 13d1eb7241b8621267520e57811f8069b2e466e9
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 238ab1dd061145a525edd27bb8203ae216380894
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7e4061d1221531340e9f82bc6f1560e5d6feab8
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit 31c87adba80d50a90ae3c85b08cd01c5545c78b4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 727e7e7fd71fb0404e0f5bf7f36dc10419d155c4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 975b90c0b7e6b836f67f3603c80f818dc095ffa5
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format (#24110)

commit 8f0180802ad327a0be47be9405a9a2764b5937db
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit aa4c9917552df8a383816a0af516b86e1237ff48
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 9ab1a57d729cfa207adfe3ee6d24d40de3bb159c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 044bf8ab7ef7045583c9da175b8ebddd2b750f84
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit 4bdec5e99330a35387c09adc27be94c5082b4405
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 7444933d5d4fc93c6278e091be5af7e4f61b1d9c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit f35404f853ba185814bd17a4742ef34688ceba98
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit 7fa2dceddafcfeea4b2599fa2b9fe3542abd4c1f
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix ProUI / JyersUI leveling preheat (#24060, #24064)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 4c84769a814ab6534a1edebc66529b568c9d6d7e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit 8fb3074901f83034cc240834a2fc75aad0ed43ad
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 230db90b70f1cafdea6fe3a8c28499e92004be53
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 28d2bc353ebbddc0ce0b96a634108392eb1089b4
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 7b5e2cd78619ba4334c0fe94b3f8293ed8d6e1ee
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 4b456078ddc1099c081e1e7149aba612c8f41008
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 8d3c84a6d969bf9fa576a17b0054d5b98324622d
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011, #24111)

commit cbc6f23a8af0c864e3607dc24764582149c0d1f3
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit bed8abe5b6df751d7dafc6f0f8d8dff7338625ce
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit 74565890f335f26fa7012d0164eb2964c0f2918d
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868, #24009, #24107)

commit 4ec9af42b8e24cf6ce9f238c9342bc1c11120429
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit b0d621d8b96fffda485efa45e61a68126613a766
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 995221e68e15693697fc7f10dfc31273ea188157
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 54e543872be13439523cecb6b670b7b4bf818164
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit 7b39604d6f58b46de18a41eb4a7de5058d9c4b35
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 01c9c2666123f0959b02b757d2acd6adc18f4284
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 27b148442826780c8fc4f7ab8c21608de21f0587
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7f1c5ad7aa6dc437d3a76abf8a36cb971e1f424e
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#23979, #24013)

commit 4fd7d1b056bfab9f31c272ae6d8f256ed2ed202d
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit 7ffe4de021254d34762d2a7ecd239ded0eca949d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit eada17ed69ede29d83f7c3897d64e2872faaae18
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit cd5c5ea60eb20d643ab2447bc3550b3eb5874a39
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit e9ea82e78d0c95ef1cee599093b4c91a6f97d709
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 18b17fc97d8474b2fe5c5cd7afcfdce05ba7d5cc
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit 89d5ed0c9e5570e4a025719a9ad183e505c8ed8a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit a56bf9045d3e68101c42ced30884fa34675279c5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit c23d0351495a7fc1c396d157642db49db2754135
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 7ff4b706947e63d708cef90c936b936305947e58
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 421c38ff2e0de3a8d5cd913232aa3448dbfbc487
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit ec447dba04409c2b60d61b9bacab54c101bd9f3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit be6535e5f7a39529bd081ed38a1bf76fa645488f
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99252cf0cd5a8a01228c715a505cb1eaf6b853e5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit f6f31434b8c0e21f98fef460e0c8492fd4c240d5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 2f3960904e1a7b830c686fa793b122de49f3d674
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 2dc4c642e78bb4fa99ca41f3ae3c92335248ffd4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit 70ea0e7c3450680e1062088243d2cf139eadc02a
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit a81fd009f081eca3685e42cffac7f35e75428fea
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit e667d4e6e43b407cedce6bbf543ea1d815e8d520
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 2d0af75d37c9ea8ab44c889ef4e489b3b533eb30
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 5e68a86968d63f97f0febb8378b2a508e909ec90
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 8bd1547c3bb16cdce37412624161fab5b9d5ead6
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit a5e083603f1435a4a0e2e9fa7449c9133aa73225
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit c5f7547e8cf0d744fb1392b3651078d3985cecb1
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit 5c5b380fda9f541ee182e614966fc39a72ac6a18
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit bb0e0cf7f35cf3b89aac4f395185d55f3aa62979
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit 5ee99dfc49eaa8e81f5beb66eb1c160ac2d217fb
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit a083b1280ec80a525766c0a9487865b76de64c81
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit b7b5cee88baadfb10822b6bb13b6e7d3b0acaff8
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit 7456fd68a41b12592f3ac3f47308f7037ca22b86
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 20154718b5a41c1522a313ada06ef5c35ce2023d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit a6794c1862c663b387637597dba5f258a3e0e1e2
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit bd5c6bf23c1478dcab31cc1c2edcd0fa546eb6ea
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 68ee64283a7aab95c2f70eaf734e24b9d909dfa7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit dd29394bbe17ab6458817cce65b94f106252092f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit ceb99e89a081d2230479e9bb7b63c23d14bf0b98
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit 6112277f9b2d24a7c9effeb5966dadef279a261c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 81f403025c3ddb479ccf363fb091ac0fcf8e667b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eeda8b451acb2a0ae96656876f6a7682d43aca1d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit c7e8ba78576af230278a5662103acf421dc59bfd
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit 071e5c336a157ca39b75081b8cb4436a72af965e
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit be08d4c4f01e2c297365664bd3e0f7dc2b051fde
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit e99104a0040f58477809c9e2b9506fe2bcd94331
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944, #23948)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit edc4089121bcd96645b7be6bbd3dafa88c510ede
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 3bce266ef7865a62b5e79c7c5c67a068bb5e4c20
Author: ellensp <[email protected]>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (#23943)

    Followup to 89a9c3a391

commit c89d0114acba957d63e894bc1a479ec10cb18a81
Author: Robby Candra <[email protected]>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (#23135)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e693854d0c86fa0998a5d497607d42d6798f6ab
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 9324132a401cf0ab3781c9992d607bd4f88ba086
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 5632ad65f59710ca64e4abca99afa64cb99d559e
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit eccbfbcede60922b95971e90bf3a1d7983a5fe39
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 5ef4fb378e345e20d1fa3bdbc5312598dc571276
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to #23925

commit 21f0945d2cfada672756709bc420feb11768e687
Author: Oleg Belov <[email protected]>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (#23936)

commit b2a318af9a0c8e91b1f66a5576226b50b1b49f1b
Author: Serhiy-K <[email protected]>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (#23935)

commit 1c89c0470f2778f8051ff8514831138e64a2d9ed
Author: ellensp <[email protected]>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (#23931)

commit 2ee4a667e1999839e61fa4c7d4e31a88d6e301d6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:47:22 2022 -0600

    💡 Misc. cleanup, comments

commit f8e177a43efa3e7a173e2799562d354ab95544ab
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 9ac1c73041cbf4015b48d9d7a70a59e840a1d442
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit 4a8b99d505584d1fa5eb71d588da1bb60c3a2878
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit b094a3fc0d647f7daff7c4d97db32f9d41e4c11d
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit 2d99a608fd993fd5cb75223b72deadfc969a13c1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit fba8805c0cd87845c80d9cd7738b94332a35e27b
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 039a22649f4e0201d7580b63c1a414450353438a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit ced0ad8e094baecf6e3ee8eaa36c61baaa5743fc
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 10a0c9a9b3d4070326954c5c2354cfd8ba490f0c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit abfb0411809568970221281a3614e30970f0dfc1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 72f207f4895d5db34f697cb203876405b98d89c8
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit 7186037f20a2a2c57624e31c1e99adc37759c5f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit b0a400da72f6752619a82246fac55a07a4e67f3c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit cc4c2c2f98a1742d6b462481f74dacf5b5b93961
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit 5dae8a67344cfeda3de6d40fcd14498542004fe9
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 05dea4e30a1768913ec7d1f38c65b9423200a558
Author: Fredrik Andersson <[email protected]>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (#23925)

commit 7e88ee8c5cc87395e73c45bcd743f3ab0302773b
Author: Mark <[email protected]>
Date:   Fri Mar 18 12:49:47 2022 +0800

    📌 PandaPi V2.9 – Standalone mode (#23908)

commit cc8e485e1c55fb2fcdba7dc8f6b89041ed18e9ce
Author: John Robertson <[email protected]>
Date:   Fri Mar 18 03:21:53 2022 +0000

    ✨ ESP32 - Hardware PWM for fan, cutter, servos (#23802)

commit c7a2ecc31aa4def9e60668f5cfc648d87776be9b
Author: ellensp <[email protected]>
Date:   Fri Mar 18 16:17:41 2022 +1300

    🩹 Fix xatc EEPROM debug (#23911)

commit 260b40d1453a9310581c45d3e1327a3103b36a22
Author: tombrazier <[email protected]>
Date:   Fri Mar 18 03:15:26 2022 +0000

    ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (#23867)

commit c87eded8f6183c33bd9b9a74dd577fe6c77c32df
Author: Ludy <[email protected]>
Date:   Fri Mar 18 02:55:33 2022 +0100

    🩹 Fix redundant var declaration (#23913)

commit 2f2a999368f22f2c6b3105ab481987c2025bc50e
Author: John Robertson <[email protected]>
Date:   Thu Mar 17 19:35:33 2022 +0000

    🐛 MKS TinyBee - 2.5V ADC Vref (#23903)

commit 2558b323e85006c3c9f6a03bcaa82f61c95da0bb
Author: Jelmer van der Stel <[email protected]>
Date:   Sun Mar 13 23:20:30 2022 +0100

    🩹 Fix DWIN E3V2 display issues by allowing re-init (#23879)

commit 1db685593922214e49496d805dc9ea099e227f50
Author: Mrnt <[email protected]>
Date:   Sun Mar 13 15:17:35 2022 -0700

    🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (#23885)

commit 62f298aca39ff17bc7a51f49b9ff6b5b17a76c30
Author: Julien Staub <[email protected]>
Date:   Sun Mar 13 23:09:32 2022 +0100

    🩹 Fix ExtUI build with Host Keepalive disabled (#23898)

commit 8d20c5aadfff34a024665ea349c0b66834e4d305
Author: InsanityAutomation <[email protected]>
Date:   Sun Mar 13 18:00:35 2022 -0400

    📝 Fix X2_MAX_POS comment (#23873)

commit 61b470249c1cfa361f25060940cc8b7f8a8f64e9
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:59:43 2022 -0500

    📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

commit 4ffa88f814f3ddcb7273b73c9bb68773bcf1fd51
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:46:08 2022 -0500

    🚸 Test LIN_ADVANCE in a pins file

commit 8257040fafe758ac1913e9bf633fa0c9930dd9cb
Author: Mathew Winters <[email protected]>
Date:   Sun Mar 13 14:13:41 2022 +1300

    ⚡️ G12 - Only require used axes to be homed (#23422)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d9ab7e71eed56f242d4fae32836f305bb1ff680
Author: Keith Bennett <[email protected]>
Date:   Sat Mar 12 16:23:29 2022 -0800

    🔨 Drop extraneous build flag (#23862)

commit 1a76d4d467ebb3d8ed1df39767efa99beb08e854
Author: N…
TheRaf974 added a commit to CuriousMaker/Marlin that referenced this pull request Nov 25, 2022
commit aaa4e8ecdbd20e3a6e200f44f90c4d8a9ee5deb8
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 9 20:54:17 2022 -0600

    🐛 Fix recalculate_max_e_jerk

commit 01f96a103be4369f27a009f9b524c3cc5cd821d2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:46 2022 -0500

    🔖 Marlin 2.0.9.5

commit 3638ce2b31ea3749685e034c4bf6a0eba92ee0f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:03 2022 -0500

    🚑️ Fix XYZEval = N not setting E

commit 889d1224907240aee42331ec3b011260c3f56ffe
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:14:01 2022 -0500

    🧑‍💻 Further script updates

commit dc3322b639223e4592ef724ca7d1aadd8451feee
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:08:42 2022 -0500

    🧑‍💻 Axis macros parity with 2.1.x

commit 25521cb9b2069db9bf2ab0b9576e6201c34d97e4
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat May 28 17:34:36 2022 -0500

    🚸 Fix, update ProUI (#24251, #24473, #24500)

commit 593b734d18847298acc6c1489ea97fb8528f53ec
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:53:36 2022 -0500

    ♻️ Small sound / buzz refactor (#24520)

commit 2952f0be5de7a82f706f74550aba17e7be3d378f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 29 04:12:38 2022 -0700

    Updates from #24560

commit 752f3d440dd72d869140268dc79f3efb49043c1e
Author: tombrazier <[email protected]>
Date:   Sat Jul 16 00:15:51 2022 +0100

    ⚡️ Optimize Planner calculations (#24484, #24509)

commit 5c46ae4f003a796292fa585f4d8f959dc2e503a7
Author: tombrazier <[email protected]>
Date:   Fri Jul 8 20:41:39 2022 +0100

    ⚡️ Optimize G2-G3 Arcs (#24366)

commit af6995845cfe50edc81881b5de523cfc28efc099
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:30:26 2022 -0500

    🩹 Revert extra axis changes

commit 8e6aa1b113bafea1af6c0ffa9d07980cb6f90e41
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:00:07 2022 -0500

    🧑‍💻 Fix and improve build_all_examples

commit 929ce5e859858bf3db475fb4aaa49899b22f1d68
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 10 22:00:10 2022 -0500

    🧑‍💻 Add Sim debug with lldb

commit 3a5e87cdb76ced2e84eccecf220289dc70e9a741
Author: ellensp <[email protected]>
Date:   Wed Jul 20 10:32:08 2022 +1200

    📺 SKR_MINI_SCREEN_ADAPTER for BTT SKR Mini E3 V3 (#24521)

commit 35e1384decb6b521c729c5eb77281e01b8cdc29f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 15 15:43:43 2022 -0700

    📝 Update board MCU comments (#24486)

commit 406c2342fd5556a0c54a090f38b674cd82f9fa2a
Author: InsanityAutomation <[email protected]>
Date:   Mon Jul 18 21:12:27 2022 -0400

    🚸 Machine-relative Z_STEPPER_ALIGN_XY (#24261)

    Co-authored-by: Scott Lahteine <[email protected]>

commit fa50d2c757f9b1fecc133d511c4fc1297842e184
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 04:00:39 2022 -0500

    🧑‍💻 Fix MAP macro use

    Followup to #24191

commit 6523b92014f2fd6de97c6b44dc1cfd22526b03a2
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit 2461138661bdeed44c8291229237107680803843
Author: lujios <[email protected]>
Date:   Tue Jun 7 02:22:17 2022 +0200

    🩹 Fix G33 Delta Sensorless Probing compile (#24291)

commit 2bb9a5ee5efbf054a7f63083532c4762437a19f1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 03:42:04 2022 -0500

    🩹 Apply linearval in M600

commit 0a4aa0978dfa6c198eac85cdcc09f6de59cbba55
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 8 13:30:03 2022 -0700

    🔧 Assert Probe Temp Comp requirements (#24468)

commit 39863d54b06e9b9394815467bde3b44500eebab3
Author: ellensp <[email protected]>
Date:   Sat Apr 23 21:16:15 2022 +1200

    🐛 Fix BACKLASH_COMPENSATION compile (#24072)

    Followup to #23826

commit cea45d49bc3c510e4fa38dead1d65c335f0737ae
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 9 19:17:04 2022 -0500

    🎨 Misc. 6-axis cleanup

commit 34f9c28fd16e5cc77636bcaad5ba40c56a521375
Author: Pauli Jokela <[email protected]>
Date:   Thu Jul 7 18:59:23 2022 +0300

    🩹 Fix safe homing sanity-check (#24462)

commit bf084254dab5dab9a38ea275db4846e956589758
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:15:57 2022 -0500

    🎨 Fix comments, formatting

commit 6f51f19257a1f3a3594270169d8a8d74e312f2ba
Author: Christophe Huriaux <[email protected]>
Date:   Wed Jul 6 22:43:38 2022 +0200

    🩹 Fix ST7565 LCD contrast init (#24457)

commit 56974af3e5c8958569b409ddcffabf35ecb53692
Author: Mike La Spina <[email protected]>
Date:   Fri Jul 8 15:02:12 2022 -0500

    🐛 Fix laser/fan sync (#24460)

    Followup to #22690, 307dfb15

commit f9154eca8cdfbff885934f90f49209ea112593d8
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 21:46:38 2022 -0500

    🩹 Fix TFT image packing

commit a03516a9f40f8723c21fc4d1f26b6e06c635ed2c
Author: DerAndere <[email protected]>
Date:   Mon Apr 4 04:43:42 2022 +0200

    🚸 Better M350, M114 with more axes (#23986)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f18b0f6f4b42baa2f3aa7761ae3263dbea04ee4b
Author: toomuchwonder <[email protected]>
Date:   Thu Jul 14 04:17:53 2022 +0100

    🩹 Fix MKS UI extruder speed (#24476)

commit d617002a6eec353cc1dcc69aab268cb8d71c52e3
Author: Miguel Risco-Castillo <[email protected]>
Date:   Thu Jul 14 00:00:33 2022 -0500

    🚸 Fix and update ProUI (#24477)

commit 01f16daf42a49c6c37f63e389c9c1df2d6d130f8
Author: InsanityAutomation <[email protected]>
Date:   Wed Jul 20 04:08:19 2022 -0400

    🐛 Fix Archim2 USB Hang (#24314)

commit ff1ecb00cc52b33136a1a42d0d339af7db92fcae
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 28 20:52:33 2022 -0500

    🎨 Misc. 'else' cleanup

commit 750a8dbe7fedcbbe1a651cb0bc24fe0b5753eaf1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 12:38:00 2022 -0500

    🩹 Fix MAX31865 approximations

    Followup to #24407

commit ba8f109f8aa7de5b869244ef95441f5870729856
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:52:47 2022 -0500

    🩹 Fix manual move titles (#24518)

commit 77fc65ddc2753c8170597157c77cc58132f4c092
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:52:27 2022 -0500

    🏗️ Extend AXIS_CHAR to include E

    Co-Authored-By: DerAndere <[email protected]>

commit af24e1b77ee9fdff8a9551bdc7cd5ef47c302afd
Author: kisslorand <[email protected]>
Date:   Tue May 31 20:05:57 2022 +0300

    Fix axis string 'N' (#24259)

    Followup to 167672d

commit 36d508c5a0c959191bf8f6ec7508dfdc259a7661
Author: Ludy <[email protected]>
Date:   Thu Jul 28 04:44:21 2022 +0200

    🌐 Update German language (#24555)

commit 9f5aab1a6164c7837b8352cd63ac7b2c8e1f8988
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 27 04:24:50 2022 -0500

    🧑‍💻  Update planner/stepper includes

commit 62d29ade426328a4924ed2838fcea8e113e1c1f9
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 21:15:44 2022 -0500

    🩹 Fix lcd_preheat compile

commit c801cc4830eca838f19a61cc55a0bf31cfcfd43c
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 14:54:54 2022 -0500

    🔨 Update build/CI scripts

commit bc91b1cdcdc09d368653d5a9430d349e6775f81e
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 24 13:51:43 2022 -0500

    🎨 PIO scripts cleanup

commit c847ef02a1c6b9c88f523b8fc2961df0a28c0904
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 12:02:37 2022 -0700

    📺 Fix TFT Classic UI non-Touchscreen 1024x600 (#24541)

commit cdda90f56c3dc4a9a40eb2528cc92a7cd408436f
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 11:47:07 2022 -0700

    📝 Update MPCTEMP G-Code M306 T (#24535)

    M306 simply reports current values. M306 T starts autotune process.

commit ad4bc378b7b574a8c094872b42b541de3596fb7b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:43:03 2022 -0500

    📝 Update Driver Type comments

commit 99710b94d29763c25ab764513ce1efdbb5baf13b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 78fc5acca99f1717033d09f0358d9564857d1f09
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:11:33 2022 -0500

    🔨 Add mftest --default flag

commit e616542c891e3f2d107da528fc46173c84652a47
Author: Arthur Masson <[email protected]>
Date:   Sat Jul 16 23:58:18 2022 +0200

    ✨ Polargraph M665 settings (#24401)

commit a50bb96d2dd22263c3e55566c789bd717cb7fcdf
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 653f0ab9dd95e07afb2e5f3a5536328f1f3daff1
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 02:56:55 2022 -0500

    🔨 Fix and update Makefile

    Followup to 89fe5f6d

commit c96ed8998b971a5a00a6aa4aca6d9f9b812fdab1
Author: Jason Smith <[email protected]>
Date:   Thu Jul 7 21:43:56 2022 -0700

    🩹 Fix LCD_BACKLIGHT_TIMEOUT compile (#24463)

commit b025c18d5b9d86c09b766a15f2ccaf45f340626f
Author: Mike La Spina <[email protected]>
Date:   Wed Jul 6 07:46:39 2022 -0500

    ⚡️ Fix and improve Inline Laser Power (#22690)

commit b49da1d4ca1056cd28a396e878bf37c45af43441
Author: tombrazier <[email protected]>
Date:   Tue May 31 18:01:59 2022 +0100

    💥 More M306 M => M306 H (#24258)

    Followup to #24253

commit 90074e626012ae74d51f4e47216b99cbe2c783d4
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 14:32:16 2022 -0700

    🎨 Fix/adjust warnings (#24225, #24404)

commit e570c4cc2ed1b284834fcb809973c80a1002b784
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 17:45:07 2022 -0500

    🧑‍💻 Forward-compatible axis strings

commit 543bbf02fc552cd121b85f3444bcbf87fbb1faee
Author: DerAndere <[email protected]>
Date:   Tue Apr 19 05:15:15 2022 +0200

    💥 Update Motor Current G-codes for extra axes (#23975)

commit 5ccdc9ced7639f646c01f757ac6afa1f42007021
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:13:11 2022 -0500

    🏗️ Axis name arrays

    Co-Authored-By: DerAndere <[email protected]>

commit ddb0168e29878d626d6b36a89b6b4850ad5d4ebe
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 22:37:20 2022 -0500

    ♻️ More updates for multi-axis

commit 0caf234aa5ae143bec8e9fc0ef52f632317e8fd1
Author: GHGiampy <[email protected]>
Date:   Fri Jul 15 10:18:57 2022 +0200

    🔨 Fix firmware upload (#24499)

commit dddbc4d730a1120b5f37b40f7393bc42e3651297
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:56:13 2022 -0500

    🔨 PlatformIO "--target upload" == "--target exec"

commit 08e6e8b9be0614fbacab998a20bf9bad1b1af94f
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 3 10:32:47 2022 -0500

    ♻️ Encapsulate PID in class (#24389)

commit 12ae80bcecb8329fb0548342228d8edffeeba115
Author: Victor Oliveira <[email protected]>
Date:   Sat Jul 2 21:31:27 2022 -0300

    🔨 Disable stack protector on macOS simulator (#24443)

commit 9e530cd27b790f3dce30963c6d98af043ba5abf5
Author: Eduard Sukharev <[email protected]>
Date:   Wed Jul 6 16:30:47 2022 +0300

    🐛 Fix MKS TinyBee compile (#24454)

commit 0ec1cb58c77d37886d0b6a0c683122ea614d7e20
Author: EvilGremlin <[email protected]>
Date:   Mon Jul 4 04:49:23 2022 +0300

    🔨 Fix OpenBLT encode; no-bootloader envs (#24446)

commit b548e21b656f751305acf9d613144748e847b1e0
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:30:05 2022 -0500

    ♻️  reset_acceleration_rates => refresh_…

commit e170460855cf002c44a4a2d5cc8d538794fea7fa
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:24:59 2022 -0500

    ♻️ Planner flags refactor

commit b7b2286e49c3ddf5060e26b9c03bdb6c2207eeba
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 047d0264c5ddc5dde152eaebc6507b242d05ca02
Author: elimisback <[email protected]>
Date:   Sat May 28 16:22:59 2022 -0400

    🔨 BTT STM32G0B1RE xfer build (#24245)

commit c56fb1c1820248f256b4255de175eab854591d49
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 04:29:39 2022 -0500

    🎨 Minimize block->steps.set

commit d5a79c27fe764edb295c3ed9ee3df1765c9ded27
Author: DerAndere <[email protected]>
Date:   Fri Apr 1 07:10:38 2022 +0200

    ♻️ More updates for multi-axis

    Based on #23112

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 1e3fe65b9dd0555b77cac1832ad820253e200618
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 17:49:54 2022 -0600

    🚨 Fix some compiler warnings

commit af4160af6f79acc4725916f311c16dfc3d1013c7
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 13:03:33 2022 -0500

    🐛 Fix types.h macros and fields

    Fixes #24419

commit 53b73bbd7fc17172c5d5c4820ee11092e9c92926
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 17 22:25:51 2022 -0500

    🔧 Config parity with 2.1.x

commit 3b37e859491000034f73ada784931da9aaa63e1a
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:26:36 2022 -0500

    🚸 Arrange EXP pins in common order (#24525)

commit a1881f70a89e96ab9d95a3c6f169d97416f729db
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 11 11:33:42 2022 -0700

    ✨ MKS Monster8 V2 (#24483)

commit 6ad7f7ce985831c2947703cc2d5a7daf5cd0f201
Author: Christophe Huriaux <[email protected]>
Date:   Sat Jul 16 23:35:40 2022 +0200

    ✨ eMotion-Tech eMotronic (Micro-Delta rework) (#24488)

commit 9fe4d2cc6cee4db08f16deffa7356c1de0477f8e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jul 14 03:30:00 2022 -0300

    ✨ Creality3D v4.2.5 / CR200B (#24491)

commit 5bd0541985c1571ba753160957a418ce47df9abf
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 22:31:06 2022 -0700

    ✨ BigTreeTech SKR SE BX V3.0 (#24449)

    SKR SE BX V3.0 removes the Reverse Driver Protection feature.

commit 35d5393a3e2f41cdc0b5929af6f349e41d705c13
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 20:16:16 2022 -0500

    📝 Index Mobo Rev03 => Opulo Lumen Rev3

commit 1ffc4ba861cce00457c4ce79503eacac58297c29
Author: DerAndere <[email protected]>
Date:   Mon Apr 18 06:03:39 2022 +0200

    🩹 Fix some parameters w/out values (#24051)

commit 2bf6573098687b203ee1f3adf3f66b7a3e05163b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 9 11:08:53 2022 -0500

    🐛 Fix SDIO for STM32 (#24470)

    Followup to #24271

commit 5e0a39265ac82952a0ec73144de6f9d2497b6b48
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 495002e158e289ee7c90663aaa0aeb61942cb28d
Author: tombrazier <[email protected]>
Date:   Sat Jul 23 05:32:28 2022 +0100

    🐛 Fix 2d mesh print (#24536)

commit adeca472922700cc63a0d0e1324c5b0cf91be68c
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 686d1fbb510b5060d4a23baae67a8fda0374b65c
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 13 21:22:53 2022 -0500

    🎨 ANY => EITHER

commit 8f84ce72e118478e582d45e97b7f7f0727e59522
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 8 22:45:17 2022 -0500

    Fix SDIO for STM32

    Followup to #24271

commit 5bf02e39a9159b0397a93f10571841f4d1bbc807
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 09:08:43 2022 -0700

    🚸 MPCTEMP: Home before cooling (#24434)

commit a5b076dff727fba479fe00e97e9d9332953addb3
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 08:08:40 2022 -0700

    🩹 Fix MKS TinyBee ADC Vref (#24432)

commit b79231cc59d6746f6714af102763d59488ea753a
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 21:17:32 2022 -0500

    🩹 Remove poison wchar_t macro

commit 86e6f9e38ea7a4653f11094221bcf4be20d0fef3
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 20:10:51 2022 -0500

    🩹 Remove obsolete split_move

commit b3018da60c6cf12f22c9e9b7954bcddc2cb4b686
Author: Moonglow <[email protected]>
Date:   Fri Jul 1 05:51:55 2022 +0300

    🐛 Fix M149 (#24430)

commit 0d04aa960f49196eca9f3da17846460b322d10c6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 17:14:23 2022 -0500

    🩹 Fix memset block warning

commit 0d34c2e287b582598a75cad0bb6ddd8bbd1fbba6
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 29 06:24:22 2022 -0700

    🐛 Fix Axis Homing (#24425)

    Followup to 4520a51

commit 1690f49656788ddb580c0f8311095800ad65881b
Author: John Lagonikas <[email protected]>
Date:   Wed Jun 29 01:53:05 2022 +0300

    🐛 Fix MAX31865 PT1000 normalization (#24407)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dbdb39f60ff1a97050f09d76f8f4de101d03d30a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:32:00 2022 -0500

    📝  Note about UBL bad splits

commit 843c04baa6df0db350ff759abcfa3f3fe431e5a2
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 10:01:22 2022 -0500

    🎨  Misc. shorthand operators

commit a7c58c1fd6463407331596623f8ff07c8a07481a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 05:47:18 2022 -0500

    🐛 Fix Manual Move axis selection (#24404)

commit 3af5c32ea23e8bca1e7c233006987286e980f982
Author: Shlee <[email protected]>
Date:   Sun Jun 26 06:56:57 2022 +0000

    📝 Add STM32F4 example, Ruby (#24399)

commit 4039075a1d7b96482a59987fb78f3e500ede0efb
Author: Giuliano Zaro <[email protected]>
Date:   Sun Jun 26 08:52:19 2022 +0200

    🌐 Update Italian language (#24398)

commit ed796c83541a9cbbb615fe7be6007735ad279f07
Author: Roman Moravčík <[email protected]>
Date:   Sun Jun 26 08:51:16 2022 +0200

    🌐 Update Slovak language (#24397)

commit f3c64fd397b28d132e72852956a36e64d9d53f43
Author: sgparry <[email protected]>
Date:   Sun Jun 26 07:49:57 2022 +0100

    🩹 Fix LCD contrast with K8800 board

commit b220342b26b3ed327ce6723e4912163bd76661f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 24 22:07:06 2022 -0500

    🌐 Drop unused delta strings

commit 4dad5871888fd99fea0ec918c04f1c134f49ab8a
Author: InsanityAutomation <[email protected]>
Date:   Tue Jun 21 22:09:24 2022 -0400

    🐛 Resolve DUE Servo pulse issue (#24305)

    Co-authored-by: sjasonsmith <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 1efe48ef656b38e6f60bbd193e66ae9c54f85a9d
Author: tombrazier <[email protected]>
Date:   Sat Jun 18 05:17:12 2022 +0100

    🐛 Fix G2/G3 Arcs stutter / JD speed (#24362)

commit ae8365a4e56d91374e1ea20e6edb1c0bf041ad46
Author: Bob Kuhn <[email protected]>
Date:   Thu Jun 23 23:58:26 2022 -0500

    🐛 Fix Lerdge build / encrypt (#24391)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dd68461bb1a2bc714f6b48008d2cf87c1e9e1d4e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jun 23 06:18:36 2022 -0300

    ✨ Classic UI BIQU BX (#24387)

commit 010fbcccf7fc2aa7c421fa5df1a9d1a32f477fcc
Author: ellensp <[email protected]>
Date:   Wed Jun 22 22:08:24 2022 +1200

    🩹 Fix DGUS (MKS) compile (#24378)

commit 185fe5696c9843096a0619797566d7e27d573d75
Author: Victor Oliveira <[email protected]>
Date:   Wed Jun 22 05:33:03 2022 -0300

    🚑️ Fix BIQU BX touch freeze (#24383)

commit 7edd37bc5aeeff9c55442bf6d142c3cb9357995c
Author: ellensp <[email protected]>
Date:   Wed Jun 22 16:13:18 2022 +1200

    🐛 Fix M423 invocation (#24360)

    Followup to #23745

commit 000042702108a0c0e8428350961398c4d39e3273
Author: tombrazier <[email protected]>
Date:   Wed Jun 22 03:45:22 2022 +0100

    🩹 LCD strings followup, fix warning (#24328)

commit 0d1d125bc69bf1634faecea6d0a2862677f584d3
Author: ellensp <[email protected]>
Date:   Wed Jun 22 10:33:25 2022 +1200

    🚑️ Fix SD mount bug (#24319)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 22e82a13d993e5b0ac1e7f56a77eabbf6da79dfe
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:12 2022 -0500

    🎨 Simplify move menus with substitution

commit 70d72354e2469eb66378e2da3a52ecd6db3f3447
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:23 2022 -0500

    🎨 Use MAP for home axis items

commit 821f4983d01430b9fc9ba5ccb44ea7ace4bf31e0
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:35 2022 -0500

    🧑‍💻 Fix STATIC_ITEM_N arg order

commit 15ca479708d39977c76acb73aaf1deca78810206
Author: Scott Lahteine <[email protected]>
Date:   Tue Jun 21 23:28:19 2022 -0500

    🎨 Fix comments, formatting

commit 2b8d115ebc08ee3ac03d680eff40d2b8079c2b44
Author: John Robertson <[email protected]>
Date:   Sat Jun 4 07:26:08 2022 +0100

    ⚡️ PWM for ESP32 I2S expander (#24193)

commit ae78a8844ae47d1b22f04e4545a29c19a0f8b214
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:08:29 2022 -0500

    🧑‍💻 MAP macro for axis lists, etc. (#24191)

commit f26438ef2870d88b057fba3c892f1ab4fd82b952
Author: Keith Bennett <[email protected]>
Date:   Mon Jun 13 19:04:49 2022 -0700

    👷 Use Biqu BX for CI test (#24331)

commit ce6c8adcb1002049f27513fdb0c74ce9831386cc
Author: ellensp <[email protected]>
Date:   Wed Jun 15 20:02:32 2022 +1200

    👷 CI test without src filter (emulate Arduino) (#24335)

commit d57cf9bd6b6d70dda6fe2bba9b83849a9688408a
Author: luzpaz <[email protected]>
Date:   Sat Jun 18 00:19:01 2022 -0400

    🌐 Fix LCD string, typos (#24324)

commit 5408259f51394e2c2a48879c0119251f324f0e12
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 13 20:43:23 2022 -0500

    🧑‍💻 Apply F() to some LCD / TFT strings

    Followup to #24228

commit f31178f868882905d210504e763052ca639782f9
Author: ellensp <[email protected]>
Date:   Tue Jun 14 13:38:19 2022 +1200

    🩹 Fix missing ProUI cpp wrapper (#24313)

commit f976e56a1993adede0ed854326e0cab214d90295
Author: ellensp <[email protected]>
Date:   Sat Jun 11 17:03:20 2022 +1200

    🐛 Fix JGAurora A5S A1 build (#24326)

commit 571007e5c9a1e407ef7f72b555e1d207be2f256f
Author: Steven Haigh <[email protected]>
Date:   Sat Jun 11 12:08:55 2022 +1000

    🩹 Fix ProUI compile (#24310)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 00527f38d59d8b466d515da801844197073c7bcc
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:47 2022 -0500

    🧑‍💻 Misc. servo code cleanup

commit 1c7696838b04051115d246fff173846cf74ea4d9
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:08 2022 -0500

    🧑‍💻 Remove servo macros

commit ad786a7930f1a0516427f7e0d827402387549ead
Author: tombrazier <[email protected]>
Date:   Tue Jun 7 01:23:55 2022 +0100

    🩹 Fix Mesh Leveling + Debug compile (#24297)

commit ce9c81dfa12ebde0a0a55663523c782afecbd85c
Author: ellensp <[email protected]>
Date:   Tue Jun 7 18:59:21 2022 +1200

    🩹 Media Change followup (#24302)

    Followup to #24015

commit 92910721d0c4cc79ad0f8a64fb11b2c15bf3619d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 19:06:03 2022 -0500

    👔 Fix and comment use_example_configs

commit 236251a2ce4f055ab96af0008c882ffe77f5dac8
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Jun 6 00:01:06 2022 -0500

    🚸 ProUI G-code preview, PID plot (#24282)

commit 369542db3bb34c28196a77838a2f018180a7da74
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:23:43 2022 -0500

    🔖 Marlin 2.0.9.4

commit 40d96c3460117eeab1742d74c2d78b57b4a9a1b6
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 5 20:26:40 2022 -0500

    👔 Remove actions from misc. branch

commit d7a71beaf4f08e60c3d13049f1046bbb663c643d
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 18:16:43 2022 -0500

    🔧 LEVEL_BED_CORNERS => LCD_BED_TRAMMING

commit f3b593ae73b5d21b5c270a5f5ede0fe982822b07
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 12:43:44 2022 -0500

    🎨 Fix spelling, whitespace

commit 1d8d8dccf45d2090e075b148d4f08e299184392c
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    💥 Num Axes / Multi-Stepper based on Driver Types (#24106, #24120)

commit 1e127a93c4c1446cf11aacecc9597a7355262ac8
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:15:23 2022 -0500

    🧑‍💻 Extend LCD string substitution (#24278)

commit fcef8d946cbd45e27ba9888f1e18327b68d52b00
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 0253500ccd5a7192f3e545cb5552c4ab7b309c5d
Author: Tanguy Pruvot <[email protected]>
Date:   Wed May 25 08:07:11 2022 +0200

    Use default null args in select_screen

commit 0d783a76907ace17f0d61ebe8882ebee9bc6ce3b
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:22:09 2022 +1200

    🐛 Init Stepper SPI before PSU Control (#24269)

commit e784e0413204680f3c8f3a8cdf519fb5bee7a164
Author: BIGTREETECH <[email protected]>
Date:   Thu Jun 2 17:02:06 2022 +0800

    ✨ BigTreeTech SKR3 - STM32H743 (#24271, #24272, #24275)

    Co-Authored-By: Alan.Ma <[email protected]>

commit 11d68e31274fccd20c8bb72eec0b4ad547962823
Author: bryan065 <[email protected]>
Date:   Thu Jun 2 04:51:39 2022 -0400

    🚸 Custom Menu Items for JyersUI (#24270)

commit 8b8b2a7ed35908b6a49d5b3badb230d3283792bb
Author: ledzepman71 <[email protected]>
Date:   Thu Jun 2 02:49:48 2022 -0600

    📌 Tenlog PSU pin (#24266)

commit fc1a620b878b45675b9a7972be6c1fb2882b8092
Author: tombrazier <[email protected]>
Date:   Sat May 28 23:40:08 2022 +0100

    🚩 MPC update (#24253)

commit 9799907dc9a53810e87fd5b54e2194d30e70eff8
Author: Keith Bennett <[email protected]>
Date:   Tue May 31 14:28:01 2022 -0700

    👔 Configs required to submit a Bug Report (#24256)

commit 6fc4dbbbc4b3b1e6820f4f18b81602451bb1786c
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 17:05:09 2022 -0500

    🚸 Change M201 G to S

commit 74596ad4d7f9117e06829b5657d7402f27a445ce
Author: Robby Candra <[email protected]>
Date:   Mon May 23 09:13:17 2022 +0700

    🩹 Adjust manage_media for slow/late media init (USB FD) (#24015)

commit 28f8646aa64b8baf6f93197d04b0802580272e40
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 19:56:46 2022 -0500

    ♻️ Apply F() to more LCD code (#24228)

commit 9a74bcd4cf13efa2d7cfb365182d7e097eaa1f1d
Author: John Robertson <[email protected]>
Date:   Tue May 31 23:09:44 2022 +0100

    ✨ Laser Safety Timeout (#24189)

commit 07cd248b91a59db8e2bc7ad10bbf160852af34fb
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 20:45:37 2022 -0500

    ♻️ Move watchdog to MarlinHAL

commit 209c792ef7e97dc48bf3517c9f8f56e6be80e97f
Author: Scott Lahteine <[email protected]>
Date:   Fri May 20 11:27:09 2022 -0500

    🔧 Remove LCD_SERIAL_PORT defaults, warn on auto-assign (#24170)

commit dbd00d992705a07b3da769549495d6505cb96b43
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (#23992)

    Co-authored-by: borland1 <[email protected]>

commit 4ae54a6229d1704bfc54a85233af40b69e924246
Author: Ludy <[email protected]>
Date:   Mon Apr 18 11:43:34 2022 +0200

    🐛 Update German language, Fix FTDI (#24047, #24048, #24227)

commit ce0af56d0aa4371620b142ba5b2ed3b455813a5d
Author: tombrazier <[email protected]>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (#23984, #24018, #24049, #24059)

commit 6c557a248016f2e89e259d2d5ee8e000521099bb
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (#23983)

commit a6ce9bf559d963c3cdcb6db7f57a572bc58016ea
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (#24014)

commit 21c838cb1b86c3ffd5958c68d82f6c0c25e78dbe
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (#23751)

commit 3443a9e18bf2c9797037f141d68ab409d6b3c00b
Author: Pauli Jokela <[email protected]>
Date:   Thu May 12 05:23:16 2022 +0300

    ✨ SOUND_ON_DEFAULT option (#24102)

commit b2b5b85045e689d311e472d803817e08b49ccaec
Author: Robert Brenckman <[email protected]>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (#21142)

commit 2086cc9f4e21dfc060c1ff034856ad4e6219f5f8
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:37:40 2022 -0500

    📝 Refer to 'PROGMEM' as 'flash'

commit 8eccfd4a6f90da93a4f13b8aa7fbd88a1f8cca46
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:35:38 2022 -0500

    🔧 Bed/Chamber PID Autotune menus

    Derived from MarlinFirmware/Marlin#23983

commit 9ab654adcb15ba23b42ed1f13ca34130e422dbc2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 22:06:32 2022 -0500

    🐛 Fix min/max temp evaluation

    Fixes #24257

commit 0ae982188c23ddab4e3a2d819c679166a7e19532
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 23:19:18 2022 -0500

    🐛 Fix M203 report

commit bed0788f723a0695726eab52e8da0b48298c619f
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit deb1ba73bbdd3aacaeec6c7d9540c41e93ddfdfe
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 15:11:43 2022 -0500

    🎨 Use pos.set method

commit 57f0ac88af9e8c5eb398c8367edf471900a5171f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 14:41:50 2022 -0500

    🎨  Misc. boards/pins cleanup

commit 915bce495cdc5168c982274f6deabc92e052c2c7
Author: Simon Pilepich <[email protected]>
Date:   Sat May 28 08:08:24 2022 +1000

    📝 Fix Mightyboard MOSFET comments (#24183)

commit 800a936caae83f4e5ca5dd2c2660518bd6fc43b2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ccf39b1c42fa787f645fbf0ac075cc47b72b18d3
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit d19179ce281cec58865fcbc99185abeb48a611b9
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 4a6ae1b64df5fa8824e20688399683bf11b840e2
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit 0daaef589c956d152c846760dfc157fdd1b7975b
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 4831cbebd80d6e2c6bcf504446cf6d0f2441c285
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit e0deb75764938995e32bc589d646ec397c4a3019
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0fe4f48956299cb298e6e48255ea72ba93dad79
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 4d65d7f142882bcd77072fc7dc5c01ca937a2e81
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit 1b879f0ee4e5539c237edf235b6ca38b5b2beb43
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit b6abc760cef73a1dfc0e186f40687d0a45c8a769
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 0ae061713c631d44cd12ad266ca9c7fdd856d72c
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 1d12e72bf697f7e3cb63995a20ba9e98fbce3eb9
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit c97cf10956ee33c80e557fb09e4cc75d30a0db82
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit b72f9277e9e89a7dcdc12c8f11273f7c76a064d4
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit 06c4a9acdb3f08a2052ea55d00fa350e9249bcb4
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit 8a301196e11d87d7e9db065d0d802910a664c5be
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 1e7219f4a643f8cbdbcd9685ebb5a76d02c89601
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 02c267f542223ed0d8b098da4bec6f09710d6bc8
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit fe77fc66c0004ba9a4459dd5a12c978dd0308bb1
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit 268a16b1ef1c5cd462e81aef08e4e9f7d2c65658
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 8351b1431f8bad178f2f8a3ec70b32a1d4d7ca2c
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 718806761f1e9d903d61408e2039357bfe46fff8
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit 78c7fedcea34f0c630f8e9fd46bc5d3244de04c5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit c4b8339b842958faae2567c339bcf9b44434a2ce
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 94ed67e36ef84cb4ecd8f3f1470041d4d72f7088
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit 03b819bdb235c6eb2cd0a02b832bb8f108cc5962
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 2204f05dcaabf0e639f1e1722ffd293d4b415fe3
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a13cceaad16dd2caedbf3b05ae0854b1200cb51e
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 5c25ed60c80d7b06cb91e91f98b1aca6bc648d79
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1c516bdd5e71fc3da05fb52da692c9c5ccb0c0d7
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit 425684e2ffecf85dccab1eb4242772bc97992eb8
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 63aecad7eef034d8cb2b3e81f8a22db8a148b90b
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit dcd769b4a18bd40f9664262d081d553994d8eb78
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit f9b7f00d1e1c1004e0c2a9c35e23c1c67dc47172
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit a6ff63d5060c0ef68c2ae9f6ccf3bcada2ec6b6e
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit 7d37ae2b2b1ea6613dbc8be0ec5fa30dbd6a87de
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7d40ec654a3eca783a19e93e7bb6f394f2e6d29
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit 7ed339cfa0a2d8298e0293cf465daaf4ac74c0f9
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit cb4ad020af2f56dc060ecafdfd58b0639a8f0199
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 0805f9bf3f631d914bb6ff4817d65a9ab237fe6c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d235bc9e1c5eeb210275a4abcf89a757d0259cc0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit d5f472a6cf4456bf715ee3b3a85132f3fbe7e15f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit d67fa98cf601a8ef2642641a8aefbcdab1d5bcc2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit d3fe0caa7f83b8e971e8503b5344e20811d6c812
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit bd09f8acff3c40fe9294cfc6b6a9220ec5b766fc
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit a9aca5f5e8c5c1ce40e09ce5cf80a875ec009aa0
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 13d1eb7241b8621267520e57811f8069b2e466e9
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 238ab1dd061145a525edd27bb8203ae216380894
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7e4061d1221531340e9f82bc6f1560e5d6feab8
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit 31c87adba80d50a90ae3c85b08cd01c5545c78b4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 727e7e7fd71fb0404e0f5bf7f36dc10419d155c4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 975b90c0b7e6b836f67f3603c80f818dc095ffa5
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format (#24110)

commit 8f0180802ad327a0be47be9405a9a2764b5937db
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit aa4c9917552df8a383816a0af516b86e1237ff48
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 9ab1a57d729cfa207adfe3ee6d24d40de3bb159c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 044bf8ab7ef7045583c9da175b8ebddd2b750f84
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit 4bdec5e99330a35387c09adc27be94c5082b4405
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 7444933d5d4fc93c6278e091be5af7e4f61b1d9c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit f35404f853ba185814bd17a4742ef34688ceba98
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit 7fa2dceddafcfeea4b2599fa2b9fe3542abd4c1f
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix ProUI / JyersUI leveling preheat (#24060, #24064)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 4c84769a814ab6534a1edebc66529b568c9d6d7e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit 8fb3074901f83034cc240834a2fc75aad0ed43ad
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 230db90b70f1cafdea6fe3a8c28499e92004be53
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 28d2bc353ebbddc0ce0b96a634108392eb1089b4
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 7b5e2cd78619ba4334c0fe94b3f8293ed8d6e1ee
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 4b456078ddc1099c081e1e7149aba612c8f41008
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 8d3c84a6d969bf9fa576a17b0054d5b98324622d
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011, #24111)

commit cbc6f23a8af0c864e3607dc24764582149c0d1f3
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit bed8abe5b6df751d7dafc6f0f8d8dff7338625ce
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit 74565890f335f26fa7012d0164eb2964c0f2918d
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868, #24009, #24107)

commit 4ec9af42b8e24cf6ce9f238c9342bc1c11120429
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit b0d621d8b96fffda485efa45e61a68126613a766
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 995221e68e15693697fc7f10dfc31273ea188157
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 54e543872be13439523cecb6b670b7b4bf818164
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit 7b39604d6f58b46de18a41eb4a7de5058d9c4b35
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 01c9c2666123f0959b02b757d2acd6adc18f4284
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 27b148442826780c8fc4f7ab8c21608de21f0587
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7f1c5ad7aa6dc437d3a76abf8a36cb971e1f424e
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#23979, #24013)

commit 4fd7d1b056bfab9f31c272ae6d8f256ed2ed202d
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit 7ffe4de021254d34762d2a7ecd239ded0eca949d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit eada17ed69ede29d83f7c3897d64e2872faaae18
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit cd5c5ea60eb20d643ab2447bc3550b3eb5874a39
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit e9ea82e78d0c95ef1cee599093b4c91a6f97d709
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 18b17fc97d8474b2fe5c5cd7afcfdce05ba7d5cc
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit 89d5ed0c9e5570e4a025719a9ad183e505c8ed8a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit a56bf9045d3e68101c42ced30884fa34675279c5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit c23d0351495a7fc1c396d157642db49db2754135
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 7ff4b706947e63d708cef90c936b936305947e58
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 421c38ff2e0de3a8d5cd913232aa3448dbfbc487
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit ec447dba04409c2b60d61b9bacab54c101bd9f3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit be6535e5f7a39529bd081ed38a1bf76fa645488f
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99252cf0cd5a8a01228c715a505cb1eaf6b853e5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit f6f31434b8c0e21f98fef460e0c8492fd4c240d5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 2f3960904e1a7b830c686fa793b122de49f3d674
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 2dc4c642e78bb4fa99ca41f3ae3c92335248ffd4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit 70ea0e7c3450680e1062088243d2cf139eadc02a
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit a81fd009f081eca3685e42cffac7f35e75428fea
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit e667d4e6e43b407cedce6bbf543ea1d815e8d520
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 2d0af75d37c9ea8ab44c889ef4e489b3b533eb30
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 5e68a86968d63f97f0febb8378b2a508e909ec90
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 8bd1547c3bb16cdce37412624161fab5b9d5ead6
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit a5e083603f1435a4a0e2e9fa7449c9133aa73225
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit c5f7547e8cf0d744fb1392b3651078d3985cecb1
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit 5c5b380fda9f541ee182e614966fc39a72ac6a18
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit bb0e0cf7f35cf3b89aac4f395185d55f3aa62979
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit 5ee99dfc49eaa8e81f5beb66eb1c160ac2d217fb
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit a083b1280ec80a525766c0a9487865b76de64c81
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit b7b5cee88baadfb10822b6bb13b6e7d3b0acaff8
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit 7456fd68a41b12592f3ac3f47308f7037ca22b86
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 20154718b5a41c1522a313ada06ef5c35ce2023d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit a6794c1862c663b387637597dba5f258a3e0e1e2
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit bd5c6bf23c1478dcab31cc1c2edcd0fa546eb6ea
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 68ee64283a7aab95c2f70eaf734e24b9d909dfa7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit dd29394bbe17ab6458817cce65b94f106252092f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit ceb99e89a081d2230479e9bb7b63c23d14bf0b98
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit 6112277f9b2d24a7c9effeb5966dadef279a261c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 81f403025c3ddb479ccf363fb091ac0fcf8e667b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eeda8b451acb2a0ae96656876f6a7682d43aca1d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit c7e8ba78576af230278a5662103acf421dc59bfd
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit 071e5c336a157ca39b75081b8cb4436a72af965e
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit be08d4c4f01e2c297365664bd3e0f7dc2b051fde
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit e99104a0040f58477809c9e2b9506fe2bcd94331
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944, #23948)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit edc4089121bcd96645b7be6bbd3dafa88c510ede
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 3bce266ef7865a62b5e79c7c5c67a068bb5e4c20
Author: ellensp <[email protected]>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (#23943)

    Followup to 89a9c3a391

commit c89d0114acba957d63e894bc1a479ec10cb18a81
Author: Robby Candra <[email protected]>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (#23135)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e693854d0c86fa0998a5d497607d42d6798f6ab
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 9324132a401cf0ab3781c9992d607bd4f88ba086
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 5632ad65f59710ca64e4abca99afa64cb99d559e
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit eccbfbcede60922b95971e90bf3a1d7983a5fe39
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 5ef4fb378e345e20d1fa3bdbc5312598dc571276
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to #23925

commit 21f0945d2cfada672756709bc420feb11768e687
Author: Oleg Belov <[email protected]>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (#23936)

commit b2a318af9a0c8e91b1f66a5576226b50b1b49f1b
Author: Serhiy-K <[email protected]>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (#23935)

commit 1c89c0470f2778f8051ff8514831138e64a2d9ed
Author: ellensp <[email protected]>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (#23931)

commit 2ee4a667e1999839e61fa4c7d4e31a88d6e301d6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:47:22 2022 -0600

    💡 Misc. cleanup, comments

commit f8e177a43efa3e7a173e2799562d354ab95544ab
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 9ac1c73041cbf4015b48d9d7a70a59e840a1d442
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit 4a8b99d505584d1fa5eb71d588da1bb60c3a2878
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit b094a3fc0d647f7daff7c4d97db32f9d41e4c11d
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit 2d99a608fd993fd5cb75223b72deadfc969a13c1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit fba8805c0cd87845c80d9cd7738b94332a35e27b
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 039a22649f4e0201d7580b63c1a414450353438a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit ced0ad8e094baecf6e3ee8eaa36c61baaa5743fc
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 10a0c9a9b3d4070326954c5c2354cfd8ba490f0c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit abfb0411809568970221281a3614e30970f0dfc1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 72f207f4895d5db34f697cb203876405b98d89c8
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit 7186037f20a2a2c57624e31c1e99adc37759c5f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit b0a400da72f6752619a82246fac55a07a4e67f3c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit cc4c2c2f98a1742d6b462481f74dacf5b5b93961
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit 5dae8a67344cfeda3de6d40fcd14498542004fe9
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 05dea4e30a1768913ec7d1f38c65b9423200a558
Author: Fredrik Andersson <[email protected]>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (#23925)

commit 7e88ee8c5cc87395e73c45bcd743f3ab0302773b
Author: Mark <[email protected]>
Date:   Fri Mar 18 12:49:47 2022 +0800

    📌 PandaPi V2.9 – Standalone mode (#23908)

commit cc8e485e1c55fb2fcdba7dc8f6b89041ed18e9ce
Author: John Robertson <[email protected]>
Date:   Fri Mar 18 03:21:53 2022 +0000

    ✨ ESP32 - Hardware PWM for fan, cutter, servos (#23802)

commit c7a2ecc31aa4def9e60668f5cfc648d87776be9b
Author: ellensp <[email protected]>
Date:   Fri Mar 18 16:17:41 2022 +1300

    🩹 Fix xatc EEPROM debug (#23911)

commit 260b40d1453a9310581c45d3e1327a3103b36a22
Author: tombrazier <[email protected]>
Date:   Fri Mar 18 03:15:26 2022 +0000

    ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (#23867)

commit c87eded8f6183c33bd9b9a74dd577fe6c77c32df
Author: Ludy <[email protected]>
Date:   Fri Mar 18 02:55:33 2022 +0100

    🩹 Fix redundant var declaration (#23913)

commit 2f2a999368f22f2c6b3105ab481987c2025bc50e
Author: John Robertson <[email protected]>
Date:   Thu Mar 17 19:35:33 2022 +0000

    🐛 MKS TinyBee - 2.5V ADC Vref (#23903)

commit 2558b323e85006c3c9f6a03bcaa82f61c95da0bb
Author: Jelmer van der Stel <[email protected]>
Date:   Sun Mar 13 23:20:30 2022 +0100

    🩹 Fix DWIN E3V2 display issues by allowing re-init (#23879)

commit 1db685593922214e49496d805dc9ea099e227f50
Author: Mrnt <[email protected]>
Date:   Sun Mar 13 15:17:35 2022 -0700

    🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (#23885)

commit 62f298aca39ff17bc7a51f49b9ff6b5b17a76c30
Author: Julien Staub <[email protected]>
Date:   Sun Mar 13 23:09:32 2022 +0100

    🩹 Fix ExtUI build with Host Keepalive disabled (#23898)

commit 8d20c5aadfff34a024665ea349c0b66834e4d305
Author: InsanityAutomation <[email protected]>
Date:   Sun Mar 13 18:00:35 2022 -0400

    📝 Fix X2_MAX_POS comment (#23873)

commit 61b470249c1cfa361f25060940cc8b7f8a8f64e9
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:59:43 2022 -0500

    📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

commit 4ffa88f814f3ddcb7273b73c9bb68773bcf1fd51
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:46:08 2022 -0500

    🚸 Test LIN_ADVANCE in a pins file

commit 8257040fafe758ac1913e9bf633fa0c9930dd9cb
Author: Mathew Winters <[email protected]>
Date:   Sun Mar 13 14:13:41 2022 +1300

    ⚡️ G12 - Only require used axes to be homed (#23422)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d9ab7e71eed56f242d4fae32836f305bb1ff680
Author: Keith Bennett <[email protected]>
Date:   Sat Mar 12 16:23:29 2022 -0800

    🔨 Drop extraneous build flag (#23862)

commit 1a76d4d467ebb3d8ed1df39767efa99beb08e854
Author: N…
TheRaf974 added a commit to CuriousMaker/Marlin that referenced this pull request Nov 26, 2022
commit aaa4e8ecdbd20e3a6e200f44f90c4d8a9ee5deb8
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 9 20:54:17 2022 -0600

    🐛 Fix recalculate_max_e_jerk

commit 01f96a103be4369f27a009f9b524c3cc5cd821d2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:46 2022 -0500

    🔖 Marlin 2.0.9.5

commit 3638ce2b31ea3749685e034c4bf6a0eba92ee0f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:03 2022 -0500

    🚑️ Fix XYZEval = N not setting E

commit 889d1224907240aee42331ec3b011260c3f56ffe
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:14:01 2022 -0500

    🧑‍💻 Further script updates

commit dc3322b639223e4592ef724ca7d1aadd8451feee
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:08:42 2022 -0500

    🧑‍💻 Axis macros parity with 2.1.x

commit 25521cb9b2069db9bf2ab0b9576e6201c34d97e4
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat May 28 17:34:36 2022 -0500

    🚸 Fix, update ProUI (#24251, #24473, #24500)

commit 593b734d18847298acc6c1489ea97fb8528f53ec
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:53:36 2022 -0500

    ♻️ Small sound / buzz refactor (#24520)

commit 2952f0be5de7a82f706f74550aba17e7be3d378f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 29 04:12:38 2022 -0700

    Updates from #24560

commit 752f3d440dd72d869140268dc79f3efb49043c1e
Author: tombrazier <[email protected]>
Date:   Sat Jul 16 00:15:51 2022 +0100

    ⚡️ Optimize Planner calculations (#24484, #24509)

commit 5c46ae4f003a796292fa585f4d8f959dc2e503a7
Author: tombrazier <[email protected]>
Date:   Fri Jul 8 20:41:39 2022 +0100

    ⚡️ Optimize G2-G3 Arcs (#24366)

commit af6995845cfe50edc81881b5de523cfc28efc099
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:30:26 2022 -0500

    🩹 Revert extra axis changes

commit 8e6aa1b113bafea1af6c0ffa9d07980cb6f90e41
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:00:07 2022 -0500

    🧑‍💻 Fix and improve build_all_examples

commit 929ce5e859858bf3db475fb4aaa49899b22f1d68
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 10 22:00:10 2022 -0500

    🧑‍💻 Add Sim debug with lldb

commit 3a5e87cdb76ced2e84eccecf220289dc70e9a741
Author: ellensp <[email protected]>
Date:   Wed Jul 20 10:32:08 2022 +1200

    📺 SKR_MINI_SCREEN_ADAPTER for BTT SKR Mini E3 V3 (#24521)

commit 35e1384decb6b521c729c5eb77281e01b8cdc29f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 15 15:43:43 2022 -0700

    📝 Update board MCU comments (#24486)

commit 406c2342fd5556a0c54a090f38b674cd82f9fa2a
Author: InsanityAutomation <[email protected]>
Date:   Mon Jul 18 21:12:27 2022 -0400

    🚸 Machine-relative Z_STEPPER_ALIGN_XY (#24261)

    Co-authored-by: Scott Lahteine <[email protected]>

commit fa50d2c757f9b1fecc133d511c4fc1297842e184
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 04:00:39 2022 -0500

    🧑‍💻 Fix MAP macro use

    Followup to #24191

commit 6523b92014f2fd6de97c6b44dc1cfd22526b03a2
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit 2461138661bdeed44c8291229237107680803843
Author: lujios <[email protected]>
Date:   Tue Jun 7 02:22:17 2022 +0200

    🩹 Fix G33 Delta Sensorless Probing compile (#24291)

commit 2bb9a5ee5efbf054a7f63083532c4762437a19f1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 03:42:04 2022 -0500

    🩹 Apply linearval in M600

commit 0a4aa0978dfa6c198eac85cdcc09f6de59cbba55
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 8 13:30:03 2022 -0700

    🔧 Assert Probe Temp Comp requirements (#24468)

commit 39863d54b06e9b9394815467bde3b44500eebab3
Author: ellensp <[email protected]>
Date:   Sat Apr 23 21:16:15 2022 +1200

    🐛 Fix BACKLASH_COMPENSATION compile (#24072)

    Followup to #23826

commit cea45d49bc3c510e4fa38dead1d65c335f0737ae
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 9 19:17:04 2022 -0500

    🎨 Misc. 6-axis cleanup

commit 34f9c28fd16e5cc77636bcaad5ba40c56a521375
Author: Pauli Jokela <[email protected]>
Date:   Thu Jul 7 18:59:23 2022 +0300

    🩹 Fix safe homing sanity-check (#24462)

commit bf084254dab5dab9a38ea275db4846e956589758
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:15:57 2022 -0500

    🎨 Fix comments, formatting

commit 6f51f19257a1f3a3594270169d8a8d74e312f2ba
Author: Christophe Huriaux <[email protected]>
Date:   Wed Jul 6 22:43:38 2022 +0200

    🩹 Fix ST7565 LCD contrast init (#24457)

commit 56974af3e5c8958569b409ddcffabf35ecb53692
Author: Mike La Spina <[email protected]>
Date:   Fri Jul 8 15:02:12 2022 -0500

    🐛 Fix laser/fan sync (#24460)

    Followup to #22690, 307dfb15

commit f9154eca8cdfbff885934f90f49209ea112593d8
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 21:46:38 2022 -0500

    🩹 Fix TFT image packing

commit a03516a9f40f8723c21fc4d1f26b6e06c635ed2c
Author: DerAndere <[email protected]>
Date:   Mon Apr 4 04:43:42 2022 +0200

    🚸 Better M350, M114 with more axes (#23986)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f18b0f6f4b42baa2f3aa7761ae3263dbea04ee4b
Author: toomuchwonder <[email protected]>
Date:   Thu Jul 14 04:17:53 2022 +0100

    🩹 Fix MKS UI extruder speed (#24476)

commit d617002a6eec353cc1dcc69aab268cb8d71c52e3
Author: Miguel Risco-Castillo <[email protected]>
Date:   Thu Jul 14 00:00:33 2022 -0500

    🚸 Fix and update ProUI (#24477)

commit 01f16daf42a49c6c37f63e389c9c1df2d6d130f8
Author: InsanityAutomation <[email protected]>
Date:   Wed Jul 20 04:08:19 2022 -0400

    🐛 Fix Archim2 USB Hang (#24314)

commit ff1ecb00cc52b33136a1a42d0d339af7db92fcae
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 28 20:52:33 2022 -0500

    🎨 Misc. 'else' cleanup

commit 750a8dbe7fedcbbe1a651cb0bc24fe0b5753eaf1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 12:38:00 2022 -0500

    🩹 Fix MAX31865 approximations

    Followup to #24407

commit ba8f109f8aa7de5b869244ef95441f5870729856
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:52:47 2022 -0500

    🩹 Fix manual move titles (#24518)

commit 77fc65ddc2753c8170597157c77cc58132f4c092
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:52:27 2022 -0500

    🏗️ Extend AXIS_CHAR to include E

    Co-Authored-By: DerAndere <[email protected]>

commit af24e1b77ee9fdff8a9551bdc7cd5ef47c302afd
Author: kisslorand <[email protected]>
Date:   Tue May 31 20:05:57 2022 +0300

    Fix axis string 'N' (#24259)

    Followup to 167672d

commit 36d508c5a0c959191bf8f6ec7508dfdc259a7661
Author: Ludy <[email protected]>
Date:   Thu Jul 28 04:44:21 2022 +0200

    🌐 Update German language (#24555)

commit 9f5aab1a6164c7837b8352cd63ac7b2c8e1f8988
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 27 04:24:50 2022 -0500

    🧑‍💻  Update planner/stepper includes

commit 62d29ade426328a4924ed2838fcea8e113e1c1f9
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 21:15:44 2022 -0500

    🩹 Fix lcd_preheat compile

commit c801cc4830eca838f19a61cc55a0bf31cfcfd43c
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 14:54:54 2022 -0500

    🔨 Update build/CI scripts

commit bc91b1cdcdc09d368653d5a9430d349e6775f81e
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 24 13:51:43 2022 -0500

    🎨 PIO scripts cleanup

commit c847ef02a1c6b9c88f523b8fc2961df0a28c0904
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 12:02:37 2022 -0700

    📺 Fix TFT Classic UI non-Touchscreen 1024x600 (#24541)

commit cdda90f56c3dc4a9a40eb2528cc92a7cd408436f
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 11:47:07 2022 -0700

    📝 Update MPCTEMP G-Code M306 T (#24535)

    M306 simply reports current values. M306 T starts autotune process.

commit ad4bc378b7b574a8c094872b42b541de3596fb7b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:43:03 2022 -0500

    📝 Update Driver Type comments

commit 99710b94d29763c25ab764513ce1efdbb5baf13b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 78fc5acca99f1717033d09f0358d9564857d1f09
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:11:33 2022 -0500

    🔨 Add mftest --default flag

commit e616542c891e3f2d107da528fc46173c84652a47
Author: Arthur Masson <[email protected]>
Date:   Sat Jul 16 23:58:18 2022 +0200

    ✨ Polargraph M665 settings (#24401)

commit a50bb96d2dd22263c3e55566c789bd717cb7fcdf
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 653f0ab9dd95e07afb2e5f3a5536328f1f3daff1
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 02:56:55 2022 -0500

    🔨 Fix and update Makefile

    Followup to 89fe5f6d

commit c96ed8998b971a5a00a6aa4aca6d9f9b812fdab1
Author: Jason Smith <[email protected]>
Date:   Thu Jul 7 21:43:56 2022 -0700

    🩹 Fix LCD_BACKLIGHT_TIMEOUT compile (#24463)

commit b025c18d5b9d86c09b766a15f2ccaf45f340626f
Author: Mike La Spina <[email protected]>
Date:   Wed Jul 6 07:46:39 2022 -0500

    ⚡️ Fix and improve Inline Laser Power (#22690)

commit b49da1d4ca1056cd28a396e878bf37c45af43441
Author: tombrazier <[email protected]>
Date:   Tue May 31 18:01:59 2022 +0100

    💥 More M306 M => M306 H (#24258)

    Followup to #24253

commit 90074e626012ae74d51f4e47216b99cbe2c783d4
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 14:32:16 2022 -0700

    🎨 Fix/adjust warnings (#24225, #24404)

commit e570c4cc2ed1b284834fcb809973c80a1002b784
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 17:45:07 2022 -0500

    🧑‍💻 Forward-compatible axis strings

commit 543bbf02fc552cd121b85f3444bcbf87fbb1faee
Author: DerAndere <[email protected]>
Date:   Tue Apr 19 05:15:15 2022 +0200

    💥 Update Motor Current G-codes for extra axes (#23975)

commit 5ccdc9ced7639f646c01f757ac6afa1f42007021
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:13:11 2022 -0500

    🏗️ Axis name arrays

    Co-Authored-By: DerAndere <[email protected]>

commit ddb0168e29878d626d6b36a89b6b4850ad5d4ebe
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 22:37:20 2022 -0500

    ♻️ More updates for multi-axis

commit 0caf234aa5ae143bec8e9fc0ef52f632317e8fd1
Author: GHGiampy <[email protected]>
Date:   Fri Jul 15 10:18:57 2022 +0200

    🔨 Fix firmware upload (#24499)

commit dddbc4d730a1120b5f37b40f7393bc42e3651297
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:56:13 2022 -0500

    🔨 PlatformIO "--target upload" == "--target exec"

commit 08e6e8b9be0614fbacab998a20bf9bad1b1af94f
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 3 10:32:47 2022 -0500

    ♻️ Encapsulate PID in class (#24389)

commit 12ae80bcecb8329fb0548342228d8edffeeba115
Author: Victor Oliveira <[email protected]>
Date:   Sat Jul 2 21:31:27 2022 -0300

    🔨 Disable stack protector on macOS simulator (#24443)

commit 9e530cd27b790f3dce30963c6d98af043ba5abf5
Author: Eduard Sukharev <[email protected]>
Date:   Wed Jul 6 16:30:47 2022 +0300

    🐛 Fix MKS TinyBee compile (#24454)

commit 0ec1cb58c77d37886d0b6a0c683122ea614d7e20
Author: EvilGremlin <[email protected]>
Date:   Mon Jul 4 04:49:23 2022 +0300

    🔨 Fix OpenBLT encode; no-bootloader envs (#24446)

commit b548e21b656f751305acf9d613144748e847b1e0
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:30:05 2022 -0500

    ♻️  reset_acceleration_rates => refresh_…

commit e170460855cf002c44a4a2d5cc8d538794fea7fa
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:24:59 2022 -0500

    ♻️ Planner flags refactor

commit b7b2286e49c3ddf5060e26b9c03bdb6c2207eeba
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 047d0264c5ddc5dde152eaebc6507b242d05ca02
Author: elimisback <[email protected]>
Date:   Sat May 28 16:22:59 2022 -0400

    🔨 BTT STM32G0B1RE xfer build (#24245)

commit c56fb1c1820248f256b4255de175eab854591d49
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 04:29:39 2022 -0500

    🎨 Minimize block->steps.set

commit d5a79c27fe764edb295c3ed9ee3df1765c9ded27
Author: DerAndere <[email protected]>
Date:   Fri Apr 1 07:10:38 2022 +0200

    ♻️ More updates for multi-axis

    Based on #23112

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 1e3fe65b9dd0555b77cac1832ad820253e200618
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 17:49:54 2022 -0600

    🚨 Fix some compiler warnings

commit af4160af6f79acc4725916f311c16dfc3d1013c7
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 13:03:33 2022 -0500

    🐛 Fix types.h macros and fields

    Fixes #24419

commit 53b73bbd7fc17172c5d5c4820ee11092e9c92926
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 17 22:25:51 2022 -0500

    🔧 Config parity with 2.1.x

commit 3b37e859491000034f73ada784931da9aaa63e1a
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:26:36 2022 -0500

    🚸 Arrange EXP pins in common order (#24525)

commit a1881f70a89e96ab9d95a3c6f169d97416f729db
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 11 11:33:42 2022 -0700

    ✨ MKS Monster8 V2 (#24483)

commit 6ad7f7ce985831c2947703cc2d5a7daf5cd0f201
Author: Christophe Huriaux <[email protected]>
Date:   Sat Jul 16 23:35:40 2022 +0200

    ✨ eMotion-Tech eMotronic (Micro-Delta rework) (#24488)

commit 9fe4d2cc6cee4db08f16deffa7356c1de0477f8e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jul 14 03:30:00 2022 -0300

    ✨ Creality3D v4.2.5 / CR200B (#24491)

commit 5bd0541985c1571ba753160957a418ce47df9abf
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 22:31:06 2022 -0700

    ✨ BigTreeTech SKR SE BX V3.0 (#24449)

    SKR SE BX V3.0 removes the Reverse Driver Protection feature.

commit 35d5393a3e2f41cdc0b5929af6f349e41d705c13
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 20:16:16 2022 -0500

    📝 Index Mobo Rev03 => Opulo Lumen Rev3

commit 1ffc4ba861cce00457c4ce79503eacac58297c29
Author: DerAndere <[email protected]>
Date:   Mon Apr 18 06:03:39 2022 +0200

    🩹 Fix some parameters w/out values (#24051)

commit 2bf6573098687b203ee1f3adf3f66b7a3e05163b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 9 11:08:53 2022 -0500

    🐛 Fix SDIO for STM32 (#24470)

    Followup to #24271

commit 5e0a39265ac82952a0ec73144de6f9d2497b6b48
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 495002e158e289ee7c90663aaa0aeb61942cb28d
Author: tombrazier <[email protected]>
Date:   Sat Jul 23 05:32:28 2022 +0100

    🐛 Fix 2d mesh print (#24536)

commit adeca472922700cc63a0d0e1324c5b0cf91be68c
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 686d1fbb510b5060d4a23baae67a8fda0374b65c
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 13 21:22:53 2022 -0500

    🎨 ANY => EITHER

commit 8f84ce72e118478e582d45e97b7f7f0727e59522
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 8 22:45:17 2022 -0500

    Fix SDIO for STM32

    Followup to #24271

commit 5bf02e39a9159b0397a93f10571841f4d1bbc807
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 09:08:43 2022 -0700

    🚸 MPCTEMP: Home before cooling (#24434)

commit a5b076dff727fba479fe00e97e9d9332953addb3
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 08:08:40 2022 -0700

    🩹 Fix MKS TinyBee ADC Vref (#24432)

commit b79231cc59d6746f6714af102763d59488ea753a
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 21:17:32 2022 -0500

    🩹 Remove poison wchar_t macro

commit 86e6f9e38ea7a4653f11094221bcf4be20d0fef3
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 20:10:51 2022 -0500

    🩹 Remove obsolete split_move

commit b3018da60c6cf12f22c9e9b7954bcddc2cb4b686
Author: Moonglow <[email protected]>
Date:   Fri Jul 1 05:51:55 2022 +0300

    🐛 Fix M149 (#24430)

commit 0d04aa960f49196eca9f3da17846460b322d10c6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 17:14:23 2022 -0500

    🩹 Fix memset block warning

commit 0d34c2e287b582598a75cad0bb6ddd8bbd1fbba6
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 29 06:24:22 2022 -0700

    🐛 Fix Axis Homing (#24425)

    Followup to 4520a51

commit 1690f49656788ddb580c0f8311095800ad65881b
Author: John Lagonikas <[email protected]>
Date:   Wed Jun 29 01:53:05 2022 +0300

    🐛 Fix MAX31865 PT1000 normalization (#24407)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dbdb39f60ff1a97050f09d76f8f4de101d03d30a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:32:00 2022 -0500

    📝  Note about UBL bad splits

commit 843c04baa6df0db350ff759abcfa3f3fe431e5a2
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 10:01:22 2022 -0500

    🎨  Misc. shorthand operators

commit a7c58c1fd6463407331596623f8ff07c8a07481a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 05:47:18 2022 -0500

    🐛 Fix Manual Move axis selection (#24404)

commit 3af5c32ea23e8bca1e7c233006987286e980f982
Author: Shlee <[email protected]>
Date:   Sun Jun 26 06:56:57 2022 +0000

    📝 Add STM32F4 example, Ruby (#24399)

commit 4039075a1d7b96482a59987fb78f3e500ede0efb
Author: Giuliano Zaro <[email protected]>
Date:   Sun Jun 26 08:52:19 2022 +0200

    🌐 Update Italian language (#24398)

commit ed796c83541a9cbbb615fe7be6007735ad279f07
Author: Roman Moravčík <[email protected]>
Date:   Sun Jun 26 08:51:16 2022 +0200

    🌐 Update Slovak language (#24397)

commit f3c64fd397b28d132e72852956a36e64d9d53f43
Author: sgparry <[email protected]>
Date:   Sun Jun 26 07:49:57 2022 +0100

    🩹 Fix LCD contrast with K8800 board

commit b220342b26b3ed327ce6723e4912163bd76661f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 24 22:07:06 2022 -0500

    🌐 Drop unused delta strings

commit 4dad5871888fd99fea0ec918c04f1c134f49ab8a
Author: InsanityAutomation <[email protected]>
Date:   Tue Jun 21 22:09:24 2022 -0400

    🐛 Resolve DUE Servo pulse issue (#24305)

    Co-authored-by: sjasonsmith <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 1efe48ef656b38e6f60bbd193e66ae9c54f85a9d
Author: tombrazier <[email protected]>
Date:   Sat Jun 18 05:17:12 2022 +0100

    🐛 Fix G2/G3 Arcs stutter / JD speed (#24362)

commit ae8365a4e56d91374e1ea20e6edb1c0bf041ad46
Author: Bob Kuhn <[email protected]>
Date:   Thu Jun 23 23:58:26 2022 -0500

    🐛 Fix Lerdge build / encrypt (#24391)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dd68461bb1a2bc714f6b48008d2cf87c1e9e1d4e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jun 23 06:18:36 2022 -0300

    ✨ Classic UI BIQU BX (#24387)

commit 010fbcccf7fc2aa7c421fa5df1a9d1a32f477fcc
Author: ellensp <[email protected]>
Date:   Wed Jun 22 22:08:24 2022 +1200

    🩹 Fix DGUS (MKS) compile (#24378)

commit 185fe5696c9843096a0619797566d7e27d573d75
Author: Victor Oliveira <[email protected]>
Date:   Wed Jun 22 05:33:03 2022 -0300

    🚑️ Fix BIQU BX touch freeze (#24383)

commit 7edd37bc5aeeff9c55442bf6d142c3cb9357995c
Author: ellensp <[email protected]>
Date:   Wed Jun 22 16:13:18 2022 +1200

    🐛 Fix M423 invocation (#24360)

    Followup to #23745

commit 000042702108a0c0e8428350961398c4d39e3273
Author: tombrazier <[email protected]>
Date:   Wed Jun 22 03:45:22 2022 +0100

    🩹 LCD strings followup, fix warning (#24328)

commit 0d1d125bc69bf1634faecea6d0a2862677f584d3
Author: ellensp <[email protected]>
Date:   Wed Jun 22 10:33:25 2022 +1200

    🚑️ Fix SD mount bug (#24319)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 22e82a13d993e5b0ac1e7f56a77eabbf6da79dfe
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:12 2022 -0500

    🎨 Simplify move menus with substitution

commit 70d72354e2469eb66378e2da3a52ecd6db3f3447
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:23 2022 -0500

    🎨 Use MAP for home axis items

commit 821f4983d01430b9fc9ba5ccb44ea7ace4bf31e0
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:35 2022 -0500

    🧑‍💻 Fix STATIC_ITEM_N arg order

commit 15ca479708d39977c76acb73aaf1deca78810206
Author: Scott Lahteine <[email protected]>
Date:   Tue Jun 21 23:28:19 2022 -0500

    🎨 Fix comments, formatting

commit 2b8d115ebc08ee3ac03d680eff40d2b8079c2b44
Author: John Robertson <[email protected]>
Date:   Sat Jun 4 07:26:08 2022 +0100

    ⚡️ PWM for ESP32 I2S expander (#24193)

commit ae78a8844ae47d1b22f04e4545a29c19a0f8b214
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:08:29 2022 -0500

    🧑‍💻 MAP macro for axis lists, etc. (#24191)

commit f26438ef2870d88b057fba3c892f1ab4fd82b952
Author: Keith Bennett <[email protected]>
Date:   Mon Jun 13 19:04:49 2022 -0700

    👷 Use Biqu BX for CI test (#24331)

commit ce6c8adcb1002049f27513fdb0c74ce9831386cc
Author: ellensp <[email protected]>
Date:   Wed Jun 15 20:02:32 2022 +1200

    👷 CI test without src filter (emulate Arduino) (#24335)

commit d57cf9bd6b6d70dda6fe2bba9b83849a9688408a
Author: luzpaz <[email protected]>
Date:   Sat Jun 18 00:19:01 2022 -0400

    🌐 Fix LCD string, typos (#24324)

commit 5408259f51394e2c2a48879c0119251f324f0e12
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 13 20:43:23 2022 -0500

    🧑‍💻 Apply F() to some LCD / TFT strings

    Followup to #24228

commit f31178f868882905d210504e763052ca639782f9
Author: ellensp <[email protected]>
Date:   Tue Jun 14 13:38:19 2022 +1200

    🩹 Fix missing ProUI cpp wrapper (#24313)

commit f976e56a1993adede0ed854326e0cab214d90295
Author: ellensp <[email protected]>
Date:   Sat Jun 11 17:03:20 2022 +1200

    🐛 Fix JGAurora A5S A1 build (#24326)

commit 571007e5c9a1e407ef7f72b555e1d207be2f256f
Author: Steven Haigh <[email protected]>
Date:   Sat Jun 11 12:08:55 2022 +1000

    🩹 Fix ProUI compile (#24310)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 00527f38d59d8b466d515da801844197073c7bcc
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:47 2022 -0500

    🧑‍💻 Misc. servo code cleanup

commit 1c7696838b04051115d246fff173846cf74ea4d9
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:08 2022 -0500

    🧑‍💻 Remove servo macros

commit ad786a7930f1a0516427f7e0d827402387549ead
Author: tombrazier <[email protected]>
Date:   Tue Jun 7 01:23:55 2022 +0100

    🩹 Fix Mesh Leveling + Debug compile (#24297)

commit ce9c81dfa12ebde0a0a55663523c782afecbd85c
Author: ellensp <[email protected]>
Date:   Tue Jun 7 18:59:21 2022 +1200

    🩹 Media Change followup (#24302)

    Followup to #24015

commit 92910721d0c4cc79ad0f8a64fb11b2c15bf3619d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 19:06:03 2022 -0500

    👔 Fix and comment use_example_configs

commit 236251a2ce4f055ab96af0008c882ffe77f5dac8
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Jun 6 00:01:06 2022 -0500

    🚸 ProUI G-code preview, PID plot (#24282)

commit 369542db3bb34c28196a77838a2f018180a7da74
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:23:43 2022 -0500

    🔖 Marlin 2.0.9.4

commit 40d96c3460117eeab1742d74c2d78b57b4a9a1b6
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 5 20:26:40 2022 -0500

    👔 Remove actions from misc. branch

commit d7a71beaf4f08e60c3d13049f1046bbb663c643d
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 18:16:43 2022 -0500

    🔧 LEVEL_BED_CORNERS => LCD_BED_TRAMMING

commit f3b593ae73b5d21b5c270a5f5ede0fe982822b07
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 12:43:44 2022 -0500

    🎨 Fix spelling, whitespace

commit 1d8d8dccf45d2090e075b148d4f08e299184392c
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    💥 Num Axes / Multi-Stepper based on Driver Types (#24106, #24120)

commit 1e127a93c4c1446cf11aacecc9597a7355262ac8
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:15:23 2022 -0500

    🧑‍💻 Extend LCD string substitution (#24278)

commit fcef8d946cbd45e27ba9888f1e18327b68d52b00
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 0253500ccd5a7192f3e545cb5552c4ab7b309c5d
Author: Tanguy Pruvot <[email protected]>
Date:   Wed May 25 08:07:11 2022 +0200

    Use default null args in select_screen

commit 0d783a76907ace17f0d61ebe8882ebee9bc6ce3b
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:22:09 2022 +1200

    🐛 Init Stepper SPI before PSU Control (#24269)

commit e784e0413204680f3c8f3a8cdf519fb5bee7a164
Author: BIGTREETECH <[email protected]>
Date:   Thu Jun 2 17:02:06 2022 +0800

    ✨ BigTreeTech SKR3 - STM32H743 (#24271, #24272, #24275)

    Co-Authored-By: Alan.Ma <[email protected]>

commit 11d68e31274fccd20c8bb72eec0b4ad547962823
Author: bryan065 <[email protected]>
Date:   Thu Jun 2 04:51:39 2022 -0400

    🚸 Custom Menu Items for JyersUI (#24270)

commit 8b8b2a7ed35908b6a49d5b3badb230d3283792bb
Author: ledzepman71 <[email protected]>
Date:   Thu Jun 2 02:49:48 2022 -0600

    📌 Tenlog PSU pin (#24266)

commit fc1a620b878b45675b9a7972be6c1fb2882b8092
Author: tombrazier <[email protected]>
Date:   Sat May 28 23:40:08 2022 +0100

    🚩 MPC update (#24253)

commit 9799907dc9a53810e87fd5b54e2194d30e70eff8
Author: Keith Bennett <[email protected]>
Date:   Tue May 31 14:28:01 2022 -0700

    👔 Configs required to submit a Bug Report (#24256)

commit 6fc4dbbbc4b3b1e6820f4f18b81602451bb1786c
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 17:05:09 2022 -0500

    🚸 Change M201 G to S

commit 74596ad4d7f9117e06829b5657d7402f27a445ce
Author: Robby Candra <[email protected]>
Date:   Mon May 23 09:13:17 2022 +0700

    🩹 Adjust manage_media for slow/late media init (USB FD) (#24015)

commit 28f8646aa64b8baf6f93197d04b0802580272e40
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 19:56:46 2022 -0500

    ♻️ Apply F() to more LCD code (#24228)

commit 9a74bcd4cf13efa2d7cfb365182d7e097eaa1f1d
Author: John Robertson <[email protected]>
Date:   Tue May 31 23:09:44 2022 +0100

    ✨ Laser Safety Timeout (#24189)

commit 07cd248b91a59db8e2bc7ad10bbf160852af34fb
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 20:45:37 2022 -0500

    ♻️ Move watchdog to MarlinHAL

commit 209c792ef7e97dc48bf3517c9f8f56e6be80e97f
Author: Scott Lahteine <[email protected]>
Date:   Fri May 20 11:27:09 2022 -0500

    🔧 Remove LCD_SERIAL_PORT defaults, warn on auto-assign (#24170)

commit dbd00d992705a07b3da769549495d6505cb96b43
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (#23992)

    Co-authored-by: borland1 <[email protected]>

commit 4ae54a6229d1704bfc54a85233af40b69e924246
Author: Ludy <[email protected]>
Date:   Mon Apr 18 11:43:34 2022 +0200

    🐛 Update German language, Fix FTDI (#24047, #24048, #24227)

commit ce0af56d0aa4371620b142ba5b2ed3b455813a5d
Author: tombrazier <[email protected]>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (#23984, #24018, #24049, #24059)

commit 6c557a248016f2e89e259d2d5ee8e000521099bb
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (#23983)

commit a6ce9bf559d963c3cdcb6db7f57a572bc58016ea
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (#24014)

commit 21c838cb1b86c3ffd5958c68d82f6c0c25e78dbe
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (#23751)

commit 3443a9e18bf2c9797037f141d68ab409d6b3c00b
Author: Pauli Jokela <[email protected]>
Date:   Thu May 12 05:23:16 2022 +0300

    ✨ SOUND_ON_DEFAULT option (#24102)

commit b2b5b85045e689d311e472d803817e08b49ccaec
Author: Robert Brenckman <[email protected]>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (#21142)

commit 2086cc9f4e21dfc060c1ff034856ad4e6219f5f8
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:37:40 2022 -0500

    📝 Refer to 'PROGMEM' as 'flash'

commit 8eccfd4a6f90da93a4f13b8aa7fbd88a1f8cca46
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:35:38 2022 -0500

    🔧 Bed/Chamber PID Autotune menus

    Derived from MarlinFirmware/Marlin#23983

commit 9ab654adcb15ba23b42ed1f13ca34130e422dbc2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 22:06:32 2022 -0500

    🐛 Fix min/max temp evaluation

    Fixes #24257

commit 0ae982188c23ddab4e3a2d819c679166a7e19532
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 23:19:18 2022 -0500

    🐛 Fix M203 report

commit bed0788f723a0695726eab52e8da0b48298c619f
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit deb1ba73bbdd3aacaeec6c7d9540c41e93ddfdfe
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 15:11:43 2022 -0500

    🎨 Use pos.set method

commit 57f0ac88af9e8c5eb398c8367edf471900a5171f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 14:41:50 2022 -0500

    🎨  Misc. boards/pins cleanup

commit 915bce495cdc5168c982274f6deabc92e052c2c7
Author: Simon Pilepich <[email protected]>
Date:   Sat May 28 08:08:24 2022 +1000

    📝 Fix Mightyboard MOSFET comments (#24183)

commit 800a936caae83f4e5ca5dd2c2660518bd6fc43b2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ccf39b1c42fa787f645fbf0ac075cc47b72b18d3
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit d19179ce281cec58865fcbc99185abeb48a611b9
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 4a6ae1b64df5fa8824e20688399683bf11b840e2
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit 0daaef589c956d152c846760dfc157fdd1b7975b
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 4831cbebd80d6e2c6bcf504446cf6d0f2441c285
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit e0deb75764938995e32bc589d646ec397c4a3019
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0fe4f48956299cb298e6e48255ea72ba93dad79
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 4d65d7f142882bcd77072fc7dc5c01ca937a2e81
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit 1b879f0ee4e5539c237edf235b6ca38b5b2beb43
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit b6abc760cef73a1dfc0e186f40687d0a45c8a769
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 0ae061713c631d44cd12ad266ca9c7fdd856d72c
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 1d12e72bf697f7e3cb63995a20ba9e98fbce3eb9
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit c97cf10956ee33c80e557fb09e4cc75d30a0db82
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit b72f9277e9e89a7dcdc12c8f11273f7c76a064d4
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit 06c4a9acdb3f08a2052ea55d00fa350e9249bcb4
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit 8a301196e11d87d7e9db065d0d802910a664c5be
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 1e7219f4a643f8cbdbcd9685ebb5a76d02c89601
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 02c267f542223ed0d8b098da4bec6f09710d6bc8
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit fe77fc66c0004ba9a4459dd5a12c978dd0308bb1
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit 268a16b1ef1c5cd462e81aef08e4e9f7d2c65658
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 8351b1431f8bad178f2f8a3ec70b32a1d4d7ca2c
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 718806761f1e9d903d61408e2039357bfe46fff8
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit 78c7fedcea34f0c630f8e9fd46bc5d3244de04c5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit c4b8339b842958faae2567c339bcf9b44434a2ce
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 94ed67e36ef84cb4ecd8f3f1470041d4d72f7088
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit 03b819bdb235c6eb2cd0a02b832bb8f108cc5962
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 2204f05dcaabf0e639f1e1722ffd293d4b415fe3
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a13cceaad16dd2caedbf3b05ae0854b1200cb51e
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 5c25ed60c80d7b06cb91e91f98b1aca6bc648d79
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1c516bdd5e71fc3da05fb52da692c9c5ccb0c0d7
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit 425684e2ffecf85dccab1eb4242772bc97992eb8
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 63aecad7eef034d8cb2b3e81f8a22db8a148b90b
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit dcd769b4a18bd40f9664262d081d553994d8eb78
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit f9b7f00d1e1c1004e0c2a9c35e23c1c67dc47172
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit a6ff63d5060c0ef68c2ae9f6ccf3bcada2ec6b6e
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit 7d37ae2b2b1ea6613dbc8be0ec5fa30dbd6a87de
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7d40ec654a3eca783a19e93e7bb6f394f2e6d29
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit 7ed339cfa0a2d8298e0293cf465daaf4ac74c0f9
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit cb4ad020af2f56dc060ecafdfd58b0639a8f0199
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 0805f9bf3f631d914bb6ff4817d65a9ab237fe6c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d235bc9e1c5eeb210275a4abcf89a757d0259cc0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit d5f472a6cf4456bf715ee3b3a85132f3fbe7e15f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit d67fa98cf601a8ef2642641a8aefbcdab1d5bcc2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit d3fe0caa7f83b8e971e8503b5344e20811d6c812
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit bd09f8acff3c40fe9294cfc6b6a9220ec5b766fc
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit a9aca5f5e8c5c1ce40e09ce5cf80a875ec009aa0
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 13d1eb7241b8621267520e57811f8069b2e466e9
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 238ab1dd061145a525edd27bb8203ae216380894
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7e4061d1221531340e9f82bc6f1560e5d6feab8
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit 31c87adba80d50a90ae3c85b08cd01c5545c78b4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 727e7e7fd71fb0404e0f5bf7f36dc10419d155c4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 975b90c0b7e6b836f67f3603c80f818dc095ffa5
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format (#24110)

commit 8f0180802ad327a0be47be9405a9a2764b5937db
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit aa4c9917552df8a383816a0af516b86e1237ff48
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 9ab1a57d729cfa207adfe3ee6d24d40de3bb159c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 044bf8ab7ef7045583c9da175b8ebddd2b750f84
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit 4bdec5e99330a35387c09adc27be94c5082b4405
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 7444933d5d4fc93c6278e091be5af7e4f61b1d9c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit f35404f853ba185814bd17a4742ef34688ceba98
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit 7fa2dceddafcfeea4b2599fa2b9fe3542abd4c1f
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix ProUI / JyersUI leveling preheat (#24060, #24064)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 4c84769a814ab6534a1edebc66529b568c9d6d7e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit 8fb3074901f83034cc240834a2fc75aad0ed43ad
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 230db90b70f1cafdea6fe3a8c28499e92004be53
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 28d2bc353ebbddc0ce0b96a634108392eb1089b4
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 7b5e2cd78619ba4334c0fe94b3f8293ed8d6e1ee
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 4b456078ddc1099c081e1e7149aba612c8f41008
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 8d3c84a6d969bf9fa576a17b0054d5b98324622d
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011, #24111)

commit cbc6f23a8af0c864e3607dc24764582149c0d1f3
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit bed8abe5b6df751d7dafc6f0f8d8dff7338625ce
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit 74565890f335f26fa7012d0164eb2964c0f2918d
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868, #24009, #24107)

commit 4ec9af42b8e24cf6ce9f238c9342bc1c11120429
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit b0d621d8b96fffda485efa45e61a68126613a766
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 995221e68e15693697fc7f10dfc31273ea188157
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 54e543872be13439523cecb6b670b7b4bf818164
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit 7b39604d6f58b46de18a41eb4a7de5058d9c4b35
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 01c9c2666123f0959b02b757d2acd6adc18f4284
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 27b148442826780c8fc4f7ab8c21608de21f0587
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7f1c5ad7aa6dc437d3a76abf8a36cb971e1f424e
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#23979, #24013)

commit 4fd7d1b056bfab9f31c272ae6d8f256ed2ed202d
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit 7ffe4de021254d34762d2a7ecd239ded0eca949d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit eada17ed69ede29d83f7c3897d64e2872faaae18
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit cd5c5ea60eb20d643ab2447bc3550b3eb5874a39
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit e9ea82e78d0c95ef1cee599093b4c91a6f97d709
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 18b17fc97d8474b2fe5c5cd7afcfdce05ba7d5cc
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit 89d5ed0c9e5570e4a025719a9ad183e505c8ed8a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit a56bf9045d3e68101c42ced30884fa34675279c5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit c23d0351495a7fc1c396d157642db49db2754135
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 7ff4b706947e63d708cef90c936b936305947e58
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 421c38ff2e0de3a8d5cd913232aa3448dbfbc487
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit ec447dba04409c2b60d61b9bacab54c101bd9f3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit be6535e5f7a39529bd081ed38a1bf76fa645488f
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99252cf0cd5a8a01228c715a505cb1eaf6b853e5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit f6f31434b8c0e21f98fef460e0c8492fd4c240d5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 2f3960904e1a7b830c686fa793b122de49f3d674
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 2dc4c642e78bb4fa99ca41f3ae3c92335248ffd4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit 70ea0e7c3450680e1062088243d2cf139eadc02a
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit a81fd009f081eca3685e42cffac7f35e75428fea
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit e667d4e6e43b407cedce6bbf543ea1d815e8d520
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 2d0af75d37c9ea8ab44c889ef4e489b3b533eb30
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 5e68a86968d63f97f0febb8378b2a508e909ec90
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 8bd1547c3bb16cdce37412624161fab5b9d5ead6
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit a5e083603f1435a4a0e2e9fa7449c9133aa73225
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit c5f7547e8cf0d744fb1392b3651078d3985cecb1
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit 5c5b380fda9f541ee182e614966fc39a72ac6a18
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit bb0e0cf7f35cf3b89aac4f395185d55f3aa62979
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit 5ee99dfc49eaa8e81f5beb66eb1c160ac2d217fb
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit a083b1280ec80a525766c0a9487865b76de64c81
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit b7b5cee88baadfb10822b6bb13b6e7d3b0acaff8
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit 7456fd68a41b12592f3ac3f47308f7037ca22b86
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 20154718b5a41c1522a313ada06ef5c35ce2023d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit a6794c1862c663b387637597dba5f258a3e0e1e2
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit bd5c6bf23c1478dcab31cc1c2edcd0fa546eb6ea
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 68ee64283a7aab95c2f70eaf734e24b9d909dfa7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit dd29394bbe17ab6458817cce65b94f106252092f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit ceb99e89a081d2230479e9bb7b63c23d14bf0b98
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit 6112277f9b2d24a7c9effeb5966dadef279a261c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 81f403025c3ddb479ccf363fb091ac0fcf8e667b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eeda8b451acb2a0ae96656876f6a7682d43aca1d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit c7e8ba78576af230278a5662103acf421dc59bfd
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit 071e5c336a157ca39b75081b8cb4436a72af965e
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit be08d4c4f01e2c297365664bd3e0f7dc2b051fde
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit e99104a0040f58477809c9e2b9506fe2bcd94331
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944, #23948)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit edc4089121bcd96645b7be6bbd3dafa88c510ede
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 3bce266ef7865a62b5e79c7c5c67a068bb5e4c20
Author: ellensp <[email protected]>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (#23943)

    Followup to 89a9c3a391

commit c89d0114acba957d63e894bc1a479ec10cb18a81
Author: Robby Candra <[email protected]>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (#23135)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e693854d0c86fa0998a5d497607d42d6798f6ab
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 9324132a401cf0ab3781c9992d607bd4f88ba086
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 5632ad65f59710ca64e4abca99afa64cb99d559e
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit eccbfbcede60922b95971e90bf3a1d7983a5fe39
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 5ef4fb378e345e20d1fa3bdbc5312598dc571276
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to #23925

commit 21f0945d2cfada672756709bc420feb11768e687
Author: Oleg Belov <[email protected]>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (#23936)

commit b2a318af9a0c8e91b1f66a5576226b50b1b49f1b
Author: Serhiy-K <[email protected]>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (#23935)

commit 1c89c0470f2778f8051ff8514831138e64a2d9ed
Author: ellensp <[email protected]>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (#23931)

commit 2ee4a667e1999839e61fa4c7d4e31a88d6e301d6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:47:22 2022 -0600

    💡 Misc. cleanup, comments

commit f8e177a43efa3e7a173e2799562d354ab95544ab
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 9ac1c73041cbf4015b48d9d7a70a59e840a1d442
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit 4a8b99d505584d1fa5eb71d588da1bb60c3a2878
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit b094a3fc0d647f7daff7c4d97db32f9d41e4c11d
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit 2d99a608fd993fd5cb75223b72deadfc969a13c1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit fba8805c0cd87845c80d9cd7738b94332a35e27b
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 039a22649f4e0201d7580b63c1a414450353438a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit ced0ad8e094baecf6e3ee8eaa36c61baaa5743fc
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 10a0c9a9b3d4070326954c5c2354cfd8ba490f0c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit abfb0411809568970221281a3614e30970f0dfc1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 72f207f4895d5db34f697cb203876405b98d89c8
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit 7186037f20a2a2c57624e31c1e99adc37759c5f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit b0a400da72f6752619a82246fac55a07a4e67f3c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit cc4c2c2f98a1742d6b462481f74dacf5b5b93961
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit 5dae8a67344cfeda3de6d40fcd14498542004fe9
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 05dea4e30a1768913ec7d1f38c65b9423200a558
Author: Fredrik Andersson <[email protected]>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (#23925)

commit 7e88ee8c5cc87395e73c45bcd743f3ab0302773b
Author: Mark <[email protected]>
Date:   Fri Mar 18 12:49:47 2022 +0800

    📌 PandaPi V2.9 – Standalone mode (#23908)

commit cc8e485e1c55fb2fcdba7dc8f6b89041ed18e9ce
Author: John Robertson <[email protected]>
Date:   Fri Mar 18 03:21:53 2022 +0000

    ✨ ESP32 - Hardware PWM for fan, cutter, servos (#23802)

commit c7a2ecc31aa4def9e60668f5cfc648d87776be9b
Author: ellensp <[email protected]>
Date:   Fri Mar 18 16:17:41 2022 +1300

    🩹 Fix xatc EEPROM debug (#23911)

commit 260b40d1453a9310581c45d3e1327a3103b36a22
Author: tombrazier <[email protected]>
Date:   Fri Mar 18 03:15:26 2022 +0000

    ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (#23867)

commit c87eded8f6183c33bd9b9a74dd577fe6c77c32df
Author: Ludy <[email protected]>
Date:   Fri Mar 18 02:55:33 2022 +0100

    🩹 Fix redundant var declaration (#23913)

commit 2f2a999368f22f2c6b3105ab481987c2025bc50e
Author: John Robertson <[email protected]>
Date:   Thu Mar 17 19:35:33 2022 +0000

    🐛 MKS TinyBee - 2.5V ADC Vref (#23903)

commit 2558b323e85006c3c9f6a03bcaa82f61c95da0bb
Author: Jelmer van der Stel <[email protected]>
Date:   Sun Mar 13 23:20:30 2022 +0100

    🩹 Fix DWIN E3V2 display issues by allowing re-init (#23879)

commit 1db685593922214e49496d805dc9ea099e227f50
Author: Mrnt <[email protected]>
Date:   Sun Mar 13 15:17:35 2022 -0700

    🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (#23885)

commit 62f298aca39ff17bc7a51f49b9ff6b5b17a76c30
Author: Julien Staub <[email protected]>
Date:   Sun Mar 13 23:09:32 2022 +0100

    🩹 Fix ExtUI build with Host Keepalive disabled (#23898)

commit 8d20c5aadfff34a024665ea349c0b66834e4d305
Author: InsanityAutomation <[email protected]>
Date:   Sun Mar 13 18:00:35 2022 -0400

    📝 Fix X2_MAX_POS comment (#23873)

commit 61b470249c1cfa361f25060940cc8b7f8a8f64e9
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:59:43 2022 -0500

    📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

commit 4ffa88f814f3ddcb7273b73c9bb68773bcf1fd51
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:46:08 2022 -0500

    🚸 Test LIN_ADVANCE in a pins file

commit 8257040fafe758ac1913e9bf633fa0c9930dd9cb
Author: Mathew Winters <[email protected]>
Date:   Sun Mar 13 14:13:41 2022 +1300

    ⚡️ G12 - Only require used axes to be homed (#23422)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d9ab7e71eed56f242d4fae32836f305bb1ff680
Author: Keith Bennett <[email protected]>
Date:   Sat Mar 12 16:23:29 2022 -0800

    🔨 Drop extraneous build flag (#23862)

commit 1a76d4d467ebb3d8ed1df39767efa99beb…
TheRaf974 added a commit to CuriousMaker/Marlin that referenced this pull request Nov 26, 2022
commit aaa4e8ecdbd20e3a6e200f44f90c4d8a9ee5deb8
Author: Scott Lahteine <[email protected]>
Date:   Wed Nov 9 20:54:17 2022 -0600

    🐛 Fix recalculate_max_e_jerk

commit 01f96a103be4369f27a009f9b524c3cc5cd821d2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:46 2022 -0500

    🔖 Marlin 2.0.9.5

commit 3638ce2b31ea3749685e034c4bf6a0eba92ee0f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 18:41:03 2022 -0500

    🚑️ Fix XYZEval = N not setting E

commit 889d1224907240aee42331ec3b011260c3f56ffe
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:14:01 2022 -0500

    🧑‍💻 Further script updates

commit dc3322b639223e4592ef724ca7d1aadd8451feee
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 07:08:42 2022 -0500

    🧑‍💻 Axis macros parity with 2.1.x

commit 25521cb9b2069db9bf2ab0b9576e6201c34d97e4
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat May 28 17:34:36 2022 -0500

    🚸 Fix, update ProUI (#24251, #24473, #24500)

commit 593b734d18847298acc6c1489ea97fb8528f53ec
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:53:36 2022 -0500

    ♻️ Small sound / buzz refactor (#24520)

commit 2952f0be5de7a82f706f74550aba17e7be3d378f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 29 04:12:38 2022 -0700

    Updates from #24560

commit 752f3d440dd72d869140268dc79f3efb49043c1e
Author: tombrazier <[email protected]>
Date:   Sat Jul 16 00:15:51 2022 +0100

    ⚡️ Optimize Planner calculations (#24484, #24509)

commit 5c46ae4f003a796292fa585f4d8f959dc2e503a7
Author: tombrazier <[email protected]>
Date:   Fri Jul 8 20:41:39 2022 +0100

    ⚡️ Optimize G2-G3 Arcs (#24366)

commit af6995845cfe50edc81881b5de523cfc28efc099
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:30:26 2022 -0500

    🩹 Revert extra axis changes

commit 8e6aa1b113bafea1af6c0ffa9d07980cb6f90e41
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 05:00:07 2022 -0500

    🧑‍💻 Fix and improve build_all_examples

commit 929ce5e859858bf3db475fb4aaa49899b22f1d68
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 10 22:00:10 2022 -0500

    🧑‍💻 Add Sim debug with lldb

commit 3a5e87cdb76ced2e84eccecf220289dc70e9a741
Author: ellensp <[email protected]>
Date:   Wed Jul 20 10:32:08 2022 +1200

    📺 SKR_MINI_SCREEN_ADAPTER for BTT SKR Mini E3 V3 (#24521)

commit 35e1384decb6b521c729c5eb77281e01b8cdc29f
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 15 15:43:43 2022 -0700

    📝 Update board MCU comments (#24486)

commit 406c2342fd5556a0c54a090f38b674cd82f9fa2a
Author: InsanityAutomation <[email protected]>
Date:   Mon Jul 18 21:12:27 2022 -0400

    🚸 Machine-relative Z_STEPPER_ALIGN_XY (#24261)

    Co-authored-by: Scott Lahteine <[email protected]>

commit fa50d2c757f9b1fecc133d511c4fc1297842e184
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 04:00:39 2022 -0500

    🧑‍💻 Fix MAP macro use

    Followup to #24191

commit 6523b92014f2fd6de97c6b44dc1cfd22526b03a2
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit 2461138661bdeed44c8291229237107680803843
Author: lujios <[email protected]>
Date:   Tue Jun 7 02:22:17 2022 +0200

    🩹 Fix G33 Delta Sensorless Probing compile (#24291)

commit 2bb9a5ee5efbf054a7f63083532c4762437a19f1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 29 03:42:04 2022 -0500

    🩹 Apply linearval in M600

commit 0a4aa0978dfa6c198eac85cdcc09f6de59cbba55
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 8 13:30:03 2022 -0700

    🔧 Assert Probe Temp Comp requirements (#24468)

commit 39863d54b06e9b9394815467bde3b44500eebab3
Author: ellensp <[email protected]>
Date:   Sat Apr 23 21:16:15 2022 +1200

    🐛 Fix BACKLASH_COMPENSATION compile (#24072)

    Followup to #23826

commit cea45d49bc3c510e4fa38dead1d65c335f0737ae
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 9 19:17:04 2022 -0500

    🎨 Misc. 6-axis cleanup

commit 34f9c28fd16e5cc77636bcaad5ba40c56a521375
Author: Pauli Jokela <[email protected]>
Date:   Thu Jul 7 18:59:23 2022 +0300

    🩹 Fix safe homing sanity-check (#24462)

commit bf084254dab5dab9a38ea275db4846e956589758
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:15:57 2022 -0500

    🎨 Fix comments, formatting

commit 6f51f19257a1f3a3594270169d8a8d74e312f2ba
Author: Christophe Huriaux <[email protected]>
Date:   Wed Jul 6 22:43:38 2022 +0200

    🩹 Fix ST7565 LCD contrast init (#24457)

commit 56974af3e5c8958569b409ddcffabf35ecb53692
Author: Mike La Spina <[email protected]>
Date:   Fri Jul 8 15:02:12 2022 -0500

    🐛 Fix laser/fan sync (#24460)

    Followup to #22690, 307dfb15

commit f9154eca8cdfbff885934f90f49209ea112593d8
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 21:46:38 2022 -0500

    🩹 Fix TFT image packing

commit a03516a9f40f8723c21fc4d1f26b6e06c635ed2c
Author: DerAndere <[email protected]>
Date:   Mon Apr 4 04:43:42 2022 +0200

    🚸 Better M350, M114 with more axes (#23986)

    Co-authored-by: Scott Lahteine <[email protected]>

commit f18b0f6f4b42baa2f3aa7761ae3263dbea04ee4b
Author: toomuchwonder <[email protected]>
Date:   Thu Jul 14 04:17:53 2022 +0100

    🩹 Fix MKS UI extruder speed (#24476)

commit d617002a6eec353cc1dcc69aab268cb8d71c52e3
Author: Miguel Risco-Castillo <[email protected]>
Date:   Thu Jul 14 00:00:33 2022 -0500

    🚸 Fix and update ProUI (#24477)

commit 01f16daf42a49c6c37f63e389c9c1df2d6d130f8
Author: InsanityAutomation <[email protected]>
Date:   Wed Jul 20 04:08:19 2022 -0400

    🐛 Fix Archim2 USB Hang (#24314)

commit ff1ecb00cc52b33136a1a42d0d339af7db92fcae
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 28 20:52:33 2022 -0500

    🎨 Misc. 'else' cleanup

commit 750a8dbe7fedcbbe1a651cb0bc24fe0b5753eaf1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 22 12:38:00 2022 -0500

    🩹 Fix MAX31865 approximations

    Followup to #24407

commit ba8f109f8aa7de5b869244ef95441f5870729856
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 18 19:52:47 2022 -0500

    🩹 Fix manual move titles (#24518)

commit 77fc65ddc2753c8170597157c77cc58132f4c092
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:52:27 2022 -0500

    🏗️ Extend AXIS_CHAR to include E

    Co-Authored-By: DerAndere <[email protected]>

commit af24e1b77ee9fdff8a9551bdc7cd5ef47c302afd
Author: kisslorand <[email protected]>
Date:   Tue May 31 20:05:57 2022 +0300

    Fix axis string 'N' (#24259)

    Followup to 167672d

commit 36d508c5a0c959191bf8f6ec7508dfdc259a7661
Author: Ludy <[email protected]>
Date:   Thu Jul 28 04:44:21 2022 +0200

    🌐 Update German language (#24555)

commit 9f5aab1a6164c7837b8352cd63ac7b2c8e1f8988
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 27 04:24:50 2022 -0500

    🧑‍💻  Update planner/stepper includes

commit 62d29ade426328a4924ed2838fcea8e113e1c1f9
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 21:15:44 2022 -0500

    🩹 Fix lcd_preheat compile

commit c801cc4830eca838f19a61cc55a0bf31cfcfd43c
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 26 14:54:54 2022 -0500

    🔨 Update build/CI scripts

commit bc91b1cdcdc09d368653d5a9430d349e6775f81e
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 24 13:51:43 2022 -0500

    🎨 PIO scripts cleanup

commit c847ef02a1c6b9c88f523b8fc2961df0a28c0904
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 12:02:37 2022 -0700

    📺 Fix TFT Classic UI non-Touchscreen 1024x600 (#24541)

commit cdda90f56c3dc4a9a40eb2528cc92a7cd408436f
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 25 11:47:07 2022 -0700

    📝 Update MPCTEMP G-Code M306 T (#24535)

    M306 simply reports current values. M306 T starts autotune process.

commit ad4bc378b7b574a8c094872b42b541de3596fb7b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:43:03 2022 -0500

    📝 Update Driver Type comments

commit 99710b94d29763c25ab764513ce1efdbb5baf13b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 78fc5acca99f1717033d09f0358d9564857d1f09
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:11:33 2022 -0500

    🔨 Add mftest --default flag

commit e616542c891e3f2d107da528fc46173c84652a47
Author: Arthur Masson <[email protected]>
Date:   Sat Jul 16 23:58:18 2022 +0200

    ✨ Polargraph M665 settings (#24401)

commit a50bb96d2dd22263c3e55566c789bd717cb7fcdf
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 653f0ab9dd95e07afb2e5f3a5536328f1f3daff1
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 02:56:55 2022 -0500

    🔨 Fix and update Makefile

    Followup to 89fe5f6d

commit c96ed8998b971a5a00a6aa4aca6d9f9b812fdab1
Author: Jason Smith <[email protected]>
Date:   Thu Jul 7 21:43:56 2022 -0700

    🩹 Fix LCD_BACKLIGHT_TIMEOUT compile (#24463)

commit b025c18d5b9d86c09b766a15f2ccaf45f340626f
Author: Mike La Spina <[email protected]>
Date:   Wed Jul 6 07:46:39 2022 -0500

    ⚡️ Fix and improve Inline Laser Power (#22690)

commit b49da1d4ca1056cd28a396e878bf37c45af43441
Author: tombrazier <[email protected]>
Date:   Tue May 31 18:01:59 2022 +0100

    💥 More M306 M => M306 H (#24258)

    Followup to #24253

commit 90074e626012ae74d51f4e47216b99cbe2c783d4
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 14:32:16 2022 -0700

    🎨 Fix/adjust warnings (#24225, #24404)

commit e570c4cc2ed1b284834fcb809973c80a1002b784
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 17:45:07 2022 -0500

    🧑‍💻 Forward-compatible axis strings

commit 543bbf02fc552cd121b85f3444bcbf87fbb1faee
Author: DerAndere <[email protected]>
Date:   Tue Apr 19 05:15:15 2022 +0200

    💥 Update Motor Current G-codes for extra axes (#23975)

commit 5ccdc9ced7639f646c01f757ac6afa1f42007021
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:13:11 2022 -0500

    🏗️ Axis name arrays

    Co-Authored-By: DerAndere <[email protected]>

commit ddb0168e29878d626d6b36a89b6b4850ad5d4ebe
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 22:37:20 2022 -0500

    ♻️ More updates for multi-axis

commit 0caf234aa5ae143bec8e9fc0ef52f632317e8fd1
Author: GHGiampy <[email protected]>
Date:   Fri Jul 15 10:18:57 2022 +0200

    🔨 Fix firmware upload (#24499)

commit dddbc4d730a1120b5f37b40f7393bc42e3651297
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:56:13 2022 -0500

    🔨 PlatformIO "--target upload" == "--target exec"

commit 08e6e8b9be0614fbacab998a20bf9bad1b1af94f
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 3 10:32:47 2022 -0500

    ♻️ Encapsulate PID in class (#24389)

commit 12ae80bcecb8329fb0548342228d8edffeeba115
Author: Victor Oliveira <[email protected]>
Date:   Sat Jul 2 21:31:27 2022 -0300

    🔨 Disable stack protector on macOS simulator (#24443)

commit 9e530cd27b790f3dce30963c6d98af043ba5abf5
Author: Eduard Sukharev <[email protected]>
Date:   Wed Jul 6 16:30:47 2022 +0300

    🐛 Fix MKS TinyBee compile (#24454)

commit 0ec1cb58c77d37886d0b6a0c683122ea614d7e20
Author: EvilGremlin <[email protected]>
Date:   Mon Jul 4 04:49:23 2022 +0300

    🔨 Fix OpenBLT encode; no-bootloader envs (#24446)

commit b548e21b656f751305acf9d613144748e847b1e0
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:30:05 2022 -0500

    ♻️  reset_acceleration_rates => refresh_…

commit e170460855cf002c44a4a2d5cc8d538794fea7fa
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:24:59 2022 -0500

    ♻️ Planner flags refactor

commit b7b2286e49c3ddf5060e26b9c03bdb6c2207eeba
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 047d0264c5ddc5dde152eaebc6507b242d05ca02
Author: elimisback <[email protected]>
Date:   Sat May 28 16:22:59 2022 -0400

    🔨 BTT STM32G0B1RE xfer build (#24245)

commit c56fb1c1820248f256b4255de175eab854591d49
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 04:29:39 2022 -0500

    🎨 Minimize block->steps.set

commit d5a79c27fe764edb295c3ed9ee3df1765c9ded27
Author: DerAndere <[email protected]>
Date:   Fri Apr 1 07:10:38 2022 +0200

    ♻️ More updates for multi-axis

    Based on #23112

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 1e3fe65b9dd0555b77cac1832ad820253e200618
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 17:49:54 2022 -0600

    🚨 Fix some compiler warnings

commit af4160af6f79acc4725916f311c16dfc3d1013c7
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 13:03:33 2022 -0500

    🐛 Fix types.h macros and fields

    Fixes #24419

commit 53b73bbd7fc17172c5d5c4820ee11092e9c92926
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 17 22:25:51 2022 -0500

    🔧 Config parity with 2.1.x

commit 3b37e859491000034f73ada784931da9aaa63e1a
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 16 16:26:36 2022 -0500

    🚸 Arrange EXP pins in common order (#24525)

commit a1881f70a89e96ab9d95a3c6f169d97416f729db
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 11 11:33:42 2022 -0700

    ✨ MKS Monster8 V2 (#24483)

commit 6ad7f7ce985831c2947703cc2d5a7daf5cd0f201
Author: Christophe Huriaux <[email protected]>
Date:   Sat Jul 16 23:35:40 2022 +0200

    ✨ eMotion-Tech eMotronic (Micro-Delta rework) (#24488)

commit 9fe4d2cc6cee4db08f16deffa7356c1de0477f8e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jul 14 03:30:00 2022 -0300

    ✨ Creality3D v4.2.5 / CR200B (#24491)

commit 5bd0541985c1571ba753160957a418ce47df9abf
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 22:31:06 2022 -0700

    ✨ BigTreeTech SKR SE BX V3.0 (#24449)

    SKR SE BX V3.0 removes the Reverse Driver Protection feature.

commit 35d5393a3e2f41cdc0b5929af6f349e41d705c13
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 20:16:16 2022 -0500

    📝 Index Mobo Rev03 => Opulo Lumen Rev3

commit 1ffc4ba861cce00457c4ce79503eacac58297c29
Author: DerAndere <[email protected]>
Date:   Mon Apr 18 06:03:39 2022 +0200

    🩹 Fix some parameters w/out values (#24051)

commit 2bf6573098687b203ee1f3adf3f66b7a3e05163b
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 9 11:08:53 2022 -0500

    🐛 Fix SDIO for STM32 (#24470)

    Followup to #24271

commit 5e0a39265ac82952a0ec73144de6f9d2497b6b48
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 23 19:14:57 2022 -0500

    🎨 Clean up extra axes

    Followup to #24120

commit 495002e158e289ee7c90663aaa0aeb61942cb28d
Author: tombrazier <[email protected]>
Date:   Sat Jul 23 05:32:28 2022 +0100

    🐛 Fix 2d mesh print (#24536)

commit adeca472922700cc63a0d0e1324c5b0cf91be68c
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings.cpp force-recompile

commit 686d1fbb510b5060d4a23baae67a8fda0374b65c
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 13 21:22:53 2022 -0500

    🎨 ANY => EITHER

commit 8f84ce72e118478e582d45e97b7f7f0727e59522
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 8 22:45:17 2022 -0500

    Fix SDIO for STM32

    Followup to #24271

commit 5bf02e39a9159b0397a93f10571841f4d1bbc807
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 09:08:43 2022 -0700

    🚸 MPCTEMP: Home before cooling (#24434)

commit a5b076dff727fba479fe00e97e9d9332953addb3
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 08:08:40 2022 -0700

    🩹 Fix MKS TinyBee ADC Vref (#24432)

commit b79231cc59d6746f6714af102763d59488ea753a
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 21:17:32 2022 -0500

    🩹 Remove poison wchar_t macro

commit 86e6f9e38ea7a4653f11094221bcf4be20d0fef3
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 20:10:51 2022 -0500

    🩹 Remove obsolete split_move

commit b3018da60c6cf12f22c9e9b7954bcddc2cb4b686
Author: Moonglow <[email protected]>
Date:   Fri Jul 1 05:51:55 2022 +0300

    🐛 Fix M149 (#24430)

commit 0d04aa960f49196eca9f3da17846460b322d10c6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 17:14:23 2022 -0500

    🩹 Fix memset block warning

commit 0d34c2e287b582598a75cad0bb6ddd8bbd1fbba6
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 29 06:24:22 2022 -0700

    🐛 Fix Axis Homing (#24425)

    Followup to 4520a51

commit 1690f49656788ddb580c0f8311095800ad65881b
Author: John Lagonikas <[email protected]>
Date:   Wed Jun 29 01:53:05 2022 +0300

    🐛 Fix MAX31865 PT1000 normalization (#24407)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dbdb39f60ff1a97050f09d76f8f4de101d03d30a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:32:00 2022 -0500

    📝  Note about UBL bad splits

commit 843c04baa6df0db350ff759abcfa3f3fe431e5a2
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 10:01:22 2022 -0500

    🎨  Misc. shorthand operators

commit a7c58c1fd6463407331596623f8ff07c8a07481a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 05:47:18 2022 -0500

    🐛 Fix Manual Move axis selection (#24404)

commit 3af5c32ea23e8bca1e7c233006987286e980f982
Author: Shlee <[email protected]>
Date:   Sun Jun 26 06:56:57 2022 +0000

    📝 Add STM32F4 example, Ruby (#24399)

commit 4039075a1d7b96482a59987fb78f3e500ede0efb
Author: Giuliano Zaro <[email protected]>
Date:   Sun Jun 26 08:52:19 2022 +0200

    🌐 Update Italian language (#24398)

commit ed796c83541a9cbbb615fe7be6007735ad279f07
Author: Roman Moravčík <[email protected]>
Date:   Sun Jun 26 08:51:16 2022 +0200

    🌐 Update Slovak language (#24397)

commit f3c64fd397b28d132e72852956a36e64d9d53f43
Author: sgparry <[email protected]>
Date:   Sun Jun 26 07:49:57 2022 +0100

    🩹 Fix LCD contrast with K8800 board

commit b220342b26b3ed327ce6723e4912163bd76661f5
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 24 22:07:06 2022 -0500

    🌐 Drop unused delta strings

commit 4dad5871888fd99fea0ec918c04f1c134f49ab8a
Author: InsanityAutomation <[email protected]>
Date:   Tue Jun 21 22:09:24 2022 -0400

    🐛 Resolve DUE Servo pulse issue (#24305)

    Co-authored-by: sjasonsmith <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 1efe48ef656b38e6f60bbd193e66ae9c54f85a9d
Author: tombrazier <[email protected]>
Date:   Sat Jun 18 05:17:12 2022 +0100

    🐛 Fix G2/G3 Arcs stutter / JD speed (#24362)

commit ae8365a4e56d91374e1ea20e6edb1c0bf041ad46
Author: Bob Kuhn <[email protected]>
Date:   Thu Jun 23 23:58:26 2022 -0500

    🐛 Fix Lerdge build / encrypt (#24391)

    Co-authored-by: Scott Lahteine <[email protected]>

commit dd68461bb1a2bc714f6b48008d2cf87c1e9e1d4e
Author: Victor Oliveira <[email protected]>
Date:   Thu Jun 23 06:18:36 2022 -0300

    ✨ Classic UI BIQU BX (#24387)

commit 010fbcccf7fc2aa7c421fa5df1a9d1a32f477fcc
Author: ellensp <[email protected]>
Date:   Wed Jun 22 22:08:24 2022 +1200

    🩹 Fix DGUS (MKS) compile (#24378)

commit 185fe5696c9843096a0619797566d7e27d573d75
Author: Victor Oliveira <[email protected]>
Date:   Wed Jun 22 05:33:03 2022 -0300

    🚑️ Fix BIQU BX touch freeze (#24383)

commit 7edd37bc5aeeff9c55442bf6d142c3cb9357995c
Author: ellensp <[email protected]>
Date:   Wed Jun 22 16:13:18 2022 +1200

    🐛 Fix M423 invocation (#24360)

    Followup to #23745

commit 000042702108a0c0e8428350961398c4d39e3273
Author: tombrazier <[email protected]>
Date:   Wed Jun 22 03:45:22 2022 +0100

    🩹 LCD strings followup, fix warning (#24328)

commit 0d1d125bc69bf1634faecea6d0a2862677f584d3
Author: ellensp <[email protected]>
Date:   Wed Jun 22 10:33:25 2022 +1200

    🚑️ Fix SD mount bug (#24319)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 22e82a13d993e5b0ac1e7f56a77eabbf6da79dfe
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:12 2022 -0500

    🎨 Simplify move menus with substitution

commit 70d72354e2469eb66378e2da3a52ecd6db3f3447
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:23 2022 -0500

    🎨 Use MAP for home axis items

commit 821f4983d01430b9fc9ba5ccb44ea7ace4bf31e0
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 22 05:55:35 2022 -0500

    🧑‍💻 Fix STATIC_ITEM_N arg order

commit 15ca479708d39977c76acb73aaf1deca78810206
Author: Scott Lahteine <[email protected]>
Date:   Tue Jun 21 23:28:19 2022 -0500

    🎨 Fix comments, formatting

commit 2b8d115ebc08ee3ac03d680eff40d2b8079c2b44
Author: John Robertson <[email protected]>
Date:   Sat Jun 4 07:26:08 2022 +0100

    ⚡️ PWM for ESP32 I2S expander (#24193)

commit ae78a8844ae47d1b22f04e4545a29c19a0f8b214
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:08:29 2022 -0500

    🧑‍💻 MAP macro for axis lists, etc. (#24191)

commit f26438ef2870d88b057fba3c892f1ab4fd82b952
Author: Keith Bennett <[email protected]>
Date:   Mon Jun 13 19:04:49 2022 -0700

    👷 Use Biqu BX for CI test (#24331)

commit ce6c8adcb1002049f27513fdb0c74ce9831386cc
Author: ellensp <[email protected]>
Date:   Wed Jun 15 20:02:32 2022 +1200

    👷 CI test without src filter (emulate Arduino) (#24335)

commit d57cf9bd6b6d70dda6fe2bba9b83849a9688408a
Author: luzpaz <[email protected]>
Date:   Sat Jun 18 00:19:01 2022 -0400

    🌐 Fix LCD string, typos (#24324)

commit 5408259f51394e2c2a48879c0119251f324f0e12
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 13 20:43:23 2022 -0500

    🧑‍💻 Apply F() to some LCD / TFT strings

    Followup to #24228

commit f31178f868882905d210504e763052ca639782f9
Author: ellensp <[email protected]>
Date:   Tue Jun 14 13:38:19 2022 +1200

    🩹 Fix missing ProUI cpp wrapper (#24313)

commit f976e56a1993adede0ed854326e0cab214d90295
Author: ellensp <[email protected]>
Date:   Sat Jun 11 17:03:20 2022 +1200

    🐛 Fix JGAurora A5S A1 build (#24326)

commit 571007e5c9a1e407ef7f72b555e1d207be2f256f
Author: Steven Haigh <[email protected]>
Date:   Sat Jun 11 12:08:55 2022 +1000

    🩹 Fix ProUI compile (#24310)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 00527f38d59d8b466d515da801844197073c7bcc
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:47 2022 -0500

    🧑‍💻 Misc. servo code cleanup

commit 1c7696838b04051115d246fff173846cf74ea4d9
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:08 2022 -0500

    🧑‍💻 Remove servo macros

commit ad786a7930f1a0516427f7e0d827402387549ead
Author: tombrazier <[email protected]>
Date:   Tue Jun 7 01:23:55 2022 +0100

    🩹 Fix Mesh Leveling + Debug compile (#24297)

commit ce9c81dfa12ebde0a0a55663523c782afecbd85c
Author: ellensp <[email protected]>
Date:   Tue Jun 7 18:59:21 2022 +1200

    🩹 Media Change followup (#24302)

    Followup to #24015

commit 92910721d0c4cc79ad0f8a64fb11b2c15bf3619d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 19:06:03 2022 -0500

    👔 Fix and comment use_example_configs

commit 236251a2ce4f055ab96af0008c882ffe77f5dac8
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Jun 6 00:01:06 2022 -0500

    🚸 ProUI G-code preview, PID plot (#24282)

commit 369542db3bb34c28196a77838a2f018180a7da74
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:23:43 2022 -0500

    🔖 Marlin 2.0.9.4

commit 40d96c3460117eeab1742d74c2d78b57b4a9a1b6
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 5 20:26:40 2022 -0500

    👔 Remove actions from misc. branch

commit d7a71beaf4f08e60c3d13049f1046bbb663c643d
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 18:16:43 2022 -0500

    🔧 LEVEL_BED_CORNERS => LCD_BED_TRAMMING

commit f3b593ae73b5d21b5c270a5f5ede0fe982822b07
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 12:43:44 2022 -0500

    🎨 Fix spelling, whitespace

commit 1d8d8dccf45d2090e075b148d4f08e299184392c
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    💥 Num Axes / Multi-Stepper based on Driver Types (#24106, #24120)

commit 1e127a93c4c1446cf11aacecc9597a7355262ac8
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:15:23 2022 -0500

    🧑‍💻 Extend LCD string substitution (#24278)

commit fcef8d946cbd45e27ba9888f1e18327b68d52b00
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 0253500ccd5a7192f3e545cb5552c4ab7b309c5d
Author: Tanguy Pruvot <[email protected]>
Date:   Wed May 25 08:07:11 2022 +0200

    Use default null args in select_screen

commit 0d783a76907ace17f0d61ebe8882ebee9bc6ce3b
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:22:09 2022 +1200

    🐛 Init Stepper SPI before PSU Control (#24269)

commit e784e0413204680f3c8f3a8cdf519fb5bee7a164
Author: BIGTREETECH <[email protected]>
Date:   Thu Jun 2 17:02:06 2022 +0800

    ✨ BigTreeTech SKR3 - STM32H743 (#24271, #24272, #24275)

    Co-Authored-By: Alan.Ma <[email protected]>

commit 11d68e31274fccd20c8bb72eec0b4ad547962823
Author: bryan065 <[email protected]>
Date:   Thu Jun 2 04:51:39 2022 -0400

    🚸 Custom Menu Items for JyersUI (#24270)

commit 8b8b2a7ed35908b6a49d5b3badb230d3283792bb
Author: ledzepman71 <[email protected]>
Date:   Thu Jun 2 02:49:48 2022 -0600

    📌 Tenlog PSU pin (#24266)

commit fc1a620b878b45675b9a7972be6c1fb2882b8092
Author: tombrazier <[email protected]>
Date:   Sat May 28 23:40:08 2022 +0100

    🚩 MPC update (#24253)

commit 9799907dc9a53810e87fd5b54e2194d30e70eff8
Author: Keith Bennett <[email protected]>
Date:   Tue May 31 14:28:01 2022 -0700

    👔 Configs required to submit a Bug Report (#24256)

commit 6fc4dbbbc4b3b1e6820f4f18b81602451bb1786c
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 17:05:09 2022 -0500

    🚸 Change M201 G to S

commit 74596ad4d7f9117e06829b5657d7402f27a445ce
Author: Robby Candra <[email protected]>
Date:   Mon May 23 09:13:17 2022 +0700

    🩹 Adjust manage_media for slow/late media init (USB FD) (#24015)

commit 28f8646aa64b8baf6f93197d04b0802580272e40
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 19:56:46 2022 -0500

    ♻️ Apply F() to more LCD code (#24228)

commit 9a74bcd4cf13efa2d7cfb365182d7e097eaa1f1d
Author: John Robertson <[email protected]>
Date:   Tue May 31 23:09:44 2022 +0100

    ✨ Laser Safety Timeout (#24189)

commit 07cd248b91a59db8e2bc7ad10bbf160852af34fb
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 20:45:37 2022 -0500

    ♻️ Move watchdog to MarlinHAL

commit 209c792ef7e97dc48bf3517c9f8f56e6be80e97f
Author: Scott Lahteine <[email protected]>
Date:   Fri May 20 11:27:09 2022 -0500

    🔧 Remove LCD_SERIAL_PORT defaults, warn on auto-assign (#24170)

commit dbd00d992705a07b3da769549495d6505cb96b43
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (#23992)

    Co-authored-by: borland1 <[email protected]>

commit 4ae54a6229d1704bfc54a85233af40b69e924246
Author: Ludy <[email protected]>
Date:   Mon Apr 18 11:43:34 2022 +0200

    🐛 Update German language, Fix FTDI (#24047, #24048, #24227)

commit ce0af56d0aa4371620b142ba5b2ed3b455813a5d
Author: tombrazier <[email protected]>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (#23984, #24018, #24049, #24059)

commit 6c557a248016f2e89e259d2d5ee8e000521099bb
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (#23983)

commit a6ce9bf559d963c3cdcb6db7f57a572bc58016ea
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (#24014)

commit 21c838cb1b86c3ffd5958c68d82f6c0c25e78dbe
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (#23751)

commit 3443a9e18bf2c9797037f141d68ab409d6b3c00b
Author: Pauli Jokela <[email protected]>
Date:   Thu May 12 05:23:16 2022 +0300

    ✨ SOUND_ON_DEFAULT option (#24102)

commit b2b5b85045e689d311e472d803817e08b49ccaec
Author: Robert Brenckman <[email protected]>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (#21142)

commit 2086cc9f4e21dfc060c1ff034856ad4e6219f5f8
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:37:40 2022 -0500

    📝 Refer to 'PROGMEM' as 'flash'

commit 8eccfd4a6f90da93a4f13b8aa7fbd88a1f8cca46
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:35:38 2022 -0500

    🔧 Bed/Chamber PID Autotune menus

    Derived from MarlinFirmware/Marlin#23983

commit 9ab654adcb15ba23b42ed1f13ca34130e422dbc2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 22:06:32 2022 -0500

    🐛 Fix min/max temp evaluation

    Fixes #24257

commit 0ae982188c23ddab4e3a2d819c679166a7e19532
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 23:19:18 2022 -0500

    🐛 Fix M203 report

commit bed0788f723a0695726eab52e8da0b48298c619f
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit deb1ba73bbdd3aacaeec6c7d9540c41e93ddfdfe
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 15:11:43 2022 -0500

    🎨 Use pos.set method

commit 57f0ac88af9e8c5eb398c8367edf471900a5171f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 14:41:50 2022 -0500

    🎨  Misc. boards/pins cleanup

commit 915bce495cdc5168c982274f6deabc92e052c2c7
Author: Simon Pilepich <[email protected]>
Date:   Sat May 28 08:08:24 2022 +1000

    📝 Fix Mightyboard MOSFET comments (#24183)

commit 800a936caae83f4e5ca5dd2c2660518bd6fc43b2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ccf39b1c42fa787f645fbf0ac075cc47b72b18d3
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit d19179ce281cec58865fcbc99185abeb48a611b9
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 4a6ae1b64df5fa8824e20688399683bf11b840e2
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit 0daaef589c956d152c846760dfc157fdd1b7975b
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 4831cbebd80d6e2c6bcf504446cf6d0f2441c285
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit e0deb75764938995e32bc589d646ec397c4a3019
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0fe4f48956299cb298e6e48255ea72ba93dad79
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 4d65d7f142882bcd77072fc7dc5c01ca937a2e81
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit 1b879f0ee4e5539c237edf235b6ca38b5b2beb43
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit b6abc760cef73a1dfc0e186f40687d0a45c8a769
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 0ae061713c631d44cd12ad266ca9c7fdd856d72c
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 1d12e72bf697f7e3cb63995a20ba9e98fbce3eb9
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit c97cf10956ee33c80e557fb09e4cc75d30a0db82
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit b72f9277e9e89a7dcdc12c8f11273f7c76a064d4
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit 06c4a9acdb3f08a2052ea55d00fa350e9249bcb4
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit 8a301196e11d87d7e9db065d0d802910a664c5be
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 1e7219f4a643f8cbdbcd9685ebb5a76d02c89601
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 02c267f542223ed0d8b098da4bec6f09710d6bc8
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit fe77fc66c0004ba9a4459dd5a12c978dd0308bb1
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit 268a16b1ef1c5cd462e81aef08e4e9f7d2c65658
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 8351b1431f8bad178f2f8a3ec70b32a1d4d7ca2c
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 718806761f1e9d903d61408e2039357bfe46fff8
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit 78c7fedcea34f0c630f8e9fd46bc5d3244de04c5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit c4b8339b842958faae2567c339bcf9b44434a2ce
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 94ed67e36ef84cb4ecd8f3f1470041d4d72f7088
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit 03b819bdb235c6eb2cd0a02b832bb8f108cc5962
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 2204f05dcaabf0e639f1e1722ffd293d4b415fe3
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a13cceaad16dd2caedbf3b05ae0854b1200cb51e
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 5c25ed60c80d7b06cb91e91f98b1aca6bc648d79
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1c516bdd5e71fc3da05fb52da692c9c5ccb0c0d7
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit 425684e2ffecf85dccab1eb4242772bc97992eb8
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 63aecad7eef034d8cb2b3e81f8a22db8a148b90b
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit dcd769b4a18bd40f9664262d081d553994d8eb78
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit f9b7f00d1e1c1004e0c2a9c35e23c1c67dc47172
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit a6ff63d5060c0ef68c2ae9f6ccf3bcada2ec6b6e
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit 7d37ae2b2b1ea6613dbc8be0ec5fa30dbd6a87de
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7d40ec654a3eca783a19e93e7bb6f394f2e6d29
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit 7ed339cfa0a2d8298e0293cf465daaf4ac74c0f9
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit cb4ad020af2f56dc060ecafdfd58b0639a8f0199
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 0805f9bf3f631d914bb6ff4817d65a9ab237fe6c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d235bc9e1c5eeb210275a4abcf89a757d0259cc0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit d5f472a6cf4456bf715ee3b3a85132f3fbe7e15f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit d67fa98cf601a8ef2642641a8aefbcdab1d5bcc2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit d3fe0caa7f83b8e971e8503b5344e20811d6c812
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit bd09f8acff3c40fe9294cfc6b6a9220ec5b766fc
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit a9aca5f5e8c5c1ce40e09ce5cf80a875ec009aa0
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 13d1eb7241b8621267520e57811f8069b2e466e9
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 238ab1dd061145a525edd27bb8203ae216380894
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7e4061d1221531340e9f82bc6f1560e5d6feab8
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit 31c87adba80d50a90ae3c85b08cd01c5545c78b4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 727e7e7fd71fb0404e0f5bf7f36dc10419d155c4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 975b90c0b7e6b836f67f3603c80f818dc095ffa5
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format (#24110)

commit 8f0180802ad327a0be47be9405a9a2764b5937db
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit aa4c9917552df8a383816a0af516b86e1237ff48
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 9ab1a57d729cfa207adfe3ee6d24d40de3bb159c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 044bf8ab7ef7045583c9da175b8ebddd2b750f84
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit 4bdec5e99330a35387c09adc27be94c5082b4405
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 7444933d5d4fc93c6278e091be5af7e4f61b1d9c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit f35404f853ba185814bd17a4742ef34688ceba98
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit 7fa2dceddafcfeea4b2599fa2b9fe3542abd4c1f
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix ProUI / JyersUI leveling preheat (#24060, #24064)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 4c84769a814ab6534a1edebc66529b568c9d6d7e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit 8fb3074901f83034cc240834a2fc75aad0ed43ad
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 230db90b70f1cafdea6fe3a8c28499e92004be53
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 28d2bc353ebbddc0ce0b96a634108392eb1089b4
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 7b5e2cd78619ba4334c0fe94b3f8293ed8d6e1ee
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 4b456078ddc1099c081e1e7149aba612c8f41008
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 8d3c84a6d969bf9fa576a17b0054d5b98324622d
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011, #24111)

commit cbc6f23a8af0c864e3607dc24764582149c0d1f3
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit bed8abe5b6df751d7dafc6f0f8d8dff7338625ce
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit 74565890f335f26fa7012d0164eb2964c0f2918d
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868, #24009, #24107)

commit 4ec9af42b8e24cf6ce9f238c9342bc1c11120429
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit b0d621d8b96fffda485efa45e61a68126613a766
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 995221e68e15693697fc7f10dfc31273ea188157
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 54e543872be13439523cecb6b670b7b4bf818164
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit 7b39604d6f58b46de18a41eb4a7de5058d9c4b35
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 01c9c2666123f0959b02b757d2acd6adc18f4284
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 27b148442826780c8fc4f7ab8c21608de21f0587
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7f1c5ad7aa6dc437d3a76abf8a36cb971e1f424e
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#23979, #24013)

commit 4fd7d1b056bfab9f31c272ae6d8f256ed2ed202d
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit 7ffe4de021254d34762d2a7ecd239ded0eca949d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit eada17ed69ede29d83f7c3897d64e2872faaae18
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit cd5c5ea60eb20d643ab2447bc3550b3eb5874a39
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit e9ea82e78d0c95ef1cee599093b4c91a6f97d709
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 18b17fc97d8474b2fe5c5cd7afcfdce05ba7d5cc
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit 89d5ed0c9e5570e4a025719a9ad183e505c8ed8a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit a56bf9045d3e68101c42ced30884fa34675279c5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit c23d0351495a7fc1c396d157642db49db2754135
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 7ff4b706947e63d708cef90c936b936305947e58
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 421c38ff2e0de3a8d5cd913232aa3448dbfbc487
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit ec447dba04409c2b60d61b9bacab54c101bd9f3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit be6535e5f7a39529bd081ed38a1bf76fa645488f
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99252cf0cd5a8a01228c715a505cb1eaf6b853e5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit f6f31434b8c0e21f98fef460e0c8492fd4c240d5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 2f3960904e1a7b830c686fa793b122de49f3d674
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 2dc4c642e78bb4fa99ca41f3ae3c92335248ffd4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit 70ea0e7c3450680e1062088243d2cf139eadc02a
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit a81fd009f081eca3685e42cffac7f35e75428fea
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit e667d4e6e43b407cedce6bbf543ea1d815e8d520
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 2d0af75d37c9ea8ab44c889ef4e489b3b533eb30
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 5e68a86968d63f97f0febb8378b2a508e909ec90
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 8bd1547c3bb16cdce37412624161fab5b9d5ead6
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit a5e083603f1435a4a0e2e9fa7449c9133aa73225
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit c5f7547e8cf0d744fb1392b3651078d3985cecb1
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit 5c5b380fda9f541ee182e614966fc39a72ac6a18
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit bb0e0cf7f35cf3b89aac4f395185d55f3aa62979
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit 5ee99dfc49eaa8e81f5beb66eb1c160ac2d217fb
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit a083b1280ec80a525766c0a9487865b76de64c81
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit b7b5cee88baadfb10822b6bb13b6e7d3b0acaff8
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit 7456fd68a41b12592f3ac3f47308f7037ca22b86
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 20154718b5a41c1522a313ada06ef5c35ce2023d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit a6794c1862c663b387637597dba5f258a3e0e1e2
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit bd5c6bf23c1478dcab31cc1c2edcd0fa546eb6ea
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 68ee64283a7aab95c2f70eaf734e24b9d909dfa7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit dd29394bbe17ab6458817cce65b94f106252092f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit ceb99e89a081d2230479e9bb7b63c23d14bf0b98
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit 6112277f9b2d24a7c9effeb5966dadef279a261c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 81f403025c3ddb479ccf363fb091ac0fcf8e667b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eeda8b451acb2a0ae96656876f6a7682d43aca1d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit c7e8ba78576af230278a5662103acf421dc59bfd
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit 071e5c336a157ca39b75081b8cb4436a72af965e
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit be08d4c4f01e2c297365664bd3e0f7dc2b051fde
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit e99104a0040f58477809c9e2b9506fe2bcd94331
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944, #23948)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit edc4089121bcd96645b7be6bbd3dafa88c510ede
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 3bce266ef7865a62b5e79c7c5c67a068bb5e4c20
Author: ellensp <[email protected]>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (#23943)

    Followup to 89a9c3a391

commit c89d0114acba957d63e894bc1a479ec10cb18a81
Author: Robby Candra <[email protected]>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (#23135)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e693854d0c86fa0998a5d497607d42d6798f6ab
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 9324132a401cf0ab3781c9992d607bd4f88ba086
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 5632ad65f59710ca64e4abca99afa64cb99d559e
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit eccbfbcede60922b95971e90bf3a1d7983a5fe39
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 5ef4fb378e345e20d1fa3bdbc5312598dc571276
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to #23925

commit 21f0945d2cfada672756709bc420feb11768e687
Author: Oleg Belov <[email protected]>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (#23936)

commit b2a318af9a0c8e91b1f66a5576226b50b1b49f1b
Author: Serhiy-K <[email protected]>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (#23935)

commit 1c89c0470f2778f8051ff8514831138e64a2d9ed
Author: ellensp <[email protected]>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (#23931)

commit 2ee4a667e1999839e61fa4c7d4e31a88d6e301d6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:47:22 2022 -0600

    💡 Misc. cleanup, comments

commit f8e177a43efa3e7a173e2799562d354ab95544ab
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 9ac1c73041cbf4015b48d9d7a70a59e840a1d442
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit 4a8b99d505584d1fa5eb71d588da1bb60c3a2878
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit b094a3fc0d647f7daff7c4d97db32f9d41e4c11d
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit 2d99a608fd993fd5cb75223b72deadfc969a13c1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit fba8805c0cd87845c80d9cd7738b94332a35e27b
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 039a22649f4e0201d7580b63c1a414450353438a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit ced0ad8e094baecf6e3ee8eaa36c61baaa5743fc
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 10a0c9a9b3d4070326954c5c2354cfd8ba490f0c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit abfb0411809568970221281a3614e30970f0dfc1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 72f207f4895d5db34f697cb203876405b98d89c8
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit 7186037f20a2a2c57624e31c1e99adc37759c5f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit b0a400da72f6752619a82246fac55a07a4e67f3c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit cc4c2c2f98a1742d6b462481f74dacf5b5b93961
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit 5dae8a67344cfeda3de6d40fcd14498542004fe9
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 05dea4e30a1768913ec7d1f38c65b9423200a558
Author: Fredrik Andersson <[email protected]>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (#23925)

commit 7e88ee8c5cc87395e73c45bcd743f3ab0302773b
Author: Mark <[email protected]>
Date:   Fri Mar 18 12:49:47 2022 +0800

    📌 PandaPi V2.9 – Standalone mode (#23908)

commit cc8e485e1c55fb2fcdba7dc8f6b89041ed18e9ce
Author: John Robertson <[email protected]>
Date:   Fri Mar 18 03:21:53 2022 +0000

    ✨ ESP32 - Hardware PWM for fan, cutter, servos (#23802)

commit c7a2ecc31aa4def9e60668f5cfc648d87776be9b
Author: ellensp <[email protected]>
Date:   Fri Mar 18 16:17:41 2022 +1300

    🩹 Fix xatc EEPROM debug (#23911)

commit 260b40d1453a9310581c45d3e1327a3103b36a22
Author: tombrazier <[email protected]>
Date:   Fri Mar 18 03:15:26 2022 +0000

    ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (#23867)

commit c87eded8f6183c33bd9b9a74dd577fe6c77c32df
Author: Ludy <[email protected]>
Date:   Fri Mar 18 02:55:33 2022 +0100

    🩹 Fix redundant var declaration (#23913)

commit 2f2a999368f22f2c6b3105ab481987c2025bc50e
Author: John Robertson <[email protected]>
Date:   Thu Mar 17 19:35:33 2022 +0000

    🐛 MKS TinyBee - 2.5V ADC Vref (#23903)

commit 2558b323e85006c3c9f6a03bcaa82f61c95da0bb
Author: Jelmer van der Stel <[email protected]>
Date:   Sun Mar 13 23:20:30 2022 +0100

    🩹 Fix DWIN E3V2 display issues by allowing re-init (#23879)

commit 1db685593922214e49496d805dc9ea099e227f50
Author: Mrnt <[email protected]>
Date:   Sun Mar 13 15:17:35 2022 -0700

    🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (#23885)

commit 62f298aca39ff17bc7a51f49b9ff6b5b17a76c30
Author: Julien Staub <[email protected]>
Date:   Sun Mar 13 23:09:32 2022 +0100

    🩹 Fix ExtUI build with Host Keepalive disabled (#23898)

commit 8d20c5aadfff34a024665ea349c0b66834e4d305
Author: InsanityAutomation <[email protected]>
Date:   Sun Mar 13 18:00:35 2022 -0400

    📝 Fix X2_MAX_POS comment (#23873)

commit 61b470249c1cfa361f25060940cc8b7f8a8f64e9
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:59:43 2022 -0500

    📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

commit 4ffa88f814f3ddcb7273b73c9bb68773bcf1fd51
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:46:08 2022 -0500

    🚸 Test LIN_ADVANCE in a pins file

commit 8257040fafe758ac1913e9bf633fa0c9930dd9cb
Author: Mathew Winters <[email protected]>
Date:   Sun Mar 13 14:13:41 2022 +1300

    ⚡️ G12 - Only require used axes to be homed (#23422)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d9ab7e71eed56f242d4fae32836f305bb1ff680
Author: Keith Bennett <[email protected]>
Date:   Sat Mar 12 16:23:29 2022 -0800

    🔨 Drop extraneous build flag (#23862)

commit 1a76d4d467ebb3d8ed1df39767efa99beb…
tomek2k1 pushed a commit to tomek2k1/Marlin that referenced this pull request Jan 13, 2023
RaphDaMan added a commit to RaphDaMan/Marlin that referenced this pull request Jun 1, 2023
commit 800a936caae83f4e5ca5dd2c2660518bd6fc43b2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ccf39b1c42fa787f645fbf0ac075cc47b72b18d3
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit d19179ce281cec58865fcbc99185abeb48a611b9
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 4a6ae1b64df5fa8824e20688399683bf11b840e2
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit 0daaef589c956d152c846760dfc157fdd1b7975b
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 4831cbebd80d6e2c6bcf504446cf6d0f2441c285
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit e0deb75764938995e32bc589d646ec397c4a3019
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0fe4f48956299cb298e6e48255ea72ba93dad79
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 4d65d7f142882bcd77072fc7dc5c01ca937a2e81
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit 1b879f0ee4e5539c237edf235b6ca38b5b2beb43
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit b6abc760cef73a1dfc0e186f40687d0a45c8a769
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 0ae061713c631d44cd12ad266ca9c7fdd856d72c
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 1d12e72bf697f7e3cb63995a20ba9e98fbce3eb9
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit c97cf10956ee33c80e557fb09e4cc75d30a0db82
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit b72f9277e9e89a7dcdc12c8f11273f7c76a064d4
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit 06c4a9acdb3f08a2052ea55d00fa350e9249bcb4
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit 8a301196e11d87d7e9db065d0d802910a664c5be
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 1e7219f4a643f8cbdbcd9685ebb5a76d02c89601
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 02c267f542223ed0d8b098da4bec6f09710d6bc8
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit fe77fc66c0004ba9a4459dd5a12c978dd0308bb1
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit 268a16b1ef1c5cd462e81aef08e4e9f7d2c65658
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 8351b1431f8bad178f2f8a3ec70b32a1d4d7ca2c
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 718806761f1e9d903d61408e2039357bfe46fff8
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit 78c7fedcea34f0c630f8e9fd46bc5d3244de04c5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit c4b8339b842958faae2567c339bcf9b44434a2ce
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 94ed67e36ef84cb4ecd8f3f1470041d4d72f7088
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit 03b819bdb235c6eb2cd0a02b832bb8f108cc5962
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 2204f05dcaabf0e639f1e1722ffd293d4b415fe3
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a13cceaad16dd2caedbf3b05ae0854b1200cb51e
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 5c25ed60c80d7b06cb91e91f98b1aca6bc648d79
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1c516bdd5e71fc3da05fb52da692c9c5ccb0c0d7
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit 425684e2ffecf85dccab1eb4242772bc97992eb8
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 63aecad7eef034d8cb2b3e81f8a22db8a148b90b
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit dcd769b4a18bd40f9664262d081d553994d8eb78
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit f9b7f00d1e1c1004e0c2a9c35e23c1c67dc47172
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit a6ff63d5060c0ef68c2ae9f6ccf3bcada2ec6b6e
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit 7d37ae2b2b1ea6613dbc8be0ec5fa30dbd6a87de
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7d40ec654a3eca783a19e93e7bb6f394f2e6d29
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit 7ed339cfa0a2d8298e0293cf465daaf4ac74c0f9
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit cb4ad020af2f56dc060ecafdfd58b0639a8f0199
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 0805f9bf3f631d914bb6ff4817d65a9ab237fe6c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d235bc9e1c5eeb210275a4abcf89a757d0259cc0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit d5f472a6cf4456bf715ee3b3a85132f3fbe7e15f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit d67fa98cf601a8ef2642641a8aefbcdab1d5bcc2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit d3fe0caa7f83b8e971e8503b5344e20811d6c812
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit bd09f8acff3c40fe9294cfc6b6a9220ec5b766fc
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit a9aca5f5e8c5c1ce40e09ce5cf80a875ec009aa0
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 13d1eb7241b8621267520e57811f8069b2e466e9
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 238ab1dd061145a525edd27bb8203ae216380894
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7e4061d1221531340e9f82bc6f1560e5d6feab8
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit 31c87adba80d50a90ae3c85b08cd01c5545c78b4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 727e7e7fd71fb0404e0f5bf7f36dc10419d155c4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 975b90c0b7e6b836f67f3603c80f818dc095ffa5
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format (#24110)

commit 8f0180802ad327a0be47be9405a9a2764b5937db
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit aa4c9917552df8a383816a0af516b86e1237ff48
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 9ab1a57d729cfa207adfe3ee6d24d40de3bb159c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 044bf8ab7ef7045583c9da175b8ebddd2b750f84
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit 4bdec5e99330a35387c09adc27be94c5082b4405
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 7444933d5d4fc93c6278e091be5af7e4f61b1d9c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit f35404f853ba185814bd17a4742ef34688ceba98
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit 7fa2dceddafcfeea4b2599fa2b9fe3542abd4c1f
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix ProUI / JyersUI leveling preheat (#24060, #24064)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 4c84769a814ab6534a1edebc66529b568c9d6d7e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit 8fb3074901f83034cc240834a2fc75aad0ed43ad
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 230db90b70f1cafdea6fe3a8c28499e92004be53
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 28d2bc353ebbddc0ce0b96a634108392eb1089b4
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 7b5e2cd78619ba4334c0fe94b3f8293ed8d6e1ee
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 4b456078ddc1099c081e1e7149aba612c8f41008
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 8d3c84a6d969bf9fa576a17b0054d5b98324622d
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011, #24111)

commit cbc6f23a8af0c864e3607dc24764582149c0d1f3
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit bed8abe5b6df751d7dafc6f0f8d8dff7338625ce
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit 74565890f335f26fa7012d0164eb2964c0f2918d
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868, #24009, #24107)

commit 4ec9af42b8e24cf6ce9f238c9342bc1c11120429
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit b0d621d8b96fffda485efa45e61a68126613a766
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 995221e68e15693697fc7f10dfc31273ea188157
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 54e543872be13439523cecb6b670b7b4bf818164
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit 7b39604d6f58b46de18a41eb4a7de5058d9c4b35
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 01c9c2666123f0959b02b757d2acd6adc18f4284
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 27b148442826780c8fc4f7ab8c21608de21f0587
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7f1c5ad7aa6dc437d3a76abf8a36cb971e1f424e
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#23979, #24013)

commit 4fd7d1b056bfab9f31c272ae6d8f256ed2ed202d
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit 7ffe4de021254d34762d2a7ecd239ded0eca949d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit eada17ed69ede29d83f7c3897d64e2872faaae18
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit cd5c5ea60eb20d643ab2447bc3550b3eb5874a39
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit e9ea82e78d0c95ef1cee599093b4c91a6f97d709
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 18b17fc97d8474b2fe5c5cd7afcfdce05ba7d5cc
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit 89d5ed0c9e5570e4a025719a9ad183e505c8ed8a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit a56bf9045d3e68101c42ced30884fa34675279c5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit c23d0351495a7fc1c396d157642db49db2754135
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 7ff4b706947e63d708cef90c936b936305947e58
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 421c38ff2e0de3a8d5cd913232aa3448dbfbc487
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit ec447dba04409c2b60d61b9bacab54c101bd9f3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit be6535e5f7a39529bd081ed38a1bf76fa645488f
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99252cf0cd5a8a01228c715a505cb1eaf6b853e5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit f6f31434b8c0e21f98fef460e0c8492fd4c240d5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 2f3960904e1a7b830c686fa793b122de49f3d674
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 2dc4c642e78bb4fa99ca41f3ae3c92335248ffd4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit 70ea0e7c3450680e1062088243d2cf139eadc02a
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit a81fd009f081eca3685e42cffac7f35e75428fea
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit e667d4e6e43b407cedce6bbf543ea1d815e8d520
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 2d0af75d37c9ea8ab44c889ef4e489b3b533eb30
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 5e68a86968d63f97f0febb8378b2a508e909ec90
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 8bd1547c3bb16cdce37412624161fab5b9d5ead6
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit a5e083603f1435a4a0e2e9fa7449c9133aa73225
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit c5f7547e8cf0d744fb1392b3651078d3985cecb1
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit 5c5b380fda9f541ee182e614966fc39a72ac6a18
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit bb0e0cf7f35cf3b89aac4f395185d55f3aa62979
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit 5ee99dfc49eaa8e81f5beb66eb1c160ac2d217fb
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit a083b1280ec80a525766c0a9487865b76de64c81
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit b7b5cee88baadfb10822b6bb13b6e7d3b0acaff8
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit 7456fd68a41b12592f3ac3f47308f7037ca22b86
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 20154718b5a41c1522a313ada06ef5c35ce2023d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit a6794c1862c663b387637597dba5f258a3e0e1e2
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit bd5c6bf23c1478dcab31cc1c2edcd0fa546eb6ea
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 68ee64283a7aab95c2f70eaf734e24b9d909dfa7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit dd29394bbe17ab6458817cce65b94f106252092f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit ceb99e89a081d2230479e9bb7b63c23d14bf0b98
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit 6112277f9b2d24a7c9effeb5966dadef279a261c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 81f403025c3ddb479ccf363fb091ac0fcf8e667b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eeda8b451acb2a0ae96656876f6a7682d43aca1d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit c7e8ba78576af230278a5662103acf421dc59bfd
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit 071e5c336a157ca39b75081b8cb4436a72af965e
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit be08d4c4f01e2c297365664bd3e0f7dc2b051fde
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit e99104a0040f58477809c9e2b9506fe2bcd94331
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944, #23948)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit edc4089121bcd96645b7be6bbd3dafa88c510ede
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 3bce266ef7865a62b5e79c7c5c67a068bb5e4c20
Author: ellensp <[email protected]>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (#23943)

    Followup to 89a9c3a391

commit c89d0114acba957d63e894bc1a479ec10cb18a81
Author: Robby Candra <[email protected]>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (#23135)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e693854d0c86fa0998a5d497607d42d6798f6ab
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 9324132a401cf0ab3781c9992d607bd4f88ba086
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 5632ad65f59710ca64e4abca99afa64cb99d559e
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit eccbfbcede60922b95971e90bf3a1d7983a5fe39
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 5ef4fb378e345e20d1fa3bdbc5312598dc571276
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to #23925

commit 21f0945d2cfada672756709bc420feb11768e687
Author: Oleg Belov <[email protected]>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (#23936)

commit b2a318af9a0c8e91b1f66a5576226b50b1b49f1b
Author: Serhiy-K <[email protected]>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (#23935)

commit 1c89c0470f2778f8051ff8514831138e64a2d9ed
Author: ellensp <[email protected]>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (#23931)

commit 2ee4a667e1999839e61fa4c7d4e31a88d6e301d6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:47:22 2022 -0600

    💡 Misc. cleanup, comments

commit f8e177a43efa3e7a173e2799562d354ab95544ab
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 9ac1c73041cbf4015b48d9d7a70a59e840a1d442
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit 4a8b99d505584d1fa5eb71d588da1bb60c3a2878
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit b094a3fc0d647f7daff7c4d97db32f9d41e4c11d
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit 2d99a608fd993fd5cb75223b72deadfc969a13c1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit fba8805c0cd87845c80d9cd7738b94332a35e27b
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 039a22649f4e0201d7580b63c1a414450353438a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit ced0ad8e094baecf6e3ee8eaa36c61baaa5743fc
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 10a0c9a9b3d4070326954c5c2354cfd8ba490f0c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit abfb0411809568970221281a3614e30970f0dfc1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 72f207f4895d5db34f697cb203876405b98d89c8
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit 7186037f20a2a2c57624e31c1e99adc37759c5f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit b0a400da72f6752619a82246fac55a07a4e67f3c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit cc4c2c2f98a1742d6b462481f74dacf5b5b93961
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit 5dae8a67344cfeda3de6d40fcd14498542004fe9
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 05dea4e30a1768913ec7d1f38c65b9423200a558
Author: Fredrik Andersson <[email protected]>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (#23925)

commit 7e88ee8c5cc87395e73c45bcd743f3ab0302773b
Author: Mark <[email protected]>
Date:   Fri Mar 18 12:49:47 2022 +0800

    📌 PandaPi V2.9 – Standalone mode (#23908)

commit cc8e485e1c55fb2fcdba7dc8f6b89041ed18e9ce
Author: John Robertson <[email protected]>
Date:   Fri Mar 18 03:21:53 2022 +0000

    ✨ ESP32 - Hardware PWM for fan, cutter, servos (#23802)

commit c7a2ecc31aa4def9e60668f5cfc648d87776be9b
Author: ellensp <[email protected]>
Date:   Fri Mar 18 16:17:41 2022 +1300

    🩹 Fix xatc EEPROM debug (#23911)

commit 260b40d1453a9310581c45d3e1327a3103b36a22
Author: tombrazier <[email protected]>
Date:   Fri Mar 18 03:15:26 2022 +0000

    ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (#23867)

commit c87eded8f6183c33bd9b9a74dd577fe6c77c32df
Author: Ludy <[email protected]>
Date:   Fri Mar 18 02:55:33 2022 +0100

    🩹 Fix redundant var declaration (#23913)

commit 2f2a999368f22f2c6b3105ab481987c2025bc50e
Author: John Robertson <[email protected]>
Date:   Thu Mar 17 19:35:33 2022 +0000

    🐛 MKS TinyBee - 2.5V ADC Vref (#23903)

commit 2558b323e85006c3c9f6a03bcaa82f61c95da0bb
Author: Jelmer van der Stel <[email protected]>
Date:   Sun Mar 13 23:20:30 2022 +0100

    🩹 Fix DWIN E3V2 display issues by allowing re-init (#23879)

commit 1db685593922214e49496d805dc9ea099e227f50
Author: Mrnt <[email protected]>
Date:   Sun Mar 13 15:17:35 2022 -0700

    🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (#23885)

commit 62f298aca39ff17bc7a51f49b9ff6b5b17a76c30
Author: Julien Staub <[email protected]>
Date:   Sun Mar 13 23:09:32 2022 +0100

    🩹 Fix ExtUI build with Host Keepalive disabled (#23898)

commit 8d20c5aadfff34a024665ea349c0b66834e4d305
Author: InsanityAutomation <[email protected]>
Date:   Sun Mar 13 18:00:35 2022 -0400

    📝 Fix X2_MAX_POS comment (#23873)

commit 61b470249c1cfa361f25060940cc8b7f8a8f64e9
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:59:43 2022 -0500

    📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

commit 4ffa88f814f3ddcb7273b73c9bb68773bcf1fd51
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:46:08 2022 -0500

    🚸 Test LIN_ADVANCE in a pins file

commit 8257040fafe758ac1913e9bf633fa0c9930dd9cb
Author: Mathew Winters <[email protected]>
Date:   Sun Mar 13 14:13:41 2022 +1300

    ⚡️ G12 - Only require used axes to be homed (#23422)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d9ab7e71eed56f242d4fae32836f305bb1ff680
Author: Keith Bennett <[email protected]>
Date:   Sat Mar 12 16:23:29 2022 -0800

    🔨 Drop extraneous build flag (#23862)

commit 1a76d4d467ebb3d8ed1df39767efa99beb08e854
Author: Nick <[email protected]>
Date:   Sat Mar 12 23:47:47 2022 +0000

    🐛 Fix Chiron new TFT SD print after reset (#23855)

commit 4028c1cfc7bcaf78e49bb98b527353ec30a970de
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 17:12:21 2022 -0600

    🩹 Fix FSTR / PSTR usage

commit c49f26a7ae6499f4e19dc1f75bb4438cb0d549cf
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 16:34:58 2022 -0600

    🧑‍💻  Add standard BUZZ types

commit f82b13359520baf4da4e41aa85ed0fe3f8d31173
Author: Ludy <[email protected]>
Date:   Sun Mar 13 00:36:23 2022 +0100

    🌐 Fix, add some menu labels (#23895)

commit 2c3f2a14715665d7309e212bfd2a48240118e627
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 15:59:01 2022 -0600

    🐛 Fix UBL 'G29 Q1' bug

commit 4817efcf81d353032b2873dc958ec63bcb298d19
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 15:58:28 2022 -0600

    🧑‍💻 Add ExtUI::onLevelingDone, match DWIN to ExtUI

commit 16271377e2a00c2cd416ec21e5a21272e9f805ed
Author: BIGTREETECH <[email protected]>
Date:   Sat Mar 12 08:23:18 2022 +0800

    🧑‍💻 STM32G0Bx : Use PLLQ for USB clock (#23870)

commit 61fb3828688c377178031142ba9cfaa3512cb915
Author: kisslorand <[email protected]>
Date:   Sat Mar 12 02:21:08 2022 +0200

    🚸 M401 H - Report BLTouch HS State (#23724)

commit 7dae720de5c4fdea5fab657c09a2c8ba66f5a054
Author: GatCode <[email protected]>
Date:   Sat Mar 12 00:56:31 2022 +0100

    📌 Fix, extend Index Rev03 Mobo (#23851)

    Co-authored-by: Scott Lahteine <[email protected]>

commit c6f4b38877d6ff5973c5273bf28c0fa1b60226a3
Author: Giuseppe499 <[email protected]>
Date:   Sat Mar 12 00:12:03 2022 +0100

    🚸 Fix, extend X Axis Twist Compensation (#23745)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eabeac29fd311dc09799ce8a0db742048b07a2a9
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri Mar 11 15:06:49 2022 -0500

    🚸 Update Ender3 V2/S1 Pro UI (#23878)

commit b045c91f266d222f5851d76fb9723552c1f00313
Author: ellensp <[email protected]>
Date:   Sat Mar 12 03:51:25 2022 +1300

    fix g29 (#23887)

commit 56955c179d1fb6991f6267a344e712b1caeae154
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 11 02:56:24 2022 -0600

    🐛 Fix UI include

    Followup to ~2

commit 4eb1326355aaa022e1a9d41625851876b20b5aa3
Author: ellensp <[email protected]>
Date:   Fri Mar 11 21:52:35 2022 +1300

    📝 Update laser/spindle docs link (#23886)

commit b669aa49cccf4ceb41b99dfdbb88dac5945bed01
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 22:07:47 2022 -0600

    🔧 DWIN_CREALITY_LCD_ENHANCED => DWIN_LCD_PROUI

    Followup to #23624

commit 152ec49b8b43e40a9cceaaa90f3ebf1c194dfe11
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 17:35:03 2022 -0600

    🩹 Fix 'hdsl' warning

commit e4ca822dcf62c5a38b30472bd51ab40212ee2eb5
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 17:25:09 2022 -0600

    🚸 Improve M422 error messages

commit 0fafcd20cddc0e76003454d7c292430f367f1106
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 4 16:07:38 2022 -0600

    🔧 Mark Thermal Variance Monitor EXPERIMENTAL

commit bd72df3bb6387af9421b1503ab74e29b8a1e705c
Author: Jack Wilsdon <[email protected]>
Date:   Fri Mar 4 21:59:38 2022 +0000

    🐛 Emergency Parser with STM32 Mass Storage (#23827)

commit fd582dc863785b53048834d0c9789f1d264603b2
Author: tombrazier <[email protected]>
Date:   Fri Mar 4 21:57:51 2022 +0000

    🩹 Improve and apply XATC reset() (#23840)

commit 2986bc3b768e047fb333d35633900d512dbff439
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 17:58:23 2022 -0600

    ⚡️ Use seen_test in `M422`

commit e082a141f63e7af1d301a994c0ee796946bcb3a8
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 17:50:55 2022 -0600

    🚸 Use Z_STEPPER_ALIGN_STEPPER_XY to enable

commit 575c3150f96a7d43d93d092c9f0dd7f395ef6a78
Author: tombrazier <[email protected]>
Date:   Wed Mar 2 22:13:46 2022 +0000

    🚸 Universal X_AXIS_TWIST_COMPENSATION (#23828)

commit 43d4e306680d0a006f431b4ab29246450c6ee5e2
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 16:04:17 2022 -0600

    🐛 Fix M_State_grbl when G29 calls G28

commit 9b17699b9b371a88d7e5d79b60721e652c56c173
Author: Julien Staub <[email protected]>
Date:   Tue Mar 1 23:42:20 2022 +0100

    ✨ Weedo 62A Tina2 / Monoprice Cadet (#23817)

commit 0337602bbe289b72167a8ee49e996f799b281edc
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 1 17:25:30 2022 -0500

    ⚡️ E3V2 blank bg for S1 compatibility (#23822)

commit fbfe0642b6411d12340d6d53338af0cd386b4ab8
Author: ellensp <[email protected]>
Date:   Wed Mar 2 11:22:36 2022 +1300

    🚨 Fix BLTouch 5V pin tolerance checks (#23823)

commit 41a51e952792653059019e9e6064f6cd7a0beadb
Author: tombrazier <[email protected]>
Date:   Tue Mar 1 22:14:52 2022 +0000

    🐛 Fix backlash applied steps when config changes (#23826)

    Followup to #23814

commit 2d648e4dd94fd93ed0df9390dafe3e23335b5c29
Author: ellensp <[email protected]>
Date:   Wed Mar 2 11:11:26 2022 +1300

    🔨 Fix 'renamed' env (platform = ststm32) (#23831)

commit 35d11070b493a03e0011f96ec5af0ba72662dbe7
Author: Ludy <[email protected]>
Date:   Tue Mar 1 23:09:11 2022 +0100

    🌐 Update German language (#23832)

commit feafb7d49af67dd11172baf883d307eaea1e1b26
Author: kisslorand <[email protected]>
Date:   Mon Feb 28 04:38:11 2022 +0200

    ✨ M21 P / S / U - Select Volume (#23780)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 39001bd8d22f8a6f3b36b4b923b3ace359416c0a
Author: M. FURIC Franck <[email protected]>
Date:   Sat Feb 26 23:54:04 2022 +0100

    ✨ LCD Backlight Timer (#23768)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 3db2fecaa443634f80203b0762d503b7c706951e
Author: ellensp <[email protected]>
Date:   Sun Feb 27 11:50:17 2022 +1300

    🔧 SHOW_CUSTOM_BOOTSCREEN sanity-check (#23807)

commit c0288590b3319dd0a7afffbd52587b6071596cbb
Author: sam <[email protected]>
Date:   Sun Feb 27 00:48:59 2022 +0200

    📺 BTT SKR Mini E3 with Fysetc V2.1 / MKS V3 / BTT V1 Mini 12864 (#23793)

commit d2cd3f2e6830f10846871e6ce83342593c6cd67e
Author: ellensp <[email protected]>
Date:   Sun Feb 27 11:45:33 2022 +1300

    ✨ MKS Robin Nano 3.1 (#23795)

commit 893c6624384d68f7c6da7a383380fa13ccfc1ad0
Author: ellensp <[email protected]>
Date:   Sun Feb 27 09:34:44 2022 +1300

    🐛 ESP32 _delay_ms, fix u8g_esp32_spi.cpp (#23810)

commit b0fdbede9c98e8b807dd4a7a291b1b668c1a8e15
Author: tombrazier <[email protected]>
Date:   Sat Feb 26 20:30:33 2022 +0000

    🐛 Fix steps-to-mm with backlash (#23814)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 8e11a2bb8393c84a43a8c19a2f8ab499123cccb4
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 24 18:47:57 2022 -0600

    🎨  Move PROPORTIONAL_FONT_RATIO

commit 9588f21d2e8b91ab9061efdbb2d43df9c81e239e
Author: ellensp <[email protected]>
Date:   Thu Feb 24 05:36:39 2022 +1300

    🔨 More renamed.ini envs (#23786)

commit 80e569015bcd97cb9da43e4cecf20f0d0a8bd5f6
Author: ellensp <[email protected]>
Date:   Tue Feb 22 16:16:57 2022 +1300

    🐛 Fix TMC26X CS pins init (#23778)

commit be703522036250c4753d5ae1100c78bf01e8a124
Author: Keith Bennett <[email protected]>
Date:   Mon Feb 21 18:47:53 2022 -0800

    🔧 Warning for MK3_FAN_PINS (#23727)

commit 980c009fc7ff8ec07d37a1d936cf5711cb50cbdd
Author: Scott Lahteine <[email protected]>
Date:   Mon Feb 21 19:55:19 2022 -0600

    ✨ Dyze Design PT100 Amplifier Board (#23760)

commit 8a02646f5244a67cfdae32ba6a8b4dd68467f149
Author: Scott Lahteine <[email protected]>
Date:   Mon Feb 21 19:54:03 2022 -0600

    📝 Update Toolchange FS comments

commit 7ec2167a73d630e1408911bc172ede11189da27f
Author: tombrazier <[email protected]>
Date:   Tue Feb 22 01:15:52 2022 +0000

    ⚡️ Apply PTC on all probing (#23764)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 56cec9690a3717ce9ed2803b7c8f6486d532eae9
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 17 18:50:31 2022 -0600

    ♻️ Refactor HAL as singleton (#23357, #23871, #23897)

commit 428b67db316ceb11e41152270a97844c897feb39
Author: John Robertson <[email protected]>
Date:   Fri Feb 11 21:04:47 2022 +0000

    ✨ More Nozzle Park move options (#23158)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 1b2715ccf2722182ef787fa4639619b282647b1b
Author: Scott Lahteine <[email protected]>
Date:   Sat Feb 5 10:30:17 2022 -0600

    🚸 Enhanced UI => Professional UI - with updates (#23624)

commit ac76ed7eceee1063c53ce88c4d3471552c0aa279
Author: GHGiampy <[email protected]>
Date:   Wed Feb 2 00:35:38 2022 +0100

    🚸 Case Light, LED menus for E3V2 DWIN Enhanced UI (#23590)

commit 4ba4ab1c75bbf87c33b94bbb18b6cae4897fc226
Author: ellensp <[email protected]>
Date:   Tue Feb 22 13:31:44 2022 +1300

    📌 Creality RAMPS optional SD_DETECT_PIN (#23740)

    Co-authored-by: Scott Lahteine <[email protected]>

commit c0f6d2f78ca50852587d58cb3931d117baf0f5cc
Author: GHGiampy <[email protected]>
Date:   Fri Feb 18 01:45:42 2022 +0100

    ✏️ Fix getLFNName parameter (#23752)

commit 0b4f5298f5022666fedcb873b2d6e9a573ae42ef
Author: jefflessard <[email protected]>
Date:   Thu Feb 17 19:44:41 2022 -0500

    🚨 Fix TEMP_SENSOR_BOARD warnings (#23754)

commit 195383bc33e708e533ee7d7199184351d8f6e55b
Author: Simon Pilepich <[email protected]>
Date:   Wed Feb 16 13:46:09 2022 +1100

    🧑‍💻 Update MightyBoard FET pins (#23728)

commit 4199191e999667e66cbaa4ff7844c520774304ed
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 15 15:09:09 2022 -0600

    ♻️ Rename XATC z_values => z_offset

commit 7da28768f7bd60c936b66edc85c5d830dd86811a
Author: InsanityAutomation <[email protected]>
Date:   Sun Feb 13 14:44:24 2022 -0500

    ♻️ No ui.reinit_lcd on any ExtUI (#23722)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 172cd2eefb803a2a171c66b2b2bb453944bd5e61
Author: Scott Lahteine <[email protected]>
Date:   Sun Feb 13 13:12:38 2022 -0600

    📝 Update conditionals descriptions

commit 341113bcfb5e20d6587ebe44a746780b3b293867
Author: Scott Lahteine <[email protected]>
Date:   Sun Feb 13 12:55:00 2022 -0600

    🔧 HAS_LCDPRINT conditional

commit 5f0e1a15dfe63f250513e052b0de186a1ad805a1
Author: ellensp <[email protected]>
Date:   Sat Feb 12 08:50:07 2022 +1300

    ✏️ Fix E3V2 display with BTT SKR Mini E3 v3 (#23719)

commit 3abf4de4ae696f3c234b0be6d7cce5efa60d111e
Author: ellensp <[email protected]>
Date:   Sat Feb 12 08:39:34 2022 +1300

    🚸 Align MKS UI heated bed status with HAS_MULTI_HOTEND (#23718)

commit cc1a48ad2d86c8e53684a066c17e033cb20615ad
Author: Scott Lahteine <[email protected]>
Date:   Fri Feb 11 09:36:52 2022 -0600

    💥 Change 'M42 M' to 'M42 T'

commit 2a584cea96c885df2f6b2c7700d71dfcafe08551
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 10 16:03:48 2022 -0600

    🎨 Misc. DGUS cleanup

commit 9f57f6f36f464b412314144d2c72ff0dc8b4be9b
Author: Thomas White <[email protected]>
Date:   Fri Feb 11 04:02:45 2022 +0800

    ✨ Pxmalion Core i3 (#23711)

commit 59548410b8e76c5a2f18565c9f37338e4f2a4be6
Author: Scott Lahteine <[email protected]>
Date:   Thu Feb 10 13:58:50 2022 -0600

    🧑‍💻 Wrap MMU1 pins

commit 65c4f14a9e943451ae7379de9c40decd143caae9
Author: espr14 <[email protected]>
Date:   Thu Feb 10 20:28:38 2022 +0100

    🩹 Simplify quick homing feedrate (#23714)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 3e18cf2b6ac354ec679f028d3b3616e4cc51e72c
Author: MOHAMMAD RASIM <[email protected]>
Date:   Wed Feb 9 21:29:34 2022 +0300

    🚸 Fix, Improve Power-Loss Recovery (#22828)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 11071c747272d3546ee02e16c1a2a2ffe4893f61
Author: ellensp <[email protected]>
Date:   Thu Feb 10 05:46:53 2022 +1300

    🚸 Restore active tool after ABL G29 (#23692)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 38484c6eb6b0f1c8a49f46efaef707165dc539f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 8 18:02:28 2022 -0600

    🧑‍💻 Drop hostui.flag

commit b964d2fff00a138d59d46cf3213956067df930b3
Author: Taylor Talkington <[email protected]>
Date:   Tue Feb 8 18:36:06 2022 -0500

    ✨ Optional HOST_STATUS_NOTIFICATIONS (#22833)

commit 973366e6aafd2eca76105c4948c310e750e65cc2
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 8 17:03:38 2022 -0600

    🔧 Update MIXING_EXTRUDER sanity checks

    Fixing #23693

commit e255e4a69fa07c194b44e242cd3d20e2dacffa9b
Author: InsanityAutomation <[email protected]>
Date:   Mon Feb 7 17:24:18 2022 -0500

    PLR accessors for Ext UI (#23687)

commit 942f08852241a4584e82581967d6d01b375a5474
Author: InsanityAutomation <[email protected]>
Date:   Mon Feb 7 17:22:18 2022 -0500

    🩹 Fix Maple HAL compile errors (#23685)

commit c4341a4e351978a228272e583dd72f999eca643c
Author: ellensp <[email protected]>
Date:   Tue Feb 8 09:49:26 2022 +1300

    🚨 Cleaner errors for renamed envs (#23690)

commit 6e23ffd12c459908a5c9f8f02c02cd4841cf691f
Author: InsanityAutomation <[email protected]>
Date:   Mon Feb 7 15:40:14 2022 -0500

    🧑‍💻 Generic Maple STM32F103RC envs for devs (#23686)

commit 58239c65cbe0563d8f3a223b3ca2091dbbd1ee14
Author: Bob Kuhn <[email protected]>
Date:   Sun Feb 6 08:35:18 2022 -0600

    🐛 Fix init of delta safe height (for G29, G33, etc.) (#23622)

commit 82ae3646cb709537574869e469c242b406087827
Author: ellensp <[email protected]>
Date:   Sun Feb 6 05:52:18 2022 +1300

    🐛 Fix missing u8g_esp32_spi (#23562)

commit 8799837d75744c697f7dee994b327632c27cbfe4
Author: GHGiampy <[email protected]>
Date:   Sat Feb 5 17:23:44 2022 +0100

    🔨 Clean up upload.py (#23679)

commit cdcf31453b605fb133f10ddd1d1f952fc5a594c4
Author: John Lagonikas <[email protected]>
Date:   Sat Feb 5 03:10:59 2022 +0200

    🐛 Fix dual MAX31865 initialization issues (#23496)

commit a23ecf0d2f96d9c7547b8c545fb39e9396d271dd
Author: Bob Kuhn <[email protected]>
Date:   Fri Feb 4 19:00:35 2022 -0600

    🩹 Prevent Z error with UBL + Park unscaled E move (#23568)

commit f5046a41cd306cf107f8b7bc61bedb81f22ace78
Author: ellensp <[email protected]>
Date:   Sat Feb 5 13:51:00 2022 +1300

    🚨 Deprecate Maple build (#23661)

    Update Warnings.cpp

commit 0d07c49c1d91483c59294fce2e58577a4bf23bb9
Author: GHGiampy <[email protected]>
Date:   Sat Feb 5 01:44:21 2022 +0100

    🩹 Init brightness/contrast later (#23645)

commit f193729f546600eae327c688e1da46b1cc105586
Author: Stephen Hawes <[email protected]>
Date:   Fri Feb 4 19:42:15 2022 -0500

    🐛 Fix Index Mobo Rev03 upload (#23676)

commit 22db62d95a81ce67ea6157a3eb1957045de2b63a
Author: Kelroy <[email protected]>
Date:   Sat Feb 5 01:40:35 2022 +0100

    ✨ SAMD51 Bricolemon / Bricolemon Lite boards (#23658)

commit 50ffacfb90a672b6915ea407fce921c72be72a02
Author: Bruno Henrique de Paula <[email protected]>
Date:   Fri Feb 4 18:57:43 2022 -0300

    📌 Distinct BOARD_CREALITY_V422 (#23674)

commit 21935b41f076eb04bd851f35b31657e79db6584c
Author: Bones <[email protected]>
Date:   Fri Feb 4 14:52:57 2022 -0700

    ✨ Add ZRIB v53, patch G35 Z drop, related issues (#23636)

commit 15eabba11d3f0cc3c772e865719802d779a1f21e
Author: Scott Lahteine <[email protected]>
Date:   Fri Feb 4 15:49:39 2022 -0600

    🧑‍💻 Relocate a variant

commit b2d0f2fd8c1b5eea4be90163b71895651b93d851
Author: Bob Kuhn <[email protected]>
Date:   Fri Feb 4 13:34:48 2022 -0600

    🐛 Fix RUMBA + MKS Mini12864 Neopixel pin (#23646)

commit a07d7e4b8ab0cdc19ea6f88cc1fc8be4e8294fd7
Author: Mike La Spina <[email protected]>
Date:   Fri Feb 4 13:33:52 2022 -0600

    🍻 STM32 set_pwm_duty "on/off" for digital pins (#23665)

commit d4801461f504f1a2a68393b57d492b9bb9ac1ff5
Author: Scott Lahteine <[email protected]>
Date:   Fri Feb 4 12:39:30 2022 -0600

    💡 Comment variant timers

commit f42c1b4cae9549cdc260543aa17f220ee2dbaa53
Author: Mike La Spina <[email protected]>
Date:   Fri Feb 4 10:45:34 2022 -0600

    🔧 Sanity-check AVR D9 Fan PWM / SPEAKER Timer2 (#23672)

commit f8571fc18fc7a846e321581979a093d135c71999
Author: ellensp <[email protected]>
Date:   Sat Feb 5 05:24:38 2022 +1300

    🐛 Creality v4 cleanup, pin correction (#23666)

commit fbbf556e0886d8b2d69bf5b64540b123d37f4894
Author: Scott Lahteine <[email protected]>
Date:   Mon Feb 21 20:50:09 2022 -0600

    🔨 Workspace file with recommendation

commit 1cdaddaaf20fa359f4513e13baf08e4df0271fd9
Author: Scott Lahteine <[email protected]>
Date:   Tue Feb 1 17:28:29 2022 -0600

    🔧 Board temp sensor check

commit 4d8976bf6bbf8cd3f8ab25f48cfa163265da4469
Author: ellensp <[email protected]>
Date:   Mon Jan 31 00:34:03 2022 +1300

    🐛 Fix FYSETC S6, S6 V2 Serial RX pins (#23642)

commit c02bc3887aa23dfeb933a47c38bcf8ddfd6fe40c
Author: Mike La Spina <[email protected]>
Date:   Sun Jan 30 05:31:56 2022 -0600

    🐛 Fix AVR 644/1284 Timer / PWM conflicts (#23629)

commit 68dfc5056492f70c24b780564622d178346e240d
Author: Scott Lahteine <[email protected]>
Date:   Thu Jan 27 07:05:26 2022 -0600

    🧑‍💻 Simplify Fast PWM timer macros

commit c7b0626b02fba7ac37a918e6cc2b2f86556fd1e1
Author: Mike La Spina <[email protected]>
Date:   Wed Jan 26 14:01:22 2022 -0600

    🐛 Fix SPI DMA and default mode (#23627)

    Followup to #23464

commit 30d1f0ba81ffdb477fab7370584238e69f88cc8f
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 26 13:40:29 2022 -0600

    📝 Update Creality 4.2.2 driver warning

commit 758dc7af9d340dd5ece4c98374e60a213567a4ec
Author: Keith Bennett <[email protected]>
Date:   Wed Jan 26 10:33:10 2022 -0800

    🚸 Better "Bed Tramming Done" dialog (#23616)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 361dab93b387d3b1b5b62da016da0614d457db3d
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 25 18:33:30 2022 -0600

    ✨ BOARD_CREALITY_V24S1_301 (#23620)

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit f0f1d33980acef6ab2e202d7c4922453e6ad46dc
Author: ellensp <[email protected]>
Date:   Wed Jan 26 13:08:15 2022 +1300

    ✅ FYSETC TFT81050 CI Test (#23604)

commit 38e0e92e9d798fa8bb373e7b876b5f08b07fac0f
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 25 17:19:20 2022 -0600

    ✏️ Fix MKS enum

commit 2dcc3ddeedcbebf1bbd1b1cfc4bd8be17f14d020
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 25 15:33:03 2022 -0600

    🧑‍💻 HAS_MARLINUI_MENU, HAS_MANUAL_MOVE_MENU

commit 33c89547f041843c3bb8e247654ed861825b5f4a
Author: Timofey Titovets <[email protected]>
Date:   Tue Jan 25 12:36:09 2022 +0300

    ⚡️ Tuned Thermistor 66 (T-D500) (#23585)

commit a4ea8bc1e121301fe4dfaf304ae482709fae1754
Author: Lars <[email protected]>
Date:   Tue Jan 25 10:30:45 2022 +0100

    🐛 Fix DGUS_Reloaded G-code execution (#23592)

commit 9f06079549ffad265579e6933bb81491fc179892
Author: Keith Bennett <[email protected]>
Date:   Tue Jan 25 01:25:19 2022 -0800

    🐛 Fix Creality DWIN LCD with SKR Mini E3 V3 (#23593)

commit 2f48c30445281266adf19bc00232db66f885f516
Author: DejitaruJin <[email protected]>
Date:   Tue Jan 25 03:52:23 2022 -0500

    🩹 Fix DWIN float debugging (#23601)

commit 50906876824881a807917310e05f77b9d6f9b04b
Author: Keith Bennett <[email protected]>
Date:   Tue Jan 25 00:09:53 2022 -0800

    🔨 Creality RCT6 (256K) variants (#23599)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 2d032b734c7a2e92af597e44dcf111b551d4f6a6
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 22 10:19:26 2022 -0600

    🧑‍💻 Fix up some AUX / EXP pins (#23577)

commit 2142456a255d66aa8bda782d9950c024039e21f5
Author: Mike La Spina <[email protected]>
Date:   Sat Jan 22 10:16:41 2022 -0600

    🐛 Fix LCD contrast/brightness init (#23567)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99f3b8b4a8238bf11ae6ee70c58e3e053abfcffc
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 22 10:14:47 2022 -0600

    ♻️ Adjust LCD init, contrast default, settings load

commit de0bc19230a0d253fd6d6f4a945a465abf67ab70
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 10 15:20:13 2022 -0800

    🚸 TH3D EZBoard V2 TMC slave addresses (#23857)

commit 17099e797334abeb0cd92156e32af1e9e5d671ee
Author: John Lagonikas <[email protected]>
Date:   Thu Jan 20 13:58:36 2022 +0200

    🩹 Fix power.h compile (#23573)

commit 63f3e347d999767f98810955621847a989f642ac
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 19 18:33:19 2022 -0600

    🩹 BOARD_INIT followup

commit 32ff8c1489e658c2c29c8664ccee04d988c9f4ca
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 19 05:12:03 2022 -0600

    🧑‍💻 Add chmod to mfprep

commit 369ba99fdb95887371e3fcac3e88b8fb6e980b81
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 19 05:11:06 2022 -0600

    🩹 Fix Robin Nano BOARD_INIT

commit f33ec4aacfff4af61879d8cd2de66e03706e1b84
Author: Scott Lahteine <[email protected]>
Date:   Mon Feb 15 04:10:17 2021 -0600

    📝 Tweak G26 Q description

commit 1d0ca179b54efed64e6951fc93e974ee92df9a9e
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 19 03:27:10 2022 -0600

    🎨 LCD_SCREEN_ROT_* => LCD_SCREEN_ROTATE

commit 8ea172cafeed9d39afe5dbdda3aec6e876d9b513
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 19 02:20:32 2022 -0600

    🎨 Misc. style and cleanup

commit 7b4f5108ace3e4a8891613465e86602f0b2ce5c1
Author: John Lagonikas <[email protected]>
Date:   Wed Jan 19 10:13:47 2022 +0200

    🐛 Fix conditional M81 suicide (#23549)

commit 6f82d1befbb8061fab4730b4d0adf7a745257959
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 18 03:18:37 2022 -0600

    📌 RAMPS AUX 1-2 headers (#23544)

commit 5d5be55ef9fd9607d5c02380890472df99039cf0
Author: Fahad Alduraibi <[email protected]>
Date:   Tue Jan 18 12:16:39 2022 +0300

    🐛 Fix RAMPS 1.4 Plus EXP headers (#23523)

commit e704de9bb05ac57011ac80700f7bd97c9d45eaff
Author: GHGiampy <[email protected]>
Date:   Tue Jan 18 07:56:11 2022 +0100

    ✨ Long filename open/create/write (#23526)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 8695f462b757eb0762d9b108f2329ebc9f7e1678
Author: A. Herlas <[email protected]>
Date:   Sun Jan 16 06:08:31 2022 +0100

    ✨ Z Offset Wizard for TFT_LVGL_UI (English) (#23489)

commit d8c5e49281ccb20ca1d4c77342cbed1594b51831
Author: Ave6683 <[email protected]>
Date:   Mon Dec 27 22:28:27 2021 +0100

    ✨ MagLev V4 probe by MDD (#23192)

commit 4e72df9a28aeddd3a4e51fc031b602eda2bd0a4b
Author: Salvatore Bramante <[email protected]>
Date:   Tue Jan 18 10:09:06 2022 +0100

    🐛 Fix Octopus v1.x probe pin (#23548)

commit ac6c1a9e1266ff1b66715785d989e78f4133547b
Author: Scott Lahteine <[email protected]>
Date:   Tue Jan 18 03:01:09 2022 -0600

    💥 Generalize extra debugging

commit 3f4112aee41dccc32cd781a8b4cfeb7d0e5a1400
Author: Taylor Talkington <[email protected]>
Date:   Mon Jan 17 08:07:45 2022 -0500

    💄 Improve Ender3 v2 DWIN MarlinUI (#23369)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 31ec8f2449e28caaa064d0bf4885f26e45508c02
Author: Keith Bennett <[email protected]>
Date:   Tue Jan 18 00:30:52 2022 -0800

    🔨 Suppressible CONFIGURATION_EMBEDDING warning (#23545)

commit d18558bbd31f963014b759aee5a59b001b74365c
Author: John Lagonikas <[email protected]>
Date:   Mon Jan 17 14:56:25 2022 +0200

    🚸 Suppressible pin warnings (#23530)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 70f03ad852ae0453afdd532e96775aecf51c6319
Author: zerkix <[email protected]>
Date:   Mon Jan 17 07:05:31 2022 +0100

    🐛 Finish and organize temp sensors (#23519)

    Co-authored-by: Scott Lahteine <[email protected]>

commit ab40c998931a8c0b5c0693c2a828bc239c70adb2
Author: Anson Liu <[email protected]>
Date:   Mon Jan 17 00:39:09 2022 -0500

    🐛 Fix Ultimain 2 E-autofan pin mapping (#23466)

commit 420f0749150a2cc280239a2ad2335a0f6d6b3560
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Jan 17 00:36:03 2022 -0500

    🐛 Fix PLR for E3V2 Enhanced UI (#23543)

commit 4f2ed6732446f28cbab31c3b6e02cd7d550a271c
Author: Taylor Talkington <[email protected]>
Date:   Mon Jan 17 00:34:50 2022 -0500

    💄 MarlinUI+DOGM leveled bed bitmaps (#23539)

commit a80cafbcfcad382a88db4e0d2ac8657cf3a62c39
Author: Sola <[email protected]>
Date:   Sun Jan 16 13:07:37 2022 +0800

    ⚡️ SPI+DMA+interrupt method (STM32 / MKS UI) (#23464)

commit 01cb7c19f9bc959a18190d6c8b9efc7a121246ce
Author: Mike La Spina <[email protected]>
Date:   Sat Jan 15 23:05:53 2022 -0600

    🐛 Fix, improve PWM on AVR (#23520)

commit 44249b1380e8d0393c366b75d7b18b45318c6b94
Author: Scott Lahteine <[email protected]>
Date:   Fri Jan 14 06:16:14 2022 -0600

    🔧 Skip unused axis names

commit d7287e7db838d9027c86118a5089dd47591b2795
Author: George Fu <[email protected]>
Date:   Fri Jan 14 18:10:35 2022 +0800

    🔨 Set upload_command for CHEETAH v20 (#23515)

commit cf654bbba218c747d34a559b6555462bf65c46cb
Author: Scott Lahteine <[email protected]>
Date:   Fri Jan 14 03:43:14 2022 -0600

    🩹 Followup to extra axes

commit 5617edbb968650762dd02425856e2891bafefd80
Author: Scott Lahteine <[email protected]>
Date:   Fri Jan 14 03:14:13 2022 -0600

    🧑‍💻 Misc. updates for extra axes (#23521)

commit 39e4310c7bc108444fbcbaa09386b63c9910ab30
Author: Mike La Spina <[email protected]>
Date:   Wed Jan 12 17:28:53 2022 -0600

    🐛 Fix, improve PWM on AVR (#23463)

commit 0204547c090767beb6eaa470c8f98e7b0a5aede8
Author: Lefteris Garyfalakis <[email protected]>
Date:   Wed Jan 12 18:22:00 2022 +0200

    🚸 Fix E3V2 Enhanced UI time labels (#23502)

commit 7b79d53de0c416d6a4b8817dd35d6b945dbd1ab7
Author: Scott Lahteine <[email protected]>
Date:   Mon Jan 10 20:29:09 2022 -0600

    🎨 Misc. spindle/laser adjustments

commit c478ed08c886475735b7fc11769e4c504306dbb2
Author: Scott Lahteine <[email protected]>
Date:   Mon Jan 10 19:49:54 2022 -0600

    🧑‍💻 Adjust FastIO AVR timer enums, macros

commit 67e5298a340d927115f983ce10aa16624302d91c
Author: GHGiampy <[email protected]>
Date:   Sun Jan 9 08:14:03 2022 +0100

    ✨ Firmware Upload via Binary Transfer (#23462)

commit 2ca1d844d7d6b7309216b87eea740bd05d75c9ef
Author: John Lagonikas <[email protected]>
Date:   Sun Jan 2 02:18:07 2022 +0200

    ✨ Temperature variance monitor (#23373)

commit b435487da7656e8fecf7add9f88f6be779389b04
Author: mistic100 <[email protected]>
Date:   Sat Jan 8 10:51:21 2022 +0100

    🚸 Wait for cooldown in MarlinUI power-off (#23476)

commit d7b7b570c77d2725877124661167224dcf72be5d
Author: Scott Lahteine <[email protected]>
Date:   Thu Jan 6 05:07:47 2022 -0600

    🎨 Misc. cleanup, comments

commit 2690bb1bc29df31a297976be29922147b76d69d3
Author: John Lagonikas <[email protected]>
Date:   Mon Jan 3 18:11:39 2022 +0200

    ✨ M81 D / S - Power-off Delay (#23396, #23455)

commit b6c37960e8840c5d777cfc683d34bd1e206ae03a
Author: Scott Lahteine <[email protected]>
Date:   Mon Jan 10 19:49:03 2022 -0600

    📝 KHz => kHz (#23512)
RaphDaMan added a commit to RaphDaMan/Marlin that referenced this pull request Jun 1, 2023
commit 733ca940c0ed582fcd0e0a39b10b1fe8986b574c
Author: tombrazier <[email protected]>
Date:   Sat Jul 23 05:32:28 2022 +0100

    🐛 Fix 2d mesh print (#24536)

commit c880c7ed45540a375a8fb82d7c343d21a1c9060b
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 02:56:55 2022 -0500

    🔨 Fix and update Makefile

    Followup to 89fe5f6d

commit e5e4cf920d406c45a66d00cd379fee08f4da0985
Author: Keith Bennett <[email protected]>
Date:   Wed Jul 13 23:31:47 2022 -0700

    📌 Pin ESP32SSDP to 1.1.1 (#24489)

commit 3315f6faa4fed3fde158013c8575d6bc6b813f3d
Author: Victor Oliveira <[email protected]>
Date:   Thu Jul 14 03:30:00 2022 -0300

    ✨ Creality3D v4.2.5 / CR200B (#24491)

commit 4a6ad1c98bde764255511c5bce58740b6e5cfb13
Author: GHGiampy <[email protected]>
Date:   Thu Jul 14 07:03:27 2022 +0200

    🩹 Fix ProUI LED compile (#24473)

commit 3c9789fda810cb6cebfb835379780b27e1dbe6f5
Author: Miguel Risco-Castillo <[email protected]>
Date:   Thu Jul 14 00:00:33 2022 -0500

    🚸 Fix and update ProUI (#24477)

commit 3a19d34c7515598180abbc3e24d8991f8e8a098a
Author: toomuchwonder <[email protected]>
Date:   Thu Jul 14 04:17:53 2022 +0100

    🩹 Fix MKS UI extruder speed (#24476)

commit 6b19a58f035862292a3ec52b4efc388b746d69ad
Author: Bob Kuhn <[email protected]>
Date:   Wed Jul 13 22:16:22 2022 -0500

    🔥 Drop STM L64** drivers, STEVAL_3DP001V1 (#24427)

commit 9283859b1ef82d7aa82bcb64a70d1b25b8e6d22c
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 13 21:22:53 2022 -0500

    🎨 ANY => EITHER

commit e840015cad0bbbf882e0b90cb8d722725c6e1dd2
Author: GHGiampy <[email protected]>
Date:   Thu Jul 14 03:25:35 2022 +0200

    🔨 Abort firmware update on transfer error (#24472, #24499)

commit efe04e10168a21f361a325a8c93840c2562042e0
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 12 13:25:36 2022 -0500

    🧑‍💻 Update Mac Sim directions

commit f543b3cb84e26c7594b9be2da1bcfc3c7c2b5a60
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 12 13:02:54 2022 -0500

    📌 Ask for PlatformIO 6.1.1 or newer (#24435)

commit 6a86c5bad32da03b71c5f0223904b44e129185f0
Author: Keith Bennett <[email protected]>
Date:   Mon Jul 11 11:33:42 2022 -0700

    ✨ MKS Monster8 V2 (#24483)

commit 7207a324341c3aaa8de8f103391576b274830c2d
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 10 22:00:10 2022 -0500

    🧑‍💻 Add Sim debug with lldb

commit 678474d55cd92d14bde24d00dbc9322919cfc1e1
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 8 13:30:03 2022 -0700

    🔧 Assert Probe Temp Comp requirements (#24468)

commit 24c211307d5a1d009d12c4d25d3828c05534f3e7
Author: Mike La Spina <[email protected]>
Date:   Fri Jul 8 15:02:12 2022 -0500

    🐛 Fix laser/fan sync (#24460)

    Followup to #22690, 307dfb15

commit 0c78a6f65791e1c2c3f4278ed2b48bcf20b9b063
Author: tombrazier <[email protected]>
Date:   Fri Jul 8 20:41:39 2022 +0100

    ⚡️ Optimize G2-G3 Arcs (#24366)

commit 79a332b57ea4a1ddb0e6b06d8dabae34268ed3bd
Author: Jason Smith <[email protected]>
Date:   Thu Jul 7 21:43:56 2022 -0700

    🩹 Fix LCD_BACKLIGHT_TIMEOUT compile (#24463)

commit d9ecbdcdbb8f5073987c848573d89cfb63719201
Author: Pauli Jokela <[email protected]>
Date:   Thu Jul 7 18:59:23 2022 +0300

    🩹 Fix safe homing sanity-check (#24462)

commit 527fe2496af924c47411c7aa3c3622b22d04b42e
Author: Farva42 <[email protected]>
Date:   Wed Jul 6 19:40:09 2022 -0600

    ✨ MAG_MOUNTED_PROBE (#24420)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 6c2ffe9d341f8f61bca8e19b07c3fc6a1d904375
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 6 19:34:45 2022 -0500

    🔥 Remove JyersUI (#24459)

commit 0fdedfa2fb46d665fbd5686bc58e7126ee82bd97
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 6 19:29:07 2022 -0500

    📝 Configurations 02010100 (#24458)

commit e93a1dd2fae37457894bf04b30e1c8ad5801b35c
Author: Meilleur Gars <[email protected]>
Date:   Wed Jul 6 13:46:11 2022 -0700

    🚸 JyersUI updates (#24451)

commit 03760fd79ea7f020f8739647f7a420bf4ec286b7
Author: Christophe Huriaux <[email protected]>
Date:   Wed Jul 6 22:43:38 2022 +0200

    🩹 Fix ST7565 LCD contrast init (#24457)

commit d3aed23e18bd9b165282ad83ef86422510af55c0
Author: Bob Kuhn <[email protected]>
Date:   Wed Jul 6 08:35:08 2022 -0500

    🐛 Fix Sensorless Probing compile (#24455)

commit 893707711e2a507aa48e41c3c59a267f9aea238f
Author: Eduard Sukharev <[email protected]>
Date:   Wed Jul 6 16:30:47 2022 +0300

    🐛 Fix MKS TinyBee compile (#24454)

commit d965303a7a1592e348853c1620cf54576652ace8
Author: Mike La Spina <[email protected]>
Date:   Wed Jul 6 07:46:39 2022 -0500

    ⚡️ Fix and improve Inline Laser Power (#22690)

commit 5b6c46db2910b3ec651793d8cb0c1d1b08a39384
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 22:31:06 2022 -0700

    ✨ BigTreeTech SKR SE BX V3.0 (#24449)

    SKR SE BX V3.0 removes the Reverse Driver Protection feature.

commit 8f40a2f257511370f587f15613b2308cabdb2ee0
Author: EvilGremlin <[email protected]>
Date:   Mon Jul 4 04:49:23 2022 +0300

    🔨 Fix OpenBLT encode; no-bootloader envs (#24446)

commit e4f85e8fbc57e4688b966fa29823c51ba5bb2588
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 3 10:32:47 2022 -0500

    ♻️ Encapsulate PID in class (#24389)

commit 678955949f980f2bfa942a1a8dc4542a20423bd1
Author: Victor Oliveira <[email protected]>
Date:   Sat Jul 2 21:31:27 2022 -0300

    🔨 Disable stack protector on macOS simulator (#24443)

commit 923d34550a828f483d73481242782715080ebc7e
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:56:13 2022 -0500

    🔨 PlatformIO "--target upload" == "--target exec"

commit ed643e634fbd98d21e22fdcdf615532cc9cf0def
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings/settings force-recompile

commit 3f4c8c31c6c9c3e1d6871ab6bca86818db5697f1
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 8 22:45:17 2022 -0500

    Fix SDIO for STM32

    Followup to #24271

commit 171ed66de0a69b9811a636219f51792c3d59bf63
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 09:08:43 2022 -0700

    🚸 MPCTEMP: Home before cooling (#24434)

commit 5f2e4487e75812d32ace4667bccb6efb6134bdb0
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 3 08:08:40 2022 -0700

    🩹 Fix MKS TinyBee ADC Vref (#24432)

commit 80c7abd7271fcadacff8cf74c34184987f22f07d
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 04:49:37 2022 -0500

    🩹 Remove poison wchar_t macro

commit 814b53750fbc03ffc2572252474aca2f4bf043eb
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 1 20:10:51 2022 -0500

    🩹 Remove obsolete split_move

commit 23e93c51fd3a080c59ba0f5321a73eab0058873e
Author: Moonglow <[email protected]>
Date:   Fri Jul 1 05:51:55 2022 +0300

    🐛 Fix M149 (#24430)

commit afbdcc8eee9f3f13b1e3fe196728554ac8efdad7
Author: tombrazier <[email protected]>
Date:   Fri Jul 1 03:07:36 2022 +0100

    🚸 Vertical Max7219::quantity in portrait orientation (#24415)

commit 4820947203808400240898a487e4fa023f4976e1
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 30 20:57:34 2022 -0500

    ✅ Update path to Ender-3 S1 configs

commit d44aef8b6b54d29446b796f78a868e4bffdef7db
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 20:16:16 2022 -0500

    📝 Index Mobo Rev03 => Opulo Lumen Rev3

commit c1c0496073b8c70728f237fb2a99fdae19c7bb4f
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 29 17:14:23 2022 -0500

    🩹 Fix memset block warning

commit a48831d600f9077c43c2c841fccdd76b154025e9
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 29 06:24:22 2022 -0700

    🐛 Fix Axis Homing (#24425)

    Followup to 4520a51

commit c076094fa9eac463abe47fcf2921ed6d690ba3ee
Author: John Lagonikas <[email protected]>
Date:   Wed Jun 29 01:53:05 2022 +0300

    🐛 Fix MAX31865 PT1000 normalization (#24407)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 57c137a60f8af6f777a2fc04fd4412844dd85c59
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:30:05 2022 -0500

    ♻️  reset_acceleration_rates => refresh_…

commit 05bdc5640d20412d852730d77e0e42a8e0b6e2b4
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:24:59 2022 -0500

    ♻️ Planner flags refactor

commit 83784bd8b7a53b21d828923e9f3dfd854b83610a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 22:32:00 2022 -0500

    📝  Note about UBL bad splits

commit 23f19e9ce8452cc21f4c5cf0a5a3a2784c7ac512
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 10:01:22 2022 -0500

    🎨  Misc. shorthand operators

commit 0435b2220a695f40aaba29a6965f7406d9a30db9
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 26 05:47:18 2022 -0500

    🐛 Fix Manual Move axis selection (#24404)

commit ab2fceda2c3b50ee1de99e3471197cb151f6d61b
Author: Shlee <[email protected]>
Date:   Sun Jun 26 06:56:57 2022 +0000

    📝 Add STM32F4 example, Ruby (#24399)

commit 88dc360e9d72a0f3461b7e1f2ddd2904df3e7abd
Author: Giuliano Zaro <[email protected]>
Date:   Sun Jun 26 08:52:19 2022 +0200

    🌐 Update Italian language (#24398)

commit f5bdb8b4d23b1b6f50c91b74620c0b97c9531b10
Author: Roman Moravčík <[email protected]>
Date:   Sun Jun 26 08:51:16 2022 +0200

    🌐 Update Slovak language (#24397)

commit 3e01e0898953d4f00044904de324cb594c8c0541
Author: sgparry <[email protected]>
Date:   Sun Jun 26 07:49:57 2022 +0100

    🩹 Fix LCD contrast with K8800 board

commit 4694a7fe7468b19600354d07115d5eaba6f6406a
Author: tombrazier <[email protected]>
Date:   Sun Jun 26 06:38:23 2022 +0100

    ✨ MAX7219 idle profiler (#24375)

commit 537af0bb035ec4d669a78187dc85cf598cdb2330
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 24 22:07:06 2022 -0500

    🌐 Drop unused delta strings

commit 0dc59311ec3ccbeb0643a3384adec7bb24496d18
Author: InsanityAutomation <[email protected]>
Date:   Tue Jun 21 22:09:24 2022 -0400

    🐛 Resolve DUE Servo pulse issue (#24305)

    Co-authored-by: sjasonsmith <[email protected]>
    Co-authored-by: Scott Lahteine <[email protected]>

commit 0523874e9c121d629c06f9f0022dd6f85d442ae0
Author: tombrazier <[email protected]>
Date:   Sat Jun 18 05:17:12 2022 +0100

    🐛 Fix G2/G3 Arcs stutter / JD speed (#24362)

commit 106537ff432f8b2ad1c6aa0842af1b8a6236fea7
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 24 01:08:06 2022 -0500

    ✏️ 9-axis followup (sanity-check)

commit ad96c36730675989cff969acaac9b679e9e92792
Author: Bob Kuhn <[email protected]>
Date:   Thu Jun 23 23:58:26 2022 -0500

    🐛 Fix Lerdge build / encrypt (#24391)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a3629a7c28b216c4a789c2f6fa59e7828158ebc3
Author: Victor Oliveira <[email protected]>
Date:   Thu Jun 23 06:18:36 2022 -0300

    ✨ Classic UI BIQU BX (#24387)

commit b7e1b6b8933f3a10a5bf1ec76ca7797aa5af54b4
Author: ellensp <[email protected]>
Date:   Wed Jun 22 22:08:24 2022 +1200

    🩹 Fix DGUS (MKS) compile (#24378)

commit 253e35e066db5b3fd6cbcdab3ec6f93123ac81cd
Author: Victor Oliveira <[email protected]>
Date:   Wed Jun 22 05:33:03 2022 -0300

    🚑️ Fix BIQU BX touch freeze (#24383)

commit 831e1b5ecfc17482b2e324abd32b427121ef7d00
Author: ellensp <[email protected]>
Date:   Wed Jun 22 16:13:18 2022 +1200

    🐛 Fix M423 invocation (#24360)

    Followup to #23745

commit c89ca2deb890d3e9b7c37e34935b6fccf559d470
Author: tombrazier <[email protected]>
Date:   Wed Jun 22 03:45:22 2022 +0100

    🩹 LCD strings followup, fix warning (#24328)

commit 85e94038aa34c82910384083ab8cea2dd984e351
Author: DerAndere <[email protected]>
Date:   Wed Jun 22 04:07:17 2022 +0200

    ✨ FOAMCUTTER_XYUV (for RAMPS) (#24325)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7c85f250421058f7fed8d29be4a6b0f15e7ca922
Author: ellensp <[email protected]>
Date:   Wed Jun 22 10:33:25 2022 +1200

    🚑️ Fix SD mount bug (#24319)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eca5e46d17322c0c45e1bea90238edf180cd4cca
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:19:41 2022 -0500

    🎨 Simplify move menus with substitution

commit 78b42ed387d4eeb706df2f9eb717443a872a7eff
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:19:00 2022 -0500

    🎨 Use MAP for home axis items

commit 95339c9561a701ede6b159dfc91edd0afd169e63
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:17:29 2022 -0500

    🧑‍💻 Fix STATIC_ITEM_N arg order

commit da6c16a9cdea1589ac02c382f3d790da90d7b922
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:15:57 2022 -0500

    🎨 Fix comments, formatting

commit cc27cfb66007b3d575f7532f7ac1e4ae5f4fde53
Author: ellensp <[email protected]>
Date:   Wed Jun 15 20:02:32 2022 +1200

    👷 CI test without src filter (emulate Arduino) (#24335)

commit 25c0593c9b762bfd4aa6ff26a5cfc27d71188ac8
Author: Keith Bennett <[email protected]>
Date:   Mon Jun 13 19:04:49 2022 -0700

    👷 Use Biqu BX for CI test (#24331)

commit 5fff7bbef4057ec0714bbc5137b892f3ab9e2612
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 19:06:03 2022 -0500

    👔 Fix and comment use_example_configs

commit 3fd592e64b81238947282bafaae796a8599a277a
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 5 20:25:58 2022 -0500

    👔 Update Marlin actions for 2.1.x

commit c34dd64469fec8bcf712311296e0431815c894bd
Author: John Robertson <[email protected]>
Date:   Sat Jun 4 07:26:08 2022 +0100

    ⚡️ PWM for ESP32 I2S expander (#24193)

commit 7677368aafd21f03f9aa214696638a9714199c59
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 23:50:20 2022 -0500

    🔖  Moving to bugfix-2.1.x

commit ece124fdeafe6aad7c17703037c66930baf63a2b
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 20 21:08:31 2022 -0500

    🩹 M919 9-axis update

commit 9aa499dbe9d20567d08e5d5a3ce3c5cce6b1a7a8
Author: luzpaz <[email protected]>
Date:   Sat Jun 18 00:19:01 2022 -0400

    🌐 Fix LCD string, typos (#24324)

commit 78a3ea0ed4c53f2a4363c5548a78fa1e43cba162
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 13 20:43:23 2022 -0500

    🧑‍💻 Apply F() to some LCD / TFT strings

    Followup to #24228

commit c605c1ebb5f39cccb488946f1d04e8089e72da43
Author: ellensp <[email protected]>
Date:   Tue Jun 14 13:38:19 2022 +1200

    🩹 Fix missing ProUI cpp wrapper (#24313)

commit b2c4fb5f3a7dbe3d35f72d645e5a7fa961545e17
Author: ellensp <[email protected]>
Date:   Sat Jun 11 17:03:20 2022 +1200

    🐛 Fix JGAurora A5S A1 build (#24326)

commit 60cedf63f2bccd25c686d954e2d079040bf8ca80
Author: Steven Haigh <[email protected]>
Date:   Sat Jun 11 12:08:55 2022 +1000

    🩹 Fix ProUI compile (#24310)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 1156557a4747864ce4c6c6f04d8ac80fee0cd9f8
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:47 2022 -0500

    🧑‍💻 Misc. servo code cleanup

commit ea22640d78a11ae11d7caef894898532d5c5ffd8
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 9 00:51:08 2022 -0500

    🧑‍💻 Remove servo macros

commit d886320799693135a41ebd27e366e92254ef6b06
Author: lujios <[email protected]>
Date:   Tue Jun 7 02:22:17 2022 +0200

    🩹 Fix G33 Delta Sensorless Probing compile (#24291)

commit a65189c637e9fd7ee6285d1d51a13bc0e1d0773d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 19:06:03 2022 -0500

    👔 Fix and comment use_example_configs

commit dfc8acf376cda37c0b652f04a1cc44832b3c775d
Author: tombrazier <[email protected]>
Date:   Tue Jun 7 01:23:55 2022 +0100

    🩹 Fix Mesh Leveling + Debug compile (#24297)

commit 48d03ca0a9bc89a9f35b306a526a18308f040802
Author: ellensp <[email protected]>
Date:   Tue Jun 7 18:59:21 2022 +1200

    🩹 Media Change followup (#24302)

    Followup to #24015

commit 85e8d1f9fa7340e34587ffb83ac02790c7f68a22
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Jun 6 00:01:06 2022 -0500

    🚸 ProUI G-code preview, PID plot (#24282)

commit 679f4608ab94743c9478eb3e2035c097d6729b91
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 6 23:38:06 2022 -0500

    👔 Update mfconfig import

commit 5c225ba88720e3dd6cd26cd6989dbb26f9e52be8
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 18:44:57 2022 -0500

    🔖 Marlin 2.1

commit 268511933287d618807ce441c1eb484e090da5a9
Author: ellensp <[email protected]>
Date:   Wed Jun 1 05:21:59 2022 +1200

    🩹 Fix EXTRUDERS 0 manual move compile (#24255)

commit fc350701b2a5436c4a18650844d4270dc9337cba
Author: tombrazier <[email protected]>
Date:   Tue May 31 18:01:59 2022 +0100

    💥 More M306 M => M306 H (#24258)

    Followup to #24253

commit 0ad695d45ac9334f0502b391f7a3f4122a3b55cd
Author: Miguel Risco-Castillo <[email protected]>
Date:   Sat May 28 17:34:36 2022 -0500

    🚸 Fix, improve, update ProUI (#24251)

commit f1802bc7febd26fca1594c0b5aa54cbf5fc19b1f
Author: elimisback <[email protected]>
Date:   Sat May 28 16:22:59 2022 -0400

    🔨 BTT STM32G0B1RE xfer build (#24245)

commit d6c673b9de287f4102d3efdfe09a31662361aa6e
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:31:05 2022 -0500

    ♻️ More updates for multi-axis

commit 6a2a592c26c000aa656bdd10ee5dfe9fdc5330fd
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 21:59:36 2022 -0500

    🧑‍💻 Combined axis strings

commit c4ac695c15028b856bf3979c22f73bef9901dc90
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 17:45:07 2022 -0500

    🧑‍💻 Forward-compatible axis strings (167672d, #24259)

commit 8465818754884c6aeed668a6f9eed31196aa00ba
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 14:32:16 2022 -0700

    🎨 Fix/adjust warnings (#24225)

commit 3c482a9ba11e3fc86f55da1073ce41d6b8023e53
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:08:29 2022 -0500

    🧑‍💻 MAP macro for axis lists, etc. (#24191)

commit ecfe7b640096c8c9c2bc6bfe675570b46fa499e3
Author: DerAndere <[email protected]>
Date:   Mon Apr 18 06:03:39 2022 +0200

    🩹 Fix some parameters w/out values (#24051)

commit 85599abba7a0fb7c1700e3be2279120d5c02d673
Author: DerAndere <[email protected]>
Date:   Mon Apr 4 04:43:42 2022 +0200

    🚸 Better M350, M114 with more axes (#23986)

commit 494a2fc80c19c4a82abeb7eb39ff3c9f508c6286
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 17:49:54 2022 -0600

    🚨 Fix some compiler warnings

commit f7bea2846f65e9cc332a85eaa590cbcbfc448ea5
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:13:11 2022 -0500

    🏗️ Axis name arrays

    Co-Authored-By: DerAndere <[email protected]>

commit d56731cd0796639b4847868607dda65885c21ed0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 20:52:27 2022 -0500

    🏗️ Extend AXIS_CHAR to include E

    Co-Authored-By: DerAndere <[email protected]>

commit 0041de1a8a1176bbdfccd19b81faecc049c43c0c
Author: DerAndere <[email protected]>
Date:   Tue Apr 19 05:15:15 2022 +0200

    💥 Update Motor Current G-codes for extra axes (#23975)

commit d58497bc8ee72ee44891a3f6f9c1735ca6b43e9e
Author: ellensp <[email protected]>
Date:   Sat Apr 23 21:16:15 2022 +1200

    🐛 Fix BACKLASH_COMPENSATION compile (#24072)

    Followup to #23826

commit fd13a928c1a1692dc695a1f5edfe4b70d076121d
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    ✨ Support for up to 9 axes (#23112, #24036, #24231)

commit 369542db3bb34c28196a77838a2f018180a7da74
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:23:43 2022 -0500

    🔖 Marlin 2.0.9.4

commit 40d96c3460117eeab1742d74c2d78b57b4a9a1b6
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 5 20:26:40 2022 -0500

    👔 Remove actions from misc. branch

commit d7a71beaf4f08e60c3d13049f1046bbb663c643d
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 18:16:43 2022 -0500

    🔧 LEVEL_BED_CORNERS => LCD_BED_TRAMMING

commit f3b593ae73b5d21b5c270a5f5ede0fe982822b07
Author: Scott Lahteine <[email protected]>
Date:   Tue May 31 12:43:44 2022 -0500

    🎨 Fix spelling, whitespace

commit 1d8d8dccf45d2090e075b148d4f08e299184392c
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 29 15:21:15 2022 -0500

    💥 Num Axes / Multi-Stepper based on Driver Types (#24106, #24120)

commit 1e127a93c4c1446cf11aacecc9597a7355262ac8
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 4 00:15:23 2022 -0500

    🧑‍💻 Extend LCD string substitution (#24278)

commit fcef8d946cbd45e27ba9888f1e18327b68d52b00
Author: lujios <[email protected]>
Date:   Fri Jun 3 07:19:25 2022 +0200

    ⚡️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

    Co-Authored-By: Robby Candra <[email protected]>
    Co-Authored-By: ellensp <[email protected]>

commit 0253500ccd5a7192f3e545cb5552c4ab7b309c5d
Author: Tanguy Pruvot <[email protected]>
Date:   Wed May 25 08:07:11 2022 +0200

    Use default null args in select_screen

commit 0d783a76907ace17f0d61ebe8882ebee9bc6ce3b
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:22:09 2022 +1200

    🐛 Init Stepper SPI before PSU Control (#24269)

commit e784e0413204680f3c8f3a8cdf519fb5bee7a164
Author: BIGTREETECH <[email protected]>
Date:   Thu Jun 2 17:02:06 2022 +0800

    ✨ BigTreeTech SKR3 - STM32H743 (#24271, #24272, #24275)

    Co-Authored-By: Alan.Ma <[email protected]>

commit 11d68e31274fccd20c8bb72eec0b4ad547962823
Author: bryan065 <[email protected]>
Date:   Thu Jun 2 04:51:39 2022 -0400

    🚸 Custom Menu Items for JyersUI (#24270)

commit 8b8b2a7ed35908b6a49d5b3badb230d3283792bb
Author: ledzepman71 <[email protected]>
Date:   Thu Jun 2 02:49:48 2022 -0600

    📌 Tenlog PSU pin (#24266)

commit fc1a620b878b45675b9a7972be6c1fb2882b8092
Author: tombrazier <[email protected]>
Date:   Sat May 28 23:40:08 2022 +0100

    🚩 MPC update (#24253)

commit 9799907dc9a53810e87fd5b54e2194d30e70eff8
Author: Keith Bennett <[email protected]>
Date:   Tue May 31 14:28:01 2022 -0700

    👔 Configs required to submit a Bug Report (#24256)

commit 6fc4dbbbc4b3b1e6820f4f18b81602451bb1786c
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 17:05:09 2022 -0500

    🚸 Change M201 G to S

commit 74596ad4d7f9117e06829b5657d7402f27a445ce
Author: Robby Candra <[email protected]>
Date:   Mon May 23 09:13:17 2022 +0700

    🩹 Adjust manage_media for slow/late media init (USB FD) (#24015)

commit 28f8646aa64b8baf6f93197d04b0802580272e40
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 19:56:46 2022 -0500

    ♻️ Apply F() to more LCD code (#24228)

commit 9a74bcd4cf13efa2d7cfb365182d7e097eaa1f1d
Author: John Robertson <[email protected]>
Date:   Tue May 31 23:09:44 2022 +0100

    ✨ Laser Safety Timeout (#24189)

commit 07cd248b91a59db8e2bc7ad10bbf160852af34fb
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 20:45:37 2022 -0500

    ♻️ Move watchdog to MarlinHAL

commit 209c792ef7e97dc48bf3517c9f8f56e6be80e97f
Author: Scott Lahteine <[email protected]>
Date:   Fri May 20 11:27:09 2022 -0500

    🔧 Remove LCD_SERIAL_PORT defaults, warn on auto-assign (#24170)

commit dbd00d992705a07b3da769549495d6505cb96b43
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (#23992)

    Co-authored-by: borland1 <[email protected]>

commit 4ae54a6229d1704bfc54a85233af40b69e924246
Author: Ludy <[email protected]>
Date:   Mon Apr 18 11:43:34 2022 +0200

    🐛 Update German language, Fix FTDI (#24047, #24048, #24227)

commit ce0af56d0aa4371620b142ba5b2ed3b455813a5d
Author: tombrazier <[email protected]>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (#23984, #24018, #24049, #24059)

commit 6c557a248016f2e89e259d2d5ee8e000521099bb
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (#23983)

commit a6ce9bf559d963c3cdcb6db7f57a572bc58016ea
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (#24014)

commit 21c838cb1b86c3ffd5958c68d82f6c0c25e78dbe
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (#23751)

commit 3443a9e18bf2c9797037f141d68ab409d6b3c00b
Author: Pauli Jokela <[email protected]>
Date:   Thu May 12 05:23:16 2022 +0300

    ✨ SOUND_ON_DEFAULT option (#24102)

commit b2b5b85045e689d311e472d803817e08b49ccaec
Author: Robert Brenckman <[email protected]>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (#21142)

commit 2086cc9f4e21dfc060c1ff034856ad4e6219f5f8
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:37:40 2022 -0500

    📝 Refer to 'PROGMEM' as 'flash'

commit 8eccfd4a6f90da93a4f13b8aa7fbd88a1f8cca46
Author: Scott Lahteine <[email protected]>
Date:   Wed May 11 23:35:38 2022 -0500

    🔧 Bed/Chamber PID Autotune menus

    Derived from MarlinFirmware/Marlin#23983

commit 9ab654adcb15ba23b42ed1f13ca34130e422dbc2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 3 22:06:32 2022 -0500

    🐛 Fix min/max temp evaluation

    Fixes #24257

commit 0ae982188c23ddab4e3a2d819c679166a7e19532
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 23:19:18 2022 -0500

    🐛 Fix M203 report

commit bed0788f723a0695726eab52e8da0b48298c619f
Author: ellensp <[email protected]>
Date:   Thu Jun 2 21:28:07 2022 +1200

    🩹 Fix G60/G61 debug code (#24231)

commit deb1ba73bbdd3aacaeec6c7d9540c41e93ddfdfe
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 15:11:43 2022 -0500

    🎨 Use pos.set method

commit 57f0ac88af9e8c5eb398c8367edf471900a5171f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 28 14:41:50 2022 -0500

    🎨  Misc. boards/pins cleanup

commit 915bce495cdc5168c982274f6deabc92e052c2c7
Author: Simon Pilepich <[email protected]>
Date:   Sat May 28 08:08:24 2022 +1000

    📝 Fix Mightyboard MOSFET comments (#24183)

commit 800a936caae83f4e5ca5dd2c2660518bd6fc43b2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 26 18:18:41 2022 -0500

    🎨 Combine serial echos

commit ccf39b1c42fa787f645fbf0ac075cc47b72b18d3
Author: ellensp <[email protected]>
Date:   Fri May 27 12:02:42 2022 +1200

    🔨 Add src_filter for I2C_AMMETER (#24242)

commit d19179ce281cec58865fcbc99185abeb48a611b9
Author: Keith Bennett <[email protected]>
Date:   Thu May 26 16:07:10 2022 -0700

    ✏️ Fix some motherboard checks (#24238)

commit 4a6ae1b64df5fa8824e20688399683bf11b840e2
Author: ellensp <[email protected]>
Date:   Wed May 25 08:31:29 2022 +1200

    🎨 Remove MKS custom pins, TinyBee cleanup (#24186)

commit 0daaef589c956d152c846760dfc157fdd1b7975b
Author: ellensp <[email protected]>
Date:   Wed May 25 07:49:57 2022 +1200

    📌 Use MarlinSimUI/bugfix-2.0.x (#24232)

commit 4831cbebd80d6e2c6bcf504446cf6d0f2441c285
Author: Scott Lahteine <[email protected]>
Date:   Mon May 23 02:37:28 2022 -0500

    🎨 Add EXP1/2 headers, adjust TFT pins (#24230)

commit e0deb75764938995e32bc589d646ec397c4a3019
Author: tombrazier <[email protected]>
Date:   Thu May 19 22:15:15 2022 +0100

    🐛 Fix Leveling apply/unapply (#24188)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a0fe4f48956299cb298e6e48255ea72ba93dad79
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 15:31:51 2022 -0500

    🎨 Minor HAL cleanup

commit 4d65d7f142882bcd77072fc7dc5c01ca937a2e81
Author: Keith Bennett <[email protected]>
Date:   Sun May 22 19:32:28 2022 -0700

    📝 Add logo, helpful links to README (#24226)

commit 1b879f0ee4e5539c237edf235b6ca38b5b2beb43
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 18:42:25 2022 -0500

    🔨 Fix mfprep string test

commit b6abc760cef73a1dfc0e186f40687d0a45c8a769
Author: Scott Lahteine <[email protected]>
Date:   Sat May 14 01:45:14 2022 -0500

    🔨 Move, tweak maple envs

commit 0ae061713c631d44cd12ad266ca9c7fdd856d72c
Author: Keith Bennett <[email protected]>
Date:   Fri May 20 09:48:34 2022 -0700

    👔 Move GitHub templates, update README (#24199)

commit 1d12e72bf697f7e3cb63995a20ba9e98fbce3eb9
Author: Scott Lahteine <[email protected]>
Date:   Sun May 22 16:53:12 2022 -0500

    🐛 Fix SEGMENT_LEVELED_MOVES with UBL

commit c97cf10956ee33c80e557fb09e4cc75d30a0db82
Author: Scott Lahteine <[email protected]>
Date:   Sat May 21 19:29:59 2022 -0500

    🩹 Fix const warning

commit b72f9277e9e89a7dcdc12c8f11273f7c76a064d4
Author: Scott Lahteine <[email protected]>
Date:   Thu May 19 06:05:52 2022 -0500

    ♻️ Common Bed Leveling object name, accessors (#24214)

commit 06c4a9acdb3f08a2052ea55d00fa350e9249bcb4
Author: Keith Bennett <[email protected]>
Date:   Sat May 21 16:13:00 2022 -0700

    🐛 Fix FLSUN Hispeed FIL_RUNOUT_PIN, MKS Robin Mini TFT pins (#24204)

commit 8a301196e11d87d7e9db065d0d802910a664c5be
Author: Arthur Masson <[email protected]>
Date:   Sat May 21 21:45:30 2022 +0200

    🐛 Fix Polargraph G92 command (#24223)

commit 1e7219f4a643f8cbdbcd9685ebb5a76d02c89601
Author: Marcio T <[email protected]>
Date:   Thu May 19 09:45:48 2022 -0600

    🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

commit 02c267f542223ed0d8b098da4bec6f09710d6bc8
Author: ellensp <[email protected]>
Date:   Fri May 20 02:15:57 2022 +1200

    🔨 Require PIO >= 6.0.1 (#24205)

commit fe77fc66c0004ba9a4459dd5a12c978dd0308bb1
Author: Ivan Kravets <[email protected]>
Date:   Wed May 18 00:47:11 2022 +0300

    🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

commit 268a16b1ef1c5cd462e81aef08e4e9f7d2c65658
Author: Scott Lahteine <[email protected]>
Date:   Tue May 17 15:05:25 2022 -0500

    🚸 ProUI APRIL2022 updates (#24084)

commit 8351b1431f8bad178f2f8a3ec70b32a1d4d7ca2c
Author: ellensp <[email protected]>
Date:   Tue May 17 20:01:32 2022 +1200

    🩹 Fix MarlinUI allow-cold-extrude (#24176)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 718806761f1e9d903d61408e2039357bfe46fff8
Author: Oliver Jean Eifler <[email protected]>
Date:   Tue May 17 06:23:03 2022 +0200

    🩹 Suppress ZERO() warning (#24178)

commit 78c7fedcea34f0c630f8e9fd46bc5d3244de04c5
Author: Marcio T <[email protected]>
Date:   Mon May 16 20:45:47 2022 -0600

    🐛 Fix Due cli/sei (#24182)

    Followup to #23357

commit c4b8339b842958faae2567c339bcf9b44434a2ce
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 23:49:29 2022 -0500

    🎨 HAL_MinSerial.* => MinSerial.*

commit 94ed67e36ef84cb4ecd8f3f1470041d4d72f7088
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:50:42 2022 -0700

    🩹 Run TMC test last in setup (#24160)

commit 03b819bdb235c6eb2cd0a02b832bb8f108cc5962
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri May 13 19:34:30 2022 -0500

    🚸 DWIN/DACAI for Creality 4.2.3 (#24132)

commit 2204f05dcaabf0e639f1e1722ffd293d4b415fe3
Author: Scott Lahteine <[email protected]>
Date:   Fri May 13 19:31:07 2022 -0500

    🧑‍💻 Clarify MSerialUSB, drop HardwareSerial workaround

commit a13cceaad16dd2caedbf3b05ae0854b1200cb51e
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:27:13 2022 -0700

    🚸 Improve MKS SGEN_L V2, Robin Nano V3 pins (#24147)

commit 5c25ed60c80d7b06cb91e91f98b1aca6bc648d79
Author: Dominic <[email protected]>
Date:   Sat May 14 02:18:04 2022 +0200

    🐛 Fix AIR_ASSIST (#24162)

commit 1c516bdd5e71fc3da05fb52da692c9c5ccb0c0d7
Author: Keith Bennett <[email protected]>
Date:   Fri May 13 17:17:19 2022 -0700

    🔧 Allow board & probe dummy thermistors (#24165)

commit 425684e2ffecf85dccab1eb4242772bc97992eb8
Author: grauerfuchs <[email protected]>
Date:   Fri May 13 20:08:50 2022 -0400

    🐛 Fix Mightyboard LED pin, fan override (#24168)

commit 63aecad7eef034d8cb2b3e81f8a22db8a148b90b
Author: Roxy-3D <[email protected]>
Date:   Fri May 13 17:29:50 2022 -0500

    🔨 BTT Octopus ST-Link programming/debugging

commit dcd769b4a18bd40f9664262d081d553994d8eb78
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 15:14:31 2022 -0500

    🎨 Nextion cleanup

commit f9b7f00d1e1c1004e0c2a9c35e23c1c67dc47172
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 19:10:14 2022 -0500

    🚚 Move speed_lookuptable.h

commit a6ff63d5060c0ef68c2ae9f6ccf3bcada2ec6b6e
Author: Keith Bennett <[email protected]>
Date:   Thu May 12 22:41:38 2022 -0700

    🎨 Clean up warnings / extra check (#24163)

commit 7d37ae2b2b1ea6613dbc8be0ec5fa30dbd6a87de
Author: ellensp <[email protected]>
Date:   Fri May 13 16:07:27 2022 +1200

    🔧 AVR/DUE Serial Port pin conflict checks (#24148)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7d40ec654a3eca783a19e93e7bb6f394f2e6d29
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:09:25 2022 -0500

    ✨ Add BOARD_CREALITY_V24S1_301F4

    Co-Authored-By: Miguel Risco-Castillo <[email protected]>

commit 7ed339cfa0a2d8298e0293cf465daaf4ac74c0f9
Author: InsanityAutomation <[email protected]>
Date:   Thu May 12 06:38:05 2022 -0400

    ✨ Creality CR-10 SmartPro (#24151)

    Co-authored-by: Scott Lahteine <[email protected]>

commit cb4ad020af2f56dc060ecafdfd58b0639a8f0199
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:13:59 2022 -0500

    🧑‍💻 Misc. LCD cleanup

commit 0805f9bf3f631d914bb6ff4817d65a9ab237fe6c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 20:23:32 2022 -0500

    🩹 Fix ProUI leveling start message

commit d235bc9e1c5eeb210275a4abcf89a757d0259cc0
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (#23989)

commit d5f472a6cf4456bf715ee3b3a85132f3fbe7e15f
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 00:07:22 2022 -0500

    🔨 Fix g++ locator for CI

commit d67fa98cf601a8ef2642641a8aefbcdab1d5bcc2
Author: Scott Lahteine <[email protected]>
Date:   Thu May 12 04:16:31 2022 -0500

    🩹 Fix accel dividend

commit d3fe0caa7f83b8e971e8503b5344e20811d6c812
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 18:50:14 2022 -0500

    🧑‍💻 Clarify acceleration factor

commit bd09f8acff3c40fe9294cfc6b6a9220ec5b766fc
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 17:35:32 2022 -0500

    📌 Define RAMPS_SMART EXP headers, AZSMZ_12864

    See #23501

commit a9aca5f5e8c5c1ce40e09ce5cf80a875ec009aa0
Author: Scott Lahteine <[email protected]>
Date:   Mon May 9 16:47:04 2022 -0500

    ✏️ Fix spurious UTF

commit 13d1eb7241b8621267520e57811f8069b2e466e9
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 23:51:38 2022 -0500

    🔨 OpenOCD Debug for VSCode

commit 238ab1dd061145a525edd27bb8203ae216380894
Author: Mike La Spina <[email protected]>
Date:   Mon May 9 17:18:47 2022 -0500

    🩹 Fix Fan Tail Speed Init (#24076)

    Co-authored-by: Scott Lahteine <[email protected]>

commit a7e4061d1221531340e9f82bc6f1560e5d6feab8
Author: Keith Bennett <[email protected]>
Date:   Sat May 7 19:58:57 2022 -0700

    🔧 Fix Neo RGB sanity check (#24146)

commit 31c87adba80d50a90ae3c85b08cd01c5545c78b4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:57:13 2022 +1200

    📌 Use ESP3DLib master branch (#24140)

commit 727e7e7fd71fb0404e0f5bf7f36dc10419d155c4
Author: ellensp <[email protected]>
Date:   Sun May 8 14:56:09 2022 +1200

    ✏️Fix Markforged endstops/G38 (#24141)

commit 975b90c0b7e6b836f67f3603c80f818dc095ffa5
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:18:56 2022 -0500

    🎨 Tweak NEOPIXEL_LED format (#24110)

commit 8f0180802ad327a0be47be9405a9a2764b5937db
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 11:47:08 2022 -0500

    🔧 Move LASER_COOLANT_FLOW_METER to LASER_FEATURE

commit aa4c9917552df8a383816a0af516b86e1237ff48
Author: Giuliano Zaro <[email protected]>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (#23964)

    Followup to #23944

commit 9ab1a57d729cfa207adfe3ee6d24d40de3bb159c
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 05:00:46 2022 -0500

    ♻️ Consolidate DGUSScreenHandler class (#24067)

commit 044bf8ab7ef7045583c9da175b8ebddd2b750f84
Author: Robby Candra <[email protected]>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (#24006)

commit 4bdec5e99330a35387c09adc27be94c5082b4405
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 22 01:12:43 2022 -0500

    🚸 More ExtUI events for ABL / UBL

commit 7444933d5d4fc93c6278e091be5af7e4f61b1d9c
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 02:26:17 2022 -0500

    🩹 Fix ESP32 servos, SD_IGNORE_AT_STARTUP

    Fixes #24007
    Followup to aaf5bf02

commit f35404f853ba185814bd17a4742ef34688ceba98
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 17 21:18:39 2022 -0500

    🧑‍💻 Handle PLR in manage_media

commit 7fa2dceddafcfeea4b2599fa2b9fe3542abd4c1f
Author: Keith Bennett <[email protected]>
Date:   Tue Apr 19 17:16:26 2022 -0700

    🐛 Fix ProUI / JyersUI leveling preheat (#24060, #24064)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit 4c84769a814ab6534a1edebc66529b568c9d6d7e
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes #23824

commit 8fb3074901f83034cc240834a2fc75aad0ed43ad
Author: Robby Candra <[email protected]>
Date:   Fri Apr 15 11:21:12 2022 +0700

    🩹 Fix DEBUG_CARDREADER (#24023)

commit 230db90b70f1cafdea6fe3a8c28499e92004be53
Author: ellensp <[email protected]>
Date:   Fri Apr 22 23:02:47 2022 +1200

    🩹 Fix DGUS_PREHEAT_UI enable with DGUS_LCD_CLASSIC (#24066)

commit 28d2bc353ebbddc0ce0b96a634108392eb1089b4
Author: Scott Lahteine <[email protected]>
Date:   Sat Jan 1 16:48:24 2022 -0600

    🎨 Use LEDColor default C-CTOR

commit 7b5e2cd78619ba4334c0fe94b3f8293ed8d6e1ee
Author: Scott Lahteine <[email protected]>
Date:   Wed Apr 20 00:52:05 2022 -0500

    🐛  Update M913, M914 report

    Followup to #11248, #11249, #23400

commit 4b456078ddc1099c081e1e7149aba612c8f41008
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (#24019)

commit 8d3c84a6d969bf9fa576a17b0054d5b98324622d
Author: Keith Bennett <[email protected]>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (#24011, #24111)

commit cbc6f23a8af0c864e3607dc24764582149c0d1f3
Author: Giuliano Zaro <[email protected]>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (#23985)

commit bed8abe5b6df751d7dafc6f0f8d8dff7338625ce
Author: Giuliano Zaro <[email protected]>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (#23987)

commit 74565890f335f26fa7012d0164eb2964c0f2918d
Author: tombrazier <[email protected]>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (#23868, #24009, #24107)

commit 4ec9af42b8e24cf6ce9f238c9342bc1c11120429
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit b0d621d8b96fffda485efa45e61a68126613a766
Author: John Robertson <[email protected]>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (#23969)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 995221e68e15693697fc7f10dfc31273ea188157
Author: Stephen Hawes <[email protected]>
Date:   Thu May 5 03:37:47 2022 -0400

    ✨ Add M3426 A<addr> parameter (#24130)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 54e543872be13439523cecb6b670b7b4bf818164
Author: LPRtypeCN <[email protected]>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (#23865)

commit 7b39604d6f58b46de18a41eb4a7de5058d9c4b35
Author: ellensp <[email protected]>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (#23978)

commit 01c9c2666123f0959b02b757d2acd6adc18f4284
Author: Keith Bennett <[email protected]>
Date:   Mon Apr 18 03:46:58 2022 -0700

    🧑‍💻 Preheat menu improvements (#24017)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 27b148442826780c8fc4f7ab8c21608de21f0587
Author: ellensp <[email protected]>
Date:   Tue Apr 19 15:03:42 2022 +1200

    🐛 Fix Manual Move cold extrude override (#24045)

    Followup to #19606

    Co-authored-by: Scott Lahteine <[email protected]>

commit 7f1c5ad7aa6dc437d3a76abf8a36cb971e1f424e
Author: InsanityAutomation <[email protected]>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (#23979, #24013)

commit 4fd7d1b056bfab9f31c272ae6d8f256ed2ed202d
Author: ellensp <[email protected]>
Date:   Thu Apr 21 21:06:22 2022 +1200

    🐛 Fix STM32 Pins Debugging (#22896)

commit 7ffe4de021254d34762d2a7ecd239ded0eca949d
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit eada17ed69ede29d83f7c3897d64e2872faaae18
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See #24002

commit cd5c5ea60eb20d643ab2447bc3550b3eb5874a39
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See #23635

commit e9ea82e78d0c95ef1cee599093b4c91a6f97d709
Author: stream2me <[email protected]>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (#24001)

commit 18b17fc97d8474b2fe5c5cd7afcfdce05ba7d5cc
Author: ellensp <[email protected]>
Date:   Sat Apr 23 22:02:13 2022 +1200

    🐛 Fix MKS_MINI_12864 build for ESP32 (#24071)

commit 89d5ed0c9e5570e4a025719a9ad183e505c8ed8a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit a56bf9045d3e68101c42ced30884fa34675279c5
Author: Scott Lahteine <[email protected]>
Date:   Fri Apr 15 02:05:02 2022 -0500

    🧑‍💻 Simplify BIGTREE_SKR_2_F429 env

commit c23d0351495a7fc1c396d157642db49db2754135
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 7ff4b706947e63d708cef90c936b936305947e58
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:07:04 2022 -0500

    🚸 Prevent accidental button press

commit 421c38ff2e0de3a8d5cd913232aa3448dbfbc487
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:57:41 2022 -0500

    🐛  Home Z to Max after Z_SAFE_HOMING

commit ec447dba04409c2b60d61b9bacab54c101bd9f3a
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 09:05:12 2022 -0500

    🚸  Home Y before X on belt printers

commit be6535e5f7a39529bd081ed38a1bf76fa645488f
Author: Christian Piper <[email protected]>
Date:   Thu Apr 21 03:15:07 2022 -0400

    🩹 Fix PRINTCOUNTER with EXTRUDERS 0 (#24063)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 99252cf0cd5a8a01228c715a505cb1eaf6b853e5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 08:58:45 2022 -0500

    🐛  Prevent BABYSTEP freeze

    See #22830, #13300

commit f6f31434b8c0e21f98fef460e0c8492fd4c240d5
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:16:52 2022 -0500

    🧑‍💻 IS_ULTRA_LCD => HAS_WIRED_LCD

commit 2f3960904e1a7b830c686fa793b122de49f3d674
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 2dc4c642e78bb4fa99ca41f3ae3c92335248ffd4
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit 70ea0e7c3450680e1062088243d2cf139eadc02a
Author: Scott Lahteine <[email protected]>
Date:   Mon Apr 18 16:41:16 2022 -0500

    ✏️ Remove extra G29 line

    Followup to 85a62bbf

commit a81fd009f081eca3685e42cffac7f35e75428fea
Author: Scott Lahteine <[email protected]>
Date:   Thu Apr 21 07:08:26 2022 -0500

    🎨  misc. cleanup

commit e667d4e6e43b407cedce6bbf543ea1d815e8d520
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 2d0af75d37c9ea8ab44c889ef4e489b3b533eb30
Author: Scott Lahteine <[email protected]>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 5e68a86968d63f97f0febb8378b2a508e909ec90
Author: ellensp <[email protected]>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (#24010)

commit 8bd1547c3bb16cdce37412624161fab5b9d5ead6
Author: Moritz Wirger <[email protected]>
Date:   Fri Apr 15 04:43:21 2022 +0200

    ✨ enwi ESPNP board support (#24029)

commit a5e083603f1435a4a0e2e9fa7449c9133aa73225
Author: Scott Lahteine <[email protected]>
Date:   Sat Apr 23 06:11:03 2022 -0500

    📝 Fix 'M150 S' comment

commit c5f7547e8cf0d744fb1392b3651078d3985cecb1
Author: Giuliano Zaro <[email protected]>
Date:   Tue Apr 26 05:03:16 2022 +0200

    🩹 Fix "elapsed" text on DOGLCD (#24087)

commit 5c5b380fda9f541ee182e614966fc39a72ac6a18
Author: InsanityAutomation <[email protected]>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (#23949)

commit bb0e0cf7f35cf3b89aac4f395185d55f3aa62979
Author: aegelsky <[email protected]>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (#23965)

commit 5ee99dfc49eaa8e81f5beb66eb1c160ac2d217fb
Author: Jon <[email protected]>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (#23968)

    Followup to #23050

commit a083b1280ec80a525766c0a9487865b76de64c81
Author: Keith Bennett <[email protected]>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (#23970)

commit b7b5cee88baadfb10822b6bb13b6e7d3b0acaff8
Author: grauerfuchs <[email protected]>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (#23976)

commit 7456fd68a41b12592f3ac3f47308f7037ca22b86
Author: Keith Bennett <[email protected]>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (#23990)

commit 20154718b5a41c1522a313ada06ef5c35ce2023d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 17:03:25 2022 -0500

    🌐 Clean up languages

commit a6794c1862c663b387637597dba5f258a3e0e1e2
Author: Manianac <[email protected]>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (#23977)

commit bd5c6bf23c1478dcab31cc1c2edcd0fa546eb6ea
Author: John Lagonikas <[email protected]>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (#23961)

    Followup to d3e3e6a491

commit 68ee64283a7aab95c2f70eaf734e24b9d909dfa7
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit dd29394bbe17ab6458817cce65b94f106252092f
Author: Scott Lahteine <[email protected]>
Date:   Sat May 7 14:58:39 2022 -0500

    🔨 Improved mfprep script

commit ceb99e89a081d2230479e9bb7b63c23d14bf0b98
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 18:55:43 2022 -0500

    🔨 Prevent build attribute define conflicts

commit 6112277f9b2d24a7c9effeb5966dadef279a261c
Author: Scott Lahteine <[email protected]>
Date:   Thu May 5 19:11:59 2022 -0500

    🔨 Use first g++ in path for 'native' targets

commit 81f403025c3ddb479ccf363fb091ac0fcf8e667b
Author: Keith Bennett <[email protected]>
Date:   Thu May 5 00:38:48 2022 -0700

    🐛 Some EEPROM size fixes (#24113)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eeda8b451acb2a0ae96656876f6a7682d43aca1d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 4 12:47:15 2022 -0500

    📝 Replace KB with K in pins

commit c7e8ba78576af230278a5662103acf421dc59bfd
Author: Keith Bennett <[email protected]>
Date:   Mon May 2 16:29:25 2022 -0700

    📝 Fix extraneous URL args (#24125)

commit 071e5c336a157ca39b75081b8cb4436a72af965e
Author: Ludy <[email protected]>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (#23950)

    Followup to #23943

commit be08d4c4f01e2c297365664bd3e0f7dc2b051fde
Author: David Forrest <[email protected]>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (#23957)

commit e99104a0040f58477809c9e2b9506fe2bcd94331
Author: ellensp <[email protected]>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (#23944, #23948)

    Co-Authored-By: Scott Lahteine <[email protected]>

commit edc4089121bcd96645b7be6bbd3dafa88c510ede
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 3bce266ef7865a62b5e79c7c5c67a068bb5e4c20
Author: ellensp <[email protected]>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (#23943)

    Followup to 89a9c3a391

commit c89d0114acba957d63e894bc1a479ec10cb18a81
Author: Robby Candra <[email protected]>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (#23135)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 0e693854d0c86fa0998a5d497607d42d6798f6ab
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 9324132a401cf0ab3781c9992d607bd4f88ba086
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 5632ad65f59710ca64e4abca99afa64cb99d559e
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit eccbfbcede60922b95971e90bf3a1d7983a5fe39
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 5ef4fb378e345e20d1fa3bdbc5312598dc571276
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to #23925

commit 21f0945d2cfada672756709bc420feb11768e687
Author: Oleg Belov <[email protected]>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (#23936)

commit b2a318af9a0c8e91b1f66a5576226b50b1b49f1b
Author: Serhiy-K <[email protected]>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (#23935)

commit 1c89c0470f2778f8051ff8514831138e64a2d9ed
Author: ellensp <[email protected]>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (#23931)

commit 2ee4a667e1999839e61fa4c7d4e31a88d6e301d6
Author: Scott Lahteine <[email protected]>
Date:   Wed Jan 12 09:47:22 2022 -0600

    💡 Misc. cleanup, comments

commit f8e177a43efa3e7a173e2799562d354ab95544ab
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 9ac1c73041cbf4015b48d9d7a70a59e840a1d442
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit 4a8b99d505584d1fa5eb71d588da1bb60c3a2878
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit b094a3fc0d647f7daff7c4d97db32f9d41e4c11d
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit 2d99a608fd993fd5cb75223b72deadfc969a13c1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit fba8805c0cd87845c80d9cd7738b94332a35e27b
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 039a22649f4e0201d7580b63c1a414450353438a
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit ced0ad8e094baecf6e3ee8eaa36c61baaa5743fc
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 10a0c9a9b3d4070326954c5c2354cfd8ba490f0c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit abfb0411809568970221281a3614e30970f0dfc1
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 72f207f4895d5db34f697cb203876405b98d89c8
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit 7186037f20a2a2c57624e31c1e99adc37759c5f6
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit b0a400da72f6752619a82246fac55a07a4e67f3c
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit cc4c2c2f98a1742d6b462481f74dacf5b5b93961
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit 5dae8a67344cfeda3de6d40fcd14498542004fe9
Author: Scott Lahteine <[email protected]>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 05dea4e30a1768913ec7d1f38c65b9423200a558
Author: Fredrik Andersson <[email protected]>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (#23925)

commit 7e88ee8c5cc87395e73c45bcd743f3ab0302773b
Author: Mark <[email protected]>
Date:   Fri Mar 18 12:49:47 2022 +0800

    📌 PandaPi V2.9 – Standalone mode (#23908)

commit cc8e485e1c55fb2fcdba7dc8f6b89041ed18e9ce
Author: John Robertson <[email protected]>
Date:   Fri Mar 18 03:21:53 2022 +0000

    ✨ ESP32 - Hardware PWM for fan, cutter, servos (#23802)

commit c7a2ecc31aa4def9e60668f5cfc648d87776be9b
Author: ellensp <[email protected]>
Date:   Fri Mar 18 16:17:41 2022 +1300

    🩹 Fix xatc EEPROM debug (#23911)

commit 260b40d1453a9310581c45d3e1327a3103b36a22
Author: tombrazier <[email protected]>
Date:   Fri Mar 18 03:15:26 2022 +0000

    ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (#23867)

commit c87eded8f6183c33bd9b9a74dd577fe6c77c32df
Author: Ludy <[email protected]>
Date:   Fri Mar 18 02:55:33 2022 +0100

    🩹 Fix redundant var declaration (#23913)

commit 2f2a999368f22f2c6b3105ab481987c2025bc50e
Author: John Robertson <[email protected]>
Date:   Thu Mar 17 19:35:33 2022 +0000

    🐛 MKS TinyBee - 2.5V ADC Vref (#23903)

commit 2558b323e85006c3c9f6a03bcaa82f61c95da0bb
Author: Jelmer van der Stel <[email protected]>
Date:   Sun Mar 13 23:20:30 2022 +0100

    🩹 Fix DWIN E3V2 display issues by allowing re-init (#23879)

commit 1db685593922214e49496d805dc9ea099e227f50
Author: Mrnt <[email protected]>
Date:   Sun Mar 13 15:17:35 2022 -0700

    🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (#23885)

commit 62f298aca39ff17bc7a51f49b9ff6b5b17a76c30
Author: Julien Staub <[email protected]>
Date:   Sun Mar 13 23:09:32 2022 +0100

    🩹 Fix ExtUI build with Host Keepalive disabled (#23898)

commit 8d20c5aadfff34a024665ea349c0b66834e4d305
Author: InsanityAutomation <[email protected]>
Date:   Sun Mar 13 18:00:35 2022 -0400

    📝 Fix X2_MAX_POS comment (#23873)

commit 61b470249c1cfa361f25060940cc8b7f8a8f64e9
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:59:43 2022 -0500

    📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

commit 4ffa88f814f3ddcb7273b73c9bb68773bcf1fd51
Author: Scott Lahteine <[email protected]>
Date:   Sun Mar 13 16:46:08 2022 -0500

    🚸 Test LIN_ADVANCE in a pins file

commit 8257040fafe758ac1913e9bf633fa0c9930dd9cb
Author: Mathew Winters <[email protected]>
Date:   Sun Mar 13 14:13:41 2022 +1300

    ⚡️ G12 - Only require used axes to be homed (#23422)

    Co-authored-by: Scott Lahteine <[email protected]>

commit 5d9ab7e71eed56f242d4fae32836f305bb1ff680
Author: Keith Bennett <[email protected]>
Date:   Sat Mar 12 16:23:29 2022 -0800

    🔨 Drop extraneous build flag (#23862)

commit 1a76d4d467ebb3d8ed1df39767efa99beb08e854
Author: Nick <[email protected]>
Date:   Sat Mar 12 23:47:47 2022 +0000

    🐛 Fix Chiron new TFT SD print after reset (#23855)

commit 4028c1cfc7bcaf78e49bb98b527353ec30a970de
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 17:12:21 2022 -0600

    🩹 Fix FSTR / PSTR usage

commit c49f26a7ae6499f4e19dc1f75bb4438cb0d549cf
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 16:34:58 2022 -0600

    🧑‍💻  Add standard BUZZ types

commit f82b13359520baf4da4e41aa85ed0fe3f8d31173
Author: Ludy <[email protected]>
Date:   Sun Mar 13 00:36:23 2022 +0100

    🌐 Fix, add some menu labels (#23895)

commit 2c3f2a14715665d7309e212bfd2a48240118e627
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 15:59:01 2022 -0600

    🐛 Fix UBL 'G29 Q1' bug

commit 4817efcf81d353032b2873dc958ec63bcb298d19
Author: Scott Lahteine <[email protected]>
Date:   Sat Mar 12 15:58:28 2022 -0600

    🧑‍💻 Add ExtUI::onLevelingDone, match DWIN to ExtUI

commit 16271377e2a00c2cd416ec21e5a21272e9f805ed
Author: BIGTREETECH <[email protected]>
Date:   Sat Mar 12 08:23:18 2022 +0800

    🧑‍💻 STM32G0Bx : Use PLLQ for USB clock (#23870)

commit 61fb3828688c377178031142ba9cfaa3512cb915
Author: kisslorand <[email protected]>
Date:   Sat Mar 12 02:21:08 2022 +0200

    🚸 M401 H - Report BLTouch HS State (#23724)

commit 7dae720de5c4fdea5fab657c09a2c8ba66f5a054
Author: GatCode <[email protected]>
Date:   Sat Mar 12 00:56:31 2022 +0100

    📌 Fix, extend Index Rev03 Mobo (#23851)

    Co-authored-by: Scott Lahteine <[email protected]>

commit c6f4b38877d6ff5973c5273bf28c0fa1b60226a3
Author: Giuseppe499 <[email protected]>
Date:   Sat Mar 12 00:12:03 2022 +0100

    🚸 Fix, extend X Axis Twist Compensation (#23745)

    Co-authored-by: Scott Lahteine <[email protected]>

commit eabeac29fd311dc09799ce8a0db742048b07a2a9
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri Mar 11 15:06:49 2022 -0500

    🚸 Update Ender3 V2/S1 Pro UI (#23878)

commit b045c91f266d222f5851d76fb9723552c1f00313
Author: ellensp <[email protected]>
Date:   Sat Mar 12 03:51:25 2022 +1300

    fix g29 (#23887)

commit 56955c179d1fb6991f6267a344e712b1caeae154
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 11 02:56:24 2022 -0600

    🐛 Fix UI include

    Followup to ~2

commit 4eb1326355aaa022e1a9d41625851876b20b5aa3
Author: ellensp <[email protected]>
Date:   Fri Mar 11 21:52:35 2022 +1300

    📝 Update laser/spindle docs link (#23886)

commit b669aa49cccf4ceb41b99dfdbb88dac5945bed01
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 22:07:47 2022 -0600

    🔧 DWIN_CREALITY_LCD_ENHANCED => DWIN_LCD_PROUI

    Followup to #23624

commit 152ec49b8b43e40a9cceaaa90f3ebf1c194dfe11
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 17:35:03 2022 -0600

    🩹 Fix 'hdsl' warning

commit e4ca822dcf62c5a38b30472bd51ab40212ee2eb5
Author: Scott Lahteine <[email protected]>
Date:   Thu Mar 10 17:25:09 2022 -0600

    🚸 Improve M422 error messages

commit 0fafcd20cddc0e76003454d7c292430f367f1106
Author: Scott Lahteine <[email protected]>
Date:   Fri Mar 4 16:07:38 2022 -0600

    🔧 Mark Thermal Variance Monitor EXPERIMENTAL

commit bd72df3bb6387af9421b1503ab74e29b8a1e705c
Author: Jack Wilsdon <[email protected]>
Date:   Fri Mar 4 21:59:38 2022 +0000

    🐛 Emergency Parser with STM32 Mass Storage (#23827)

commit fd582dc863785b53048834d0c9789f1d264603b2
Author: tombrazier <[email protected]>
Date:   Fri Mar 4 21:57:51 2022 +0000

    🩹 Improve and apply XATC reset() (#23840)

commit 2986bc3b768e047fb333d35633900d512dbff439
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 17:58:23 2022 -0600

    ⚡️ Use seen_test in `M422`

commit e082a141f63e7af1d301a994c0ee796946bcb3a8
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 17:50:55 2022 -0600

    🚸 Use Z_STEPPER_ALIGN_STEPPER_XY to enable

commit 575c3150f96a7d43d93d092c9f0dd7f395ef6a78
Author: tombrazier <[email protected]>
Date:   Wed Mar 2 22:13:46 2022 +0000

    🚸 Universal X_AXIS_TWIST_COMPENSATION (#23828)

commit 43d4e306680d0a006f431b4ab29246450c6ee5e2
Author: Scott Lahteine <[email protected]>
Date:   Wed Mar 2 16:04:17 2022 -0600

  …
ogdhekne pushed a commit to ogdhekne/Marlin that referenced this pull request Mar 25, 2024
ogdhekne pushed a commit to ogdhekne/Marlin that referenced this pull request Mar 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants