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

More endstops rework, SPI sensorless, etc. #25758

Merged

Conversation

thinkyhead
Copy link
Member

@thinkyhead thinkyhead commented Apr 30, 2023

  • Add working CI tests for SPI_ENDSTOPS.
  • Apply more granular SPI Sensorless conditionals.
  • Account for SPI endstops in endstops sanity check.
  • Fix _CAN_HOME to allow for undefined endstop pins.
  • Tweak ES macros to remove DEFER.
  • Show SPI sensorless endstops on Endstop Test screen.
  • Fix support for SPI Sensorless with multi-stepper axes.
  • Add support for SPI Sensorless with Dual X Carriage.
  • Fix homing current for multi-stepper axes.
  • Add new options X_SAFETY_STOP, Y_SAFETY_STOP, etc., that permit a second endstop with its own state.
    This will allow an SPI endstop or the selfsame DIAG pin to be used, not just a distinct endstop pin as with USE_*_PLUG.

@thinkyhead thinkyhead force-pushed the bf2_endstops_more_PR branch 3 times, most recently from f7289aa to 878cf53 Compare July 5, 2023 07:24
@thinkyhead
Copy link
Member Author

thinkyhead commented Jul 5, 2023

Thanks for the assist, @lujios! I'm just getting around to revisiting this PR so it can finally get merged for wider testing.

While your solution is workable and has some elegance and consistency, I want to be careful about referencing EndstopEnum states that may not be defined, and for DELTA it should ideally be the case that there is no such thing as EndstopEnum::X_MIN/Y_MIN/Z_MIN but only the XYZ MAX elements. But maybe I can be convinced to think in a different direction about the meaning of these flags when it comes to sensorless homing and its ugly stepsister sensorless probing.

Anyway, one thing about your solution has me confused. You describe a way to force the endstops code to always check the MAX endstop pin and to only set the MAX endstop flags. But then you suggest changing the probe check to:

endstops.trigger_state() & (_BV(X_MIN) | _BV(Y_MIN) | _BV(Z_MIN))

…which would be looking at MIN flag bits that never got set (and should not even exist). How does it make sense that we force setting the MAX flag bits, but then later we check the MIN flag bits?

@lujios
Copy link
Contributor

lujios commented Jul 7, 2023

Thanks for the assist, @lujios! I'm just getting around to revisiting this PR so it can finally get merged for wider testing.

While your solution is workable and has some elegance and consistency, I want to be careful about referencing EndstopEnum states that may not be defined, and for DELTA it should ideally be the case that there is no such thing as EndstopEnum::X_MIN/Y_MIN/Z_MIN but only the XYZ MAX elements. But maybe I can be convinced to think in a different direction about the meaning of these flags when it comes to sensorless homing and its ugly stepsister sensorless probing.

Anyway, one thing about your solution has me confused. You describe a way to force the endstops code to always check the MAX endstop pin and to only set the MAX endstop flags. But then you suggest changing the probe check to:

endstops.trigger_state() & (_BV(X_MIN) | _BV(Y_MIN) | _BV(Z_MIN))

…which would be looking at MIN flag bits that never got set (and should not even exist). How does it make sense that we force setting the MAX flag bits, but then later we check the MIN flag bits?

Hi @thinkyhead.

I think my arguments have been confused.
My proposal is to use the _MIN endstop in the parts of the code that affect the dynamics of movements in a DELTA during the ugly use of sensorless probing. 😁
I never liked how the _MAX flags for delta were forced to be set, and I prefer the code as it is now in this PR. But necessarily you have to correct the parts where _MAX was evaluated and not _MIN as I propose, because otherwise the probes fail.
For your peace of mind in the use of undefined EndstopEnum states, I assure you that the only way to make sensorless probing work in DELTA was to enable MIN stops (although they seem unnecessary in delta). I have always seen them as virtual limit switches, because their position always depends on where the nozzle touches the bed, they change at each probing point and any one or even several can be activated at the same time, this is impossible for a limit switch physical. But its activation is completely valid during bed leveling tests.

@thinkyhead
Copy link
Member Author

thinkyhead commented Jul 7, 2023

The logic in endstops.cpp for checking MIN or MAX endstops is based on code originally conceived for Cartesian. And the logic in probes.cpp was originally conceived for a simple switch-based probe. So there are many different ways we might adapt these more specifically for deltabots.

The first thing to consider is that G28 homing for delta is specifically to the "MAX" (only) endstops and there is no concept of "MIN" endstops – which is sensible since all three carriages need to hit endstops for proper homing. So I'd like to preserve that assumption.

The next thing to consider is that the probe (of whatever type) is specifically checked within endstops.cpp when the probe is enabled and the nozzle is moving towards the bed (or bed moving towards nozzle). So that is where we should extend the sensorless endstops on delta to provide the Z probe state, and it would make the most sense to do this without treating them as "endstops" but just as hardware states. And then we should set the "Z_PROBE" flag, and then the logic for sensorless probing in probe.cpp can just look at that state.

I'd rather do that extra work with more special cases for DELTA in endstops.cpp rather than leverage the existing endstops code that applies to cartesian. So that's the approach I'll aim for, and this way the "sensorless probe" on all types of machines can be more consistent when queried from other places. I'll let you know when there's something ready to test.

@thinkyhead thinkyhead force-pushed the bf2_endstops_more_PR branch 2 times, most recently from 7ecf421 to cc31204 Compare July 26, 2023 02:42
@VanessaE
Copy link
Contributor

VanessaE commented Jul 26, 2023

I'm afraid that this PR completely breaks homing for my printer.

A simple G28 with no parameters does an initial Z move (see below), then it just stops moving, reports "Home XY First" without actually moving X or Y, and then sits there waiting for my next command. If I try to home just X or Y (or both) without Z, I just get the initial Z move, and no error message at all.

