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

BLTouch::command Avoid write for duplicate probe commands #25656

Merged

Conversation

dfries
Copy link
Contributor

@dfries dfries commented Apr 8, 2023

Description

BLTouch::command Avoid write for duplicate probe commands

deploy(); deploy(); or the reverse stow(); stow(); would delay 750 ms
each command giving time to check for an alarm. If the command is the
same as the last command, it would have already delayed checking for
an alarm, skip the write, and skip the delay.

Here are the calls that result in the duplicate command at the start
and end of a set or probes. Handling it on the BLTouch side seems
better than coming up with a solution to try to avoid the duplicate calls
in the nested functions.

Probe::probe_at_point() calls deploy(), run_z_probe(), stow()
run_z_probe() calls probe_down_to_z()
probe_down_to_z() calls bltouch.deploy(), bltouch.stow()

Requirements

BLTouch

Benefits

My auto bed level probe time increased 1 minute 15 seconds from 2.0.9.3 to bugfix-2.1.x for G29 5x5 with two touches at each point on Ender 6.

2.0.9.3 took 3:19.75
bugfix-2.1.x took 4:34.13,
bugfix-2.1.x + this change 4:02.02

More changes will be needed to get back to the 2.0.9.3 probing speed.

deploy(); deploy(); or the reverse stow(); stow(); would delay by
default 750 ms each command giving time to check for an alarm.  If the
command is the same as the last command, it would have already delayed
checking for an alarm, skip the write, and skip the delay.

Here are the calls that result in the duplicate command at the start
and end of a set or probes.  Handling it on the BLTouch side seems
better than coming up with a solution to try to avoid the duplicate
calls in the nested functions.

Probe::probe_at_point() calls deploy(), run_z_probe(), stow()
run_z_probe() calls probe_down_to_z()
probe_down_to_z() calls bltouch.deploy(), bltouch.stow()
@thinkyhead
Copy link
Member

Nice optimization. Thanks!

More changes will be needed to get back to the 2.0.9.3 probing speed.

To what do you atribute the extra 1.72 seconds per probing point? Is it just the various BLTOUCH_DELAY parameters or extra Z movement, or…?

@thinkyhead
Copy link
Member

I see that a previous default for BLTOUCH_DELAY was 375 and this was raised by @InsanityAutomation in May of 2019. I trust that it was important enough to get reliability over speed in that instance.

@thinkyhead thinkyhead merged commit 54aef53 into MarlinFirmware:bugfix-2.1.x Apr 10, 2023
55 checks passed
@dfries
Copy link
Contributor Author

dfries commented Apr 13, 2023

To what do you attribute the extra 1.72 seconds per probing point? Is it just the various BLTOUCH_DELAY parameters or extra Z movement, or…?

I just did a time test. This was with commit 70063fb
"[cron] Bump distribution date (2023-03-28)"
and a minimally modified configuration for Creality Ender 6 to enable BLTouch.
G29 5x5*2, 4:34 minutes:seconds, baseline time value which matches the slower time I saw going to the bugfix-2.1.x branch.

G29 5x5*2, 3:33 is after only decreasing the BLTouch delay. While that was still higher than 2.0.9.3 time of 3:20 it tells me that most all of the slowdown comes from BLTouch delays. The remaining 13 seconds could be other bugfix-2.1.x slowdowns, or it could be other of my changes on 2.0.9.3.

previous default for BLTOUCH_DELAY was 375 and this was raised by @InsanityAutomation in May of 2019. I trust that it was important enough to get reliability over speed in that instance.

"PR #13814 Id like to get some users with the 3D Touch clone probes to test this and confirm it allows the removal of the version flag."

Or is that increase the delay enough so even the clones are able to function?

6811e29 for stow() and deploy() went from 375 to 750, which are the actions that count for G29. Making a video of G29, I counted frames and deploy I saw as 1.46 and 1.56 seconds, stow was more like 1.00 seconds. The numbers didn't add up to me, I expected them to be symmetric, then again I was looking for the visible change and that's delayed compared to when the printer sent a command.

Configuration for more stock bugfix-2.1.x

#define MULTIPLE_PROBING 2
#define XY_PROBE_FEEDRATE (133*60)
#define Z_PROBE_FEEDRATE_FAST (7*60)
#define Z_PROBE_FEEDRATE_SLOW (Z_PROBE_FEEDRATE_FAST / 2)
#define AUTO_BED_LEVELING_BILINEAR
#define Z_CLEARANCE_DEPLOY_PROBE   10 // Z Clearance for Deploy/Stow
#define Z_CLEARANCE_BETWEEN_PROBES  5 // Z Clearance between probe
points
#define Z_CLEARANCE_MULTI_PROBE     5 // Z Clearance between multiple
probes
#define Z_PROBE_LOW_POINT          -2
//#define BLTOUCH_DELAY 500
//#define BLTOUCH_HS_MODE true

G29 5x5*2, 4:34 Matches my earlier bugfix-2.1.x time

Additional configuration to reduce the BLTouch delays

#define BLTOUCH_DELAY 350
#define BLTOUCH_DEPLOY_DELAY   350
#define BLTOUCH_STOW_DELAY     350

G29 5x5*2, 3:33 pretty close to what I was seeing on the 2.0.9.3 release using what I think should be the same smaller delays. My BLTouch has the QR code and I've not observed any issues with these shorter time delays. I'll be switching to these shorter delays myself.

I have had problems with the BLTouch, but that I'm attributing to a design flaw giving it 3.3V instead of 5V that has been corrected.

Oops I did my testing at 350ms, the correct value should have been 375ms, that should take G29 552*.025 = 1.250 seconds longer to complete, which wouldn't change the outcome much, so I don't plan on retesting.

EvilGremlin pushed a commit to EvilGremlin/Marlin that referenced this pull request May 8, 2023
EvilGremlin pushed a commit to EvilGremlin/Marlin that referenced this pull request May 17, 2023
tspiva pushed a commit to tspiva/Marlin that referenced this pull request May 25, 2023
Infobitas added a commit to Infobitas/Marlin-Tronxy-X5SA-Pro-with-LCD-V10-220413 that referenced this pull request May 31, 2023
commit 0a30fac
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 16 14:01:35 2023 -0500

    🔖 Version 2.1.2.1

commit cbdc01e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 29 19:23:21 2023 -0500

    🩹 Prevent Z drop with G28 X/Y