My best guess as to why, is that the machine has a BLTouch (clone), which it uses for Z homing rather than a Z min endstop (which it doesn't even have), while I want to use a Z *max* endstop as the limit for the other end of the build volume. This arrangement seems perfectly logical to me, but maybe that didn't carry over into this new code?

Background:

Normally in the homing procedure, Marlin raises Z (i.e. raises the toolhead or lowers the bed), homes X and Y, positions the toolhead over the bed according to the safe Z home setting (if present), then finally homes Z.

However, that initial Z raise exposes a potential problem: If the toolhead or bed is near the Z max limit of the print volume, it can crash into the frame or other physical stops, particularly if this is the first home since the machine was last power cycled or reset.

I'm going to go out on a limb here and assume that most bedflingers won't really run into that (because who ever raises the X gantry all the way up?), but pretty much all printers that move the bed along Z will park the bed at the bottom of the print volume when the machine finishes a print or is otherwise idle, exposing it to that crash possibility.

In previous versions of Marlin, adding and enabling a Z max endstop stops that crash, but that feature was eventually removed from Marlin, then re-introduced with this PR, which of course is why I came here.

Configs as used *without* this PR: Marlin-configs-20230726-bugfix-2.1.x.zip

Only one change is needed to use those configs with this PR: put #define Z_SAFETY_STOP somewhere in Configuration.h.

@thinkyhead thinkyhead merged commit bed2673 into MarlinFirmware:bugfix-2.1.x Aug 2, 2023
58 checks passed
@thinkyhead thinkyhead deleted the bf2_endstops_more_PR branch August 2, 2023 04:03
@thinkyhead
Copy link
Member Author

Updates to address sensorless probing on Delta will follow in another PR.

@rondlh
Copy link
Contributor

rondlh commented Aug 2, 2023

It could just be me, but my homing doesn't work anymore, no movement on any axis after a G28, I use SPI_ENDSTOPS for the TMC5160 and a BLTouch for Z-homing and bed leveling.
UPDATE: I did a clean build and can confirm, this update breaks homing quite badly.

thinkyhead added a commit to MarlinFirmware/Configurations that referenced this pull request Aug 3, 2023
@rondlh
Copy link
Contributor

rondlh commented Aug 6, 2023

A simple G28 with no parameters does an initial Z move (see below), then it just stops moving, reports "Home XY First" without actually moving X or Y, and then sits there waiting for my next command. If I try to home just X or Y (or both) without Z, I just get the initial Z move, and no error message at all.

@VanessaE Do you have 2 Y-motors? (Y and Y2)? For me G28 X works, but G28 Y doesn't. I have 1 X-motor, but 2 Y-motors.

@VanessaE
Copy link
Contributor

VanessaE commented Aug 6, 2023

@VanessaE Do you have 2 Y-motors? (Y and Y2)? For me G28 X works, but G28 Y doesn't. I have 1 X-motor, but 2 Y-motors.

The related bug in the PR has already been fixed, but the machine in question is CoreXY, so technically it doesn't have even one X or Y motor, let alone two. 😉

@rondlh
Copy link
Contributor

rondlh commented Aug 9, 2023

The related bug in the PR has already been fixed, but the machine in question is CoreXY, so technically it doesn't have even one X or Y motor, let alone two. 😉

OK, thanks for you replay. I found the problem after a detailed compare of the changes. Things are working again for me :D (See below)

@rondlh
Copy link
Contributor

rondlh commented Aug 9, 2023

I found the cause of the problem I am having (no movement when homing Y with Y_DUAL_ENDSTOPS in combination with SPI_ENDSTOPS).
In Conditionals_post.h

Old line:
#define _USE_STOP(A,N,M,C) ((A##_HOME_TO_##M || (C+0)) && PIN_EXISTS(A##N##_##M))

New line:
#define _USE_STOP(A,N,M,C) ((ANY(A##_HOME_TO_##M, A##N##_SAFETY_STOP) || (C+0)) && PIN_EXISTS(A##N##_##M) && !A##_SPI_SENSORLESS)

Note the addition of "&& !A##_SPI_SENSORLESS" at the end. If you delete that addition, then things work for me.

#define _USE_STOP(A,N,M,C) ((ANY(A##_HOME_TO_##M, A##N##_SAFETY_STOP) || (C+0)) && PIN_EXISTS(A##N##_##M))

Pragma8123 pushed a commit to Pragma8123/Bender that referenced this pull request Oct 24, 2023
EvilGremlin pushed a commit to EvilGremlin/Marlin that referenced this pull request Oct 26, 2023
eveve0505 added a commit to eveve0505/Marlin that referenced this pull request Nov 1, 2023
commit 24cf29b6a8e9f5e3cd37c4160a20b0a75ff04ad5
Author: thinkyhead <[email protected]>
Date:   Wed Nov 1 01:19:48 2023 +0000

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

commit 41a6f2bc8da53e3277c6b183bdc167399245c858
Author: Chris <[email protected]>
Date:   Wed Nov 1 01:10:37 2023 +0100

    🧑‍💻 Improve POSTMORTEM_DEBUGGING (#26374)

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

commit e0767f867517e49ce680b4be97fbaf3c5cb2d653
Author: Giuliano Zaro <[email protected]>
Date:   Wed Nov 1 01:03:28 2023 +0100

    🌐 Fix long Italian string (#26378)

commit 5523c12cfd01c859a01f26575a1dfff4c43eac8e
Author: Giuliano Zaro <[email protected]>
Date:   Wed Nov 1 01:02:11 2023 +0100

    🩹 Fix MarlinUI UTF-8 chars (#26381)

commit a6c8afc5a9487ced6249a5d0abbc53ae077db786
Author: thinkyhead <[email protected]>
Date:   Sun Oct 29 00:21:30 2023 +0000

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

commit cb8df74a9c9a1311940c113732503766295fdcb8
Author: Vladimir Sitnikov <[email protected]>
Date:   Sat Oct 28 04:01:04 2023 +0300

    🚸 Move Debug menu down (#26266)

commit 050439ccba39ba2d614b2069e4d606521fe13e22
Author: Vladimir Sitnikov <[email protected]>
Date:   Sat Oct 28 03:46:09 2023 +0300

    🧑‍💻 Update .editorconfig settings (#26264)

    Fixes #26219

commit 6907df0bd6af90fcb9753b54c84b3d3bd8910b2b
Author: thinkyhead <[email protected]>
Date:   Sat Oct 28 00:18:59 2023 +0000

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

commit 5a259a726670b0dbc21a58651847259d83f54c7b
Author: Giuliano Zaro <[email protected]>
Date:   Sat Oct 28 00:18:15 2023 +0200

    🌐 Update Italian language (#26208)

commit b082f1a2b882a827cb614f4c020787f6ffce2449
Author: ellensp <[email protected]>
Date:   Sat Oct 28 11:15:23 2023 +1300

    ⚡️ Faster COMPACT_MARLIN_BOOT_LOGO (rle16) (#26153)

commit c666b492c4e188987e9382e6ec2e79453b5136bc
Author: tombrazier <[email protected]>
Date:   Fri Oct 27 23:06:04 2023 +0100

    🔥 Automatic minimum planner junction speed (#26198)

commit aa0671fb32eb93d1f028764422c5fb8acc9b8fa1
Author: tombrazier <[email protected]>
Date:   Fri Oct 27 22:10:02 2023 +0100

    🩹 Fix Input Shaping max_isr_rate with Distinct E factors (#26167)

commit f82d0109e491756b0f004b31fe8fe0da25615aa8
Author: thinkyhead <[email protected]>
Date:   Fri Oct 27 00:19:27 2023 +0000

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

commit 2a88e7600298fef27e8cbbe01b708959515677fb
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 25 19:41:32 2023 -0500

    🧑‍💻 Misc. LCD / string updates

commit b25f523acabde814397b9c2eddc2e77792fb86a9
Author: thinkyhead <[email protected]>
Date:   Thu Oct 26 00:23:31 2023 +0000

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

commit 046439a5a1bcbc9baac156f9fbb7686edbf7bbeb
Author: Scott Lahteine <[email protected]>
Date:   Wed Oct 25 14:27:22 2023 -0500

    🧑‍💻 Echo by default in dev mode

commit bcd07c2c91a1148b34c5929f29e746ca1158cce7
Author: thinkyhead <[email protected]>
Date:   Tue Oct 24 00:19:54 2023 +0000

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

commit e9b04ada1d2f14f124a0d449205deda8c372340b
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 23 18:51:34 2023 -0500

    🩹 Fix PLR debug with NO_VOLUMETRICS

commit ff5eb5de29e889c972bfda73cce01796205d47f0
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 23 18:54:11 2023 -0500

    🩹 No GET_TEXT with DGUS_TFT

    Followup to #26164

commit fd62c42faa15998d6771a18a5f704e24f7bfa1f8
Author: Scott Lahteine <[email protected]>
Date:   Mon Oct 23 17:07:04 2023 -0500

    🩹 No GET_TEXT with DGUS_TFT

    Followup to #26164

commit 089d075c8fd8f9c76df5eb03df9451aca3af5160
Author: thinkyhead <[email protected]>
Date:   Mon Oct 23 00:20:43 2023 +0000

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

commit 45a6e9614e671ed97a1de33a966e25cd28329a14
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 22 18:33:36 2023 -0500

    📝 Community Reporting

commit 9e6d0ea6109157941179c67eed063b8ab68ef99b
Author: Marcio T <[email protected]>
Date:   Sun Oct 22 16:22:16 2023 -0600

    🩹 Fix FTDI Eve Touch UI meshGetter, etc. (#26342)

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

commit c345087b415e73e2a405c0088bd1f1e02ea6dd6a
Author: Keith Bennett <[email protected]>
Date:   Sun Oct 22 13:46:34 2023 -0700

    🔨 Add MKS Eagle FD Envs (#26346)

commit 8de007021ac357f44b06aec7df6d8d9522c3663b
Author: Keith Bennett <[email protected]>
Date:   Sun Oct 22 13:44:29 2023 -0700

    🧑‍💻 Don't Recommend DevContainer (#26348)

commit f72588595b4a4d3a0c40e26e1bad248ee0a062c9
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 22 15:17:30 2023 -0500

    🚸 SD refresh UI update with NO_SD_DETECT (#26366)

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

commit 797ea5efa741ef96827870bb44b48fac7a41f1a0
Author: Keith Bennett <[email protected]>
Date:   Sun Oct 22 13:15:38 2023 -0700

    🚸 Fix MarlinUI expanded label alignment (#26339)

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

commit 156e7c1c5453e9b9fcd103fb1874eb5803ebea54
Author: ellensp <[email protected]>
Date:   Mon Oct 23 08:25:28 2023 +1300

    🐛 Fix TFT compile, K8400 pins (#26359)

commit b8b1aa345cfeaa59e9d377edc3c143fc67cf16cc
Author: thinkyhead <[email protected]>
Date:   Sat Oct 21 00:19:15 2023 +0000

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

commit b0ece8f8df130709f97da6c1474cd20cbd9119ed
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 20 17:21:30 2023 -0500

    🧑‍💻 MarlinUI menu tweaks

    Changes in prep for #26339

commit 4b0b00c8da5eb193bb157d42e788da9586ed5ba7
Author: studiodyne <[email protected]>
Date:   Fri Oct 20 03:23:23 2023 +0200

    ✨ Tool Migration-specific settings (#26244)

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

commit 6d3122d4e8525dea64cf83a98354a95f2a1d9a29
Author: Andrew <[email protected]>
Date:   Thu Oct 19 21:22:04 2023 -0400

    🚸 Misc. JyersUI tweaks (#26228)

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

commit 0f27e38eb92396b49a60f9d51cf0afa9527f3518
Author: ellensp <[email protected]>
Date:   Fri Oct 20 13:34:22 2023 +1300

    🎨 Update GT2560 V41b (#26351)

commit 6156050024d1edfa59c1d6e1955c50706396b589
Author: thinkyhead <[email protected]>
Date:   Fri Oct 20 00:20:00 2023 +0000

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

commit cacbe005b53dd833a5300c1e6636d917583d7fd3
Author: Andrew <[email protected]>
Date:   Thu Oct 19 19:01:43 2023 -0400

    🩹 Fix ProUI G-code preview (#26213)

commit caca5636cec69ba3afe28353abecc218dd8c05fa
Author: thinkyhead <[email protected]>
Date:   Sun Oct 15 06:05:56 2023 +0000

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

commit 6a35ab6557f8450845379c90724dc14b55be4b0c
Author: Marcio T <[email protected]>
Date:   Sat Oct 14 22:54:54 2023 -0600

    ✨ Z_PROBE_ERROR_TOLERANCE (expose) (#26229)

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

commit 87de4c134b7e9eb8a845987e666fbf4589a2a92a
Author: thinkyhead <[email protected]>
Date:   Fri Oct 13 18:06:12 2023 +0000

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

commit 7944628400273d1b78eab3ffc71aa7c07ffaaaac
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 13 09:48:14 2023 -0500

    🧑‍💻 IA Creality optional code

commit 251a84b741c7232a84a744d8fdcb0e1f8d6951c6
Author: thinkyhead <[email protected]>
Date:   Thu Oct 12 18:20:54 2023 +0000

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

commit d695e5f7bc409bc3d8ede798db5205c2c6a162f1
Author: Scott Lahteine <[email protected]>
Date:   Thu Oct 12 12:56:44 2023 -0500

    🔧 Misc. probe opts

commit 4744997c164931f8c1f8753ba4112e466b7c83a7
Author: Scott Lahteine <[email protected]>
Date:   Thu Oct 12 12:14:57 2023 -0500

    📝 GCode => G-Code

commit 5bd39ba73f5a704ccaf370bc98201c10b380d20d
Author: Scott Lahteine <[email protected]>
Date:   Thu Oct 12 12:14:26 2023 -0500

    🧑‍💻 FxdTiCtrl => FTMotion redux

commit 7f887f2342d2da112ba2058177c53492d3c2903f
Author: Marcio T <[email protected]>
Date:   Thu Oct 12 10:14:58 2023 -0600

    🚸 Update FTDI Eve / CocoaPress UI (#26233)

commit e7e77d9612253cf7106cfc9e69f69e52f4083294
Author: Scott Lahteine <[email protected]>
Date:   Thu Oct 12 09:44:46 2023 -0500

    🧑‍💻 FxdTiCtrl => FTMotion

commit a7a3abb9bf04c0dd6edfadb4f1c3c80ed7dd627c
Author: Scott Lahteine <[email protected]>
Date:   Thu Oct 12 09:21:00 2023 -0500

    📝 Macro comments

commit 6f68da5be4dcc56cc6577f3727f0e240e4086785
Author: thinkyhead <[email protected]>
Date:   Wed Oct 11 06:06:33 2023 +0000

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

commit e9b9d634c4ef5d48791de84545ef86d46909fec0
Author: Andrew Bortz <[email protected]>
Date:   Tue Oct 10 20:24:48 2023 -0700

    ✨ Nonlinear Extrusion Control (M592) (#26127)

commit 6d301a282ebb38cee2a7d526adad27467b2bd55f
Author: thinkyhead <[email protected]>
Date:   Tue Oct 10 00:19:51 2023 +0000

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

commit 61591fd23369a03063a42f57a174c51f995c7efb
Author: studiodyne <[email protected]>
Date:   Tue Oct 10 00:50:09 2023 +0200

    🐛 Fix tool-change E prime (#26237)

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

commit e97d82f77beadf7001e569dc7e683ba287afa56e
Author: Marcella Cavalcanti <[email protected]>
Date:   Mon Oct 9 22:52:59 2023 +0100

    ✨ FYSETC Cheetah v3.0 (#26314)

commit b58d5dabf8939658334db3e0d98c03b1b934df7c
Author: Keith Bennett <[email protected]>
Date:   Sun Oct 8 18:07:09 2023 -0700

    🔧 BTT_MINI_12864_V1 => BTT_MINI_12864 (#26160)

commit 047bce0cdd8599d3ea9b85d173f8d79a0802adf1
Author: Dipl.-Ing. Raoul Rubien, BSc <[email protected]>
Date:   Mon Oct 9 02:22:40 2023 +0200

    🔧 More angles for 2x Servo Switching Nozzle (#26303)

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

commit c81e217334222aa18c23d02d34f1a78ac7ed23fa
Author: thinkyhead <[email protected]>
Date:   Mon Oct 9 00:20:31 2023 +0000

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

commit 9cd341c2c3b2ea4e38852325bec98c349addf7f8
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 8 18:09:49 2023 -0500

    🩹 Patches for MSC SD (#26332)

commit f0ad1e9b70210f7f3713cc09e471367875a44c49
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 8 15:11:19 2023 -0500

    🧑‍💻 Update dev scripts

commit 414b1f83271e5dbc85568c3ac8f9d2beabdbc1c4
Author: Scott Lahteine <[email protected]>
Date:   Sun Oct 8 15:10:18 2023 -0500

    🩹 Serial warning followup

    Followup to #26306

commit e68320ee2b10ae5c7bf3bf816e80c3621a20fcd2
Author: Erkan Ozgur Yilmaz <[email protected]>
Date:   Sun Oct 8 21:39:46 2023 +0100

    🐛 Fix MMU late init (#26331)

commit 7fa643a11eb97907eb23fb72ffd86100c7630e39
Author: ellensp <[email protected]>
Date:   Mon Oct 9 09:16:28 2023 +1300

    🔨 Specify LPC toolchain 1.100301.220327 (#26249)

commit 375e724deebac8a71a3c37c84b6f1170922e302a
Author: thinkyhead <[email protected]>
Date:   Sun Oct 8 00:21:49 2023 +0000

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

commit 6c0f4bbafd4b95d770c4aacf7d9d9df4be50b892
Author: Keith Bennett <[email protected]>
Date:   Fri Oct 6 23:21:41 2023 -0700

    ✅ CI test for STM32G0 (#26327)

commit 4cab75115fe559e702ebe7a8dc040ebe0d6d4d0b
Author: Orel <[email protected]>
Date:   Sat Oct 7 08:10:22 2023 +0200

    🩹 Fix G33 output (#26299)

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

commit 014609ad87d3556b44a00fef4c4983894f9d4354
Author: Scott Lahteine <[email protected]>
Date:   Sat Oct 7 00:29:34 2023 -0500

    🔧 Move some config options

commit f7a3172c20cfed3178ab9ab099ff386f61560ad9
Author: Bob Kuhn <[email protected]>
Date:   Fri Oct 6 23:53:52 2023 -0500

    🐛 Fix DELTA Z when not using probe for homing (#26297)

commit b799f7d1f3447b5431c29c1a92323febcfa57eda
Author: Bob Kuhn <[email protected]>
Date:   Fri Oct 6 23:45:32 2023 -0500

    🔧 Forbid UBL Hilbert Curve on DELTA (#26296)

commit f3851408fe599a97a3f1a2337b3eda92c1aeeccf
Author: Vladimir Sitnikov <[email protected]>
Date:   Sat Oct 7 07:44:27 2023 +0300

    🔧 No TMC_HOME_PHASE on tandem steppers (#26310)

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

commit 03cf2b577be63a8f630c2ad9547d0e2ab3b73e00
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 6 19:15:28 2023 -0500

    misc. formatting, grid condition

commit b3b6f23320d9ad8b8891a71d1ff289ccaf329edf
Author: Vovodroid <[email protected]>
Date:   Sat Oct 7 04:03:02 2023 +0300

    🧑‍💻 Tweak an 'if' block (#26300)

commit 821ba43131a5d3c1c291f6a6086f66e83d44384d
Author: Piotr Piatkowski <[email protected]>
Date:   Sat Oct 7 02:56:10 2023 +0200

    🩹 Fix Endstop Test debug menu (#26326)

commit 31bf73b89bc92a385c8c51bdd804471b84c251f5
Author: thinkyhead <[email protected]>
Date:   Sat Oct 7 00:19:28 2023 +0000

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

commit 229ea71421debe36fe77a371bab3c4b40ce38fe8
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 6 19:02:34 2023 -0500

    📝 Update dgus_e3s1pro comment

commit f085e2ca9352840bb62ce1dc5a6228406ee61996
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 6 17:20:08 2023 -0500

    🩹 Remove extraneous 'inline'

    See #26085

commit db98f0611004efd6e042c4cf53c881d7b1f3c10c
Author: Keith Bennett <[email protected]>
Date:   Fri Oct 6 15:09:58 2023 -0700

    🚸 Warning alerts for non-fatal errors (#26306)

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

commit bbb5aacc48db7bc875f3099018455cb07ae74f61
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 6 16:12:23 2023 -0500

    📝 Update config sections

commit 91ab18d1d2825b85cbd17e8ef1eb0675754a4043
Author: Scott Lahteine <[email protected]>
Date:   Fri Oct 6 16:08:30 2023 -0500

    📝 Some settings units

commit 273cbc6871491a3c1c5eff017c3ccc5ce56bb123
Author: thinkyhead <[email protected]>
Date:   Thu Oct 5 06:06:14 2023 +0000

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

commit 596d1ff104aa809165862bdf272caa6cc1f8ddb1
Author: EvilGremlin <[email protected]>
Date:   Thu Oct 5 07:47:23 2023 +0300

    🩹 Fix TFT string code (#26292)

commit 896492442c3e1ae8335f7011fb44b368667a3067
Author: thinkyhead <[email protected]>
Date:   Wed Oct 4 00:36:20 2023 +0000

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

commit b9e58cd3eae21b0df94e8db16cd503730c7510a8
Author: Keith Bennett <[email protected]>
Date:   Tue Oct 3 13:23:40 2023 -0700

    🔧 BigTreeTech Manta M4P is v2.1 (#26226)

commit d961dbae8d5c037b76725ee999016773bb2f3f68
Author: ellensp <[email protected]>
Date:   Wed Oct 4 09:21:53 2023 +1300

    🔧 Fix SanityCheck typo (#26223)

commit be031e18509884c42051fba6849af06e089e383f
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 3 14:57:07 2023 -0500

    📝 More ExtUI documentation

commit 15dfbabc9cbfde0551571b550e56f5d2d5271dd4
Author: Scott Lahteine <[email protected]>
Date:   Tue Oct 3 14:52:04 2023 -0500

    🔧 Temp report precision option (#26253)

commit 102de7dac3cbfa088180375ee0a550a35828ffba
Author: kisslorand <[email protected]>
Date:   Tue Oct 3 22:50:33 2023 +0300

    🚸 More precision in G30 output (#26255)

commit 7338a2fec82caf7ccc469274c8ecef1d75c3abbd
Author: kisslorand <[email protected]>
Date:   Tue Oct 3 22:48:52 2023 +0300

    🚸 Use SERIAL_FLOAT_PRECISION for SERIAL_ECHO(float) (#26254)

commit d56136f06cca075e801aabcff76bd207d4da349f
Author: thinkyhead <[email protected]>
Date:   Sat Sep 30 00:19:06 2023 +0000

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

commit 34a0c9d143ff5c5018c4713a1ed5dad32c8c3a5d
Author: ellensp <[email protected]>
Date:   Sat Sep 30 12:12:29 2023 +1300

    📝 Update BTT SKR Mini E3 v3.0 comments (#26318)

commit 11f98adcce51f06a85ef0dd64e6e6b16139a34bd
Author: thinkyhead <[email protected]>
Date:   Sat Aug 26 00:22:53 2023 +0000

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

commit 209fadd2e6039e050e33eaed9c59465ffa5c30f0
Author: jaysuk <[email protected]>
Date:   Sat Aug 26 00:43:57 2023 +0100

    ✨ Mellow Fly E3 V2 (STM32F407VG) (#26081)

commit 8fa6a4da2eebc1dbe120dcac87b159e389e17dc3
Author: Andrew <[email protected]>
Date:   Fri Aug 25 19:33:49 2023 -0400

    🚸 Fixes for ProUI, JyersUI, backlight, etc. (#26086)

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

commit 4613f85bb754991b1ea4fa5218ae94e758be0e8a
Author: Scott Lahteine <[email protected]>
Date:   Thu Aug 24 15:09:03 2023 -0500

    🧑‍💻 Encapsulate ProUI G-code preview

commit e1121a4cd009ee447eaef2ab49a2de896e5a5eef
Author: thinkyhead <[email protected]>
Date:   Fri Aug 25 00:19:03 2023 +0000

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

commit 20fec98f70208546b90ccc0b8f6766de6f2f8230
Author: lukasradek <[email protected]>
Date:   Thu Aug 24 19:41:30 2023 +0200

    🧑‍💻 Adjust LCD string draw (#26154)

commit adfc787a45432e918f024241d5ba4387724cd6e9
Author: thinkyhead <[email protected]>
Date:   Thu Aug 24 00:18:43 2023 +0000

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

commit 86be9a85d0f819fc0f3f6cfe743906ac3309f366
Author: Scott Lahteine <[email protected]>
Date:   Wed Aug 23 13:44:40 2023 -0500

    📝 Thermistor info updates (#26202)

commit f6de698fc8bf284c76a2ae09b1c7b5041c74d495
Author: thinkyhead <[email protected]>
Date:   Wed Aug 23 00:25:27 2023 +0000

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

commit edc737954653cd174c51cced37917ff4df2867e1
Author: Anson Liu <[email protected]>
Date:   Tue Aug 22 20:21:41 2023 -0400

    ✨ G-code 'T' report current tool (#26151)

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

commit ab8af7fa9cb7007ac710f62137e91f73446f8b60
Author: Scott Lahteine <[email protected]>
Date:   Tue Aug 22 19:16:35 2023 -0500

    🔧 Allow arbitrary BLOCK_BUFFER_SIZE

commit fb74caebb5d9e17c5b6c369cbc8965130e1ec93f
Author: Keith Bennett <[email protected]>
Date:   Tue Aug 22 16:40:59 2023 -0700

    🔧 Fix Linear Leveling grid size sanity check (#26199)

commit 88cdf487b433bf2187f2dad31587882ebf02cc59
Author: Scott Lahteine <[email protected]>
Date:   Tue Aug 22 17:36:53 2023 -0500

    🚸 Avoid LCD messages starting with "Error:" (#26164)

commit be91eaed2c707924cbaa8a4d79a0495b43495870
Author: narno2202 <[email protected]>
Date:   Wed Aug 23 00:13:53 2023 +0200

    🩹 Fix FT Motion menu Back item (#26175)

commit b5a08c251853e0b7122bc33d1c6fcd3de967e478
Author: thinkyhead <[email protected]>
Date:   Tue Aug 22 00:18:52 2023 +0000

    [cron] Bump distribution date (2023-08-22)

commit b02ea02dbb89892916045079423ca91532adc61c
Author: Scott Lahteine <[email protected]>
Date:   Mon Aug 21 16:52:26 2023 -0500

    ✅ Fix unused test

commit d69ce775032bc254bf3da67088ebdfcaad0612b5
Author: Yuri D'Elia <[email protected]>
Date:   Mon Aug 21 21:39:49 2023 +0200

    🐛 Fixes for G2/G3 arcs (#26170)

commit d1803ec04434a9b5a9e18c12cc392cee15d8f5c6
Author: thinkyhead <[email protected]>
Date:   Mon Aug 21 00:19:10 2023 +0000

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

commit f2665e597f944d7a054a72302349a6edf9c4c082
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 25 18:36:50 2023 -0500

    🎨 FTDI cleanup

commit db5ead4230eda3e05d8beb919c8e7d5bdef960a9
Author: thinkyhead <[email protected]>
Date:   Sun Aug 20 00:19:51 2023 +0000

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

commit f7d5188b2f0a59b752fbabf6b96ff1ed4aed8112
Author: GHGiampy <[email protected]>
Date:   Sat Aug 19 22:53:45 2023 +0200

    🐛 Fixes for ProUI, build rename (#26177)

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

commit 1d17c34e123f74d820f42fcd179104c884719007
Author: thinkyhead <[email protected]>
Date:   Fri Aug 18 00:18:38 2023 +0000

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

commit 49ead19d008dd54403b37818b21e79b8ccfa4b89
Author: Vovodroid <[email protected]>
Date:   Fri Aug 18 02:13:10 2023 +0300

    🔧 Reversible file alpha sorting (#26130)

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

commit 7e7dcb869257bb82adffbb349699560dc34a1f09
Author: thinkyhead <[email protected]>
Date:   Wed Aug 16 06:08:59 2023 +0000

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

commit cf50240e82e9bf187b9d6733d9dd0aed1fe57806
Author: Scott Lahteine <[email protected]>
Date:   Tue Aug 15 21:03:42 2023 -0500

    📝 Update INO (c)

commit 79f6d9bdaca7764271809b8a92df5e7e38318528
Author: thinkyhead <[email protected]>
Date:   Mon Aug 14 00:19:27 2023 +0000

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

commit 6af6060aa0240ccc03020edba661fe42125d3713
Author: Martin Turski <[email protected]>
Date:   Sun Aug 13 22:57:38 2023 +0200

    🔧 Configurable SD card retry/timeout (#25340)

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

commit 2bac7835e801c413c3d9e75a1dbe3e94dc689f3d
Author: thinkyhead <[email protected]>
Date:   Tue Aug 8 00:22:24 2023 +0000

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

commit fd41757aef29c167fb8284ff8a8fc94ef566018a
Author: EvilGremlin <[email protected]>
Date:   Tue Aug 8 00:54:27 2023 +0300

    🐛 Fix MKS Robin Mini servo timer (#26150)

commit f338f65bdfc7e6b629e939db49dbe6f6731986de
Author: Giuliano Zaro <[email protected]>
Date:   Mon Aug 7 23:51:22 2023 +0200

    🚸 Adjust ColorUI chamber bmp (#26149)

commit 867f5e90697451429ae2fa7760089d165f9319eb
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Aug 7 16:16:33 2023 -0500

    🚸 UI Sound off/on with M300 E<0|1> (#26142)

commit 88f5e2c6394cde42969fd4a21ba579cf2cd2db77
Author: Miguel Risco-Castillo <[email protected]>
Date:   Mon Aug 7 16:11:12 2023 -0500

    🐛 Fix UBL probe_entire_mesh skips points (#26141)

    Fixes #26132

commit ca0209b868be80d1438e1d695e2f103ab1025f92
Author: Keith Bennett <[email protected]>
Date:   Mon Aug 7 14:00:50 2023 -0700

    🔨 Fix USB FD env names (#26131)

commit 4f691e622f3dc1de5a64bcaf42d3de56c9808322
Author: Ari-SSO <[email protected]>
Date:   Mon Aug 7 06:35:22 2023 -0300

    🩹 PROBING_TOOL followup (#26122)

    Followup to #24411

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

commit fecadaca82e49c2558b42684382ede121274bfea
Author: Scott Lahteine <[email protected]>
Date:   Mon Aug 7 04:24:04 2023 -0500

    🔧 Clarify WIFISUPPORT (#26097)

commit 709def5e7baa57911d604ffec701c3ba7ef61ffa
Author: Aleks <[email protected]>
Date:   Mon Aug 7 11:09:26 2023 +0200

    🩹 Fix M3 `uninitialized` warning (#26091)

commit a5e4b4bd7d18f84c29a13430c636ecae289c352a
Author: narno2202 <[email protected]>
Date:   Mon Aug 7 10:30:24 2023 +0200

    🚸 FT_MOTION menu updates (#26083)

commit a8177944443a7a1186a77cefbe1ae7be19722ddd
Author: thinkyhead <[email protected]>
Date:   Mon Aug 7 06:51:07 2023 +0000

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

commit ffef8f1b297e83aa37eeb5ffcc5369e5c9c42a09
Author: Mark <[email protected]>
Date:   Mon Aug 7 12:33:20 2023 +0800

    🚸 BD Sensor Z axis stop height (#26015)

commit 205a679959432dff54352b390354a4324f29a97a
Author: Bart Meijer <[email protected]>
Date:   Mon Aug 7 06:12:30 2023 +0200

    ⚡️ SAMD21 LCD uses HW SPI with media (#26012)

commit b956001d8175b3f01ef0be2ef6b07825a8509317
Author: lukasradek <[email protected]>
Date:   Mon Aug 7 05:08:35 2023 +0200

    🚸 Update LCD Manual Leveling display (#26088)

commit 1dd3c9e73f59ddac098173c4cc3642e798f18623
Author: Keith Bennett <[email protected]>
Date:   Sun Aug 6 20:04:11 2023 -0700

    📝 STM32G0B0 SKR Mini E3 V3.0 / Manta M4P (#26087)

commit 8d74a63e4bc210ce96ef7cf148f3598afc9fe1ad
Author: Scott Lahteine <[email protected]>
Date:   Sun Aug 6 21:04:40 2023 -0500

    📝 Update a config comment

commit 27fd97a8bbb63f676c32c307afd491dd865a271f
Author: thinkyhead <[email protected]>
Date:   Sun Aug 6 00:21:12 2023 +0000

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

commit 4d89db52095cb4f182bc11d4cfd72ceef8e2273f
Author: magicmaker3 <[email protected]>
Date:   Sun Aug 6 07:10:49 2023 +0800

    ✨ MM-JOKER (ESP32) board (#25897)

commit f66323ecfbe067667234df286e14d43d409bfaea
Author: Pagliarulo Onofrio <[email protected]>
Date:   Sat Aug 5 07:03:10 2023 +0200

    ✨ Geeetech GT2560 V4.1B board (#25888)

commit 863198a73f8a07663a6a5f7c088631aa72b5fb45
Author: Giuliano Zaro <[email protected]>
Date:   Sat Aug 5 06:56:40 2023 +0200

    ✨ VOLUMETRIC_EXTRUDER_LIMIT_MAX (#25884)

commit ad112b4d3d47ff841334b16dcf497917fb8c1ec6
Author: Scott Lahteine <[email protected]>
Date:   Fri Aug 4 23:49:38 2023 -0500

    🐛 Fix case TRRunaway

commit c088081c0009d3eb2f218d39266cc08e902d03cf
Author: thinkyhead <[email protected]>
Date:   Sat Aug 5 00:54:22 2023 +0000

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

commit 06d46a0ef96a766b114db5902beccb86829ba57c
Author: Alexey D. Filimonov <[email protected]>
Date:   Sat Aug 5 03:07:56 2023 +0300

    ✨ AUTO_POWER_SPINDLE_LASER (#25739)

commit 27e68a61fa0b1ec46084603880679810c53b3da3
Author: Scott Lahteine <[email protected]>
Date:   Fri Aug 4 18:29:52 2023 -0500

    🧑‍💻 Update some SDSUPPORT

commit 4e31fa66e2f402ac574ec4afa52447824444d90d
Author: Dmitry Pogrebnyak <[email protected]>
Date:   Fri Aug 4 22:59:17 2023 +0300

    ✨ STATUS_HEAT_POWER (#25268)

commit 87231b625f3cf36b57352d3d89cfb05cfde0e777
Author: thinkyhead <[email protected]>
Date:   Fri Aug 4 06:06:04 2023 +0000

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

commit 3baa318ec737a67cec6087194ab04fb2242279e0
Author: Martin Turski <[email protected]>
Date:   Fri Aug 4 05:56:40 2023 +0200

    🧑‍💻 Option to reset AVR pin states (#25364)

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

commit 820d2b58b3cfe16affd421f4925ae924cb60826f
Author: Martin Turski <[email protected]>
Date:   Fri Aug 4 04:40:38 2023 +0200

    🚸 Option to report temperature on error (#25341)

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

commit fe4819a9c16325fcac6aa58071a4f42b6e2d2c56
Author: thinkyhead <[email protected]>
Date:   Thu Aug 3 08:45:07 2023 +0000

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

commit 8ae19e45d6e069afa169548fa781fce928ea110d
Author: Scott Lahteine <[email protected]>
Date:   Thu Aug 3 01:28:06 2023 -0500

    🔨 Prevent variant overwrite

    Co-Authored-By: Martin Turski <[email protected]>

commit aaa590855a26032d049ae797e092a4571d04e2d7
Author: ellensp <[email protected]>
Date:   Thu Aug 3 15:55:29 2023 +1200

    📝 E3S1PRO is T5L (#26143)

commit a629471ed74b78f909224075832db64b5b3bc6ac
Author: thinkyhead <[email protected]>
Date:   Wed Aug 2 06:06:02 2023 +0000

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

commit bed26734a28175f7ef9669d5190bf7ebc6227223
Author: Scott Lahteine <[email protected]>
Date:   Tue Aug 1 23:03:06 2023 -0500

    🔧 More endstops refactoring (#25758)

commit 5da7143fe5a73f7aa636c833e95cf695d070faf1
Author: thinkyhead <[email protected]>
Date:   Sun Jul 30 00:24:18 2023 +0000

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

commit 2c9bc872e788a2281ca9b64a135ca1a53004f9b5
Author: ellensp <[email protected]>
Date:   Sun Jul 30 11:34:16 2023 +1200

    🔧 Check AVR Rx/Tx conflict w/ LCD_EN (#26069)

commit abd1896ce2cd37a184fc1a237482b2b0a3c16ae2
Author: ellensp <[email protected]>
Date:   Sun Jul 30 11:30:56 2023 +1200

    🔧 STM32 support 9 UARTs (#26072)

commit 347a7dc71e185f7ad7144d69e66cda10eb4cdc9e
Author: thinkyhead <[email protected]>
Date:   Sat Jul 29 00:21:43 2023 +0000

    [cron] Bump distribution date (2023-07-29)

commit ae9f2710f0a0a1c47bd384a803e3345117b6dd49
Author: Scott Lahteine <[email protected]>
Date:   Fri Jul 28 16:53:01 2023 -0500

    🔨 Old renamed AVRs

commit 2a82ca87b03ab3b819f69b571ca44dd0a0e1afdf
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 27 23:03:36 2023 -0500

    🩹 Fix ProUI compile without Advanced Pause

commit 6f8178598f417a7963b26ebe091c0b3ee69f46dd
Author: thinkyhead <[email protected]>
Date:   Fri Jul 28 00:21:36 2023 +0000

    [cron] Bump distribution date (2023-07-28)

commit 6cc4dd10bc5504c38263b57ecf7e8b1e3d06e44e
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 27 17:20:03 2023 -0500

    🐛 Fix hotend idle timeout checks

commit d036097bca52b128b421342afcdb908cb1d8d5ab
Author: lukasradek <[email protected]>
Date:   Thu Jul 27 23:08:21 2023 +0200

    🚸 Fix HD44780 EDIT_ITEM position (#26073)

commit 6ba50aa6ea519ab5e80ec0152b100a0425c181a2
Author: thinkyhead <[email protected]>
Date:   Thu Jul 27 00:21:22 2023 +0000

    [cron] Bump distribution date (2023-07-27)

commit fdad658e5feb93943b1ab0ea9bc2420258e4f2e4
Author: Giuliano Zaro <[email protected]>
Date:   Thu Jul 27 01:38:59 2023 +0200

    🐛 Fix runout extra length (#26082)

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

commit 79be07f9a4aff5c010a0f454c24fb147725bcf2a
Author: thinkyhead <[email protected]>
Date:   Mon Jul 24 06:06:23 2023 +0000

    [cron] Bump distribution date (2023-07-24)

commit 5bcaae62f2c7965ee7f99eb44a44022f1cbad959
Author: ellensp <[email protected]>
Date:   Mon Jul 24 15:31:39 2023 +1200

    ⚡️ Compact RGB565 TFT boot images (#26011)

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

commit e451dec674d9093c8c10f953c5f6bcc7f9ed42b0
Author: thinkyhead <[email protected]>
Date:   Sat Jul 22 06:05:47 2023 +0000

    [cron] Bump distribution date (2023-07-22)

commit 6379d4dbca389b264cf5b404bd6fd9f5c3221be8
Author: ellensp <[email protected]>
Date:   Sat Jul 22 15:05:04 2023 +1200

    🩹 Suppress G33 string warning (#26095)

commit 91c6a7180d8aa3f2ab8b9bbb486d68dc9657dbff
Author: thinkyhead <[email protected]>
Date:   Fri Jul 21 06:06:24 2023 +0000

    [cron] Bump distribution date (2023-07-21)

commit 9135e3f7d3fd0d634656f1c54c70a0ba1f878bfd
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 20 21:10:03 2023 -0500

    🚸 Revert M206 Home Offset behavior (#25996)

commit a0e3dea8b879aba8e0d2d7e4dc6a6447b3fe76ad
Author: Scott Lahteine <[email protected]>
Date:   Thu Jul 20 20:25:39 2023 -0500

    🚸 ColorUI Touch Calibrate in CW order

commit 6bc42300a1ce3fcbf2b396a6e1fbf11453f77544
Author: thinkyhead <[email protected]>
Date:   Thu Jul 20 06:06:07 2023 +0000

    [cron] Bump distribution date (2023-07-20)

commit 45193b4a1d82023f1b763c0340e40ec5b6fcc51c
Author: Scott Lahteine <[email protected]>
Date:   Wed Jul 19 21:12:32 2023 -0500

    🔥 Always use ISR for BABYSTEPPING (#26035)

commit 885e9cc0576af2c6a79d8bfa9a4f1560c6748b27
Author: thinkyhead <[email protected]>
Date:   Tue Jul 18 00:41:02 2023 +0000

    [cron] Bump distribution date (2023-07-18)

commit 244de2458ac6fd48f3031d0179ca1bcad6808583
Author: Alexander Gavrilenko <[email protected]>
Date:   Mon Jul 17 10:53:36 2023 +0300

    🧑‍💻 Improve TFT Color UI layout / theme (#26077)

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

commit 4d6e5c12b3d40747ff62cb140fdc3c293c9dbab5
Author: thinkyhead <[email protected]>
Date:   Mon Jul 17 06:20:28 2023 +0000

    [cron] Bump distribution date (2023-07-17)

commit a5d47f84ae9eeb5c29280b279bfc844bac559c0d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 17 01:01:36 2023 -0500

    🎨 Rename Helvetica 14 (2)

commit 5fd0247239445976dc38c1d238ebc718e2bfe9ce
Author: Scott Lahteine <[email protected]>
Date:   Mon Jul 17 01:01:14 2023 -0500

    🎨 Rename Helvetica 14 (1)

commit 821d77fe4c2ea0260d63e02ae65ab575da840801
Author: Scott Lahteine <[email protected]>
Date:   Sun Jul 16 23:43:50 2023 -0500

    🎨 Misc. comment open

commit fef772ef29e502c8fd2f53e10de383dbcb3529fe
Author: Keith Bennett <[email protected]>
Date:   Sun Jul 16 21:32:16 2023 -0700

    🩹 Fix SPI TFT build on SKR V2 & V3/EZ (#26041)

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

commit 381515721481d09c4f30ca8a526e90fc39602fd9
Author: Scott Mikutsky <[email protected]>
Date:   Mon Jul 17 00:29:56 2023 -0400

    🐛 Ensure BLTouch deploy in HS Mode (#26033)

commit 810c1693aca079c6ecdb1584292c65b384ca1f5f
Author: thinkyhead <[email protected]>
Date:   Sun Jul 16 06:08:45 2023 +0000

    [cron] Bump distribution date (2023-07-16)

commit fc2272c4b473a45f2033d4dd82aef4b259b99759
Author: Andrew <[email protected]>
Date:   Sat Jul 15 21:10:42 2023 -0400

    🩹 Fix, clean up ProUI, JyersUI (#26078)

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

commit 45f7ebb92b11ced03998d590ae1431609c9da68f
Author: tombrazier <[email protected]>
Date:   Sun Jul 16 02:06:21 2023 +0100

    🩹 Fix Input Shaping "enable" for SHAPING_FREQ_[XY] == 0 (#26075)

commit 28f69a052c197b07ef7d404e738f2fa9ba641d0d
Author: thinkyhead <[email protected]>
Date:   Sat Jul 15 00:26:39 2023 +0000

    [cron] Bump distribution date (2023-07-15)

commit ef3054d1a8d368f5789a07ad5f0b14224ec1ce19
Author: Keith Bennett <[email protected]>
Date:   Fri Jul 14 16:24:17 2023 -0700

    ✨ BTT Octopus Pro V1.1 (STM32H723ZE) (#26043)

commit bcf61cc91c00b2c0d82aa0e88d0f88e5a18bbe8b
Author: thinkyhead <[email protected]>
Date:   Thu Jul 6 00:27:11 2023 +0000

    [cron] Bump distribution date (2023-07-06)

commit 57d26f7e4f614ee4e05e7e97fdc7109d8cfdc702
Author: Giuliano Zaro <[email protected]>
Date:   Wed Jul 5 08:21:54 2023 +0200

    🩹 Fix HOST_STATUS_NOTIFICATIONS compile (#26040)

commit 67a9a7e66f1706b56ab76fa9866470fe85e7612a
Author: thinkyhead <[email protected]>
Date:   Wed Jul 5 00:32:14 2023 +0000

    [cron] Bump distribution date (2023-07-05)

commit 16f19b2c1fa6b64abd4de2558c13c9fdc162d600
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 4 19:19:44 2023 -0500

    🩹 Fix ProUI tramming

commit ed4e22b548a3ffb348e9d20f995f67a9aa7d2dd6
Author: Scott Lahteine <[email protected]>
Date:   Tue Jul 4 18:31:20 2023 -0500

    🧑‍💻 print_pos => print_xyz

commit 929497d52762f87243d1b521d9703f75b7501aa4
Author: Keith Bennett <[email protected]>
Date:   Tue Jul 4 14:07:56 2023 -0700

    📝 Update config URLs (#26049)

commit f479f8377d4a6b21ef3b429ed6a6d627c16ffd88
Author: Keith Bennett <[email protected]>
Date:   Tue Jul 4 13:25:26 2023 -0700

    🎨 Clean up TFT Colors (#26050)

commit 1feb70c91beced527e2abd29d9465e5d998a694b
Author: thinkyhead <[email protected]>
Date:   Tue Jul 4 06:06:45 2023 +0000

    [cron] Bump distribution date (2023-07-04)

commit 179260878feb6fd575f8d341454e7c4a5add6c2e
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 1 20:38:17 2023 -0500

    🎨 Misc. fixes and formatting

commit 7b8a2180ff0a0924a0558a6fbf4c75903f250511
Author: thinkyhead <[email protected]>
Date:   Mon Jul 3 00:25:59 2023 +0000

    [cron] Bump distribution date (2023-07-03)

commit 3ea87ad54c1e445a1c8cfef1489809edae5decb3
Author: Alexander Gavrilenko <[email protected]>
Date:   Sun Jul 2 04:16:12 2023 +0300

    ✨ SPI TFT / Touchscreen for STM32H7 (#25784)

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

commit c483fe76c7c750d1ee08a6d5fdfe363f1beb4e03
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 1 20:01:45 2023 -0500

    🩹 Fix ProUI _remain_time

    Followup to #25982

commit b50add4694e66209acd3c5d6fe62f062817fd79e
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 1 19:54:39 2023 -0500

    🔨 Wrapper for GCC < 8

commit 275642b2977af95024e2c8b55538a5dbc0fa09c5
Author: thinkyhead <[email protected]>
Date:   Sun Jul 2 00:31:20 2023 +0000

    [cron] Bump distribution date (2023-07-02)

commit 38e92b522b8abc2a5b2c4050dd8d8231127d1aeb
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 1 18:56:53 2023 -0500

    📝 mm/m => mm/min

commit 7f5b0b4008c4e4853903f4f790392451f82362c2
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 1 18:20:36 2023 -0500

    🩹 Define drawTrinamicConfigMenu

    Followup to #25982

commit 60f74f3cb3c95e9d1c6408b80a489d422cf945e6
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 1 18:20:22 2023 -0500

    🔨 Suppress truncation warning

commit 1a241e6e86512b570267d672e2f00a80df41b2e9
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 1 16:50:42 2023 -0500

    🐛 Fix M105 (MString append TS) and EEPROM ver

    Followup to #24390

commit 4985acafada69dcb17b813d76b359bcfb5b57b43
Author: Scott Lahteine <[email protected]>
Date:   Sat Jul 1 04:33:53 2023 -0500

    🐛 Prevent MString infinite recursion (#26037)

    Followup to #24390

commit f9c8703e778a10f0a2a46c199712a7555f2aca33
Author: Anson Liu <[email protected]>
Date:   Sat Jul 1 03:19:16 2023 -0400

    🩹 Fix missing include cycles.h (#25927)

commit b77e2a5020714ad17fc12052093231ad4520ce14
Author: Christophe Huriaux <[email protected]>
Date:   Sat Jul 1 06:06:08 2023 +0200

    ✨ Ender 3 S1 Pro/Plus stock touchscreen (#25905)

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

commit f766a90f5ff300d02eb6ac7917f2355b71f1f237
Author: thinkyhead <[email protected]>
Date:   Sat Jul 1 00:53:49 2023 +0000

    [cron] Bump distribution date (2023-07-01)

commit 0878b99b2cb38ffd40faa12d9e3de3bd659af205
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 30 19:21:56 2023 -0500

    🌐 Language Import/Export (#25889)

commit 1bc155e8101001c75b867017fc5fcd31cc5d2f31
Author: Keith Bennett <[email protected]>
Date:   Fri Jun 30 17:21:37 2023 -0700

    🎨 Simplify BTT Octopus Max EZ LCD Pins (#26019)

commit f14f1be168ebf252dd458c935271aed1a57cfa0b
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 30 19:16:00 2023 -0500

    🎨 Standardize naming (ProUI) (#25982)

commit 7247acdece4bb20bfd49960c44a7bebe1ea0f74c
Author: thinkyhead <[email protected]>
Date:   Fri Jun 30 00:24:45 2023 +0000

    [cron] Bump distribution date (2023-06-30)

commit 7b23fd3548f5aabc269ba24ec947d6fdfd225072
Author: narno2202 <[email protected]>
Date:   Fri Jun 30 00:06:05 2023 +0200

    🐛 Fix FT Motion runout in progress (#26020)

commit d9349caeee7307d660ec729052210dfba7036432
Author: Keith Bennett <[email protected]>
Date:   Thu Jun 29 13:27:25 2023 -0700

    ⚡️ Ethernet Buffer for Input Shaping on LPC (#26027)

commit 97e15812fa15cf3ee9f260089282eb5e69915c4e
Author: Andrew <[email protected]>
Date:   Thu Jun 29 13:21:14 2023 -0400

    🔨 Makefile + 256K Creality Maple + Heater IDs (#26018)

commit cb12114a7eeaefc227aa7aa94a8e382bfd3aa95a
Author: Krzysztof Błażewicz <[email protected]>
Date:   Thu Jun 29 09:18:32 2023 +0200

    🩹 Fix JyersUI typos (#26029)

    Followup to #24390

commit aee8e15fd2b1b701a5f16e92a0c557c6dccb13de
Author: thinkyhead <[email protected]>
Date:   Thu Jun 29 00:25:22 2023 +0000

    [cron] Bump distribution date (2023-06-29)

commit 6474773555274527ac4a24162dfdd9ea4b2b59da
Author: Giuliano Zaro <[email protected]>
Date:   Thu Jun 29 00:06:50 2023 +0200

    🐛 Fix AD4985 with 5V input, add AD595 3.3V warning (#26021)

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

commit be18edd604d10aba6fb7a3210e90bf711cc436dc
Author: Krzysztof Błażewicz <[email protected]>
Date:   Wed Jun 28 05:51:47 2023 +0200

    🚸 JyersUI MPC menu (#26017)

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

commit bbfaf7474c50f81d606c2dde91035bc40835e830
Author: Scott Lahteine <[email protected]>
Date:   Tue Jun 27 21:44:42 2023 -0500

    🎨 CrealityDWIN => JyersDWIN (#26026)

commit 46b5753f5653401bc2d1d3120041a897384db48d
Author: Scott Lahteine <[email protected]>
Date:   Tue Jun 27 20:33:57 2023 -0500

    🎨 Indent temp structs

commit a5ac50fcbf541dcd33fe35979b767bbcf0568884
Author: thinkyhead <[email protected]>
Date:   Wed Jun 28 00:25:35 2023 +0000

    [cron] Bump distribution date (2023-06-28)

commit 574dd34c49fde76e1e736b8a7e1ea579d724ff22
Author: Scott Lahteine <[email protected]>
Date:   Tue Jun 27 13:19:36 2023 -0500

    ♻️ String helper class (#24390)

commit 4a734e4de436d9f497ef432744902c12bab9a257
Author: thinkyhead <[email protected]>
Date:   Mon Jun 26 00:26:36 2023 +0000

    [cron] Bump distribution date (2023-06-26)

commit 402c4ef5d3de2b22efd73111222ee7d1f1f6b25f
Author: Katelyn Schiesser <[email protected]>
Date:   Sun Jun 25 15:32:56 2023 -0700

    🚸 M86-M87 Hotend Idle Timeout (#25015)

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

commit 0138aff890c458f78b68aa21753bcf5d6e5bf488
Author: thinkyhead <[email protected]>
Date:   Sun Jun 25 12:07:25 2023 +0000

    [cron] Bump distribution date (2023-06-25)

commit f281fb473d499d8805fb29d7dd13ec9ef6b10c41
Author: Scott Lahteine <[email protected]>
Date:   Sun Jun 25 01:31:07 2023 -0500

    🎨 Minor code cleanup

commit a256e47b9c282bd69cd9d1d69970d41e9676e3dc
Author: thinkyhead <[email protected]>
Date:   Sat Jun 24 12:07:28 2023 +0000

    [cron] Bump distribution date (2023-06-24)

commit 9bf95418a7fbc0da0a6dc8bfb5024b624b94a51a
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 24 02:57:58 2023 -0500

    🐛 Fix TFT_LTDC::writeReg

    Followup to #25939

commit 60f591f3b6e06fdef903e10f81ac96f65e30d78e
Author: thinkyhead <[email protected]>
Date:   Fri Jun 23 12:11:03 2023 +0000

    [cron] Bump distribution date (2023-06-23)

commit 858916d628526b5d56c34c5c9663e3535bfc7788
Author: Miguel Risco-Castillo <[email protected]>
Date:   Fri Jun 23 04:57:22 2023 -0500

    🚸 Update DWIN ProUI (#26003)

commit 2218bab542c839f4d1d09640f7c7a1444e38a23b
Author: mjbogusz <[email protected]>
Date:   Fri Jun 23 11:56:34 2023 +0200

    🚸 Color UI remaining time (#24843)

commit a58e530f921e6197089a678d4a667cf3a10de3bc
Author: narno2202 <[email protected]>
Date:   Fri Jun 23 11:52:10 2023 +0200

    🩹 Fix 'M493 S12' (#26007)

commit 1fbeac7b5255634bb5aca209a3d3dcb6b5e43193
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 23 00:15:54 2023 -0500

    🎨 Adjust TFT code/comments

commit 18ccc404432f4b9a71cd8bd855ccc243414abcab
Author: thinkyhead <[email protected]>
Date:   Thu Jun 22 12:06:59 2023 +0000

    [cron] Bump distribution date (2023-06-22)

commit 8c9172cf5d21fd57aed16edbe825a872ae064ad0
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 22 02:54:21 2023 -0500

    🍻 Fixed-Time Motion integration (#25719)

commit 2dc76689ea186a6c6334a728253ede95c6c6203e
Author: thinkyhead <[email protected]>
Date:   Tue Jun 20 00:21:56 2023 +0000

    [cron] Bump distribution date (2023-06-20)

commit 91401d7e5f36f1b2d27bfbeef96ae54953c3d3ae
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 19 15:05:51 2023 -0500

    🔧 Move non-DUE conditions

commit 733209f9a2cfa347e072738c76860c08a4e74500
Author: Keith Bennett <[email protected]>
Date:   Sun Jun 18 22:12:50 2023 -0700

    🔧 MPC adjustments (#25986)

commit d79b42c710cadcc7dede4e806e94f16c6451d3d7
Author: thinkyhead <[email protected]>
Date:   Mon Jun 19 00:24:00 2023 +0000

    [cron] Bump distribution date (2023-06-19)

commit 441416728cd7f0e9b6ebf94f895d1d27fe59d25a
Author: Mark <[email protected]>
Date:   Sun Jun 18 17:18:08 2023 +0800

    🚸 Bed distance sensor improvements (#25847)

commit dd1792bdfce1ff5ff679f20dbf9bf66789e743b0
Author: Andrew <[email protected]>
Date:   Sun Jun 18 00:19:28 2023 -0400

    🔨 Update CMakeLists.txt (#25983)

commit 927b3cc41a0a53f95e1fca78430b116e0fc8806a
Author: thinkyhead <[email protected]>
Date:   Sun Jun 18 00:25:52 2023 +0000

    [cron] Bump distribution date (2023-06-18)

commit c180a99c793493e10102b04b58239e32e793ea93
Author: ellensp <[email protected]>
Date:   Sun Jun 18 09:44:49 2023 +1200

    📝 Update BTT SKR V3 board comments (#25973)

commit a3df3d40eec8e3d4b82feed5b92d50ba15b47acf
Author: Giuliano Zaro <[email protected]>
Date:   Sat Jun 17 22:55:02 2023 +0200

    🐛 Fix G2/G3 limiting_speed (#25988)

commit 1e5c279da37270ec8d084cd9c46e6abec2f70a42
Author: discip <[email protected]>
Date:   Sat Jun 17 22:53:03 2023 +0200

    🔨 Fix marlin_STM32H723VG mcu value (#25991)

    Followup to #25921

commit 5b8b8e005b87fad983314bb78bb62604bd8aa8af
Author: EvilGremlin <[email protected]>
Date:   Sat Jun 17 23:49:22 2023 +0300

    🔧 BLTOUCH_HS_MODE hex value check (#25992)

commit 238951a966204ce9bc109e06fdb4027125b28feb
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 16 18:08:59 2023 -0500

    🎨 More more lowercase (partial ProUI)

    Followup to #25939

commit 78b342661a07fae8d7152f369c3c9fe16ed9b9cb
Author: thinkyhead <[email protected]>
Date:   Sat Jun 17 00:22:04 2023 +0000

    [cron] Bump distribution date (2023-06-17)

commit 41a5fbb16ad985220f1cee1b823950c3bb771186
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 16 18:12:01 2023 -0500

    🎨 More lowercase

    Followup to #25939

commit eca80db9b6846a05313df81c583828809684478f
Author: thinkyhead <[email protected]>
Date:   Fri Jun 16 00:24:24 2023 +0000

    [cron] Bump distribution date (2023-06-16)

commit 8261af3010efce783dc2063d7fa75e17be89e88a
Author: ellensp <[email protected]>
Date:   Thu Jun 15 12:57:15 2023 +1200

    ✨ BTT RAMPS 1.6+ (#25970)

commit 9728d79ade1c3d72bba368f5c072a8fe402c2048
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 14 17:43:24 2023 -0700

    📝 Document Manta E3 EZ / E3V2 LCD custom wiring (#25976)

commit 067091458a684a5f5529ef31860a89892750f5bc
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 14 17:41:43 2023 -0700

    🎨 Group STM32G0 pins includes (#25977)

commit 166ed289953fe25ff4dabd2541934e7364684168
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 14 19:37:35 2023 -0500

    🎨 Lowercase followup

    Followup to #25939

commit 5cfe3af0ef1b64d8cbb87335a7e996bf3e1f41a4
Author: thinkyhead <[email protected]>
Date:   Thu Jun 15 00:26:48 2023 +0000

    [cron] Bump distribution date (2023-06-15)

commit d26955bde6d64430ed46422f3ec575317c648837
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 14 19:06:17 2023 -0500

    🔧 Sanity check IA_CREALITY mesh size

commit c3694f1c038fa20ad749118b0a1c7aa88e3dd5f2
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 14 17:24:50 2023 -0500

    🎨 Lowercase methods, functions, data members (#25939)

    For: TFT, DGUS, MarlinUI, Anycubic, JyersUI, CrealityUI

commit 1726ba5bda1deb9b71e2d9644c789e806b7d1127
Author: thinkyhead <[email protected]>
Date:   Tue Jun 13 00:23:25 2023 +0000

    [cron] Bump distribution date (2023-06-13)

commit aa2f4051bb335a24d062b56ec65162633af9dc6d
Author: Keith Bennett <[email protected]>
Date:   Mon Jun 12 14:39:49 2023 -0700

    🔥 Remove VAkE 403D (#25969)

commit 2ef71c6ebaa1f1b496eb369879fe22c69cf9adb4
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 12 16:38:14 2023 -0500

    ♻️ Simplify SERIAL_ECHO (#25928)

    Since this increases AVR code size, try to optimize further.

commit d9d2dae88391b0bbfa131f56fa49d3f472683023
Author: thinkyhead <[email protected]>
Date:   Mon Jun 12 00:25:11 2023 +0000

    [cron] Bump distribution date (2023-06-12)

commit bea1a914bee6caf6ff63a4c0ab65a2b7ddea9de8
Author: Keith Bennett <[email protected]>
Date:   Sun Jun 11 14:49:37 2023 -0700

    🔨 SKR Mini E3 v3.0.1 XFER (#25955)

commit 85067e14b5cd9a1d4d8ac8f38a763e9745d4fe61
Author: thinkyhead <[email protected]>
Date:   Sun Jun 11 00:29:06 2023 +0000

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

commit 00ab015de7b728082196c203626dd215dc8427d3
Author: Keith Bennett <[email protected]>
Date:   Sat Jun 10 17:20:50 2023 -0700

    🔨 Firmware rename followup (#25966)

    Followup to #25957

commit b5d3d0141f5169ba79a99876af7b0c274cb382be
Author: thinkyhead <[email protected]>
Date:   Sat Jun 10 00:22:22 2023 +0000

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

commit 3706c16729ba095a9845128022408a0c07cde221
Author: ellensp <[email protected]>
Date:   Fri Jun 9 19:59:23 2023 +1200

    🐛 Fix dummy thermistors 998-999 (#25956)

commit 0ed46406d1d4b4280f8458d56b45b7bdab33e113
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 9 02:56:25 2023 -0500

    🔨 Simpler distinct firmware rename (#25957)

commit 82ddd55a1a4800e478b937da49d396cb2fb351f1
Author: Bart Meijer <[email protected]>
Date:   Fri Jun 9 04:55:26 2023 +0200

    🩹 Conditional u8g for SAMD21 (#25947)

commit 34e23bcf950fa89737289c76953af7b24d5c22c4
Author: Miguel Risco-Castillo <[email protected]>
Date:   Thu Jun 8 20:47:35 2023 -0500

    🐛 Fix _MINMAX_TEST typo (#25954)

commit f3cda01b959274e7930c2050f5e34aa1460791bc
Author: thinkyhead <[email protected]>
Date:   Fri Jun 9 00:30:56 2023 +0000

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

commit 2a79aad2dda922e35260750db90e7e243e24fc43
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 8 19:22:17 2023 -0500

    🔨 Fix serial port #error text

commit bbbd6045cb6e76cca44c973e1922ce5220ab29c4
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 8 19:18:59 2023 -0500

    🔨 Update STM32Hxx boards/variants

    Followup to #25934

commit 683916e17a6fe35c9726ad7e57e73c519fc96222
Author: Dmitry Plastinin <[email protected]>
Date:   Thu Jun 8 07:14:34 2023 +0300

    🚸 Portrait TS35 move axis screen (#25945)

commit 9360e13cdd1e21799eb3aedcd23015469da6798d
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 7 22:37:16 2023 -0500

    🚸 General TFT cleanup

commit 9d830d72077fd42927e0a1396fa752b8a6c449cd
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 7 20:16:30 2023 -0700

    🔨 Clean up some BTT envs, etc. (#25934)

    Followup to #25921

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

commit 54a82b4337a5e65e53ef8b28749546c18d05ba79
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 7 20:58:55 2023 -0500

    🚸 Fix TFT menu positioning (#25942)

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

commit d1e995670d2ce345b42ac8d8f9b0cebda7d87632
Author: Scott Lahteine <[email protected]>
Date:   Wed Jun 7 20:28:15 2023 -0500

    🔧 Z-MIN as CREALITY V25 S1 probe

commit 10947a463ba50ec31434e775e006d192906f7a83
Author: thinkyhead <[email protected]>
Date:   Thu Jun 8 00:23:27 2023 +0000

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

commit e8f5f9d7321bb681ecbb1f787a381bf3885ec302
Author: Keith Bennett <[email protected]>
Date:   Wed Jun 7 01:03:35 2023 -0700

    🔨 Teensy 4.1 pins env check (#25937)

commit 984f9fe7d6a0c86f045010d294c316fe05835587
Author: Giuliano Zaro <[email protected]>
Date:   Wed Jun 7 10:01:07 2023 +0200

    🌐 Update Italian language (#25940)

commit 322d5dc29c136b5e2f1a8e4712fc10a781b9d4c3
Author: thinkyhead <[email protected]>
Date:   Wed Jun 7 00:25:18 2023 +0000

    [cron] Bump distribution date (2023-06-07)

commit 8f1d80b0ba425b6d927d99aad8340e22a71da7ff
Author: Scott Lahteine <[email protected]>
Date:   Tue Jun 6 15:30:28 2023 -0500

    🧑‍💻 Use Flags<> for runout (#25938)

commit 35016633d843ba393eb17cf5fd1dba03764821dd
Author: Scott Lahteine <[email protected]>
Date:   Tue Jun 6 02:58:28 2023 -0500

    🩹 Conditional include probe.h

commit 4b8e4ef38e1f395d394314f54bacff8def9527c8
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 5 23:49:09 2023 -0500

    ⚡️ Mixer label in PROGMEM

commit 17cc5fa8723eed59106e925472baf37383a5ac5b
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 5 21:08:43 2023 -0500

    🧑‍💻 Suppress narrowing warnings

    Followup to #25924

commit a6b32a5a915e17eaa73dede2f9a98fc042b4904d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 5 20:39:14 2023 -0500

    🧑‍💻 Bypass error in build_example

commit e116a99eda1bbfd97e4af1136618d80dcceb169e
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 5 20:13:15 2023 -0500

    🩹 Fix JyersUI corner pos

    Followup to #25631

commit bfd6be3799627f87da29f7281b14f9e9be515a69
Author: thinkyhead <[email protected]>
Date:   Tue Jun 6 00:24:34 2023 +0000

    [cron] Bump distribution date (2023-06-06)

commit 6a29d5d5af1b6ef0bee4125a9fc00aaf2c1b6695
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 5 17:25:42 2023 -0500

    🧑‍💻 Fix mfconfig trailing space

commit fbc5bd0d0424d365eaaddad47c58b733557ef42d
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 5 16:24:20 2023 -0500

    🩹 Wrap HAS_DISPLAY for if()

    Followup to #24877

commit 7680fe2b59c9861c0e6acb13cf085ca55d7deddc
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 5 16:01:32 2023 -0500

    🧑‍💻 Dir change is AxisBits

    Followup to #25761

commit 70288c6c4fae6a6334d7c48b9ef17da7ecf3c173
Author: Scott Lahteine <[email protected]>
Date:   Mon Jun 5 00:43:31 2023 -0500

    🎨 Detab C/C++

commit 3b681f7b7450582e0fca2425aabf47b37624cbda
Author: Roi Rodríguez Huertas <[email protected]>
Date:   Mon Jun 5 07:13:57 2023 +0200

    🔧 TMC Driver axis baud for Soft Serial (#25664)

commit 6e8035e5aa59454600cd359665a34954dac80a70
Author: thinkyhead <[email protected]>
Date:   Mon Jun 5 00:24:02 2023 +0000

    [cron] Bump distribution date (2023-06-05)

commit f8423f9da09a8d67074b4243917953a6b2b8d279
Author: kisslorand <[email protected]>
Date:   Sun Jun 4 12:49:27 2023 +0300

    🩹 Fix D576 buffer underrun reporting (#25931)

commit 1a2816284c0e92f39840e8688d617faa1e32cd2f
Author: Andrew <[email protected]>
Date:   Sun Jun 4 05:20:07 2023 -0400

    ✏️ Fix LCD contrast typo (#25929)

commit f8c51523694e5ccc6473bc9791f3fa0135ad395f
Author: thinkyhead <[email protected]>
Date:   Sun Jun 4 00:27:30 2023 +0000

    [cron] Bump distribution date (2023-06-04)

commit 6136e48df5c8e2aee3447b99beb8464231895b69
Author: Giuliano Zaro <[email protected]>
Date:   Sat Jun 3 23:09:29 2023 +0200

    🐛 Fix M25/M125 for LCDs with ui.resume_print (#24877)

commit b8655ca0ed05e077ac89ff377bff3e4db7ff5b3a
Author: Manuel McLure <[email protected]>
Date:   Sat Jun 3 13:39:41 2023 -0700

    🔧 BTT SKR 3 has onboard endstop pullups (#24876)

commit ba08dcfb76804a912380603b3f69831ea0d1d6eb
Author: Scott Lahteine <[email protected]>
Date:   Sat Jun 3 04:40:07 2023 -0500

    🧑‍💻 Fix narrowing conversions (#25924)

commit ac954b57f764cf958000314efc20b725c2b8e054
Author: Keith Bennett <[email protected]>
Date:   Fri Jun 2 20:50:45 2023 -0700

    🩹 Endstop hit state followup (#25885)

    Followup to #25574

commit 739f1027f8e12da28d15e1de78a5b7ecc49c3b12
Author: ellensp <[email protected]>
Date:   Sat Jun 3 15:47:57 2023 +1200

    🔨 STM32H723VG (1024KB) (#25921)

commit a6b56d171d855429d1f0249fcc1ffe64881994f4
Author: ellensp <[email protected]>
Date:   Sat Jun 3 15:37:29 2023 +1200

    🎨 Lowercase followup (#25923)

    Followup to #25914

commit ad0d700a3e783943a722fec00ee3ac24020691ba
Author: thinkyhead <[email protected]>
Date:   Sat Jun 3 00:22:16 2023 +0000

    [cron] Bump distribution date (2023-06-03)

commit 86c811660ebf0b3fcbae2f34273d4c9d0c22abc4
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 2 14:30:34 2023 -0500

    🧑‍💻 Remove LOOP macros (#25917)

commit 2691167afe02fbbe74b0fdca2c28a49fac635741
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 2 14:26:02 2023 -0500

    🧑‍💻 Dump BOTH and EITHER macros (#25908)

commit 32be4065efeafe781e007ca6ff47bd5a3fc22184
Author: Scott Lahteine <[email protected]>
Date:   Wed May 31 16:47:05 2023 -0500

    🧑‍💻 numtostr use functions

commit bc385122e94d7eda79bdf1573a7c2071c4589da2
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 2 13:34:13 2023 -0500

    🎨 Lowercase method / data member names (#25914)

commit e45eddfd6c4008d82b3aefe4764793b0669dc60a
Author: Scott Lahteine <[email protected]>
Date:   Fri Jun 2 12:46:23 2023 -0500

    🔨 Fix pins debugging for Simulator

commit 500415955051a3295756668b3aae3c383bc1b4bf
Author: alextrical <[email protected]>
Date:   Fri Jun 2 17:32:43 2023 +0100

    🔨 Clarify env error (#25915)

commit d9659d3177ff3ffd3530fac2db850a5384b67af9
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 1 22:58:17 2023 -0500

    📝 M122 comment

commit 2de2185d970ce63dab078bfdd7eb9e49a64a39c2
Author: thinkyhead <[email protected]>
Date:   Fri Jun 2 01:38:48 2023 +0000

    [cron] Bump distribution date (2023-06-02)

commit 49134a9467f79037cc6ea643b8ac9634e5f7eb36
Author: I3DBeeTech <[email protected]>
Date:   Fri Jun 2 04:58:34 2023 +0530

    🔧 Update LCD with NeoPixel Contrast (#25893)

commit 6044cb99559e0bb29a697f346fd1507c59ffbba5
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 1 17:39:08 2023 -0500

    🌐 Remove unused strings

commit ded810cebfbde80ebbb64afe1f4fd277c94e12f1
Author: EvilGremlin <[email protected]>
Date:   Fri Jun 2 01:35:42 2023 +0300

    🌐 Update Russian translation (#25840)

commit 9e0dcd4a2b6d0262ee2b09170aff0c1f21d9175e
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 1 16:53:02 2023 -0500

    🧑‍💻 ExtUI::onLevelingStart/Done for all leveling (#25913)

commit ad23b8c559d55bfbc81d077a129c256c9ef9a585
Author: Scott Lahteine <[email protected]>
Date:   Thu Jun 1 14:54:23 2023 -0500

    🚸 Probe Wizard display fix

commit 3999d67e514c1e752128df2a6dc80ec0579ee504
Author: Keith Bennett <[email protected]>
Date:   Thu Jun 1 12:44:19 2023 -0700

    🔧 Default has Heated Bed (#25895)

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

commit 67f0d6ae5ea89fe1cdfc7ac4b25ea2947df1772b
Author: thinkyhead <[email protected]>
Date:   Tue May 30 00:33:07 2023 +0000

    [cron] Bump distribution date (2023-05-30)

commit 47616c7dfa7f3f7fddd8fa8d207929d65d2291a6
Author: Scott Lahteine <[email protected]>
Date:   Mon May 29 19:00:09 2023 -0500

    🔨 Install 'heatshrink' if needed (#25896)

commit d926d4dea413f70303ae38a74bc627aaaf21d97e
Author: DejitaruJin <[email protected]>
Date:   Sun May 28 21:22:00 2023 -0400

    🩹 Fix and improve GT2560 pins (#25890)

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

commit b4ba3dd7f37a6214ed8a3e62f45f9d2aac3917c9
Author: thinkyhead <[email protected]>
Date:   Mon May 29 00:21:30 2023 +0000

    [cron] Bump distribution date (2023-05-29)

commit 0b4500155e8c61aecf41090b41f34a3452593b78
Author: Keith Bennett <[email protected]>
Date:   Sun May 28 13:24:45 2023 -0700

    🩹 Update KEDI / GODI LCD_PINS_EN pin (#25886)

commit ef93b401c38eb1748721be74c9fdbae77f375792
Author: thinkyhead <[email protected]>
Date:   Sat May 27 00:22:42 2023 +0000

    [cron] Bump distribution date (2023-05-27)

commit 154e48ba22ceedb01e9058a7f8da9457a445ee19
Author: Scott Lahteine <[email protected]>
Date:   Fri May 26 18:54:50 2023 -0500

    🎨 Misc. spacing

commit f73fe76b6c5f9088222265e47494611e9d8bc379
Author: Scott Lahteine <[email protected]>
Date:   Fri May 26 17:50:42 2023 -0500

    🌐 Language export to CSV

commit d20ce5ff0a4d45e2ac7091832c86d4441f0356a9
Author: thinkyhead <[email protected]>
Date:   Fri May 26 00:21:31 2023 +0000

    [cron] Bump distribution date (2023-05-26)

commit a3eace117ced5ad72227046465a6d878f66261d9
Author: EvilGremlin <[email protected]>
Date:   Thu May 25 10:32:04 2023 +0300

    🧑‍💻 Improve missing translations script (#25841)

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

commit 772e19aab988b5d6466bdf2e8948c8c7eee3cafd
Author: Scott Lahteine <[email protected]>
Date:   Wed May 24 22:10:40 2023 -0500

    ✨ EP_BABYSTEPPING (#25869)

commit 1a4e208c6901cf3727940e98f12748aa14a52f5d
Author: Scott Lahteine <[email protected]>
Date:   Wed May 24 21:22:54 2023 -0500

    🩹 Fix card.ls call (in easythreed_ui)

    Fix regression in #24679

commit e2a724990762dab554ce5bab092327eb604d3d83
Author: thinkyhead <[email protected]>
Date:   Thu May 25 00:20:08 2023 +0000

    [cron] Bump distribution date (2…
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.

5 participants