commit 2dffa39
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 21 08:41:01 2023 -0500

    🩹 Fix TFT LVGL compile error (MarlinFirmware#25865)

    Fixes regression from MarlinFirmware#24302

commit 09247e7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 19 23:30:48 2023 -0500

    🚸 Improve EEPROM validation (MarlinFirmware#25860)

commit 62a7bba
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu May 18 19:53:03 2023 -0500

    🩹 Fix null pwm_details

commit ce38260
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 16 01:28:04 2023 -0500

    🩹 Improve edit menu rounding

commit 3ad9c0b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 2 18:15:23 2023 -0500

    🧑‍💻 ftdi_language

commit a0fd588
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 14 18:08:33 2023 -0500

    📌 TH3D EZBoard SD_DETECT_PIN 27

commit 876f996
Author: Chris Bagwell <chris@cnpbagwell.com>
Date:   Wed May 10 05:59:28 2023 -0500

    🔧 Fix SHAPING_MIN_FREQ check (MarlinFirmware#25358)

commit dba521a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 14 18:32:59 2023 -0500

    🧑‍💻 M43 updates

commit 50ad323
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue May 9 22:52:59 2023 +0200

    🔧 Move SOFT_PWM_SCALE fallback to cpp (MarlinFirmware#25800)

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

commit 03149b9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 6 17:37:47 2023 -0500

    🚸 Faster default Marlin feedrate

commit 6e91f36
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon May 8 23:54:46 2023 +1200

    🔨 MKS Robin2 PIO Env (MarlinFirmware#25792)

commit 0708275
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu May 4 18:05:56 2023 -0500

    🎨 Move G28O inside ProUI

commit a2040ba
Author: Scott Mikutsky <smikutsky@gmail.com>
Date:   Mon May 1 02:10:46 2023 -0400

    🐛 Fix STM32 USB disconnect behavior (MarlinFirmware#25762)

commit b6c27fb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 30 18:12:13 2023 -0500

    🔧 Fix X2/Y2 axis pins check

commit b2acd51
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 28 11:03:38 2023 -0500

    🔧 Move MMU section

commit 6d46a49
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 1 18:15:31 2023 -0500

    🩹 Fix TFT sanity error

commit d959e3b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 30 18:12:21 2023 -0500

    🧑‍💻 Use NUM_AXIS_ARRAY

commit f48467b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Apr 26 14:39:56 2023 -0500

    🔨 Servo Timer 1 with STM32F103RC_fysetc (MarlinFirmware#25741)

commit a9c476c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 16 18:43:44 2023 -0500

    🔧 Update config.ini script

commit 61d1ce7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Apr 26 14:29:21 2023 -0500

    🧑‍💻 Change HAL_PATH macro for easier HAL relocation (MarlinFirmware#25743)

commit 3c9e8e1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Apr 26 02:57:53 2023 -0500

    🔧 Extra axis endstop defaults

commit d554855
Author: Anson Liu <ansonl@users.noreply.github.com>
Date:   Mon Apr 24 22:07:12 2023 -0400

    🔨 Prevent SlowSoftWire + Wire name conflict (MarlinFirmware#25707)

commit 44b06d7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Apr 24 05:24:10 2023 -0500

    📝 Developer note in boards.h

commit ffe47a0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 23 03:17:55 2023 -0500

    🚸 Improve PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED (MarlinFirmware#25681)

commit 6a12937
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 23 02:07:42 2023 -0500

    🩹 Fix UBL safe measure move with extra axes

    Followup to 7e79fc5

commit 00c96dc
Author: Alexey D. Filimonov <alexey@filimonic.net>
Date:   Sat Apr 22 12:06:19 2023 +0300

    🎨 Clean up TFT Color UI display items (MarlinFirmware#25712)

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

commit 7fb92f4
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Apr 19 17:21:53 2023 -0700

    🚸 Permit G38 with Core (MarlinFirmware#25713)

commit a93b3c1
Author: Jay Robson <45777442+jsrobson10@users.noreply.github.com>
Date:   Thu Apr 20 06:58:42 2023 +1000

    🐛 Fix G38 with Z, support 9 axes (MarlinFirmware#25691)

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

commit d75e016
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Apr 19 14:53:11 2023 -0700

    🔧 Check renamed LIN_ADVANCE_K (MarlinFirmware#25710)

commit 5426759
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Apr 19 12:50:11 2023 +1200

    🩹 Correctly add JSON to mc.zip (MarlinFirmware#25706)

commit a5b5db4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 16 19:11:56 2023 -0500

    🧑‍💻 Minor SpindleLaser::set_enabled tweak

commit 15671a4
Author: Alexey D. Filimonov <alexey@filimonic.net>
Date:   Mon Apr 17 02:38:12 2023 +0300

    🩹 Fix Spindle/Laser ENA pin test (MarlinFirmware#25622)

commit f62d47a
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Sun Apr 16 18:35:13 2023 -0500

    🩹 Fix laser with no PWM compile (MarlinFirmware#25290)

commit 5b8be44
Author: Dennis Lawler <4824647+drawlerr@users.noreply.github.com>
Date:   Sat Apr 15 22:50:26 2023 -0600

    🚸 Echo G30 out-of-bounds (MarlinFirmware#25671)

commit df7d13a
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Apr 18 10:40:13 2023 +0200

    🩹 Bail on 'mc.zip' write error (MarlinFirmware#25695)

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

commit 8592035
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Apr 18 07:51:25 2023 +1200

    🔨 Fix, clean up STM32F1 envs (MarlinFirmware#25697)

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

commit 5a38066
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Apr 16 03:26:08 2023 +0200

    🐛 Fix Configuration Embedding (MarlinFirmware#25688)

commit 0ece7ca
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Apr 23 08:59:51 2023 +1200

    🩹 Status / Host Prompt followup (MarlinFirmware#25720)

    Followup to MarlinFirmware#25679

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

commit 2fb47af
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 18:06:56 2023 -0500

    🧑‍💻 HostUI::continue_prompt method

commit d2e84e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 17:51:45 2023 -0500

    🧑‍💻 Status Message cleanup

commit 3340491
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 18:00:25 2023 -0500

    🧑‍💻 JyersUI code cleanup

commit d399101
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 18:09:16 2023 -0500

    🧑‍💻 Apply simplified ?:

commit 02178bd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 22:22:07 2023 -0500

    🔧 Trigorilla / Chiron updates

    Followup to c3f34e4

commit 8bc6f77
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 13 04:06:35 2023 -0500

    🔨 Improve runout script check

commit 141cfdd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 13 04:05:56 2023 -0500

    🩹 Fix AUTOFAN_CASE

    Followup to MarlinFirmware#25554

commit 4781d57
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 11 21:28:21 2023 -0500

    🔧 Move FIL_RUNOUT_PIN for Chiron + GLCD

commit 6ebbfa8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 11 18:43:18 2023 -0500

    🧑‍💻 Clarify G28 R / R0

commit cbbcc01
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 11 21:26:46 2023 -0500

    🚸 Minor M43 improvements

commit b5ccd65
Author: David Fries <David@Fries.net>
Date:   Mon Apr 10 04:38:38 2023 -0500

    ⚡️ Skip a redundant BLTouch::command (MarlinFirmware#25656)

commit cf1f56f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 26 20:26:18 2023 -0500

    🔧 Move TFT sanity checks

commit 1e2de0e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 7 01:49:27 2023 -0500

    🎨 Detab some build files

commit cf28f48
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 7 01:33:03 2023 -0500

    🎨 Apply const (MarlinFirmware#25643)

commit 69e8f2e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Apr 7 18:32:25 2023 +1200

    🚸 Support CoreXY without Z (MarlinFirmware#25630)

commit 2be9f98
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 6 17:24:32 2023 -0500

    📝 Update Ender # labels

commit c2c1ff8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 6 16:58:12 2023 -0500

    🧑‍💻 Update pinsformat.js

commit e240874
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 4 20:46:46 2023 -0500

    🐛 Ensure root for 'M503 C'

commit 6412950
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Apr 1 06:19:48 2023 +0200

    🌐 Update Italian language (MarlinFirmware#25587)

commit 466ce0b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 16 13:44:00 2021 -0500

    🩹 Fix displayed mix percentages

commit 59a2cb0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 29 21:50:04 2023 -0500

    🩹 Fix Ender-3 V2 with no fan

commit 85e28f3
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Wed Mar 29 05:45:22 2023 +0100

    🔨 MarlinSimUI updates (MarlinFirmware#25589)

commit bbb75ab
Author: John Unland <junland.foss@gmail.com>
Date:   Tue Mar 28 23:23:27 2023 -0500

    🔨 Improve Docker local tests support (MarlinFirmware#25583)

commit 637cd95
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Mar 29 00:20:52 2023 -0400

    🎨 Remove unused ProUI : UBLValidMesh (MarlinFirmware#25591)

commit d04b3ff
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 28 16:14:37 2023 -0500

    🔧 Fix up WiFi options (MarlinFirmware#25586)

commit 51b33cc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 03:01:09 2023 -0500

    🔨 INI Updates

    Co-Authored-By: Martin Turski <turningtides@outlook.de>

commit f452df0
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Mon Mar 27 21:55:56 2023 +0300

    🐛 Fix M23 long filename support (MarlinFirmware#25540)

commit cd0bfcd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 26 04:36:12 2023 -0500

    🧑‍💻 Auto Fan / Cooler Fan updates (MarlinFirmware#25554)

commit bcf3098
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Mar 26 02:09:27 2023 -0700

    🩹 Fix Touch Calibration first point (MarlinFirmware#25298)

commit a40e17d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 25 20:17:54 2023 -0500

    🎨 Timer tweaks

commit d66f4ba
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Mar 25 17:14:21 2023 +1300

    🩹 Fix Chitu3D V6 default probe pin (MarlinFirmware#25552)

commit 26cb2d5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 18:43:53 2023 -0500

    🩹 Update TRONXY_V10 SPI_FLASH pins

commit 376e940
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 02:43:20 2023 -0500

    🎨 LPC_SOFTWARE_SPI => SOFTWARE_SPI

    Co-Authored-By: Martin Turski <turningtides@outlook.de>

commit ebe3fe0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 02:40:29 2023 -0500

    🎨 Pins header comments

    Co-Authored-By: Martin Turski <turningtides@outlook.de>

commit 0d7e30b
Author: Martin Turski <turningtides@outlook.de>
Date:   Fri Mar 24 05:08:28 2023 +0100

    🩹 Reset touch screen calibration on failure (MarlinFirmware#25334)

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

commit accfab8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Mar 23 17:19:20 2023 -0500

    🎨 calibration_stage => stage

commit d68ad9e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 18 21:57:06 2023 -0500

    🩹 Fix a serial_ternary

commit 70c8859
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Mar 19 13:17:21 2023 +1300

    🩹 Fix Ender 2 stock LCD (MarlinFirmware#25538)

commit 980fba8
Author: George Fu <nailao_5918@163.com>
Date:   Sat Mar 18 17:47:54 2023 +0800

    🐛 Fix FYSETC Cheetah v2.0 Servo/Probe pins (MarlinFirmware#24635)

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

commit d0bdb9c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 18 17:13:06 2023 -0500

    ⚡️ Misc. optimizations

commit 821d796
Author: Davide Rombolà <davide.rombola@gmail.com>
Date:   Sat Mar 18 07:35:54 2023 +0100

    🎨 Suppress warning (MarlinFirmware#25529)

commit dcbba65
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 18 01:22:50 2023 -0500

    🧑‍💻 More IntelliSense-friendly declares

commit 5c3dd46
Author: Michael Hill <mhill@hillsoftware.com>
Date:   Sat Mar 18 01:56:07 2023 -0400

    ✨ Sovol v1.3.1 (Sovol SV06) (MarlinFirmware#25267)

commit e50980e
Author: dwzg <50058606+dwzg@users.noreply.github.com>
Date:   Thu Mar 16 01:15:54 2023 +0100

    🩹 Fix DWIN MarlinUI Fan/E/XY (MarlinFirmware#25502)

commit c3b037e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 15 19:13:09 2023 -0500

    🩹 Fan Menu / Status fixes

    Followup to MarlinFirmware#21888

commit 71e6f70
Author: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Date:   Mon Mar 6 01:29:43 2023 +0300

    🌐 Update Turkish language (MarlinFirmware#25447)

commit 7f9f922
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Fri Mar 3 21:27:15 2023 +0100

    🌐 Update Italian language (MarlinFirmware#25454)

commit 197b319
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 3 13:42:46 2023 -0600

    📝 Fix a comment

commit e03dfb8
Author: jamespearson04 <jamespearson04@hotmail.co.uk>
Date:   Fri Mar 3 20:26:38 2023 +0000

    🐛 Fix UBL 'G29 J' mesh tilt (MarlinFirmware#25453)

    Fix regression from MarlinFirmware#24214

commit cba3b2c
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Wed Mar 1 21:07:23 2023 -0700

    🚸 Improve CocoaPress Touch UI (MarlinFirmware#25446)

commit a9a6d1f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Feb 27 15:27:58 2023 +1300

    📝 Link to archived RA Control Panel page (MarlinFirmware#25424)

commit 61ccd45
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Jan 31 06:07:51 2023 +0100

    🌐 Update Italian language (MarlinFirmware#25309)

commit bab8478
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Tue Jan 31 06:07:03 2023 +0100

    🌐 Update Slovak language (MarlinFirmware#25305)

commit 0110877
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 28 06:11:53 2023 +1300

    🧑‍💻 Add IA_CREALITY CI test (MarlinFirmware#25434)

commit b7ee06b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 16 19:52:36 2023 -0500

    🔨 Use 'build_src_filter'

commit 5f8df0a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 26 17:49:51 2023 -0500

    🔨 Fix thread-unsafe deque iteration

commit b338159
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed May 17 06:50:57 2023 +1200

    🐛 Fix MKS Robin Nano 1.3 F4 pin collision (MarlinFirmware#25838)

commit 2399a24
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Apr 10 22:17:50 2023 +1200

    🔧 Update thermocouple 2 pin sanity check (MarlinFirmware#25627)

commit d05acb7
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Apr 10 21:16:52 2023 +1200

    🩹 Fix MARLIN_F446Zx_TRONXY variant (MarlinFirmware#25659)

    Followup to 9be1554

commit 81d4f8f
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Sat Apr 8 02:55:10 2023 +0100

    🩹 Fix SD partitionTable packing (MarlinFirmware#25648)

commit b0c3db6
Author: Jason Smith <jason.inet@gmail.com>
Date:   Fri Apr 7 18:52:33 2023 -0700

    🎨 Suppress M122 sign warning (MarlinFirmware#25613)

commit ea6430d
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Wed Mar 15 00:49:49 2023 +0300

    🐛 Fix long filename read/report (MarlinFirmware#25509)

commit ccb4d11
Author: John Robertson <john@cirtech.co.uk>
Date:   Sat Mar 18 10:33:15 2023 +0000

    🔧 Sanity-check PRINTCOUNTER_SAVE_INTERVAL + ESP32 I2S Exp (MarlinFirmware#25527)

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

commit 176ecf4
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Mar 11 00:08:07 2023 -0800

    🐛 Fix Anet ET4 SD_SS_PIN (MarlinFirmware#25492)

commit 3ec5d6d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 11 19:17:25 2023 -0600

    ⚡️ Exit from ISR on AVR already does sei

    Co-Authored-By: tombrazier <68918209+tombrazier@users.noreply.github.com>

commit 75aa880
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Mar 10 15:56:33 2023 -0800

    ✨ BTT Octopus Max EZ 1.0, SKR 3.0 / 3.0 EZ (MarlinFirmware#25387, MarlinFirmware#25495, MarlinFirmware#25535)

commit a50ff5d
Author: Sion Williams <sion5@hotmail.co.uk>
Date:   Thu Mar 9 08:45:01 2023 +0000

    🔨 VSCode + Devcontainer support (MarlinFirmware#22420)

commit 504f09f
Author: alextrical <35117191+alextrical@users.noreply.github.com>
Date:   Sun Mar 5 22:28:50 2023 +0000

    🐛 Fix Flash EEPROM for STM32G0B1CB (MarlinFirmware#25469)

commit aae1102
Author: Hans-Christian Ebke <ebke@cs.rwth-aachen.de>
Date:   Sun Mar 5 23:25:11 2023 +0100

    🐛 Fix apply_power for SPINDLE_SERVO (MarlinFirmware#25465)

commit a40ff13
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Wed Mar 1 00:16:27 2023 +0000

    🐛 Fix LA retract/feedrate edge case (MarlinFirmware#25445)

    Followup to MarlinFirmware#25442

commit dfd1fb7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 28 17:50:06 2023 -0600

    🔨 Improve config.ini example fetch

commit 6d8c9f6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 1 20:06:47 2023 -0600

    🌐 Regenerate language data

commit db0c8b3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 5 19:15:22 2023 -0600

    🧑‍💻 Script to make non-accented languages

commit 0e3d951
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 1 19:07:47 2023 -0600

    🔨 Update font scripts

commit 22e6365
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 28 16:16:11 2023 +1300

    🔧 Fix Sensorless Probe sanity-check err (MarlinFirmware#25417)

commit abd710b
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Mon Feb 27 23:00:13 2023 +0000

    🐛 Fix Linear Advance E position tracking (MarlinFirmware#25442)

    Fix regression from MarlinFirmware#24951

commit d5c312c
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Mar 3 20:37:10 2023 +0000

    🐛 Fix ISR_SHAPING_LOOP_CYCLES (MarlinFirmware#25335)

commit 64f9c17
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Mar 4 09:32:04 2023 +1300

    🔨 Fix 'step' type in createTemperatureLookupMarlin.py (MarlinFirmware#25455)

commit bac334c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Feb 26 19:03:28 2023 -0800

    🔨 Fix env STM32G0B1RE_btt, add …_manta_btt (MarlinFirmware#25431)

commit 071d54e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 23 21:38:11 2023 -0600

    🎨 Use LIMIT macro

commit c4ac8a2
Author: Guðni Már Gilbert <gudni.m.g@gmail.com>
Date:   Fri Feb 24 03:29:47 2023 +0000

    ⚡️ Reduce edit_screen code size (MarlinFirmware#25420)

commit 53698b8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 22 14:30:02 2023 -0600

    🔧 Fix Einsy Rambo TMC driver check

commit d5d497f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 21 18:22:16 2023 -0600

    🔨 Fix marlin_custom.* without lib_deps

commit e65e38a
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Tue Feb 21 22:37:11 2023 +0000

    🐛 Fix AVR maths used by Stepper (MarlinFirmware#25338)

commit 9d56b7f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Feb 22 11:27:47 2023 +1300

    🔨 Encrypt some MKS Robin (MarlinFirmware#25349)

commit 1748abd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 21 15:08:25 2023 -0600

    🧑‍💻 Fix preheat tests (nested macro limit ~256)

    Followup to MarlinFirmware#25407

commit 7afd823
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 21 15:25:22 2023 +1300

    🔧 Sanity-check hotend max / preheat temps (MarlinFirmware#25407)

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

commit 4a1cbff
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 21 13:58:40 2023 +1300

    📺 Update Re-ARM VIKI2 SPI pins (MarlinFirmware#25411)

commit 94780bb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 17 22:12:11 2023 -0600

    🚸 Interruptible PLR (MarlinFirmware#25395)

commit 838df37
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Feb 16 12:58:51 2023 +1300

    🐛 Fix FastPWM calculations (MarlinFirmware#25343)

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

commit 7a8c984
Author: Trevin Small <trevincub03@gmail.com>
Date:   Wed Feb 15 19:00:10 2023 -0500

    ✏️ Fix README typo (MarlinFirmware#25388)

commit 50f4e6b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 14 22:29:47 2023 -0600

    🎨 Tweak VALIDATE_MESH_TILT

commit db8f501
Author: Frederik Kemner <stuff+github@fredo.org>
Date:   Wed Feb 15 05:25:47 2023 +0100

    🚸 SPI endstops for X/Y Dual and Core (MarlinFirmware#25371)

commit 255bc3c
Author: Radek <46979052+radek8@users.noreply.github.com>
Date:   Wed Feb 15 04:57:39 2023 +0100

    📝 Fix BTT_MINI_12864_V1 comment (MarlinFirmware#25366)

commit 38c4c7f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 11 21:29:32 2023 -0600

    🔨 Suppress native build warnings

commit fecb667
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Thu Feb 9 06:46:02 2023 +0300

    🔨 Adjust INI comments (MarlinFirmware#25183)

commit f7485ce
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:31:02 2023 -0600

    🩹 Extra axis min home with Delta Sensorless Probe

commit a49d286
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:29:37 2023 -0600

    🩹 Extra axes for Tool Change

commit 59c8857
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:28:56 2023 -0600

    🩹 Various simple fixes

commit 6e38ec3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:26:59 2023 -0600

    🩹 Safe Bed Leveling updates

commit 93c61b1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:19:12 2023 -0600

    🩹 Misc. extra axis updates

commit 87d7449
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 19:39:21 2023 -0600

    🩹 Use 'M205 D' when 'B' is an axis

commit 98c9ecd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 19:37:10 2023 -0600

    🔧 Add a test for extra axes

commit 8976bc5
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Feb 7 22:39:09 2023 -0800

    ✨ BigTreeTech Manta M4P, M5P, M8P V1.0 / 1.1, E3 EZ (MarlinFirmware#25001)

commit e3cff7a
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sat Feb 4 05:10:26 2023 -0300

    🧑‍💻 General 'MediaFile' type alias (MarlinFirmware#24424)

commit 4000db2
Author: vyacheslav-shubin <shubin-vv@krista.ru>
Date:   Sat Feb 4 10:36:07 2023 +0300

    🧑‍💻 Add SD Card 'hide' method for dev usage (MarlinFirmware#22425)

commit f9621e2
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Feb 2 17:41:46 2023 -0800

    📝 Fix Z*_ENDSTOP_ADJUSTMENT comments (MarlinFirmware#25295)

commit 1a184e5
Author: kg333 <matthew@kyengineer.com>
Date:   Wed Feb 1 19:02:26 2023 -0500

    📺 Melzi v4 with BTT SKR Mini E3 (MarlinFirmware#25321)

commit 6e42735
Author: Martin Turski <quiret@vfemail.net>
Date:   Fri Feb 3 04:01:22 2023 +0100

    🔨 Fix test build path with spaces (MarlinFirmware#25329)

commit 79e2375
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Wed Feb 1 01:51:11 2023 -0600

    🔧 Fix SD sorting sanity checks (MarlinFirmware#25318)

commit 858de4f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 30 22:11:50 2023 -0600

    🔧 Fix build with no Y axis (MarlinFirmware#25311)

commit bac0b35
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Mon Jan 30 21:57:36 2023 -0600

    🩹 Fix G61 axis parameters with no offset (MarlinFirmware#25312)

commit 60f3857
Author: Darren Garnier <dgarnier@reinrag.net>
Date:   Mon Jan 30 23:00:49 2023 -0500

    🔨 Fix config.ini URL fetch (MarlinFirmware#25313)

commit b3c004e
Author: avionix-g <63542699+avionix-g@users.noreply.github.com>
Date:   Wed Jan 25 23:14:52 2023 -0500

    🐛 Fix MKS board Ultipanel support (MarlinFirmware#25278)

commit 9e755a2
Author: xBiohazardx <36756950+xBiohazardx@users.noreply.github.com>
Date:   Fri Jan 27 01:05:04 2023 +0100

    ✏️ Fix probe invert flag (MarlinFirmware#25282)

commit 0d83118
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 25 21:37:10 2023 -0600

    🔧 Refine Input Shaping check (MarlinFirmware#25280)

commit 0ed083a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 20 21:17:13 2023 -0600

    SDIO retry, hsd clock, etc.

commit 2c39f84
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 24 02:21:02 2023 -0600

    🔧 Overridable Stepper EN init

commit b7e4216
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Mon Jan 23 01:37:35 2023 -0600

    🐛 Fix Ender-2 Stock Display with Melzi (MarlinFirmware#25258)

commit 536e8a7
Author: MarkMan0 <38912829+MarkMan0@users.noreply.github.com>
Date:   Sun Dec 18 06:48:33 2022 +0100

    🐛 Fix, Refactor PID scaling (MarlinFirmware#25096)

commit 8c34258
Author: John Robertson <john@cirtech.co.uk>
Date:   Tue Jan 17 23:53:39 2023 +0000

    🐛 Fix potential I2S buffer overwrite (MarlinFirmware#25113)

commit dd892c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 16 22:11:49 2023 -0600

    🎨 Heading cleanup

commit 947a9cb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 15 06:48:17 2023 -0600

    🎨 Language / menu cleanup

commit 62487c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 14 07:44:57 2023 -0600

    ✏️  ProUI followup

commit 6cf085d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 15 01:11:49 2023 -0600

    🔧 Added MOTHERBOARD error text

commit c3c6432
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 14 16:48:17 2023 -0500

    🎨 Misc. formatting
Andy-Big pushed a commit to Andy-Big/Marlin_FB_Reborn that referenced this pull request Jul 11, 2023
pierre-quelin added a commit to pierre-quelin/MyMarlin that referenced this pull request Jul 17, 2023
* 🐛 Fix homing_needed_error

* 🧑‍💻 Fix D5 warning

* 🎨 Misc. formatting

* 🔧 Added MOTHERBOARD error text

* ✏️  ProUI followup

* 🎨 Language / menu cleanup

* 🎨 Heading cleanup

* 🐛 Fix potential I2S buffer overwrite (MarlinFirmware#25113)

* 🐛 Fix, Refactor PID scaling (MarlinFirmware#25096)

* 🐛 Fix Ender-2 Stock Display with Melzi (MarlinFirmware#25258)

* 🔧 Overridable Stepper EN init

* SDIO retry, hsd clock, etc.

* 🔧 Refine Input Shaping check (MarlinFirmware#25280)

* ✏️ Fix probe invert flag (MarlinFirmware#25282)

* 🐛 Fix MKS board Ultipanel support (MarlinFirmware#25278)

* 🔨 Fix config.ini URL fetch (MarlinFirmware#25313)

* 🩹 Fix G61 axis parameters with no offset (MarlinFirmware#25312)

* 🔧 Fix build with no Y axis (MarlinFirmware#25311)

* 🔧 Fix SD sorting sanity checks (MarlinFirmware#25318)

* 🔨 Fix test build path with spaces (MarlinFirmware#25329)

* 📺 Melzi v4 with BTT SKR Mini E3 (MarlinFirmware#25321)

* 📝 Fix Z*_ENDSTOP_ADJUSTMENT comments (MarlinFirmware#25295)

* 🧑‍💻 Add SD Card 'hide' method for dev usage (MarlinFirmware#22425)

* 🧑‍💻 General 'MediaFile' type alias (MarlinFirmware#24424)

* ✨ BigTreeTech Manta M4P, M5P, M8P V1.0 / 1.1, E3 EZ (MarlinFirmware#25001)

* 🔧 Add a test for extra axes

* 🩹 Use 'M205 D' when 'B' is an axis

* 🩹 Misc. extra axis updates

* 🩹 Safe Bed Leveling updates

* 🩹 Various simple fixes

* 🩹 Extra axes for Tool Change

* 🩹 Extra axis min home with Delta Sensorless Probe

* 🔨 Adjust INI comments (MarlinFirmware#25183)

* 🔨 Suppress native build warnings

* 📝 Fix BTT_MINI_12864_V1 comment (MarlinFirmware#25366)

* 🚸 SPI endstops for X/Y Dual and Core (MarlinFirmware#25371)

* 🎨 Tweak VALIDATE_MESH_TILT

* ✏️ Fix README typo (MarlinFirmware#25388)

* 🐛 Fix FastPWM calculations (MarlinFirmware#25343)

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

* 🚸 Interruptible PLR (MarlinFirmware#25395)

* 📺 Update Re-ARM VIKI2 SPI pins (MarlinFirmware#25411)

* 🔧 Sanity-check hotend max / preheat temps (MarlinFirmware#25407)

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

* 🧑‍💻 Fix preheat tests (nested macro limit ~256)

Followup to MarlinFirmware#25407

* 🔨 Encrypt some MKS Robin (MarlinFirmware#25349)

* 🐛 Fix AVR maths used by Stepper (MarlinFirmware#25338)

* 🔨 Fix marlin_custom.* without lib_deps

* 🔧 Fix Einsy Rambo TMC driver check

* ⚡️ Reduce edit_screen code size (MarlinFirmware#25420)

* 🎨 Use LIMIT macro

* 🔨 Fix env STM32G0B1RE_btt, add …_manta_btt (MarlinFirmware#25431)

* 🔨 Fix 'step' type in createTemperatureLookupMarlin.py (MarlinFirmware#25455)

* 🐛 Fix ISR_SHAPING_LOOP_CYCLES (MarlinFirmware#25335)

* 🐛 Fix Linear Advance E position tracking (MarlinFirmware#25442)

Fix regression from MarlinFirmware#24951

* 🔧 Fix Sensorless Probe sanity-check err (MarlinFirmware#25417)

* 🔨 Update font scripts

* 🧑‍💻 Script to make non-accented languages

* 🌐 Regenerate language data

* 🔨 Improve config.ini example fetch

* 🐛 Fix LA retract/feedrate edge case (MarlinFirmware#25445)

Followup to MarlinFirmware#25442

* 🐛 Fix apply_power for SPINDLE_SERVO (MarlinFirmware#25465)

* 🐛 Fix Flash EEPROM for STM32G0B1CB (MarlinFirmware#25469)

* 🔨 VSCode + Devcontainer support (MarlinFirmware#22420)

* ✨ BTT Octopus Max EZ 1.0, SKR 3.0 / 3.0 EZ (MarlinFirmware#25387, MarlinFirmware#25495, MarlinFirmware#25535)

* ⚡️ Exit from ISR on AVR already does sei

Co-Authored-By: tombrazier <68918209+tombrazier@users.noreply.github.com>

* 🐛 Fix Anet ET4 SD_SS_PIN (MarlinFirmware#25492)

* 🔧 Sanity-check PRINTCOUNTER_SAVE_INTERVAL + ESP32 I2S Exp (MarlinFirmware#25527)

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

* 🐛 Fix long filename read/report (MarlinFirmware#25509)

* 🎨 Suppress M122 sign warning (MarlinFirmware#25613)

* 🩹 Fix SD partitionTable packing (MarlinFirmware#25648)

* 🩹 Fix MARLIN_F446Zx_TRONXY variant (MarlinFirmware#25659)

Followup to 9be1554

* 🔧 Update thermocouple 2 pin sanity check (MarlinFirmware#25627)

* 🐛 Fix MKS Robin Nano 1.3 F4 pin collision (MarlinFirmware#25838)

* 🔨 Fix thread-unsafe deque iteration

* 🔨 Use 'build_src_filter'

* 🧑‍💻 Add IA_CREALITY CI test (MarlinFirmware#25434)

* 🌐 Update Slovak language (MarlinFirmware#25305)

* 🌐 Update Italian language (MarlinFirmware#25309)

* 📝 Link to archived RA Control Panel page (MarlinFirmware#25424)

* 🚸 Improve CocoaPress Touch UI (MarlinFirmware#25446)

* 🐛 Fix UBL 'G29 J' mesh tilt (MarlinFirmware#25453)

Fix regression from MarlinFirmware#24214

* 📝 Fix a comment

* 🌐 Update Italian language (MarlinFirmware#25454)

* 🌐 Update Turkish language (MarlinFirmware#25447)

* 🩹 Fan Menu / Status fixes

Followup to MarlinFirmware#21888

* 🩹 Fix DWIN MarlinUI Fan/E/XY (MarlinFirmware#25502)

* ✨ Sovol v1.3.1 (Sovol SV06) (MarlinFirmware#25267)

* 🧑‍💻 More IntelliSense-friendly declares

* 🎨 Suppress warning (MarlinFirmware#25529)

* ⚡️ Misc. optimizations

* 🐛 Fix FYSETC Cheetah v2.0 Servo/Probe pins (MarlinFirmware#24635)

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

* 🩹 Fix Ender 2 stock LCD (MarlinFirmware#25538)

* 🩹 Fix a serial_ternary

* 🎨 calibration_stage => stage

* 🩹 Reset touch screen calibration on failure (MarlinFirmware#25334)

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

* 🎨 Pins header comments

Co-Authored-By: Martin Turski <turningtides@outlook.de>

* 🎨 LPC_SOFTWARE_SPI => SOFTWARE_SPI

Co-Authored-By: Martin Turski <turningtides@outlook.de>

* 🩹 Update TRONXY_V10 SPI_FLASH pins

* 🩹 Fix Chitu3D V6 default probe pin (MarlinFirmware#25552)

* 🎨 Timer tweaks

* 🩹 Fix Touch Calibration first point (MarlinFirmware#25298)

* 🧑‍💻 Auto Fan / Cooler Fan updates (MarlinFirmware#25554)

* 🐛 Fix M23 long filename support (MarlinFirmware#25540)

* 🔨 INI Updates

Co-Authored-By: Martin Turski <turningtides@outlook.de>

* 🔧 Fix up WiFi options (MarlinFirmware#25586)

* 🎨 Remove unused ProUI : UBLValidMesh (MarlinFirmware#25591)

* 🔨 Improve Docker local tests support (MarlinFirmware#25583)

* 🔨 MarlinSimUI updates (MarlinFirmware#25589)

* 🩹 Fix Ender-3 V2 with no fan

* 🩹 Fix displayed mix percentages

* 🌐 Update Italian language (MarlinFirmware#25587)

* 🐛 Ensure root for 'M503 C'

* 🧑‍💻 Update pinsformat.js

* 📝 Update Ender # labels

* 🚸 Support CoreXY without Z (MarlinFirmware#25630)

* 🎨 Apply const (MarlinFirmware#25643)

* 🎨 Detab some build files

* 🔧 Move TFT sanity checks

* ⚡️ Skip a redundant BLTouch::command (MarlinFirmware#25656)

* 🚸 Minor M43 improvements

* 🧑‍💻 Clarify G28 R / R0

* 🔧 Move FIL_RUNOUT_PIN for Chiron + GLCD

* 🩹 Fix AUTOFAN_CASE

Followup to MarlinFirmware#25554

* 🔨 Improve runout script check

* 🔧 Trigorilla / Chiron updates

Followup to c3f34e4

* 🧑‍💻 Apply simplified ?:

* 🧑‍💻 JyersUI code cleanup

* 🧑‍💻 Status Message cleanup

* 🧑‍💻 HostUI::continue_prompt method

* 🩹 Status / Host Prompt followup (MarlinFirmware#25720)

Followup to MarlinFirmware#25679

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

* 🐛 Fix Configuration Embedding (MarlinFirmware#25688)

* 🔨 Fix, clean up STM32F1 envs (MarlinFirmware#25697)

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

* 🩹 Bail on 'mc.zip' write error (MarlinFirmware#25695)

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

* 🚸 Echo G30 out-of-bounds (MarlinFirmware#25671)

* 🩹 Fix laser with no PWM compile (MarlinFirmware#25290)

* 🩹 Fix Spindle/Laser ENA pin test (MarlinFirmware#25622)

* 🧑‍💻 Minor SpindleLaser::set_enabled tweak

* 🩹 Correctly add JSON to mc.zip (MarlinFirmware#25706)

* 🔧 Check renamed LIN_ADVANCE_K (MarlinFirmware#25710)

* 🐛 Fix G38 with Z, support 9 axes (MarlinFirmware#25691)

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

* 🚸 Permit G38 with Core (MarlinFirmware#25713)

* 🎨 Clean up TFT Color UI display items (MarlinFirmware#25712)

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

* 🩹 Fix UBL safe measure move with extra axes

Followup to 7e79fc5

* 🚸 Improve PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED (MarlinFirmware#25681)

* 📝 Developer note in boards.h

* 🔨 Prevent SlowSoftWire + Wire name conflict (MarlinFirmware#25707)

* 🔧 Extra axis endstop defaults

* 🧑‍💻 Change HAL_PATH macro for easier HAL relocation (MarlinFirmware#25743)

* 🔧 Update config.ini script

* 🔨 Servo Timer 1 with STM32F103RC_fysetc (MarlinFirmware#25741)

* 🧑‍💻 Use NUM_AXIS_ARRAY

* 🩹 Fix TFT sanity error

* 🔧 Move MMU section

* 🔧 Fix X2/Y2 axis pins check

* 🐛 Fix STM32 USB disconnect behavior (MarlinFirmware#25762)

* 🎨 Move G28O inside ProUI

* 🔨 MKS Robin2 PIO Env (MarlinFirmware#25792)

* 🚸 Faster default Marlin feedrate

* 🔧 Move SOFT_PWM_SCALE fallback to cpp (MarlinFirmware#25800)

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

* 🧑‍💻 M43 updates

* 🔧 Fix SHAPING_MIN_FREQ check (MarlinFirmware#25358)

* 📌 TH3D EZBoard SD_DETECT_PIN 27

* 🧑‍💻 ftdi_language

* 🩹 Improve edit menu rounding

* 🩹 Fix null pwm_details

* 🚸 Improve EEPROM validation (MarlinFirmware#25860)

* 🩹 Fix TFT LVGL compile error (MarlinFirmware#25865)

Fixes regression from MarlinFirmware#24302

* 🔖 Version 2.1.2.1

* 🩹 Prevent Z drop with G28 X/Y

* 🐛 Fix G2/G3 limiting_speed (MarlinFirmware#25988)

* 🐛 Fix G2/G3 limiting_speed (MarlinFirmware#25988)

* 🔖 Version 2.1.2.1

---------

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
Co-authored-by: John Robertson <john@cirtech.co.uk>
Co-authored-by: MarkMan0 <38912829+MarkMan0@users.noreply.github.com>
Co-authored-by: Bob Kuhn <bob.kuhn@att.net>
Co-authored-by: xBiohazardx <36756950+xBiohazardx@users.noreply.github.com>
Co-authored-by: avionix-g <63542699+avionix-g@users.noreply.github.com>
Co-authored-by: Darren Garnier <dgarnier@reinrag.net>
Co-authored-by: Martin Turski <quiret@vfemail.net>
Co-authored-by: kg333 <matthew@kyengineer.com>
Co-authored-by: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Co-authored-by: vyacheslav-shubin <shubin-vv@krista.ru>
Co-authored-by: Victor Oliveira <rhapsodyv@gmail.com>
Co-authored-by: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Co-authored-by: Radek <46979052+radek8@users.noreply.github.com>
Co-authored-by: Frederik Kemner <stuff+github@fredo.org>
Co-authored-by: Trevin Small <trevincub03@gmail.com>
Co-authored-by: ellensp <530024+ellensp@users.noreply.github.com>
Co-authored-by: tombrazier <68918209+tombrazier@users.noreply.github.com>
Co-authored-by: Guðni Már Gilbert <gudni.m.g@gmail.com>
Co-authored-by: Hans-Christian Ebke <ebke@cs.rwth-aachen.de>
Co-authored-by: alextrical <35117191+alextrical@users.noreply.github.com>
Co-authored-by: Sion Williams <sion5@hotmail.co.uk>
Co-authored-by: Eduard Sukharev <sukharev.eh@gmail.com>
Co-authored-by: Jason Smith <jason.inet@gmail.com>
Co-authored-by: Chris Pepper <p3p@p3psoft.co.uk>
Co-authored-by: Roman Moravčík <roman.moravcik@gmail.com>
Co-authored-by: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Co-authored-by: Marcio T <mlt4356-github@yahoo.com>
Co-authored-by: jamespearson04 <jamespearson04@hotmail.co.uk>
Co-authored-by: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Co-authored-by: dwzg <50058606+dwzg@users.noreply.github.com>
Co-authored-by: Michael Hill <mhill@hillsoftware.com>
Co-authored-by: Davide Rombolà <davide.rombola@gmail.com>
Co-authored-by: George Fu <nailao_5918@163.com>
Co-authored-by: Martin Turski <turningtides@outlook.de>
Co-authored-by: Andrew <18502096+classicrocker883@users.noreply.github.com>
Co-authored-by: John Unland <junland.foss@gmail.com>
Co-authored-by: David Fries <David@Fries.net>
Co-authored-by: Dennis Lawler <4824647+drawlerr@users.noreply.github.com>
Co-authored-by: Alexey D. Filimonov <alexey@filimonic.net>
Co-authored-by: Jay Robson <45777442+jsrobson10@users.noreply.github.com>
Co-authored-by: Anson Liu <ansonl@users.noreply.github.com>
Co-authored-by: Scott Mikutsky <smikutsky@gmail.com>
Co-authored-by: Chris Bagwell <chris@cnpbagwell.com>
SMHRambo pushed a commit to SMHRambo/Marlin that referenced this pull request Jul 17, 2023
houseofbugs added a commit to th3dstudio/UnifiedFirmware that referenced this pull request Oct 9, 2023
akreager added a commit to akreager/Marlin that referenced this pull request Oct 14, 2023
commit 60cd1ecb69d20b3ede99620b17918d81e812992b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 7 01:08:19 2023 -0500

    🩹 Fix G33 output

    See #26299

commit 09d0b4d15228b3efb6fd765f1e1574f521df2e27
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 16 14:01:35 2023 -0500

    🔖 Version 2.1.2.1

commit 862d0e9d5dcf84ca61fe80659a94835fec44ec6c
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Jun 17 22:55:02 2023 +0200

    🐛 Fix G2/G3 limiting_speed (#25988)

commit cbdc01ef1aa52bb3b30cf38dbb8ea773e99522b8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 29 19:23:21 2023 -0500

    🩹 Prevent Z drop with G28 X/Y

commit 2dffa3994de96ab5f85d2967c17ad2bc087a3e33
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 21 08:41:01 2023 -0500

    🩹 Fix TFT LVGL compile error (#25865)

    Fixes regression from #24302

commit 09247e7ea9f1571c7061eeaae00d9affefa90821
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 19 23:30:48 2023 -0500

    🚸 Improve EEPROM validation (#25860)

commit 62a7bba225baf44218f7c2b559abaa1a2d432b85
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu May 18 19:53:03 2023 -0500

    🩹 Fix null pwm_details

commit ce38260dfbdacbc374ac1f497ee99886f11c23ab
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 16 01:28:04 2023 -0500

    🩹 Improve edit menu rounding

commit 3ad9c0b98c9a7d01d3c81f3b889ab15b7faf0423
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 2 18:15:23 2023 -0500

    🧑‍💻 ftdi_language

commit a0fd588797ae2303b271c5435840985ea43d444c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 14 18:08:33 2023 -0500

    📌 TH3D EZBoard SD_DETECT_PIN 27

commit 876f996691062fc44cee73d6828469007ff48179
Author: Chris Bagwell <chris@cnpbagwell.com>
Date:   Wed May 10 05:59:28 2023 -0500

    🔧 Fix SHAPING_MIN_FREQ check (#25358)

commit dba521a9fbf19138ded3edcd4f8cab0e3b2ff50a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 14 18:32:59 2023 -0500

    🧑‍💻 M43 updates

commit 50ad32356748dcfd9ef1dfbf3b9224c0f410aefa
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue May 9 22:52:59 2023 +0200

    🔧 Move SOFT_PWM_SCALE fallback to cpp (#25800)

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

commit 03149b973e4eb67d2941ddd0c27f1563994c6ebf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 6 17:37:47 2023 -0500

    🚸 Faster default Marlin feedrate

commit 6e91f3608bd866c615e3abb0b1fb243eaa5208f2
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon May 8 23:54:46 2023 +1200

    🔨 MKS Robin2 PIO Env (#25792)

commit 0708275c6a6caeb21dc483ff2e8fca4c3584ce83
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu May 4 18:05:56 2023 -0500

    🎨 Move G28O inside ProUI

commit a2040bae21c968794c612e17473ff9cfeafb8319
Author: Scott Mikutsky <smikutsky@gmail.com>
Date:   Mon May 1 02:10:46 2023 -0400

    🐛 Fix STM32 USB disconnect behavior (#25762)

commit b6c27fbbdb7a6955c6752a34131bff865f2fb465
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 30 18:12:13 2023 -0500

    🔧 Fix X2/Y2 axis pins check

commit b2acd51bc2c05d00960e2dd97ba42a6ec99f8861
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 28 11:03:38 2023 -0500

    🔧 Move MMU section

commit 6d46a4924c877f6ca190e862462829770fd25862
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 1 18:15:31 2023 -0500

    🩹 Fix TFT sanity error

commit d959e3b0c48398c614f75a9ee6e5a9727851c99e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 30 18:12:21 2023 -0500

    🧑‍💻 Use NUM_AXIS_ARRAY

commit f48467b2e3be909113cfd0dea42202f2e01106ac
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Apr 26 14:39:56 2023 -0500

    🔨 Servo Timer 1 with STM32F103RC_fysetc (#25741)

commit a9c476c55e47fade92ee2926e7d93bea9894e4d8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 16 18:43:44 2023 -0500

    🔧 Update config.ini script

commit 61d1ce7d2e079d0b0f90bc28d22ee6880ea4f659
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Apr 26 14:29:21 2023 -0500

    🧑‍💻 Change HAL_PATH macro for easier HAL relocation (#25743)

commit 3c9e8e1e60665c8782cb5eaae45fe3927c6a6b01
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Apr 26 02:57:53 2023 -0500

    🔧 Extra axis endstop defaults

commit d5548556d38c4f0ada26194a8889e7b09138aaa4
Author: Anson Liu <ansonl@users.noreply.github.com>
Date:   Mon Apr 24 22:07:12 2023 -0400

    🔨 Prevent SlowSoftWire + Wire name conflict (#25707)

commit 44b06d756156b757fa6c7fb79b7eef4bfe297ab7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Apr 24 05:24:10 2023 -0500

    📝 Developer note in boards.h

commit ffe47a0197c6ec8db932d25bf19e724f43235137
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 23 03:17:55 2023 -0500

    🚸 Improve PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED (#25681)

commit 6a12937dec532b51451f06859b05ddd139e2c26c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 23 02:07:42 2023 -0500

    🩹 Fix UBL safe measure move with extra axes

    Followup to 7e79fc5b

commit 00c96dc3cd267ca81db94f048f95dbc4b5fd79c3
Author: Alexey D. Filimonov <alexey@filimonic.net>
Date:   Sat Apr 22 12:06:19 2023 +0300

    🎨 Clean up TFT Color UI display items (#25712)

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

commit 7fb92f4e64ecab6e452b14bd5a304ff27b18047e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Apr 19 17:21:53 2023 -0700

    🚸 Permit G38 with Core (#25713)

commit a93b3c1222178e5f58cfa3f801459dcfca51a0a2
Author: Jay Robson <45777442+jsrobson10@users.noreply.github.com>
Date:   Thu Apr 20 06:58:42 2023 +1000

    🐛 Fix G38 with Z, support 9 axes (#25691)

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

commit d75e016f3a8bc4965699f5656832a786efd33ccd
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Apr 19 14:53:11 2023 -0700

    🔧 Check renamed LIN_ADVANCE_K (#25710)

commit 5426759a37e90b969a5df599fc224274583c497c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Apr 19 12:50:11 2023 +1200

    🩹 Correctly add JSON to mc.zip (#25706)

commit a5b5db4819806f7143d82bff3f2677e502839e26
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 16 19:11:56 2023 -0500

    🧑‍💻 Minor SpindleLaser::set_enabled tweak

commit 15671a46d20087f662ad5d67bbc945d2e6cb9339
Author: Alexey D. Filimonov <alexey@filimonic.net>
Date:   Mon Apr 17 02:38:12 2023 +0300

    🩹 Fix Spindle/Laser ENA pin test (#25622)

commit f62d47a1657c82da7838556fc88853c137e23589
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Sun Apr 16 18:35:13 2023 -0500

    🩹 Fix laser with no PWM compile (#25290)

commit 5b8be446a03d3a8e6b964c7f3231c969bacf579d
Author: Dennis Lawler <4824647+drawlerr@users.noreply.github.com>
Date:   Sat Apr 15 22:50:26 2023 -0600

    🚸 Echo G30 out-of-bounds (#25671)

commit df7d13a4d0ebc1a9053d0e8df1ce1b1a17c46d59
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Apr 18 10:40:13 2023 +0200

    🩹 Bail on 'mc.zip' write error (#25695)

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

commit 859203547410de151eb063c9c2356576e5ee468f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Apr 18 07:51:25 2023 +1200

    🔨 Fix, clean up STM32F1 envs (#25697)

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

commit 5a3806633ad8af04815cb3281f33dc1d0348495e
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Apr 16 03:26:08 2023 +0200

    🐛 Fix Configuration Embedding (#25688)

commit 0ece7ca66d55fb46d0a919dd34385770284943e8
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Apr 23 08:59:51 2023 +1200

    🩹 Status / Host Prompt followup (#25720)

    Followup to #25679

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

commit 2fb47afa4aa16167cbbc21d9b51faa190f584322
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 18:06:56 2023 -0500

    🧑‍💻 HostUI::continue_prompt method

commit d2e84e84466dabe070bfe93099a677f113155b37
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 17:51:45 2023 -0500

    🧑‍💻 Status Message cleanup

commit 3340491f90ba603748e2c1d0b287f7a86da30e1f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 18:00:25 2023 -0500

    🧑‍💻 JyersUI code cleanup

commit d3991011e4b75b63825126a215781e0e750ee416
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 18:09:16 2023 -0500

    🧑‍💻 Apply simplified ?:

commit 02178bdcaf569f9a42af1f82ca89d555a29f4ca5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 22:22:07 2023 -0500

    🔧 Trigorilla / Chiron updates

    Followup to c3f34e4e

commit 8bc6f7707da7cee2b6eacc084f56fbe4bf91f2b1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 13 04:06:35 2023 -0500

    🔨 Improve runout script check

commit 141cfdde2cfa1691f9af16051bb213cb47430ca1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 13 04:05:56 2023 -0500

    🩹 Fix AUTOFAN_CASE

    Followup to #25554

commit 4781d57912a52112f1045d01d992e51ab1148286
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 11 21:28:21 2023 -0500

    🔧 Move FIL_RUNOUT_PIN for Chiron + GLCD

commit 6ebbfa832cfb9542d4998595394de31b5ff6a555
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 11 18:43:18 2023 -0500

    🧑‍💻 Clarify G28 R / R0

commit cbbcc01b4743cf87406619692087bdf77c23db89
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 11 21:26:46 2023 -0500

    🚸 Minor M43 improvements

commit b5ccd65fb5423f1b52d123dec6ec7b5f33891850
Author: David Fries <David@Fries.net>
Date:   Mon Apr 10 04:38:38 2023 -0500

    ⚡️ Skip a redundant BLTouch::command (#25656)

commit cf1f56f132af0a8c7556ddee1e201a20c9efa7e5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 26 20:26:18 2023 -0500

    🔧 Move TFT sanity checks

commit 1e2de0e036c8192b130b4a50d8fbabaf52245fc4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 7 01:49:27 2023 -0500

    🎨 Detab some build files

commit cf28f48481333f0cd2ccf5b2cb406eebfc004810
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 7 01:33:03 2023 -0500

    🎨 Apply const (#25643)

commit 69e8f2ee99c3e12385c39e9ed568e8913687496e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Apr 7 18:32:25 2023 +1200

    🚸 Support CoreXY without Z (#25630)

commit 2be9f98b9f00d7aced5ee4313edb240893f5b348
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 6 17:24:32 2023 -0500

    📝 Update Ender # labels

commit c2c1ff8da98cd81104703f083d44e2e7ec3ef627
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 6 16:58:12 2023 -0500

    🧑‍💻 Update pinsformat.js

commit e24087478d44fa2f03281ebc3d18ee6e53b1f8bc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 4 20:46:46 2023 -0500

    🐛 Ensure root for 'M503 C'

commit 641295032fd5e5f42746603e2eb680d70b789970
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Apr 1 06:19:48 2023 +0200

    🌐 Update Italian language (#25587)

commit 466ce0b8d26fd3110ac59979a105ac85d6656116
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 16 13:44:00 2021 -0500

    🩹 Fix displayed mix percentages

commit 59a2cb032f7ba912cdb48aadf8c152feb61d9839
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 29 21:50:04 2023 -0500

    🩹 Fix Ender-3 V2 with no fan

commit 85e28f31232c789a4a91683637fbef1ec145f0d2
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Wed Mar 29 05:45:22 2023 +0100

    🔨 MarlinSimUI updates (#25589)

commit bbb75ab9b3daae9f6fd0a07db3e427f69f212743
Author: John Unland <junland.foss@gmail.com>
Date:   Tue Mar 28 23:23:27 2023 -0500

    🔨 Improve Docker local tests support (#25583)

commit 637cd952cad0ac08ab0d6ad906f16d5eca34aa51
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Mar 29 00:20:52 2023 -0400

    🎨 Remove unused ProUI : UBLValidMesh (#25591)

commit d04b3ff8028a1c432370f230132621cf26480e66
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 28 16:14:37 2023 -0500

    🔧 Fix up WiFi options (#25586)

commit 51b33ccf905b6623d1966d4f9dcc081914f5484d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 03:01:09 2023 -0500

    🔨 INI Updates

    Co-Authored-By: Martin Turski <turningtides@outlook.de>

commit f452df047d437f01a401eee3944a2ba0e2a873d1
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Mon Mar 27 21:55:56 2023 +0300

    🐛 Fix M23 long filename support (#25540)

commit cd0bfcd3f29bdf86a165f852d01bf3af018e32fc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 26 04:36:12 2023 -0500

    🧑‍💻 Auto Fan / Cooler Fan updates (#25554)

commit bcf30988cbf04b2416d321ced84e9b932e819b70
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Mar 26 02:09:27 2023 -0700

    🩹 Fix Touch Calibration first point (#25298)

commit a40e17d94b6faceb5fc26e899571bbc092d06e08
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 25 20:17:54 2023 -0500

    🎨 Timer tweaks

commit d66f4baba6d9ccac9f425ba8d297e8b14cdfdd46
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Mar 25 17:14:21 2023 +1300

    🩹 Fix Chitu3D V6 default probe pin (#25552)

commit 26cb2d5b0827fa1b5d18691a29cc3a13cb3f2a70
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 18:43:53 2023 -0500

    🩹 Update TRONXY_V10 SPI_FLASH pins

commit 376e940ae9c6fc62063649bf08bdb7ef53d29008
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 02:43:20 2023 -0500

    🎨 LPC_SOFTWARE_SPI => SOFTWARE_SPI

    Co-Authored-By: Martin Turski <turningtides@outlook.de>

commit ebe3fe08180c6cc6583b49576d498241a4409572
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 02:40:29 2023 -0500

    🎨 Pins header comments

    Co-Authored-By: Martin Turski <turningtides@outlook.de>

commit 0d7e30bcd8f8f0c9039cf2e0a06610dde7dac48c
Author: Martin Turski <turningtides@outlook.de>
Date:   Fri Mar 24 05:08:28 2023 +0100

    🩹 Reset touch screen calibration on failure (#25334)

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

commit accfab85a21745527bb2fbf7445c3ad8744899ca
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Mar 23 17:19:20 2023 -0500

    🎨 calibration_stage => stage

commit d68ad9e0b140e13c5862d693c62e236d75aa5566
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 18 21:57:06 2023 -0500

    🩹 Fix a serial_ternary

commit 70c8859e7f5d49e55d567b2ea61e24f84f9d4992
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Mar 19 13:17:21 2023 +1300

    🩹 Fix Ender 2 stock LCD (#25538)

commit 980fba810d54fd74d94e0216b174b6b0282ae7f0
Author: George Fu <nailao_5918@163.com>
Date:   Sat Mar 18 17:47:54 2023 +0800

    🐛 Fix FYSETC Cheetah v2.0 Servo/Probe pins (#24635)

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

commit d0bdb9c281c98a02bf2f7b93e481f4a91928f182
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 18 17:13:06 2023 -0500

    ⚡️ Misc. optimizations

commit 821d7969f46abeca729bcf19b103b2fbd41535b4
Author: Davide Rombolà <davide.rombola@gmail.com>
Date:   Sat Mar 18 07:35:54 2023 +0100

    🎨 Suppress warning (#25529)

commit dcbba65962cce76dbd28760ba9f2002f4e2a761a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 18 01:22:50 2023 -0500

    🧑‍💻 More IntelliSense-friendly declares

commit 5c3dd467c7c369cd8ddbd5327639d034d3c8c93f
Author: Michael Hill <mhill@hillsoftware.com>
Date:   Sat Mar 18 01:56:07 2023 -0400

    ✨ Sovol v1.3.1 (Sovol SV06) (#25267)

commit e50980e32b1b15b1e5a1829cc40673a12057f3ee
Author: dwzg <50058606+dwzg@users.noreply.github.com>
Date:   Thu Mar 16 01:15:54 2023 +0100

    🩹 Fix DWIN MarlinUI Fan/E/XY (#25502)

commit c3b037e0f313ae7fd254508e82f9076249cb6a38
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 15 19:13:09 2023 -0500

    🩹 Fan Menu / Status fixes

    Followup to #21888

commit 71e6f701f3604beb1d7c87fb288b9a75d64d4007
Author: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Date:   Mon Mar 6 01:29:43 2023 +0300

    🌐 Update Turkish language (#25447)

commit 7f9f922d84d33317bc0b7282f3fb46a8d1dd6d90
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Fri Mar 3 21:27:15 2023 +0100

    🌐 Update Italian language (#25454)

commit 197b3198b55d1aa3c3d2bd8bd7a89f3970176e43
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 3 13:42:46 2023 -0600

    📝 Fix a comment

commit e03dfb8ca1eed0a372801482c70dc5c152a463fe
Author: jamespearson04 <jamespearson04@hotmail.co.uk>
Date:   Fri Mar 3 20:26:38 2023 +0000

    🐛 Fix UBL 'G29 J' mesh tilt (#25453)

    Fix regression from #24214

commit cba3b2c527feecb40f56e756cb7d89108bc8bbe0
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Wed Mar 1 21:07:23 2023 -0700

    🚸 Improve CocoaPress Touch UI (#25446)

commit a9a6d1f716bae7f61dc4b8d40c97c96c7a31571a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Feb 27 15:27:58 2023 +1300

    📝 Link to archived RA Control Panel page (#25424)

commit 61ccd4599e443c09e327559f28f4dd08dc881a49
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Jan 31 06:07:51 2023 +0100

    🌐 Update Italian language (#25309)

commit bab847809c3f896aa166f3ec0ff378f3a6645c0e
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Tue Jan 31 06:07:03 2023 +0100

    🌐 Update Slovak language (#25305)

commit 011087731a06259f75aa2ddee55720a5d478be1b
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 28 06:11:53 2023 +1300

    🧑‍💻 Add IA_CREALITY CI test (#25434)

commit b7ee06bb29fb5a38c5e2963201a79fd45ef56e55
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 16 19:52:36 2023 -0500

    🔨 Use 'build_src_filter'

commit 5f8df0aa21718f20b6c9b4158c23c469c3a38500
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 26 17:49:51 2023 -0500

    🔨 Fix thread-unsafe deque iteration

commit b338159f9d40c06469ad4f6f9f7517d20c29728e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed May 17 06:50:57 2023 +1200

    🐛 Fix MKS Robin Nano 1.3 F4 pin collision (#25838)

commit 2399a24466b22138d7b82336035dc2bf5efecc0f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Apr 10 22:17:50 2023 +1200

    🔧 Update thermocouple 2 pin sanity check (#25627)

commit d05acb762634acff6a1cefc3a2ed32819c23e88f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Apr 10 21:16:52 2023 +1200

    🩹 Fix MARLIN_F446Zx_TRONXY variant (#25659)

    Followup to 9be1554f

commit 81d4f8f26a95ee2c85c02a1b5612b798db19ea9a
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Sat Apr 8 02:55:10 2023 +0100

    🩹 Fix SD partitionTable packing (#25648)

commit b0c3db67f09b02df4c66f75a06a66fc38dfcdeed
Author: Jason Smith <jason.inet@gmail.com>
Date:   Fri Apr 7 18:52:33 2023 -0700

    🎨 Suppress M122 sign warning (#25613)

commit ea6430ddf6c2ceda60b2aecc1143434f91513917
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Wed Mar 15 00:49:49 2023 +0300

    🐛 Fix long filename read/report (#25509)

commit ccb4d11696ff886430463bafe020246582f75c42
Author: John Robertson <john@cirtech.co.uk>
Date:   Sat Mar 18 10:33:15 2023 +0000

    🔧 Sanity-check PRINTCOUNTER_SAVE_INTERVAL + ESP32 I2S Exp (#25527)

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

commit 176ecf4f82d1d18b1a99fceb20aad2eeedbd7842
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Mar 11 00:08:07 2023 -0800

    🐛 Fix Anet ET4 SD_SS_PIN (#25492)

commit 3ec5d6da6e4365fc9a800be6607733465c24ad6e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 11 19:17:25 2023 -0600

    ⚡️ Exit from ISR on AVR already does sei

    Co-Authored-By: tombrazier <68918209+tombrazier@users.noreply.github.com>

commit 75aa880b63eedba3641db1f359dde065637dfc46
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Mar 10 15:56:33 2023 -0800

    ✨ BTT Octopus Max EZ 1.0, SKR 3.0 / 3.0 EZ (#25387, #25495, #25535)

commit a50ff5d7c7267ce7658f1b8b086691e8ead4faca
Author: Sion Williams <sion5@hotmail.co.uk>
Date:   Thu Mar 9 08:45:01 2023 +0000

    🔨 VSCode + Devcontainer support (#22420)

commit 504f09f9448b8c1789ea2ba047a0ad47fa09064c
Author: alextrical <35117191+alextrical@users.noreply.github.com>
Date:   Sun Mar 5 22:28:50 2023 +0000

    🐛 Fix Flash EEPROM for STM32G0B1CB (#25469)

commit aae1102c540db5ca9bd6594dd961416a3138dc2b
Author: Hans-Christian Ebke <ebke@cs.rwth-aachen.de>
Date:   Sun Mar 5 23:25:11 2023 +0100

    🐛 Fix apply_power for SPINDLE_SERVO (#25465)

commit a40ff1357e5f36fedfff9db0f0d8dab4dc7c610b
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Wed Mar 1 00:16:27 2023 +0000

    🐛 Fix LA retract/feedrate edge case (#25445)

    Followup to #25442

commit dfd1fb736d6e37cad5ff0c773ee3453e2a055332
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 28 17:50:06 2023 -0600

    🔨 Improve config.ini example fetch

commit 6d8c9f6ed17396784ea2765b50583b36a9a6f423
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 1 20:06:47 2023 -0600

    🌐 Regenerate language data

commit db0c8b31f7a6da568c2a305e633c5f2c4ac0571c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 5 19:15:22 2023 -0600

    🧑‍💻 Script to make non-accented languages

commit 0e3d9518726f13ac1d37b4dedac09aeaff0a6f1f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 1 19:07:47 2023 -0600

    🔨 Update font scripts

commit 22e6365b2f8c0cfe3f18f9758a347db20eb9a29b
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 28 16:16:11 2023 +1300

    🔧 Fix Sensorless Probe sanity-check err (#25417)

commit abd710b5d660e1f2bb99e576704d5e2c98e8fd91
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Mon Feb 27 23:00:13 2023 +0000

    🐛 Fix Linear Advance E position tracking (#25442)

    Fix regression from #24951

commit d5c312cff078ae0dae57a1021daccf9f5ffff157
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Mar 3 20:37:10 2023 +0000

    🐛 Fix ISR_SHAPING_LOOP_CYCLES (#25335)

commit 64f9c17f3baf7ea0ad6081f0bea7952595d79258
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Mar 4 09:32:04 2023 +1300

    🔨 Fix 'step' type in createTemperatureLookupMarlin.py (#25455)

commit bac334c74eecdb35b1cb8d6ce8d6066b91095652
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Feb 26 19:03:28 2023 -0800

    🔨 Fix env STM32G0B1RE_btt, add …_manta_btt (#25431)

commit 071d54ec7082f265b3665ab086e5580925f8b124
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 23 21:38:11 2023 -0600

    🎨 Use LIMIT macro

commit c4ac8a25730d10fa08890a4b216dc06c22dd8a93
Author: Guðni Már Gilbert <gudni.m.g@gmail.com>
Date:   Fri Feb 24 03:29:47 2023 +0000

    ⚡️ Reduce edit_screen code size (#25420)

commit 53698b8f62b00c7e4f85a943150e8cc64015e7d4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 22 14:30:02 2023 -0600

    🔧 Fix Einsy Rambo TMC driver check

commit d5d497f2c5185bd7b153ed7195a8216f37e5a42c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 21 18:22:16 2023 -0600

    🔨 Fix marlin_custom.* without lib_deps

commit e65e38afafec9f85be603ffefcc1817d8732b9a4
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Tue Feb 21 22:37:11 2023 +0000

    🐛 Fix AVR maths used by Stepper (#25338)

commit 9d56b7f073e01ebca1f4d3fb54a49393191e9e1d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Feb 22 11:27:47 2023 +1300

    🔨 Encrypt some MKS Robin (#25349)

commit 1748abde0af17b452e940df20fba65abb4fc6ef0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 21 15:08:25 2023 -0600

    🧑‍💻 Fix preheat tests (nested macro limit ~256)

    Followup to #25407

commit 7afd823aa59f5197dab80d397da744ec48896f2b
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 21 15:25:22 2023 +1300

    🔧 Sanity-check hotend max / preheat temps (#25407)

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

commit 4a1cbffbe5d6fc2619537eb7d0a07c70b1cb8e29
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 21 13:58:40 2023 +1300

    📺 Update Re-ARM VIKI2 SPI pins (#25411)

commit 94780bbb54e4d75986c53ea39223d3e51df8e23e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 17 22:12:11 2023 -0600

    🚸 Interruptible PLR (#25395)

commit 838df37efd55a1ffdeffbd838ebffb3618ab36d2
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Feb 16 12:58:51 2023 +1300

    🐛 Fix FastPWM calculations (#25343)

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

commit 7a8c9847e664d0bd400b0ba4ee4514d1c9f966c3
Author: Trevin Small <trevincub03@gmail.com>
Date:   Wed Feb 15 19:00:10 2023 -0500

    ✏️ Fix README typo (#25388)

commit 50f4e6b2705e61d4a850e04f2d55909f4abfcc4d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 14 22:29:47 2023 -0600

    🎨 Tweak VALIDATE_MESH_TILT

commit db8f501dfefd801bc42db2ea36c82afc48eac427
Author: Frederik Kemner <stuff+github@fredo.org>
Date:   Wed Feb 15 05:25:47 2023 +0100

    🚸 SPI endstops for X/Y Dual and Core (#25371)

commit 255bc3c90c181c302ca0640c0ebc097313f4cc4a
Author: Radek <46979052+radek8@users.noreply.github.com>
Date:   Wed Feb 15 04:57:39 2023 +0100

    📝 Fix BTT_MINI_12864_V1 comment (#25366)

commit 38c4c7f4b17f1de96996b2b15ec064b5926f30f1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 11 21:29:32 2023 -0600

    🔨 Suppress native build warnings

commit fecb66779a098a6ad09706a6f6662c525a032c18
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Thu Feb 9 06:46:02 2023 +0300

    🔨 Adjust INI comments (#25183)

commit f7485cea60e7bd78015e6f9aa48cde605d9a9a88
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:31:02 2023 -0600

    🩹 Extra axis min home with Delta Sensorless Probe

commit a49d286118343f36759dba941c96b95dfaa36c38
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:29:37 2023 -0600

    🩹 Extra axes for Tool Change

commit 59c88575643782b9d34a3b2ea6bd54dfb7717b71
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:28:56 2023 -0600

    🩹 Various simple fixes

commit 6e38ec3a3e0d074b900c4fd3b901d10ae974ac29
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:26:59 2023 -0600

    🩹 Safe Bed Leveling updates

commit 93c61b1ba8f1e105c3a36d083e98c95c95196e5e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:19:12 2023 -0600

    🩹 Misc. extra axis updates

commit 87d744995271945b814d9f4c84d3b791422c0c50
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 19:39:21 2023 -0600

    🩹 Use 'M205 D' when 'B' is an axis

commit 98c9ecd5c516e470a3b14727fe19a0b695f26d45
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 19:37:10 2023 -0600

    🔧 Add a test for extra axes

commit 8976bc5605e1c0696fb42c72d0fec4c88880f289
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Feb 7 22:39:09 2023 -0800

    ✨ BigTreeTech Manta M4P, M5P, M8P V1.0 / 1.1, E3 EZ (#25001)

commit e3cff7a28a74ec468e15ff8a2799076be37361e9
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sat Feb 4 05:10:26 2023 -0300

    🧑‍💻 General 'MediaFile' type alias (#24424)

commit 4000db2be39f7cf35cf85ec2272ad31578fcc44a
Author: vyacheslav-shubin <shubin-vv@krista.ru>
Date:   Sat Feb 4 10:36:07 2023 +0300

    🧑‍💻 Add SD Card 'hide' method for dev usage (#22425)

commit f9621e2e8e9f2301924a72fcc1e8d110806145ff
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Feb 2 17:41:46 2023 -0800

    📝 Fix Z*_ENDSTOP_ADJUSTMENT comments (#25295)

commit 1a184e5a82b0908cbe9649688cd15de92f776a9e
Author: kg333 <matthew@kyengineer.com>
Date:   Wed Feb 1 19:02:26 2023 -0500

    📺 Melzi v4 with BTT SKR Mini E3 (#25321)

commit 6e427350db0fbe3fd294d34c9c178df7dd1bf8d4
Author: Martin Turski <quiret@vfemail.net>
Date:   Fri Feb 3 04:01:22 2023 +0100

    🔨 Fix test build path with spaces (#25329)

commit 79e23752aea243b84a3703e3f158cdeffd230346
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Wed Feb 1 01:51:11 2023 -0600

    🔧 Fix SD sorting sanity checks (#25318)

commit 858de4ff3f24b9b1d20f39da031ed8293e6c61bc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 30 22:11:50 2023 -0600

    🔧 Fix build with no Y axis (#25311)

commit bac0b35b85d59a83b9fa2789c9048de99017f02e
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Mon Jan 30 21:57:36 2023 -0600

    🩹 Fix G61 axis parameters with no offset (#25312)

commit 60f38576620e993e06fc19166cb3d68f275096e6
Author: Darren Garnier <dgarnier@reinrag.net>
Date:   Mon Jan 30 23:00:49 2023 -0500

    🔨 Fix config.ini URL fetch (#25313)

commit b3c004eed97989b8e26664438528138567efb349
Author: avionix-g <63542699+avionix-g@users.noreply.github.com>
Date:   Wed Jan 25 23:14:52 2023 -0500

    🐛 Fix MKS board Ultipanel support (#25278)

commit 9e755a25c7fa727b4143d8ba5a9acdc712b7667c
Author: xBiohazardx <36756950+xBiohazardx@users.noreply.github.com>
Date:   Fri Jan 27 01:05:04 2023 +0100

    ✏️ Fix probe invert flag (#25282)

commit 0d831183ba6d3fa0d7780cd135a8d8a95bd0592a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 25 21:37:10 2023 -0600

    🔧 Refine Input Shaping check (#25280)

commit 0ed083aba81710af6aefb678c3a15117abd5f79f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 20 21:17:13 2023 -0600

    SDIO retry, hsd clock, etc.

commit 2c39f848885a83766fbf47ec6c76dc3804908fd1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 24 02:21:02 2023 -0600

    🔧 Overridable Stepper EN init

commit b7e421610f4546c15ecdb65ee9f144a3d33f4b86
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Mon Jan 23 01:37:35 2023 -0600

    🐛 Fix Ender-2 Stock Display with Melzi (#25258)

commit 536e8a7d1e98e98089d571939a2c9613e604ab8c
Author: MarkMan0 <38912829+MarkMan0@users.noreply.github.com>
Date:   Sun Dec 18 06:48:33 2022 +0100

    🐛 Fix, Refactor PID scaling (#25096)

commit 8c3425811a3073b17ac1ed3100198e115f298174
Author: John Robertson <john@cirtech.co.uk>
Date:   Tue Jan 17 23:53:39 2023 +0000

    🐛 Fix potential I2S buffer overwrite (#25113)

commit dd892c6e75f4683d286147d9a3daa47cc7297ea0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 16 22:11:49 2023 -0600

    🎨 Heading cleanup

commit 947a9cb000a4cc4f8a3eccf675ae852daf3b3a75
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 15 06:48:17 2023 -0600

    🎨 Language / menu cleanup

commit 62487c67b6b0142a5a610d46b65c4a07de0f3e62
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 14 07:44:57 2023 -0600

    ✏️  ProUI followup

commit 6cf085d72407d5afb15cbb942854ff3d04ef3519
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 15 01:11:49 2023 -0600

    🔧 Added MOTHERBOARD error text

commit c3c6432be44f6ee1895bd33137e0cea34ea048df
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 14 16:48:17 2023 -0500

    🎨 Misc. formatting

commit e7c4a868309f00656e28d1b2d3cda03913695073
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 23 01:10:16 2023 -0600

    🧑‍💻 Fix D5 warning

commit dd518f0ce14fb7512652fb925819802a039f9080
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 21 22:57:56 2023 -0600

    🐛 Fix homing_needed_error

commit d62119ea5baa8a650bce6bdc6f38520ac228fb02
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 11 20:31:46 2023 -0600

    🔧 Input Shaping sanity checks

commit 71cb723746cbd6ba210005f14cea45dbf4f3256a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 11 01:19:54 2023 -0600

    🩹 Fix Sim with USE_WATCHDOG disabled

commit 58d94f407bc2116056cd9e90e86e98143a97105e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 11 01:19:45 2023 -0600

    🔨 Improve config.ini parser

commit 82f7c373c53c22c6a76ed1ca7fff91be3b408855
Author: Alex Z <ad_user@runbox.com>
Date:   Wed Jan 11 15:22:28 2023 +1000

    🐛 Fix Chitu V6 Z_STOP_PIN (#25227)

commit 1e9e92368f5ffc00ada970f2681bed1ca755d48a
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Sun Jan 8 04:22:21 2023 -0500

    🚸 ProUI updates (#25176)

commit 9a22c21b5b3b6cec3ca7275587431618b1c230aa
Author: Sebastien BLAISOT <sebastien@blaisot.org>
Date:   Sun Jan 8 06:07:14 2023 +0100

    🐛 Fix Neopixel 1 startup (#25203)

commit 885b5534164cb3ae3bd91eb7ada590980b99357c
Author: Vlad Popescu <popescuvlad94@gmail.com>
Date:   Sun Jan 8 07:04:58 2023 +0200

    🩹 Fix E3V2 MarlinUI XYZ frame (#25206)

commit 9ff2818ce44753167e088ba32741a6ba90f12591
Author: Richard Layton <rlayton@gmail.com>
Date:   Sat Jan 7 21:03:29 2023 -0800

    📝 Linux Sim apt-get line (#25208)

commit 5ff467c8c0bbdf7fbbef7a039dc92f626c7a22a6
Author: Richard Layton <rlayton@gmail.com>
Date:   Sat Jan 7 02:42:21 2023 -0800

    📝 More native.ini docs (#25201)

commit f16fdd7814006fd5cdcf8b270c7408237725f86c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 7 21:39:58 2023 +1300

    🩹 Update MKS_GEN_13 MOSFET pins (#25126)

commit e872b575f89d0f884f7c38c5545432daef899444
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 7 19:07:39 2023 +1300

    🩹 Replace pow() with _BV() (#25186)

commit 8b5014f2645aac2048b4c03243410edd98132baf
Author: Mike Bignell <1911467+mikezs@users.noreply.github.com>
Date:   Sat Jan 7 05:54:35 2023 +0000

    🩹 Fix missing IS_MELZI (#25190)

commit 9ff1c307454c5a7df1256958dc7a63b6cabcc155
Author: Ashley 'DrToxic' Devine <41945324+DrToxic@users.noreply.github.com>
Date:   Thu Jan 5 23:06:35 2023 +0000

    🎨 Misc. cleanup (#25194)

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

commit a286daf69796f5ec594c089ee59552776507b530
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Fri Jan 6 00:48:22 2023 +0200

    🚸 Attach USB media (#25120)

commit 9383c2aa76c25c4fd59e123cb6260adbad1fcb57
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 3 19:40:23 2023 -0600

    🧑‍💻 Add Temperature::is_above_target

commit 58e9dc0cbf22f43ee6da719c4468858809ef9414
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 3 18:57:33 2023 -0600

    🎨 Rename *_temp_error to *temp_error

commit 5e69a3dbf499d635f4f7c927659f167d157093e3
Author: Timothy Hoogland <me@timothyhoogland.com>
Date:   Tue Jan 3 18:52:19 2023 -0600

    🩹 Remove extraneous EZBoard V1 autofans (#25182)

commit c990a35bb0fdc76ef2ae829ff09094e5ed9bdf75
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 3 04:09:40 2023 -0600

    🎨 Misc. IS cleanup

commit f2017d41115e298d263d9b356a246b583004562e
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Jan 1 04:03:50 2023 +0100

    🚸 MarlinUI edit steps/mm to 2 decimal places (#25144)

commit c5f95bfe97dc3f1cfc2478b38d039ae2641c1e1c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Dec 31 16:55:15 2022 +1300

    🧑‍💻 Fix type warning (#25149)

commit f13d7f27d162b1e992d2a0228971bc78fe075569
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Dec 31 16:44:51 2022 +1300

    🔨 FILAMENT_RUNOUT_SCRIPT sanity check (#25150)

commit b1099b1c6582a38b61f2ffe2cd2da47c3023a254
Author: Lukas Erlacher <l.erlacher@googlemail.com>
Date:   Sat Dec 31 14:39:15 2022 +1100

    🔧 Add H8 to Creality 4.2.2 stepper warning (#25154)

commit 44e20d2d6a121ad0bd076a257a6f246fdac7335b
Author: Lukas Erlacher <l.erlacher@googlemail.com>
Date:   Sat Dec 31 14:38:01 2022 +1100

    🚸 Z Servo Probe is HAS_STOWABLE_PROBE (#25158)

commit c54c8c225485b9b1d2b4da0b7e0a779684af7813
Author: Timothy Hoogland <me@timothyhoogland.com>
Date:   Fri Dec 30 21:01:11 2022 -0600

    🩹 Remove extraneous EZBoard V2 autofans (#25166)

commit bcb0a370a54d9afcf0fae74614bde2159fb83283
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 30 19:43:46 2022 -0600

    🚸 Hide IS menu while busy

commit da43218d76a49de66ab945737458b11e1380cada
Author: Vlad Popescu <popescuvlad94@gmail.com>
Date:   Sat Dec 31 04:53:45 2022 +0200

    🐛 Avoid lambda for menu items (#25169)

commit d71a60a14b5eb3bb4fe48425459220d57cd7914f
Author: Stefan Kalscheuer <stefan@stklcode.de>
Date:   Sat Dec 31 06:49:44 2022 +0100

    🐛 Fix Mesh Bed Leveling Z correction (#25122)

commit 246f001521ecfc81e595972c83ccc38e8e6bea69
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Dec 30 19:03:18 2022 -0800

    📝 Fix Configs URL (#25167)

commit a039081728cda8e829cb4a90116d150674f69e53
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 20 21:14:58 2022 -0600

    🧑‍💻 Fix ONBOARD_FLASH_SIZE

commit 3334582f868950d58028e400f47a78d22e0fa4f2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 19 14:42:28 2022 -0600

    🔖 Version 2.1.2

commit b2d72de4947b38d48e3f0ff3433f13da0cf0ffaf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 18 17:22:11 2022 -0600

    📝 Update 2.1.x README

commit cfa747ed0878c51f646365c9b296303d03413c84
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 18 15:48:47 2022 -0600

    🧑‍💻 M593 F "min" freq

commit 92b2076dda8efea4a1437647199d02d011e6f034
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 18 15:42:20 2022 -0600

    🐛 Fix Melzi encoder

commit eff6c407a5034778297ef76c3369abc7506c0603
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 17 22:00:18 2022 -0600

    🩹 Fix LCD_FOR_MELZI with Tronxy Melzi

commit 569bbb18d0cf38fe506b1181c308c4bea581ce2a
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Sat Dec 17 07:45:55 2022 +0300

    🐛 Fix DOGM time overflow, alignment (#25103)

commit 471330b56ea2f95cd9ec1b726fa7a10d422ce10c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Dec 17 17:43:54 2022 +1300

    🎨 Suppress warning (#25101)

commit 2a724bd94eb472d8c7ce4c59cb408b5624d8c2c3
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Dec 17 10:01:14 2022 +1300

    ✨ BTT Octopus with STM32-F407 (#25031)

commit cea2ab1d7fac912ae29db9e7c2e6e8bc4c3a2e1f
Author: alextrical <35117191+alextrical@users.noreply.github.com>
Date:   Fri Dec 16 20:45:14 2022 +0000

    ✨ BigTreeTech EBB42 v1.1 (#24964)

commit 5198a554574300857bfad9a2e761b9a7b197fa08
Author: ils15 <igorleite-ils@hotmail.com>
Date:   Fri Dec 16 17:37:56 2022 -0300

    🔧 Use multi-XYZ 'STOP' pins for MIN/MAX (#24855)

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

commit cbb56e35361e814949f5aa4a380ad3b5f93ab2a0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 24 10:15:57 2022 -0500

    ✨ Robin Nano v1 CDC (USB mod)

    Followup to #24619

commit b3f4eaf6fdf4d331139573154dfa391cc940b02c
Author: Dipl.-Ing. Raoul Rubien, BSc <rubienr@sbox.tugraz.at>
Date:   Tue Dec 13 04:23:45 2022 +0100

    🩹 Fix M115_GEOMETRY_REPORT (#25092)

commit 7815b200510d486fa6b35c51418d73f2f580fd0f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 13 12:01:45 2022 +1300

    🩹 Inverted probe pin flag (K8400) (#25085)

commit ffbf6acd6c856fb72ab9f5329f6efddab806e538
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 12 16:46:50 2022 -0600

    🩹 Fix M502 init of default motion

    Fix regression from #25035

commit 8bafc1d9aeda45c208304a768a4141497b1a925c
Author: alextrical <35117191+alextrical@users.noreply.github.com>
Date:   Mon Dec 12 22:11:09 2022 +0000

    🩹 Use custom I2C pins for OLED (#24970)

commit ac05f0cb8b4c539509b48d034106246f66ebee17
Author: Bart Meijer <brupje@gmail.com>
Date:   Mon Dec 12 22:36:50 2022 +0100

    ✨ SAMD21 HAL / Minitronics v2.0 (#24976)

commit ec6349f2acd940c6b7b29ef9204c635ba2e38c6c
Author: Alexander Gavrilenko <jmz52@users.noreply.github.com>
Date:   Tue Dec 13 00:13:31 2022 +0300

    ✨ TFT_COLOR_UI async DMA SPI (#24980)

commit d082223fee393e7c0f833757853fada3a3a48ddf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 11 19:46:55 2022 -0600

    📝  Replace Twitter with Fosstodon

commit e07a059b2dde9b6d5e1048d71e3f6f265a05ebbb
Author: Simon Pilepich <simon.pilepich@kogan.com.au>
Date:   Mon Dec 12 12:12:28 2022 +1100

    🔧 Anycubic alternate Z1/Z2 wiring (#25071)

commit 313716e7fc5133ea8b1b70e75075840cc7b2b8b9
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Sun Dec 11 20:27:27 2022 +0100

    ✨ JyersUI TMC Settings (#25048)

commit 726555901c6b7a6eae71d3297729b6ee2ffbc632
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Dec 11 10:59:25 2022 -0800

    🔧 Custom Menu Sanity Check (#25079)

commit 3ad684b10bc8a7c6631dda4e6615238499289013
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 11 12:56:45 2022 -0600

    🔨 Updated 'mfconfig init'

commit 408a53bcdd5b5c5781596c2ba9e435cfe4525c74
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 11 06:44:09 2022 +1300

    🔨 No env:mega1280 for MIGHTYBOARD_REVE (#25080)

commit eae339b8dcd43797cc285605826a23370e28165e
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sat Dec 10 17:28:48 2022 +0000

    ⚡️ Better IS buffer size calc (#25035)

commit 79b88471f00e3a8a7e5ee8ed440c6e40059b4815
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sat Dec 10 17:03:54 2022 +0200

    ✨ Two controller fans (#24995)

commit 86a3362bf6830fea77c15aa1b139847569372671
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 11 04:00:51 2022 +1300

    📌 Pins updates for Longer LK5, etc. (#25012)

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

commit 0efeedf26274b7a66e21899ab99a5dd70e8ae657
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Thu Dec 8 01:08:53 2022 +0300

    🚸 Progress display followup (#24879)

commit c86f20010d916ba5a09f7c4320a37f5cdfc75f48
Author: Sebastien BLAISOT <sebastien@blaisot.org>
Date:   Wed Dec 7 22:49:38 2022 +0100

    ✨ M150 S default index (#23066)

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

commit 5a97ffc41415481d0e285c3478e582cbdd467bad
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 7 12:18:09 2022 -0600

    🔨 Return error on mftest exit

commit 273728602109e208c1ca32d2ac7dad59dcc1307a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 5 11:01:08 2022 -0600

    📝 Update config comments

commit 86a10dc459056cfb49055758e3fed0e0825043ae
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Dec 5 16:38:23 2022 +1300

    🐛 Fix Fast PWM on AVR (#25030)

    Followup to #25005

commit ecdf07f0555ce0d71ac3fd1fcd9efd07c14209ad
Author: kisslorand <50251547+kisslorand@users.noreply.github.com>
Date:   Mon Dec 5 00:04:11 2022 +0200

    ✏️ Fix missing ) (#25055)

commit 686ce0c0e220c73b32a1d29ae3d48c6b336b024f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 4 15:35:45 2022 -0600

    🔨 Fix CI Test clean step (2)

commit 3c550e0f1910927fa691f2e62a18cebb6ddd58fd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 3 20:49:46 2022 -0600

    🎨 Misc. cleanup

commit 071dae0c288e75c26f6779b830af1e6153682854
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 3 20:19:18 2022 -0600

    🔨 Fix CI Test clean step

commit df2a2488a8911e50d4840e17e9ae91bd05bd369b
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sun Dec 4 02:14:31 2022 +0000

    🐛 Fix TMC5160 + Input Shaping overcurrent (#25050)

commit c3090bd4e8df8c9eb3f32e31e0a8e37e92242681
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sat Dec 3 20:20:19 2022 -0500

    🩹 Ender 3v2 DWIN MarlinUI Fixup (#24984)

commit 0fadb56150aedf4759b5d5a959506c9ef7854443
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 3 19:18:03 2022 -0600

    🎨 Trailing whitespace

commit eb125c95b68af813a05a732273be62e6dd2e23af
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 4 14:09:02 2022 +1300

    🔨 Update renamed.ini (#25042)

commit 26edeefeb9ee79e6e2c992a192d8465a5a24bbfb
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 4 14:05:22 2022 +1300

    🩹 Fix MSG_MOVE_N_MM substitution (#25043)

commit 96b8c28376fbefa92ebd71119bda1db66daa20ea
Author: kisslorand <50251547+kisslorand@users.noreply.github.com>
Date:   Fri Dec 2 08:19:34 2022 +0200

    🚸 G30 move to logical XY (#24953)

commit db3865520f2626bac5abd6cfd81a1cfbd44cbdab
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 1 23:39:17 2022 -0600

    🎨 Misc. cleanup

commit 51c1645ceb878a316b548095c68e42623dce16f6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 12 17:52:56 2022 -0500

    🧑‍💻 Use spaces indent for Python

commit 5eb39d5277e11a29deaa47690f35b7170ba97447
Author: トトも <85485984+ElectronicsArchiver@users.noreply.github.com>
Date:   Sun Nov 27 23:52:06 2022 -0500

    📝 Formatted Team Overview (#25029)

commit 0537e78572aa3e5aec8e3f444f826dbd5b0b8455
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 27 23:23:00 2022 -0600

    🐛 Fix G-code resend race condition

    As pointed out in #24972 by @silycr, but simplified.

commit 95019bf526c0f2db2fae10e8548271dd03a057c0
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sun Nov 27 22:41:27 2022 -0500

    ✨ Ender-3 V2 DWIN for BTT Octopus V1.1 (#24983)

commit 6f5ad55953b2029c1f92ff6554a14ca2b93c1b5d
Author: Chris Bagwell <chris@cnpbagwell.com>
Date:   Sun Nov 27 21:40:11 2022 -0600

    ⚡️ More SCURVE cycles on unoptimized cortex-m0 (#24955)

commit 57f6c93192c823049814c18ba48738d91ed1435f
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Mon Nov 28 03:38:15 2022 +0000

    ⚡️ Input Shaping improvements (#24951)

commit d2ece1e7137931085824d0bcf8f7732e7fcae1e3
Author: Trivalik <3148279+trivalik@users.noreply.github.com>
Date:   Mon Nov 28 02:06:44 2022 +0100

    🐛 Fix missing va_end in UnwPrintf (#25027)

commit 12017887f40a0a2cacf0728215fcfb631e10e383
Author: studiodyne <42887851+studiodyne@users.noreply.github.com>
Date:   Sun Nov 27 04:29:13 2022 +0100

    🐛 Fix MILLISECONDS_PREHEAT_TIME / mintemp (#24967)

commit 3a28a1fd1d4139ddbf39cc6c53ee661a45b012b2
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sat Nov 26 20:11:14 2022 -0700

    🩹 Fix ADVANCE_K + DISTINCT_E_FACTORS sanity check (#25007)

commit 360e03797f3ef35e34a0eb6902918235f5403047
Author: Manuel McLure <manuel@mclure.org>
Date:   Sat Nov 26 18:30:59 2022 -0800

    🔧 Merge TMC26X with TMC config (#24373)

commit 6185b50dbedf7f564703ebdb9acc97e0a99388f1
Author: Radek <46979052+radek8@users.noreply.github.com>
Date:   Sun Nov 27 02:31:44 2022 +0100

    🐛 Fix SKR mini E2 V2 + BTT_MINI_12864_V1 (#24827)

    See https://github.com/bigtreetech/BIGTREETECH-SKR-mini-E3/issues/686#issuecomment-1296545443

commit b2b8407a7506860e3d885f7dcdc7cfd6a5ea280e
Author: Vasily Evseenko <svpcom@gmail.com>
Date:   Sun Nov 27 04:26:40 2022 +0300

    🍻 Fix Z increase on toolchange without UBL (#22942)

commit c1684a1dbe3a64e82bb8380bd927c1ec7a7db927
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Nov 27 14:22:08 2022 +1300

    🩹 Fix UBL menu compile (#25020)

commit 7d0f1dd17cbc0b2a34f720d5deaf83c8e8888def
Author: mikemerryguy <57319047+mikemerryguy@users.noreply.github.com>
Date:   Sat Nov 26 20:14:05 2022 -0500

    🚸 Add 50mm manual move (#24884)

commit b6051fe847a5aa70c51c3cde29f47c1add29fb29
Author: Thomas Buck <taucher.bodensee@googlemail.com>
Date:   Sun Nov 27 01:59:13 2022 +0100

    🚸 Optional Cutter/Laser status for HD44780 (#25003)

commit b9bed1ca6908f2e2be9d867b008e1b9e3ac49ef4
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sat Nov 26 08:23:24 2022 +0100

    🚸 COLOR_UI sleep timeout / setting (#24994)

commit b8ba9d60bb7f12d059d62382dc09abf40537de16
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Nov 26 19:21:47 2022 +1300

    🔧 Fix TPARA (…SCARA, DELTA) settings (#25016)

commit 8fd42eeeb60198c08bf48bb3d6c4369df666c22d
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sat Nov 26 04:41:49 2022 +0100

    ✏️ Fix Robin nano env typo (#24993)

commit 19b73a6f2927fc982af70891cb4025f4acd6d36c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Nov 26 16:40:24 2022 +1300

    📺 FYSETC_MINI_12864_2_1 with BTT_SKR_E3_DIP (#24986)

commit db60e0e7dc829a8dee94736f4be15aa5bb6fe4d4
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Nov 26 14:17:24 2022 +1300

    🩹 Fix planner typo (#24977)

commit 505d73d2bae31662ac833f316d934239b392e93d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Nov 22 12:47:27 2022 +1300

    🐛 MKS_MINI_12864 on SKR 1.3 needs FORCE_SOFT_SPI (#24850)

commit d05419a8d9c5b025d40b560869c9fc9baefc4f67
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Tue Nov 22 02:45:57 2022 +0300

    🔧 Check Delta homing direction (#24865)

commit 9772f7806bf83d000f761c79e177a9e21573223e
Author: phigjm <39876427+phigjm@users.noreply.github.com>
Date:   Tue Nov 22 00:41:14 2022 +0100

    🩹 Fix SERVICE_INTERVAL reset (#24888)

commit 473d2b888ad642d8129cc44b6ba436882ff704c8
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Mon Nov 21 16:25:56 2022 -0700

    Fix FAST_PWM_FAN / TouchUI with NO_MOTION_BEFORE_HOMING (#25005)

    Fix regressions from #20323, #23463

commit 968f04defbb137db94c5a8424e0af26723b1ba72
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Nov 14 21:35:24 2022 +1300

    🩹 Fix 2 thermocouples (#24982)

    Followup to #24898

commit 30a885a7ef7c6eafd10c13eda39c0d365388cc02
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 14 02:26:31 2022 -0600

    🐛 Fix M808 starting count

    Reported by adcurtin on Discord

commit 847391cfc15c2d4490d24f2a7356c551e776fbeb
Author: Justin Hartmann <zadarimm@gmail.com>
Date:   Mon Nov 14 00:50:02 2022 -0500

    🩹 Fix Overlord compile (#24947)

commit 6ea192abe95f1b3341828bb2dc4ea56df19bdff4
Author: Pascal de Bruijn <pmjdebruijn@pcode.nl>
Date:   Mon Nov 14 05:59:25 2022 +0100

    🚸 M306: Indicate MPC Autotune (#24949)

commit 0de4ec4099c17403ea3f1ac0e42d8234e74614c2
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Nov 14 17:45:28 2022 +1300

    🩹 Allow max endstops MKS Monster 8 V2 (#24944)

commit c9fa680db94ead330d59be954b032f755dbacce9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 11 20:35:07 2022 -0600

    🐛 Fix Anycubic / Trigorilla pins, etc. (#24971)

commit 379d388b0763ab5295a1c887d0c39eb7cd88bb8b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 11 16:09:26 2022 -0600

    🎨 Prefer axis element over index

commit 7002e72f1c48b5cf01d6e9c90e72d8cab785d107
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 6 23:49:38 2022 -0600

    🩹 Fix EEPROM write for !LIN_ADVANCE

    Fixes #24963
    Followup to #24821

commit fc2f3cdf4079596a84f0e8ac88e9f8dfc295f03f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 4 20:10:59 2022 -0500

    🩹 MAX Thermocouple followup

    Followup to #24898

commit 7feeffdf06170244ff0586d09b745eb25a7e542a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 4 20:00:56 2022 -0500

    🩹 leds.update needed for reset_timeout

    Followup to #23590

commit ac5464c37c4ea0a728ca76934ba61c46e7f1ba68
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 3 21:29:22 2022 -0500

    🧑‍💻 More direct encoder spin

commit a121c80e1a31cc696f425238ee82a22a1f8fd647
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 1 17:14:18 2022 -0500

    🎨 Update SAMD51 headers

commit 2778b007656e2993d7be08ba854f29eb620ab96d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 30 15:41:19 2022 -0500

    🎨 Format some lib-uhs3 code

commit 4737af7d70f5660f6e5617bd6ce1080875d6bd28
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 30 16:45:08 2022 +1300

    📌 ZRIB V52-V53 Servo Pins (#24880)

commit 38375cf7a75f7b7f6686737fd1651b440267709b
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sat Oct 29 23:35:12 2022 -0400

    ✨ Tenlog MB1V23 IDEX board (#24896)

commit ddec5faf5abddef5e5cb233b6f3cd31ce2e82d53
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Oct 30 01:45:33 2022 +0200

    🌐 Update Italian language (#24915)

commit cbdafd36e02f9fd39b60adb86ce95bea951f5092
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 30 12:42:36 2022 +1300

    📌 Remove unused RX/TX pins (#24932)

commit 9f5b0b85670f5684357b8a9a1dd39a87de513b13
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Oct 29 16:39:26 2022 -0700

    🔧 Update Display Sleep LCD Check (#24934)

commit d9ffae65787f2c37484f424ff5171c80210d659f
Author: Justin Hartmann <zadarimm@gmail.com>
Date:   Sat Oct 29 19:37:36 2022 -0400

    🩹 Buttons Followup (#24935)

    Followup to #24878

commit 1540e8e1d4545005413fe8bd7f6aaf2eef958aa6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 24 17:04:55 2022 -0500

    🩹 Allow for last non-servo extruder

commit 9a4715f31a43216e97f52fd2c1adf49a2cc2a710
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Oct 25 10:47:23 2022 +1300

    🐛 Fix move_extruder_servo (#24908)

commit a9969d92ea17cb454353df466e579fa229ffe8c8
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Mon Oct 24 17:44:52 2022 -0400

    🐛 Fix FTDUI Status Screen Timeout (#24899)

commit d87d7474c932949e74248c562921b2b85e063999
Author: Manuel McLure <manuel@mclure.org>
Date:   Mon Oct 24 14:25:47 2022 -0700

    🩹 Fix spurious "bad command" (#24923)

commit 4ce2f1e5babba8dcee160ffbbd6d907f0c934355
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 22 23:35:31 2022 -0500

    🩹 Fix M593 report

commit 44636f3b74c9d5e552dbb49f313ed8b2e17189eb
Author: kurtis-potier-geofabrica <77456752+kurtis-potier-geofabrica@users.noreply.github.com>
Date:   Sat Oct 22 00:13:56 2022 -0400

    🚸 Up to 3 MAX Thermocouples (#24898)

commit e812540f26fae304764f22023e049dc58a29ca93
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 21 19:45:20 2022 -0500

    🔧 Clean up unused ESP_WIFI pins

commit c1f0f26bffb1013e686d74f930287fa9f4cda083
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Oct 21 22:34:22 2022 +0100

    🚀 ZV Input Shaping (#24797)

commit 57654498675207180c7a232ff671348441b7046a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 21 15:41:51 2022 -0500

    🔨 gcc-12 for macOS native

commit c8b2d0c0fd50fb528d995fad782d62752d086a6e
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Fri Oct 21 14:03:38 2022 -0400

    ✨ Controllerfan PWM scaling, kickstart (#24873)

commit bdd5da50988c2bfdae6839bea65747ba3afcadbd
Author: silycr <32662182+silycr@users.noreply.github.com>
Date:   Sat Oct 22 04:31:46 2022 +1030

    🚸 Probe pins for Chitu V5 (#24910)

commit 4d9bf91edcf81dc7cdbbb71166b619a06b785329
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Oct 20 15:23:22 2022 +1300

    🔧 Some STM32 UART Sanity Checks (#24795)

commit 682a9b6fbefca8d58971030213b301344a2db9b8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 19 21:00:14 2022 -0500

    🎨 Misc. variant cleanup, translation

    Followup to #24787

commit a913b2437b1f792492d1ac29f5eff51f512320cd
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Wed Oct 19 21:36:39 2022 -0400

    🐛 Fix Print Timer stop with MarlinUI abort (#24902)

commit 6b1d738995c443f5d047d79130a146dce3f7e9e0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Oct 20 14:29:15 2022 +1300

    🔧 No Native USB on AVR (#24906)

commit dd224b4eb9050709c6466aea62d60caf6c866f8e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 17 23:00:26 2022 -0500

    🧑‍💻 Pins and debug list cleanup (#24878)

commit 2e2abbcb48d74a12131a56859e6cb6e66f08fe87
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 17 21:41:22 2022 -0500

    🎨 CONF_SERIAL_IS => SERIAL_IN_USE

commit 485fb7759662bca476ce1b7147945f851c82c425
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Oct 18 16:41:41 2022 +1300

    ✨ Tronxy v10 (#24787)

commit 29294007ef6ef372ceec4ca31047d9612feb173e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Oct 17 20:24:19 2022 -0700

    🔧 No Sleep for CR-10 Stock Display (#24875)

commit 256ac01ca2c47bfc187b499bacd11fd6260a6d37
Author: karliss <karlis3p70l1ij@gmail.com>
Date:   Tue Oct 18 04:01:18 2022 +0300

    🐛 Fix compile without Y/Z (#24858)

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

commit ca1968a8428f2e3a6550ee69206c6ae257dad07c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Oct 17 12:25:37 2022 -0700

    🔧 Check Sensorless Homing on all axes (#24872)

commit 6a084e3704656f5b2e7291589376ec2b2296a5c1
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Mon Oct 17 15:17:51 2022 -0400

    🐛 Fix bed/chamber PID P edit (#24861)

commit 9ae078916605e79cbdf0e42b9c69dbc9b4841103
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 17 13:01:45 2022 -0500

    🎨 HAS_SPI_FLASH => SPI_FLASH

commit 031ff2d024a40410d31f4e0d61261c304ef158da
Author: Dan Royer <dan@marginallyclever.com>
Date:   Sat Oct 15 22:03:42 2022 -0700

    🐛 Fix and improve Polargraph (#24847)

    Co-Authored-By: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit b3e7d1e91e9e8e7e9184184cfd2d28cbb7bb24e8
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 16 13:40:00 2022 +1300

    🐛 Fix operators for V axis (#24866)

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

commit f39f4d02889b77c4d72b1b84d6f06792786a9a8c
Author: mjbogusz <mjbogusz@users.noreply.github.com>
Date:   Sat Oct 15 01:59:31 2022 +0200

    🩹 Fix TFT LCD in Simulation (#24871)

commit a4d58e887667a14d7a6639b579416ff799309b0e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 14 13:15:37 2022 -0500

    🎨 MMU2 cleanup

commit c52cf77d0ade00b7cdf9e796e98b6c294c2abaa6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 12 18:15:29 2022 -0500

    🐛 Fix M876 without emergency parser

    Fix regression from 1fb2fffdbf

commit bfcb8c704a8ddbdd86d145151e3a305a780034f1
Author: adam3654 <adam3654@gmail.com>
Date:   Wed Oct 12 19:03:32 2022 -0400

    ✨ DOGM Display Sleep (#24829)

commit 0047b3064da8b7e1a3789b497853fb93c1e7f7f9
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Thu Oct 13 01:57:22 2022 +0300

    🩹 Fix temperature include (#24834)

commit 5c195078ffd5d3e86cf9c836cf1313746516d750
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 12 17:53:42 2022 -0500

    🎨 Misc. variant cleanup

commit 1a6f9daee89e048fe9794e60b0ce71a359d21357
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 12 15:24:05 2022 -0500

    🧑‍💻 Min and max for base types

commit 505f0a647e9ac26c69b5aafb781672c399c28cb8
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Wed Oct 12 02:31:37 2022 +0300

    ✨ MKS SKIPR board (#24791)

commit 62b7db9bb783f509ab44e109f9b6e82da3d58048
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 10 18:02:18 2022 -0400

    🔨 Update mfinfo for 2.1.x

commit 3c870f2d4bcec4ed7e1499a7dee541c448d8751a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 10 17:51:33 2022 -0400

    🧑‍💻 Min and max for base types

commit 0203e32c734c780fba3059ac0f8fbdc57f37ff85
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Mon Oct 10 20:49:37 2022 +0200

    ✨ ADVANCE_K per-extruder (#24821)

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

commit 84812645666ee6988fdadf59d3bc83be9bf53d8d
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Sun Oct 9 18:30:47 2022 +0300

    ♻️ Set Progress without LCD (#24767)

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

commit b0f02b8f9ed553160561ae9b277080e410b96905
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Sat Oct 1 23:04:50 2022 +0300

    🩹 Fix Color UI touchscreen sleep (#24826)

commit d6ff8f0062ec29acf2403e6e6c21528fd08862cd
Author: Adam <54421854+aamott@users.noreply.github.com>
Date:   Sat Oct 1 10:49:12 2022 -0600

    🩹 Fix Switching Toolhead compile (#24814)

commit 8b37b60e5872a96304e0ce5100556556a83f3d4f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 2 05:39:10 2022 +1300

    🧑‍💻 Einsy Rambo EXP headers (#24825)

commit 5c68d26d4e14a86b82c67a8ad5ebe41897833456
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 2 05:35:47 2022 +1300

    🔨 Detect feature parsing error (#24824)

commit 74435b0dcb2a1a157811631ae79fe8064443d8a6
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 2 05:25:00 2022 +1300

    ✨ Creality v5.2.1 board (#24815)

    Followup to #24760

commit f17a07df99fcb248af05872ee1bac0375d8ae174
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Oct 1 09:19:51 2022 -0700

    🔧 Thermistor (66) sanity-check (#24803)

commit a58f27763f67a0ee88bb58e4305ce32bd7ff916b
Author: Eduardo José Tagle <ejtagle@hotmail.com>
Date:   Thu Sep 29 19:54:59 2022 -0300

    🐛 Fix DUE compile and errors (#24809)

commit 5aca6ff4f2816d8e55281ebe7e7cbcbe49777572
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 29 17:30:53 2022 -0500

    🩹 Fix some vector_3 cast operators

commit 7b000966f06a258eef229334d9ffe9e74463c45c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Sep 28 08:05:06 2022 -0700

    🔧 Update Creality 4.2.2 Driver Warning (#24806)

commit 6ae07088400dcb259993afb58f5e06c651c3beb2
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Sep 29 04:03:40 2022 +1300

    🩹 Disable DEBUG_DGUSLCD (#24798)

commit 44e4a9c7b1deb0c5633068180a59aceaea3bcbe7
Author: Yuri D'Elia <wavexx@users.noreply.github.com>
Date:   Wed Sep 28 16:49:30 2022 +0200

    🎨 Remove non-const compare operators (#24810)

commit 215fcefc1b0c8c626efa7f74b78f0a03b5f1280f
Author: Plynix / Ben Hartiwch <77836725+Plyn1x@users.noreply.github.com>
Date:   Wed Sep 28 16:46:50 2022 +0200

    ✨ Creality v5.2.1 board (#24760)

commit 827f9ae7923cb80ffa0bb480b53a85e016e4b789
Author: discip <53649486+discip@users.noreply.github.com>
Date:   Mon Sep 26 23:42:52 2022 +0200

    ✨ Pt1000 with 2k2 pullup (SKR 3 / EZ) (#24790)

commit e44f1565356b1a93020292721ee39ed9416d762f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Sep 27 10:25:54 2022 +1300

    ✏️ Followup for M524 (#24775)

    Followup to #24761

commit f1a05d19b0886921cbe3529a22bcf796…
ernisv pushed a commit to ernisv/Marlin that referenced this pull request Nov 23, 2023
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.

None yet

2 participants