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

Refactors towards 2-to-6 Linear Axes #21953

Merged

Conversation

thinkyhead
Copy link
Member

@thinkyhead thinkyhead commented May 21, 2021

Description

The PR #19112 is pretty complicated, so this PR aims to set up in advance the new defines and macros that will be used to support a variable number of linear axes, starting here with the potential to drop the Z axis. Once this PR passes testing and works as expected then it can be merged ahead of the full multi-axis PR, simplifying that PR and more starkly pointing out all the places in the code where changes must go when adding more axes to Marlin.

New Macros

Following Marlin's meta-programming idiom, this PR also introduces macros for lists, arrays, statements, and undecorated (gang) elements, taking the optional E element first, but placing it after linear axes. If EXTRUDERS is set to 0 the E element is ignored.

For example, under the typical setup the following structure will end up with X, Y, and Z fields as linear axes, followed by an E field as the extruder axis. As more axes are added they will go ahead of E. If EXTRUDERS is set to 0, then there will be no E field emitted.

  const abce_long_t target = {
     LOGICAL_AXIS_LIST(
      int32_t(LROUND(e * settings.axis_steps_per_mm[E_AXIS_N(extruder)])),
      int32_t(LROUND(a * settings.axis_steps_per_mm[A_AXIS])),
      int32_t(LROUND(b * settings.axis_steps_per_mm[B_AXIS])),
      int32_t(LROUND(c * settings.axis_steps_per_mm[C_AXIS])),
      int32_t(LROUND(i * settings.axis_steps_per_mm[I_AXIS])),
      int32_t(LROUND(j * settings.axis_steps_per_mm[J_AXIS])),
      int32_t(LROUND(k * settings.axis_steps_per_mm[K_AXIS]))
    )
  };

The "linear axis" macros take a list of values to emit for the linear axes, and only emit items for those that are enabled by the configuration. The "linear axes" are the three cartesian input axes, but might also pertain to the 3 axes needed for Delta, SCARA, etc. The macro requires one per linear axis. So for this iteration these macros require exactly three arguments.

  • LINEAR_AXIS_LIST takes a list of things to emit as a list for the linear axes (XYZ or ABC). It must contain 3 items.
  • LINEAR_AXIS_GANG takes a list of things to emit with no delimiters for the linear axes.
  • LINEAR_AXIS_ARRAY works like LINEAR_AXIS_LIST but emits a complete array of things.
  • LINEAR_AXIS_CODE works like LINEAR_AXIS_LIST but each thing is emitted as a line of code.

The "logical axis" macros take a list of values to emit for the logical axes, and only emit the items for those that are enabled by the configuration. The logical axes include the E axis plus all the linear axes, so basically all the axes that you can command from a single line of G-code. For this iteration that means four items.

  • LOGICAL_AXIS_LIST takes a list of things to emit as a list for the logical axes (XYZE). It must contain 4 items and the first item must be the E axis item.
  • LOGICAL_AXIS_GANG takes a list of things to emit with no delimiters for the logical axes.
  • LOGICAL_AXIS_ARRAY works like LOGICAL_AXIS_LIST but emits a complete array of things.
  • LOGICAL_AXIS_CODE works like LOGICAL_AXIS_LIST but each thing is emitted as a line of code.

Zero Extruders

Currently when Marlin is configured for zero extruders it still maintains an "E" axis internally. So one aim here is to remove all those unused fields and make the code more strict about when you can or can't refer to an E axis, an E endstop, etc. If EXTRUDERS is set to 0 then the so-called "XYZE" structure will be the same as the "XYZ" structure.

@thinkyhead thinkyhead force-pushed the bf2_axis_refactor_prefix_PR branch 14 times, most recently from 0c01165 to 0f7c611 Compare May 21, 2021 13:32
@thinkyhead thinkyhead force-pushed the bf2_axis_refactor_prefix_PR branch 4 times, most recently from 636bdcc to f3df8f4 Compare May 22, 2021 20:35
@thinkyhead thinkyhead force-pushed the bugfix-2.0.x branch 2 times, most recently from 1eaff6a to aee971b Compare May 22, 2021 22:47
@thinkyhead thinkyhead force-pushed the bf2_axis_refactor_prefix_PR branch from f3df8f4 to a181f80 Compare May 24, 2021 04:39
@thinkyhead thinkyhead force-pushed the bf2_axis_refactor_prefix_PR branch from 1932687 to 39f1d84 Compare May 24, 2021 21:38
@thinkyhead thinkyhead merged commit dd49902 into MarlinFirmware:bugfix-2.0.x May 24, 2021
@thinkyhead thinkyhead deleted the bf2_axis_refactor_prefix_PR branch May 24, 2021 21:39
TyMi pushed a commit to TyMi/Marlin that referenced this pull request May 30, 2021
…gfix

* upstream/bugfix-2.0.x: (61 commits)
  [cron] Bump distribution date (2021-05-30)
  ✨ Malyan M180 (MarlinFirmware#21992)
  🌐 Update Polish language (MarlinFirmware#21993)
  [cron] Bump distribution date (2021-05-29)
  [cron] Bump distribution date (2021-05-28)
  🥅 Add MESH_EDIT_MENU sanity check (MarlinFirmware#21922)
  🚸 cap:HOST_ACTION_COMMANDS (MarlinFirmware#21987)
  [cron] Bump distribution date (2021-05-27)
  [cron] Bump distribution date (2021-05-26)
  🐛 Fix BTT002 variant MMU2 serial pins 🧩 (MarlinFirmware#21980)
  ♻️ LEDs refactor and extend (MarlinFirmware#21962)
  [cron] Bump distribution date (2021-05-25)
  🩹 Fix multi_volume + SDIO onboard compile (MarlinFirmware#21975)
  ♻️ Refactor Linear / Logical / Distinct Axes (MarlinFirmware#21953)
  🩹 Improved SKR2 12864 LCD Delays (MarlinFirmware#21956)
  🐛 Fix Octopus HS USB (MarlinFirmware#21961)
  🐛 Fix flowmeter calculation (MarlinFirmware#21959)
  🎨 Macros for optional arguments (MarlinFirmware#21969)
  ⚡️ PIO filters for M117, M300 and M414 (MarlinFirmware#21972)
  [cron] Bump distribution date (2021-05-24)
  ...

# Conflicts:
#	Marlin/Configuration.h
thinkyhead added a commit that referenced this pull request Jun 15, 2021
* More patches supporting EXTRUDERS 0
* Extend types in prep for more axes
alrtprogrammer added a commit to alrtprogrammer/Marlin that referenced this pull request Jul 6, 2021
commit cd01421
Author: Glought <Glought@users.noreply.github.com>
Date:   Tue Jun 29 10:35:22 2021 -0700

    🚸 Sanity-check Slim LCD menus with Probe Offset Wizard (MarlinFirmware#22259)

commit aa13c78
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jun 29 10:30:55 2021 -0700

    🐛 Fix ExtUI 'lcd_clicked' definition (MarlinFirmware#22257)

commit b1c5dd9
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Mon Jun 28 18:43:05 2021 -0700

    🐛 Fix PTC/BTC whole number tests (MarlinFirmware#22255)

commit 3109a29
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Mon Jun 28 19:08:37 2021 +0200

    ✨ Ender-3 V2 Display for SKR E3 Turbo (MarlinFirmware#22229)

commit b878127
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 11:54:33 2021 -0500

    Marlin 2.0.9.1

commit 6ea6556
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 27 22:30:11 2021 -0700

    🐛 Use setTargetHotend in menus (MarlinFirmware#22247)

commit 2b37a71
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 00:33:44 2021 -0500

    ♻️ Refactor status screen timeout

commit e3ae76d
Author: Cytown <cytown@gmail.com>
Date:   Sun Jun 27 00:21:34 2021 +0800

    🚸 Expand box in draw_boxed_string (MarlinFirmware#22209)

commit b245089
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 27 21:02:11 2021 -0700

    🐛 No HOTEND_LOOP with EXTRUDERS 0 (MarlinFirmware#22245)

commit ec3daad
Author: Sébastien Gariépy <46988275+BeePerNet@users.noreply.github.com>
Date:   Sun Jun 27 17:44:49 2021 -0400

    🌐 MSG_MOVE_100MM (MarlinFirmware#22242)

commit ae76011
Author: Cytown <cytown@gmail.com>
Date:   Mon Jun 28 01:39:09 2021 +0800

    🐛 Fix wide glyph characters display (MarlinFirmware#22237)

commit 34066c1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 11:54:28 2021 -0500

    📝 Update probe heating value

commit 19fe3d5
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 23 06:42:24 2021 +1200

    🚸 MarlinUI Move Z >= 1000 (MarlinFirmware#22192)

commit ec518e6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 26 14:28:50 2021 -0500

    🎨 Small tweak, ms => now

commit 003ce25
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 26 14:01:47 2021 -0500

    🎨 Format onboard_sd.cpp

commit 3e5d867
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 27 06:28:56 2021 +1200

    🐛 Fix Z_MULTI_ENDSTOPS + NUM_Z_STEPPER_DRIVERS 4 compile (MarlinFirmware#22203)

commit b1bcb38
Author: cr20-123 <66994235+cr20-123@users.noreply.github.com>
Date:   Sat Jun 26 14:17:18 2021 -0400

    ✨ Update/extend Quiet Probing (MarlinFirmware#22205)

commit 0fbd8c5
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 27 04:32:51 2021 +1200

    🔧 Fix E.S.T. sanity-check errors (MarlinFirmware#22224)

commit 08895e6
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jun 25 22:38:27 2021 -0600

    🎨 Fix and improve FTDI Eve Touch UI (MarlinFirmware#22223)

commit 38e7754
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jun 25 14:12:21 2021 -0700

    📝 Update TMC SPI endstops comment (MarlinFirmware#22221)

commit 4763116
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 25 14:44:51 2021 -0500

    🐛 Trigger existing endstops on G38 hit

commit 185e0dc
Author: bwspath <bwspath@gmail.com>
Date:   Thu Jun 24 22:27:54 2021 +0200

    🐛 Fix Octopus build on case-sensitive FS (MarlinFirmware#22206)

commit bcf6ca5
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Tue Jun 22 21:48:56 2021 +0300

    🌐 Update Russian language (MarlinFirmware#22193)

commit 1ba694c
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Mon Jun 21 15:38:28 2021 -0600

    🎨 Fix and enhance FTDI Eve Touch UI (MarlinFirmware#22189)

commit 906fa05
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 21 16:31:41 2021 -0500

    🐛🌐 Fix extra axis translations

commit 651f15f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 21 16:24:50 2021 -0500

    🎨 Cosmetic cleanup

commit ef41c1f
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Mon Jun 21 13:36:06 2021 -0700

    🐛 Fix IJK axis references, E stepper indices (MarlinFirmware#22176)

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

commit 8050813
Author: Grumpy <dfouche8@gmail.com>
Date:   Tue Jun 22 08:12:39 2021 +1200

    🐛 Fix dual Neopixels (MarlinFirmware#22174)

commit 25e7e2f
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 22 08:09:21 2021 +1200

    🐛 Fix heater display options/compile (MarlinFirmware#22185)

commit a0f7f0e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 20 22:49:57 2021 -0500

    🐛 Fix compact sensitive pins array (MarlinFirmware#22184)

commit f3e0bc7
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Mon Jun 21 06:48:06 2021 +0300

    🌐 Update Ukrainian language (MarlinFirmware#22183)

commit 49ff1e8
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Mon Jun 21 05:45:26 2021 +0200

    🌐 Update Italian language (MarlinFirmware#22182)

commit 4f8191b
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sat Jun 19 11:44:28 2021 -0700

    🐛 Redundant Temp Sensor followup (MarlinFirmware#22173)

commit 927a1a1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 20 01:19:09 2021 -0500

    🐛 Fix LCD define typos

commit f2f23e8
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 19 14:09:09 2021 -0500

    🎨 Cosmetic changes for G28

commit cce585f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 18 13:12:55 2021 -0500

    🐛 Define 'HEAD' axes for Markforged

    Fixes MarlinFirmware#22167

commit 5bfb465
Author: Ari-SSO <85907917+Ari-SSO@users.noreply.github.com>
Date:   Thu Jun 17 21:34:40 2021 -0300

    🚸 Include 'H' value in M412 report (MarlinFirmware#22138)

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

commit ce7bbaf
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Wed Jun 16 23:15:16 2021 -0700

    💡 Add G28 L description (MarlinFirmware#22144)

commit 5ffc4bf
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 17 17:39:48 2021 -0700

    🐛 TFT encoder pin for BTT GTR (MarlinFirmware#22162)

commit 3ecc99e
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Thu Jun 17 22:46:59 2021 -0500

    🐛 Fix Air Assist (MarlinFirmware#22159)

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

commit f22c5d3
Author: gjdodd <31553294+gjdodd@users.noreply.github.com>
Date:   Fri Jun 18 01:37:27 2021 +0100

    🩹 Extruders 0 patch for PWM Motor Current (MarlinFirmware#22163)

commit d8df8e0
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 17 02:58:48 2021 -0300

    🐛 Fix env validation for 1280/2560 boards (MarlinFirmware#22150)

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

commit e38958f
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 17 02:49:42 2021 -0300

    🐛 Fix MKS Robin E3 build (MarlinFirmware#22149)

commit d7c7740
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 15 00:44:32 2021 -0500

    Marlin 2.0.9

commit c8898b5
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 15 11:45:54 2021 +1200

    ✨ Redundant Part Cooling Fan (MarlinFirmware#21888)

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

commit 781257b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 14 18:44:27 2021 -0500

    🐛 Prevent stepper sleep during long UBL idle (MarlinFirmware#22137)

commit dec083d
Author: qwewer0 <57561110+qwewer0@users.noreply.github.com>
Date:   Mon Jun 14 23:52:42 2021 +0200

    ⚡️ Home Z (and maybe XY) at the start of G35 (MarlinFirmware#22060)

commit cdd9507
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 15 09:43:50 2021 +1200

    🚑️ Prevent BFT unaligned compressed data corruption (MarlinFirmware#22134)

commit dba8773
Author: Bo Herrmannsen <bo.herrmannsen@gmail.com>
Date:   Mon Jun 14 11:28:13 2021 +0200

    ✨ Extruder with Dual Stepper Drivers (MarlinFirmware#21403)

commit 31fd3be
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Mon Jun 14 04:24:49 2021 -0300

    🔥 Remove Chitu default Touch Calibration (MarlinFirmware#22133)

commit 2b4284d
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Mon Jun 14 02:39:16 2021 -0300

    ✨ MULTI_VOLUME for Color UI and MarlinUI (MarlinFirmware#22004)

commit d84e2d6
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sun Jun 13 23:08:46 2021 -0400

    🎨 ExtUI "user click" and other tweaks (MarlinFirmware#22122)

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

commit 5635515
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 13 22:47:38 2021 -0300

    🐛 Include common TFT driver macros (MarlinFirmware#22125)

commit a7135d4
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 13 18:43:43 2021 -0700

    🐛 Fix UBL 'R' parameter and adjust 'P' (MarlinFirmware#22129)

commit 3b0a40c
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Mon Jun 14 09:31:38 2021 +0800

    🐛 Fix ExtUI/DGUS Celsius display (MarlinFirmware#22121)

commit 83c7480
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jun 13 20:19:43 2021 -0500

    🎨 General cleanup of extui/dgus

    In relation to MarlinFirmware#22121

commit adc1793
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 13 21:01:53 2021 -0300

    🔨 Fix Serial+MSC for _USB envs (MarlinFirmware#22116)

commit 68c5267
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 13 14:56:18 2021 -0700

    🐛 Use whole PROBE_TEMP_COMPENSATION values (MarlinFirmware#22130)

commit 2aa3557
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 13 15:43:33 2021 -0500

    🏗️ Refactor build encrypt / rename (MarlinFirmware#22124)

commit 14ffc66
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 12 16:28:30 2021 -0500

    🩹 Use `#pragma once` in pins files

commit 2ea0832
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 12:31:24 2021 -0500

    📝 Number SKR EXP headers

commit ab05087
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 12:30:29 2021 -0500

    🎨 Clean up LPC1768 SPI init

commit 707a040
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 11:40:35 2021 -0500

    🔨 Remove obsolete ON_BOARD_SPI_DEVICE

commit d12c357
Author: mrv96 <mrv96@users.noreply.github.com>
Date:   Sat Jun 12 18:19:37 2021 +0200

    🔨 Robin Nano V3 overridable POWER_LOSS_PIN (MarlinFirmware#22123)

commit ddf8668
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 11 19:29:59 2021 -0500

    📝 Describe G12 XYZ

commit 3491e49
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Fri Jun 11 18:13:22 2021 -0300

    🐛 Fix boot / SD for STM32 (F103Rx) boards (MarlinFirmware#22087)

commit d322e49
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Fri Jun 11 13:51:29 2021 -0700

    ✨ More flexible redundant temp sensor (MarlinFirmware#22085)

commit 5d80f70
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 10 14:09:29 2021 -0700

    🔨 Envs for BTT SKR Mini with RET6 (512K) (MarlinFirmware#22050)

commit 3e7a9e5
Author: Zs.Antal <45710979+AntoszHUN@users.noreply.github.com>
Date:   Thu Jun 10 23:05:07 2021 +0200

    🌐 Update Hungarian language (MarlinFirmware#22083)

commit 33e8769
Author: grauerfuchs <42082416+grauerfuchs@users.noreply.github.com>
Date:   Thu Jun 10 17:04:18 2021 -0400

    🔨 MightyBoard envs for A.B.M. (MarlinFirmware#22100)

commit 59842ed
Author: Radek <46979052+radek8@users.noreply.github.com>
Date:   Thu Jun 10 19:51:07 2021 +0200

    🔧 EEPROM options for BTT SKR 1.4 (MarlinFirmware#22092)

commit 507e1e4
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Thu Jun 10 02:17:39 2021 -0600

    🎨 Fix and improve FTDI Eve Touch UI (MarlinFirmware#22093)

commit b27447e
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 10 19:09:52 2021 +1200

    🔧 Enforce BLTouch settings (MarlinFirmware#22086)

commit c9a3ba9
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 10 02:05:04 2021 -0500

    🎨 Adjust some conditionals

commit 9679424
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 8 19:55:27 2021 -0500

    ⚡️ Optimize Sensitive Pins array (except STM32) (MarlinFirmware#22080)

commit bfa2579
Author: Kyle Repinski <MWisBest@users.noreply.github.com>
Date:   Tue Jun 8 18:56:16 2021 -0500

    🐛 Fix small/huge I2C EEPROM address (MarlinFirmware#22081)

commit 3f103c9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 8 07:51:28 2021 -0500

    🎨 Laser Ammeter followup (MarlinFirmware#22079)

    Followup to MarlinFirmware#21835

commit 2fd9971
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Mon Jun 7 14:15:09 2021 -0500

    Add Laser Based I2C Ammeter Feature (MarlinFirmware#21835)

commit a3063a9
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 8 07:09:12 2021 +1200

    expose hidden BLTOUCH setting changes (MarlinFirmware#22069)

commit d8a02bb
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sun Jun 6 22:26:42 2021 -0600

    🎨 Reorganize FTDI Touch UI variants (MarlinFirmware#22066)

commit 76d4a39
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 21:21:14 2021 +1200

    🩹 Fallback ID for MKS TS35 V2.0 (MarlinFirmware#22031)

commit c515bfb
Author: 7FM <41307817+7FM@users.noreply.github.com>
Date:   Sun Jun 6 09:56:24 2021 +0200

    👽️ Include <EEPROM.h> in STM32 (for now) (MarlinFirmware#22054)

commit 83430be
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 19:50:14 2021 +1200

    📦️ Malyan M200 with HAL/STM32 (MarlinFirmware#22052)

commit 9bd9f91
Author: George Fu <nailao_5918@163.com>
Date:   Sun Jun 6 14:37:52 2021 +0800

    📌 Update FYSETC E4 to espressif32@2.1.0 (MarlinFirmware#22049)

commit e6ef43e
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 6 02:59:19 2021 -0300

    ⚰️ Remove obsolete CUSTOM_SPI_PINS (MarlinFirmware#22058)

commit 16bca67
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 12:16:40 2021 +1200

    🔧 Check G29_RETRY_AND_RECOVER requirements (MarlinFirmware#21921)

commit d65eea5
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 5 17:08:10 2021 -0500

    🔧 FOAMCUTTER_XYUV moved to custom config

commit 46080b3
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Fri Jun 11 22:53:23 2021 +0200

    ✏️ Six Linear Axes followup (Fix M503) (MarlinFirmware#22112)

commit 317afae
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Thu Jun 10 02:08:42 2021 -0600

    ✏️ Six Linear Axes followup (typos) (MarlinFirmware#22094)

commit 930a608
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 9 10:43:39 2021 +1200

    🎨 IJK auto-allocation (MarlinFirmware#22075)

commit 6e3c455
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Mon Jun 7 06:23:23 2021 +0200

    ✏️ Six Linear Axes followup (Hybrid Threshold init) (MarlinFirmware#22068)

commit e3df7d7
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Sun Jun 6 08:30:39 2021 +0200

    ✏️ Followup to Six Linear Axes (MarlinFirmware#22056)

commit c1fca91
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Sat Jun 5 09:18:47 2021 +0200

    🏗️ Support for up to 6 linear axes (MarlinFirmware#19112)

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

commit d3c56a7
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 20:23:37 2021 -0500

    ♻️ Patches for Zero Extruders (with TMC)

commit 4194cdd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 24 16:38:57 2021 -0500

    ♻️ Refactor Linear / Logical / Distinct Axes (MarlinFirmware#21953)

    * More patches supporting EXTRUDERS 0
    * Extend types in prep for more axes

commit f5f999d
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jun 4 23:35:05 2021 -0600

    📺 Fix and enhance FTDI EVE Touch UI (MarlinFirmware#22047)

commit b4b6076
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jun 4 21:56:18 2021 -0700

    ✨ BigTreeTech Octopus V1.1 (MarlinFirmware#22042)

commit 1e75eba
Author: ellensp <ellensp@hotmail.com>
Date:   Sat Jun 5 16:51:17 2021 +1200

    🐛 Fix STM3R / BEAST envs (MarlinFirmware#22028)

commit f3f3d20
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sat Jun 5 01:49:00 2021 -0300

    📦️ STM32F103RE_btt(_USB) with HAL/STM32 (MarlinFirmware#22040)

commit c90fa53
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 4 23:44:16 2021 -0500

    ✨ Update G34 for 4x Z steppers (MarlinFirmware#22039)

commit aeb8097
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sat Jun 5 00:01:06 2021 -0400

    🐛 Fix M140 print job timer autostart (MarlinFirmware#22046)

commit 04bea72
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Jun 5 03:02:37 2021 +0200

    🐛 Fix MMU compile with >5 EXTRUDERS (MarlinFirmware#22036)

commit ce95f56
Author: ldursw <37294448+ldursw@users.noreply.github.com>
Date:   Fri Jun 4 00:38:10 2021 -0300

    🔨 MKS Robin E3 for HAL/STM32 (MarlinFirmware#21927)

commit aff45fd
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 3 03:23:10 2021 -0500

    ✏️ Remove whitespace

commit c8f28d9
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 3 20:10:04 2021 +1200

    🐛 Fix Creality v4 servo timer (MarlinFirmware#22021)

    Followup to MarlinFirmware#21999

commit f3697e5
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 3 17:51:22 2021 -0700

    🔨 Consolidate BTT linker scripts followup (MarlinFirmware#22038)

commit 557ba20
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 3 02:55:30 2021 -0500

    🔨 Consolidate BTT linker scripts

    Originally from MarlinFirmware#22022

commit dd0e5c2
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 3 19:40:16 2021 +1200

    🐛 Fix env:STM32F103RE maple/unified split-up (MarlinFirmware#22019)

    Followup to MarlinFirmware#21999

commit c9a3f41
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 17:09:47 2021 -0500

    📝 Update G61 comment

commit d13ffa0
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 2 18:42:15 2021 +1200

    🔨 Creality v4 with STM32 HAL (MarlinFirmware#21999)

    - New STM32 env for Creality V4 boards.
    - Separate Libmaple targets into their own `ini` file.
    - Temporarily remove unusable targets from `pins.h`.

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

commit fb0be29
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 23:24:20 2021 -0500

    🔨 Move FLY_MINI env to stm32f1.ini

commit 7ca1550
Author: hannesweisbach <hannesweisbach@users.noreply.github.com>
Date:   Wed Jun 2 06:20:47 2021 +0200

    ✨ TMC Driver distinct baudrates (MarlinFirmware#22008)

commit 665a71b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 22:46:35 2021 -0500

    🔧 Treat TPARA like SCARA in mfconfig

commit 9268a4b
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Wed Jun 2 04:10:15 2021 +0200

    🌐 Update Slovak language (MarlinFirmware#22000)

commit 529bbfa
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Mon May 31 08:44:38 2021 +0200

    ⚗️ 32-bit float constants (STM32F1) (MarlinFirmware#21996)

commit e7945c2
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 11 18:33:07 2021 -0500

    🐛 Fix Z endstop enum

    Followup to 92dea8e

commit 5ee91c7
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jun 6 03:49:23 2021 -0500

    👷 Add caching to CI workflow

commit 2116e42
Author: hannesweisbach <hannesweisbach@users.noreply.github.com>
Date:   Sat Jun 5 06:38:43 2021 +0200

    🐛 Fix Probe Temp Calibration compile (MarlinFirmware#22032)

commit 19521d1
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sat Jun 5 00:01:06 2021 -0400

    🐛 Fix M140 print job timer autostart (MarlinFirmware#22046)

commit 057302b
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 3 18:52:25 2021 -0300

    👽️ Fix usb-host-msc-cdc-msc issue (MarlinFirmware#22025)

commit d62619c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 19:38:34 2021 -0500

    📌 Use U8glib-HAL@~0.4.5

commit 9c80a89
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 15:34:31 2021 -0500

    🎨 Reorganize BTT_E3_RRF_IDEX_BOARD

commit 00834ef
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 15:34:03 2021 -0500

    🎨 Clean up stops, sdss pins

commit 5b7b065
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat May 29 16:01:38 2021 -0500

    Marlin 2.0.8.2

commit a739af8
Author: Timo <timo.birnschein@microforge.de>
Date:   Sat May 29 14:00:39 2021 -0700

    ✨ Malyan M180 (MarlinFirmware#21992)

commit 493eb44
Author: Pascal de Bruijn <pmjdebruijn@pcode.nl>
Date:   Thu May 20 13:35:38 2021 +0200

    ✨ MEDIA_MENU_AT_TOP for MarlinUI (MarlinFirmware#21925)

commit 1b45b38
Author: charlespick <charles.pickering19@gmail.com>
Date:   Thu May 20 04:06:26 2021 -0700

    ✨ Independent baud rates (MarlinFirmware#21949)

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

commit 7898307
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Sat May 29 20:48:56 2021 +0200

    🌐 Update Polish language (MarlinFirmware#21993)

commit 8da8aa1
Author: ellensp <ellensp@hotmail.com>
Date:   Thu May 27 22:13:43 2021 +1200

    🥅 Add MESH_EDIT_MENU sanity check (MarlinFirmware#21922)

commit 4572af2
Author: Andy Barratt <mail@andybarratt.co.uk>
Date:   Thu May 27 03:07:13 2021 +0100

    🚸 cap:HOST_ACTION_COMMANDS (MarlinFirmware#21987)

commit 6dc17f0
Author: Allen Bauer <kylix.rd@gmail.com>
Date:   Tue May 25 17:08:10 2021 -0700

    🐛 Fix BTT002 variant MMU2 serial pins 🧩 (MarlinFirmware#21980)

commit 3fcf3f6
Author: ellensp <ellensp@hotmail.com>
Date:   Wed May 26 11:38:23 2021 +1200

    ♻️ LEDs refactor and extend (MarlinFirmware#21962)

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

commit a9fd276
Author: LawnMo <81721212+LawnMo@users.noreply.github.com>
Date:   Tue May 25 00:53:48 2021 +0200

    🩹 Fix multi_volume + SDIO onboard compile (MarlinFirmware#21975)

commit 9adaf92
Author: LawnMo <81721212+LawnMo@users.noreply.github.com>
Date:   Mon May 24 09:21:21 2021 +0200

    🩹 Improved SKR2 12864 LCD Delays (MarlinFirmware#21956)

commit e75c3b6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 23 21:33:22 2021 -0500

    🎨 Macros for optional arguments (MarlinFirmware#21969)

commit 61f2bb1
Author: ellensp <ellensp@hotmail.com>
Date:   Mon May 24 13:29:19 2021 +1200

    ⚡️ PIO filters for M117, M300 and M414 (MarlinFirmware#21972)

commit d1502f7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 17:56:31 2021 -0500

    🎨 Null heating message method

commit 83f9413
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 17:41:29 2021 -0500

    🐛 Fix Selena Compact probe pin

commit cdc3e18
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri May 28 19:47:06 2021 -0500

    Use another PR close action
vogler added a commit to vogler/Marlin that referenced this pull request Sep 2, 2021
commit 718227a94c0cb163a73f0f288be6f7b864b7127a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Aug 18 14:54:56 2021 -0500

    📌 Disregard TMCStepper 0.7.2

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

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

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

    🐛 Fix Longer3D PWM/timer pins (#22583)

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

    ⚡️ Simplify PROBING_STEPPERS_OFF (#22581)

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

    ⏪️ Revert ABL G29 feedrate (#22574)

    Reverts 9130f58

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

    💚 Update STM32F103RET6_creality test path

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

    🐛 Fix LCD_COL_X_RJ

    Followup to #22471

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

    🚸 Fewer CRs in settings report (#22560)

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

    🐛 Fix some BTT SKR2 pins (#22558)

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

    🔨 Use zip link for MarlinSimUI

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

    🐛 Fix M575 port index output (#22553)

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

    🎨 Tweak M73 condition

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

    🚸 Better error for MOTHERBOARD not defined (#22551)

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

    🐛 Spellcheck comments (#22496)

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

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

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

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

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

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

    🚚 Relocate and adjust DWIN E3V2 (#22471)

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

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

    Fixes #22466. Regression from #22377.

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

    📝 Document DGUS display options (#22443)

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

    🎨 Update HAL/STM32 wrappers

    Followup to #22537

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

    🚸 Set M122 interval only with S0 or Pn

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

    🐛 Use delete [] for new []

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

    🐛 Fix CoreXY plus extra axes

    See #22490

commit 166324fc7b12119d5deded9ff51188bd6cba3173
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Wed Jul 14 21:13:08 2021 -0600

    🐛 Fix and improve FTDI Eve Touch UI (#22361, #22439, #22459, #22468, #22500, #22530)

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

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

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

    🚑️ Init FastIO before anything else (#22508)

commit 157c60c93bb79ff2e35dd5c6877da75615008884
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 02:12:48 2021 -0500

    🌐 Level Corners => Bed Tramming

commit d7f3228ec6170c64a4caf64b965a8a59c528258e
Author: George Fu <nailao_5918@163.com>
Date:   Sun Jul 25 16:40:43 2021 +0800

    🔨 Fix FYSETC S6 envs (#22421)

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

commit c56ac0c34a0cad9177e87951aae4071d73cdac68
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 02:19:30 2021 -0500

    🎨 Misc. Cleanup

commit e71fa2b64982fa949125e3056308b6bc010de3ee
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 03:58:16 2021 -0500

    🎨 Add DWIN_StatusChanged_P

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

    🐛 Fix fan index for Singlenozzle, chamber fan

    Fixes #22512
    Followup to #19152, #19519

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

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

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

    🐛 Fix some Simulator on Windows issues (#22516)

commit dc677050492fffc91e4c6d6ab08edc3c5ba04f97
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Thu Jul 22 01:01:23 2021 +0100

    ✨ Simulator HAL and build targets (#22418)

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

    📌 MKS pins for PSU_CONTROL (#22528)

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

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

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

    ✨ MKS Monster8 board (#22455)

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

    🐛 Fix up endstop flags (#22487, #22525)

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

    🐛 Followup to 6 linear axes (#22482)

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

    🐛 Fix G38 with probe on Z_MIN (#22452)

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

    ✨ M256 LCD brightness (#22478)

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

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

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

    🚸 Fix BLTouch spelling

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

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

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

    🐛 Prevent ABL G29 setting a funky feedrate

    See #22472

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

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

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

    🐛 Fix report_a_position ABC criteria

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

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

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

    💚 Fix tests for new sanity-checks

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

    🔧 Sanity-check DEFAULT_EJERK with LIN_ADVANCE

    See #20649

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

    🔧 Sanity-check Mixing plus Disable Inactive Extruder

    See #22166

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

    🐛 Allow SKR Pro CONTROLLER_FAN_PIN override

    Followup to #22411

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

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

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

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

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

    🎨 Adjust settings.cpp indent

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

    🔨 Update Longer and Chitu envs (#22467)

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

    🐛 Fix custom menus on MKS UI (#22470)

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

    🐛 Fix custom menus on TFT LVGL

    Fixes #21423. Regression from #18177.

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

    ✅ Custom logging for MBL

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

    🐛 Fix DGUS displays compile (#22464)

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

    🔨 Fix: BIGTREE_E3_RRF doesn't use user RX/TX sizes (#22475)

    Fixes #22466. Regression from #22377.

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

    🔧 HAS_CUSTOM_PROBE_PIN => USES_Z_MIN_PROBE_PIN

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

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

commit fbb5732dee4ba9f803ac873206421877f8ba7b9f
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 28 16:28:15 2021 +1200

    🐛 SAV_3DGLCD conditionals (#22447)

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

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

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

    🎨 abs => ABS

commit eb8649ba42f86159bd51b1ee366bd3291c05aafc
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jul 23 16:02:39 2021 -0600

    📺 Fix and optimize FTDI Eve Touch Interface (#22427)

commit 99f917c02225e4a610d02807a4335d36bad7ef03
Author: vyacheslav-shubin <shubin-vv@krista.ru>
Date:   Wed Jul 28 22:55:04 2021 +0300

    🐛 Reset workDirDepth in cdroot() (#22441)

commit 55cf3bd5eed67e72e9359dff152615035816afd7
Author: borland1 <barryorlando@hotmail.com>
Date:   Wed Jul 28 15:45:32 2021 -0700

    🐛 Fix LCD Menu MBL Z-Offset Adjustment (#22450)

commit 776ededca44d6a04c4c23afe82a42065b966aee8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jul 28 12:56:26 2021 -0700

    🐛 Fix SKR Pro bad directive (#22438)

commit b16a72a7e6a725e4e5d65f48580a900f2c8652b0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Wed Jul 28 06:30:41 2021 +0200

    🐛 Fix Longer3D SDSS / SD_SS (#22444)

commit f9809ca75aff3434fffaf26bba04106a973bb73e
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sat Jul 24 17:08:47 2021 -0400

    🐛 Fix delta calibrate manual move scale (#22430)

commit e402f43c028852c880e1acfb2632550daa949d0e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 24 15:55:45 2021 -0500

    🎨 NULL => nullptr

commit 2aad79fa15d5a51180270ed1afa44c7065576283
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 02:07:34 2021 -0500

    🐛 Fix some board names

commit 89e84fec61da126a7d59cad41f354d6219407034
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Fri Jul 23 23:47:38 2021 +0200

    📝 SKR E3 Turbo custom cable description (#22426)

commit 8d34a99d8f02881c5a1e670255c1a413cc668cfb
Author: Luke Harrison <looxonline@gmail.com>
Date:   Wed Jul 21 07:43:33 2021 +0200

    🔧 Octopus SPI display pins, fix USB build env (#22412)

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

    🎨 Spellcheck code (#22531)

commit c158d8023e38313eeccad4fb3e54f1b2cd3a65a3
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 28 09:05:44 2021 +1200

    💚 Specify compatible Teensy @4.12 (#22448)

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

    🚑️ Init FastIO before anything else (#22508)

commit 924e4f95c8676aea02b5c33cb230b8ea9d84546a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 4 16:48:06 2021 -0500

    🚸 Ask for bed leveling on bug form

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

    🐛 One-based G35 point index output

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

    🐛 Fix 5-axis no extruder compile

    Fixes #22446

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

    🐛 Fix 3-point leveling position

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

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

    🐛 Fix PAUSE_MESSAGE_PAUSING=>PARKING

    Fixes #22250. Regression from #17460.

commit 603b65e843b98a5d2d7f8c8f64be3980656c0522
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Mon Jul 19 05:39:01 2021 +0300

    ✨ Laser support for TFT GLCD (#22391)

commit 2e5e5c4a1d54cb33eb08f1591c69e8275acf6411
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 20 23:35:56 2021 -0500

    🎨 BTT SKR Pro pins auto-assign (#22411)

    Co-authored-by: MarkusThur <83773817+MarkusThur@users.noreply.github.com>

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

    🐛 Fix PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED

    Fixes #22295. Regression from #20241.

commit f8f68f9259cc486fd36147f4f9d1e474940510dd
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jul 22 09:31:11 2021 +1200

    🎨 MKS Hardware Test followup (#22414)

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

commit 7773504afa546884f533fabefa1497547431bcdf
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jul 20 12:20:28 2021 -0700

    ♻️ Refactor STM32 ini files (#22377)

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

commit 6b73b6c966b1a31a1fc2ce67f827265ff3777189
Author: VTXtruder <87478332+VTXtruder@users.noreply.github.com>
Date:   Tue Jul 20 23:27:19 2021 -0400

    ✨ Chitu3D V9 board (#22401)

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

commit 29dde9be2b9fb52641d4fa804b097852f69e68f4
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sun Jul 18 00:16:57 2021 +0200

    🐛 Fix Longer3D build environment (#22378)

commit b6cb56f396e58b95d7e3f7750f388373bfbd01dd
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jul 15 14:07:46 2021 +1200

    🔨 More HAL/STM32 targets (#22358, #22369)

commit 8283f1577a8ea24a4607c74c7ccf8d3292d3d3bc
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 21 07:44:15 2021 +1200

    🐛 Fix STATUS_COMBINE_HEATERS compile (#22405)

commit 0e9eb5f6cef2e01fac961dd49c39e5b136cde985
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Sun Jul 18 20:11:24 2021 -0500

    🐛 Fix Ammeter display on DOGM (#22384)

commit 61d0b082989d506b7e0716a792c104389cd6d8c1
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sat Jul 17 23:10:13 2021 -0700

    🎨 Prefer DELAY_NS over DELAY_CYCLES (#22382)

commit b57f73a4883fc732b0c413e45d8614791bad4298
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 17 03:10:54 2021 -0500

    🎨 Add MMU2 enabled() accessor

commit 40b99d8084b235625ffe8701ce859219d52838c5
Author: Yash <76577754+yash-fn@users.noreply.github.com>
Date:   Tue Jul 20 14:51:41 2021 -0500

    🐛 Fix G2/G3 angular motion calculation (#22407)

commit c944e4fc6009cfc6e11f97b63f6ea817b8470071
Author: vyacheslav-shubin <shubin-vv@krista.ru>
Date:   Tue Jul 20 23:12:08 2021 +0300

    🩹 Init var to suppress invalid warning (#22396)

commit eebab93358427b3b95b4d38dedbbb8aaaba977b8
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jul 18 18:24:27 2021 -0700

    🐛 Ensure Software SPI pins for Max Thermocouple (#22389)

commit 0074ea5e0bc5d9abd24fd872fc6117ae491b7be7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 18 19:56:28 2021 -0500

    🐛 Change font for selected language (#22381)

commit e190684fe6ae4bf1a885508dbf39a6477ad274a5
Author: Roxy-3D <Roxy-3D@users.noreply.github.com>
Date:   Mon Jul 19 18:59:06 2021 -0600

    🐛 Fix UBL G29 J - Vector3 regression

commit 69c1e79c302e936d15957a98795afc8d57495ab6
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jul 20 13:13:25 2021 -0700

    🐛 Fix BTC_SAMPLE_RES sanity check (#22394)

commit b3a3d81406ab94ff4fcbffa6179b9e52309f712e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jul 20 12:54:02 2021 -0700

    🎨 Fix unused lambda warning (#22399)

commit f1161a9a5f104ba2d06eb84c4241290e614a7d2b
Author: Malderin <52313714+Malderin@users.noreply.github.com>
Date:   Mon Jul 19 05:21:51 2021 +0300

    🐛 Fix MKS UI compile (#22388, #22395)

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

commit 95f0970d85c2b32b6ef0efe4860e8aa25cdcb04d
Author: squiddity <squiddity@users.noreply.github.com>
Date:   Sat Jul 17 22:50:39 2021 -0700

    🐛 Fix M913 typos (#22385)

commit 31a3cc6278cd10c67ba9a24a907e6dcc7fbd3498
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 18 00:45:17 2021 -0500

    🐛 No translated serial strings

commit 6e7c20e78e1036140d9e076f71759e35f91300e2
Author: mks-viva <1224833100@qq.com>
Date:   Thu Jul 15 20:57:34 2021 -0500

    ✨ MKS Mini12864 v3 for Robin E3/E3D (#22368)

commit 165ae139d51b617295c2302f39c09edb0f0b0dd6
Author: Cytown <cytown@gmail.com>
Date:   Sat Jun 26 03:50:09 2021 +0800

    🎨 Power-off tone followup (#22222)

commit 42eb2347d4c9cc64220322e10046ad275ec7a04e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jul 9 22:24:43 2021 -0500

    🎨 Strip trailing whitespace

commit 3ab67898070c4422e454627e2836ab3b821bcf55
Author: mks-viva <1224833100@qq.com>
Date:   Fri Jul 9 17:59:36 2021 -0500

    ✨ MKS MINI12864 V3 for MKS Robin Nano V2/3 (#22285)

commit 5054dc6ea2883095f081971cb267090b7756db97
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jul 6 17:36:41 2021 -0700

    🐛 Redundant Temp Sensor followup (#22196)

commit ee54cd4bd7e36284e4bc974e297834fb31ed466e
Author: lujios <83166168+lujios@users.noreply.github.com>
Date:   Tue Jul 13 02:19:29 2021 +0200

    ⚡️ Improve Sensorless homing/probing for G28, G33 (#21899)

commit 399a240f846842bb0b0e72db9b1a3b2d85ccb29b
Author: Cytown <cytown@gmail.com>
Date:   Wed Jun 30 01:58:11 2021 +0800

    🚸 Retain power during Pause (#22227)

commit fef76a76a3275cf59bdf085b29d7d02168e61903
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 14 19:44:51 2021 -0500

    🔨 Consolidate STM32 extra_scripts (#22365)

commit a5459a68a69d255456b477dd134cba88a8d4f06f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jul 14 00:03:24 2021 -0700

    💡 Update FLYmaker comments, URL (#22355)

commit b44d4746c8c039effc7513c6a5ca2917e9a18691
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jul 14 15:55:24 2021 -0700

    🩹 FLYmaker FLY Mini followup (#22364)

    Followup to #22355, #22356.

commit 6f9194eb295daf9d4ccd0671d8f36d37bee6b8e5
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 14 18:57:26 2021 +1200

    ✨ FLY Mini for stm32duino (#22356)

commit 6b2370fd7c323471acfdcdcbe0ecc622c0b16ebe
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Wed Jul 7 04:10:40 2021 +0200

    ✨ DWIN LCD for BTT SKR Mini E3 (#22288)

commit ee640816968b95ee14c3eaafbc0572df9f4dcee1
Author: Mihai <mihai-dumitresq@users.noreply.github.com>
Date:   Wed Jul 7 07:10:35 2021 +0300

    ✨ Enable 'M20 L' with LONG_FILENAME_HOST_SUPPORT (#22271)

commit a35c234ce1f75b042c23402fda0426a7257c388b
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Thu Jul 8 00:41:33 2021 -0400

    🐛 Fix redundant heater / sensor pin assignments (#22309)

commit 5026797310b19618150d6010fd9cc4b57aae9a49
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Mon Jul 12 00:22:08 2021 -0500

    🏗️ Allow headless Flow Meter (#22234)

commit 8334e92b6f0e0fe640bb85757409a45d7f4abcb7
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Wed Jul 14 02:34:18 2021 -0300

    ✨ MSC Support for STM32 + SDIO boards -> SKR 2 (#22354)

commit 8cf15e85463361289820b240d0de527d47852992
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Wed Jul 14 16:56:02 2021 -0700

    🎨 Call millis() once in manage_inactivity (#22363)

commit 7ae099f2be7e8a54e50b7e34ee5f3a5ad4343ea9
Author: Skruppy <skruppy@onmars.eu>
Date:   Fri Jul 9 04:55:34 2021 +0200

    🐛 Fix AVR DELAY_US int overflow (#22268)

commit 6d191d12c9dbf1bf0844445ff02797ff98028b32
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 29 16:25:37 2021 -0500

    🔨 Clean up build scripts (#22264)

    * Add 10K to marlin_blackSTM32F407VET6 (typo?)
    * Document custom build scripts.
    * Add a Robin common build script.
    * Extraneous .ldscript specifiers

commit e213246ab998239c21bbc55983b79f28b4f848ce
Author: bilsef <bilsef1@gmail.com>
Date:   Thu Jul 15 18:59:52 2021 -0700

    ✨ M115: Axis Count (#22219)

commit 650e1dd1d22c2dde6b2e09b38b64769d32be578e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jul 14 18:51:58 2021 -0500

    🎨 Minor cleanup of TFT/FSMC pins

commit 87cc3873212918c30cf6a0b94ad52e93248f56c7
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Thu Jul 15 17:32:40 2021 -0400

    🐛 Fix Filament Change menu (#22370)

    Followup to #22277

commit a7cfdeef212cba0a3a2523e3ccdcb6e786710b5a
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Wed Jul 7 21:45:15 2021 -0700

    🐛 Fix Einsy RAMBo FAN1_PIN (#22305)

commit 3750ab5c8b9fb4ffe106feaa03c42785e23b3dee
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 17 00:21:17 2021 -0500

    📝 Tom's 3D Forums discontinued

commit a0704cb14ff6805a1d3eef470cf2bba87de72afc
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 14 12:32:21 2021 +1200

    🐛 Define MT_DET_PIN_INVERTING for MKS_ROBIN_NANO_V3 (#22348)

commit cad2f69687c1720a1ddb5be14732c2325eab527b
Author: MKS-Sean <56996910+MKS-Sean@users.noreply.github.com>
Date:   Tue Jul 13 08:17:28 2021 +0800

    ✨ MKS Robin Nano v3 + TFT_LVGL_UI + WiFi module (#22109)

commit 31fbec9a00f49818b6a82c283349167c40260cc2
Author: mks-viva <1224833100@qq.com>
Date:   Tue Jul 13 19:14:34 2021 -0500

    🐛 Fix Robin Nano V3 X_DIAG_PIN (#22340)

commit b1c5afaf3c2a821aef2e43a3abb07fc70b2fb261
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jul 14 02:14:55 2021 -0500

    🐛 Fix SD pins for MKS Robin Lite

commit bc459a76f40a86e0c25e75d3e3b4054a3db98436
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Jul 12 22:52:17 2021 -0500

    🐛 TM3D fixes and improvements

    Co-Authored-By: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>

commit dd8ac689c300b418f39b0df3a4ca90a291f7aa30
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Mon Jul 12 18:35:00 2021 -0600

    ⚡️ Fixes to FTDI Eve Touch UI (#22347)

commit 24f0613b9f14cd5a88bde851597104a1c6997abd
Author: ellensp <ellensp@hotmail.com>
Date:   Mon Jul 12 17:15:48 2021 +1200

    🎨 Optional Custom Button description (#22336)

commit 00b27b1aa7d5ec1700d24101eb011c2ad076aac3
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Sun Jul 11 20:45:47 2021 -0500

    🔨 Update LPC176x platform to 0.2.8 (#22333)

commit f76b063e58624d477c17a082d471aea3ef7b3197
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 11 18:25:51 2021 -0500

    🚸 M666: Fix value filter, add report (#22337)

    In reference to #22325

commit c746b1a2ae3573895b24fbc8c37015736469f39c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 11 13:18:16 2021 -0500

    🚸 Limit LCD delta endstop adjustment like M666

    In reference to #22325

commit be13220e32c2a79761224e16925436b9ae87bf48
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Fri Jul 9 19:24:14 2021 -0400

    📺 ExtUI pause state response (#22164)

commit 78c2eb6876c6d54a4b3a65763e94d4bf5fade985
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jul 9 17:09:58 2021 -0500

    🎨 Check flags without ENABLED

commit fea4e06484cb7072ffcdc61d32c0f6efe033d0b7
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Jul 9 23:07:55 2021 +0200

    🌐 Update French language (#22323)

commit 91f11e0d419ebabaef1ea5260998c4e553dd7d1c
Author: Zs.Antal <45710979+AntoszHUN@users.noreply.github.com>
Date:   Thu Jul 8 06:44:07 2021 +0200

    🌐 Update Hungarian language (#22307)

commit 573b8a62d9c189576b79773b9c54606c387d634a
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date:   Sat Jul 10 04:06:10 2021 +0800

    🐛 Fixes for BTT Octopus (#22314)

commit eafb94e72d99c9c906bfd806c87684243e193aeb
Author: Skruppy <skruppy@onmars.eu>
Date:   Sat Jul 10 01:25:47 2021 +0200

    🐛 Fix HAS_KILL && SOFT_RESET_ON_KILL soft reset button logic (#22269)

commit 69b44c2309d859865d4724cb8e323a13ba535d3c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 9 16:02:27 2021 -0500

    📌 Require U8glib-HAL@~0.5.0 (#22324)

commit e9a1c10b34b5a23815285ee068112395dca17fbe
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Thu Jul 8 21:48:11 2021 -0700

    🐛 Fix manage_heaters recursion on servo move (#22313)

    Followup to e297748b22

commit 304a926b0a2c5f9edb8adac93557758115d6b004
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 6 20:42:38 2021 -0500

    👷 Bump date on /Version.h

commit 1bb61f27e98029f19abab5deaeedcbf062887bc9
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Tue Jul 6 19:32:08 2021 -0600

    📺 Assorted small FTDI Eve Touch UI fixes (#22273)

commit 091bdb79e685a6401d371e4c1ca362d3350fa0e1
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Wed Jul 7 03:55:31 2021 +0300

    🌐 Update Russian and Ukrainian (#22290)

commit 968c3b7e4ec5bb606a6e77595a56c131c88b99cc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 6 19:54:02 2021 -0500

    ♻️ Fix up and use YESNO_ITEM macros

commit ed14d14819625a98753aa715821339e4f5a0ec73
Author: ldursw <37294448+ldursw@users.noreply.github.com>
Date:   Tue Jul 6 21:50:01 2021 -0300

    🐛 Fix Maple / STM32 serial buffer (#22292)

commit cae391bb484f5e141de07335f7bf97a91aa5e297
Author: George Fu <nailao_5918@163.com>
Date:   Wed Jul 7 08:40:11 2021 +0800

    🔨 FYSETC S6 small bootloader target (#22207)

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

commit 2753b4eeaadbc4cd1596cb4c5e0fecd17c132f5a
Author: Cytown <cytown@gmail.com>
Date:   Fri Jul 2 08:37:44 2021 +0800

    🚸 Filament Change add confirm step (#22277)

commit 6d05da0e5e7413fc906dfc5852ba819a6556f1de
Author: ellensp <ellensp@hotmail.com>
Date:   Fri Jul 2 09:27:27 2021 +1200

    🐛 Fix Arduino IDE build (TOUCH_UI_FTDI_EVE includes) (#22276)

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

commit 4235e23c7b0b62c6962624e1375605a6b5e575be
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 30 21:58:25 2021 -0500

    📝 Update Z_SAFE_HOMING description

commit cd01421ac32041c7f775ec37dd8d00b29a5d335b
Author: Glought <Glought@users.noreply.github.com>
Date:   Tue Jun 29 10:35:22 2021 -0700

    🚸 Sanity-check Slim LCD menus with Probe Offset Wizard (#22259)

commit aa13c7845812a3bd025437f03a5cf376eb975ee4
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jun 29 10:30:55 2021 -0700

    🐛 Fix ExtUI 'lcd_clicked' definition (#22257)

commit b1c5dd985e6cfc46c0cb0aa70c7dd681a2e9d3d5
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Mon Jun 28 18:43:05 2021 -0700

    🐛 Fix PTC/BTC whole number tests (#22255)

commit 3109a297d6e48d31ac2a23aedf0b919b63e2df4d
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Mon Jun 28 19:08:37 2021 +0200

    ✨ Ender-3 V2 Display for SKR E3 Turbo (#22229)

commit b878127ea04cc72334eb35ce0dca39ccf7d73a68
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 11:54:33 2021 -0500

    Marlin 2.0.9.1

commit 6ea6556d0989f6ef08ef169f513760c062de35bb
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 27 22:30:11 2021 -0700

    🐛 Use setTargetHotend in menus (#22247)

commit 2b37a71eba99101aa79c59148d73f85ac0bc4e0f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 00:33:44 2021 -0500

    ♻️ Refactor status screen timeout

commit e3ae76d76d10427d95e0926781ca1153043936c1
Author: Cytown <cytown@gmail.com>
Date:   Sun Jun 27 00:21:34 2021 +0800

    🚸 Expand box in draw_boxed_string (#22209)

commit b24508907e0e270eec764543997ac568da28a7ba
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 27 21:02:11 2021 -0700

    🐛 No HOTEND_LOOP with EXTRUDERS 0 (#22245)

commit ec3daadf4372df419f906145aed8a37056619169
Author: Sébastien Gariépy <46988275+BeePerNet@users.noreply.github.com>
Date:   Sun Jun 27 17:44:49 2021 -0400

    🌐 MSG_MOVE_100MM (#22242)

commit ae76011e751c01711a877c60a678b82115179ac7
Author: Cytown <cytown@gmail.com>
Date:   Mon Jun 28 01:39:09 2021 +0800

    🐛 Fix wide glyph characters display (#22237)

commit 34066c1717cf03039d3a80ca99dc487550a22645
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 11:54:28 2021 -0500

    📝 Update probe heating value

commit 19fe3d5e79863f817daadbefe74dbcfc01ab301c
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 23 06:42:24 2021 +1200

    🚸 MarlinUI Move Z >= 1000 (#22192)

commit ec518e6e7bc57ec3b41441acb751aa363792bfd6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 26 14:28:50 2021 -0500

    🎨 Small tweak, ms => now

commit 003ce25acfd64a83696609eed95699c7c7dff061
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 26 14:01:47 2021 -0500

    🎨 Format onboard_sd.cpp

commit 3e5d867276e4e8bf80657ecd2f8a73ccf38eb73f
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 27 06:28:56 2021 +1200

    🐛 Fix Z_MULTI_ENDSTOPS + NUM_Z_STEPPER_DRIVERS 4 compile (#22203)

commit b1bcb387fa191250c916b14f19ebc1753d0ae30c
Author: cr20-123 <66994235+cr20-123@users.noreply.github.com>
Date:   Sat Jun 26 14:17:18 2021 -0400

    ✨ Update/extend Quiet Probing (#22205)

commit 0fbd8c52bbec83e4bd0b6f772d42a495c36076a1
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 27 04:32:51 2021 +1200

    🔧 Fix E.S.T. sanity-check errors (#22224)

commit 08895e6cb046614c2e13c2df024c0fb460b7ba9f
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jun 25 22:38:27 2021 -0600

    🎨 Fix and improve FTDI Eve Touch UI (#22223)

commit 38e775496aff8c9c3af3f60b33b0ede2820c490b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jun 25 14:12:21 2021 -0700

    📝 Update TMC SPI endstops comment (#22221)

commit 47631167f9ee6a67f655e32fadd7a88c5ad18ddc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 25 14:44:51 2021 -0500

    🐛 Trigger existing endstops on G38 hit

commit 185e0dc7b7db2d6030810cb27d50cbaade658d2f
Author: bwspath <bwspath@gmail.com>
Date:   Thu Jun 24 22:27:54 2021 +0200

    🐛 Fix Octopus build on case-sensitive FS (#22206)

commit bcf6ca59dff2f858f410ed995c9c91e20b465852
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Tue Jun 22 21:48:56 2021 +0300

    🌐 Update Russian language (#22193)

commit 1ba694cebb8cb392b89adfedec0898b236755a37
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Mon Jun 21 15:38:28 2021 -0600

    🎨 Fix and enhance FTDI Eve Touch UI (#22189)

commit 906fa05bd69ee5de18e4c083bda408699e296676
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 21 16:31:41 2021 -0500

    🐛🌐 Fix extra axis translations

commit 651f15f833d84a40d983fa7825b782fef731d8e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 21 16:24:50 2021 -0500

    🎨 Cosmetic cleanup

commit ef41c1f452c03eff94a2dc693e25db4af2c07d94
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Mon Jun 21 13:36:06 2021 -0700

    🐛 Fix IJK axis references, E stepper indices (#22176)

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

commit 8050813d32402336eabf43152dd0e0ef76a54247
Author: Grumpy <dfouche8@gmail.com>
Date:   Tue Jun 22 08:12:39 2021 +1200

    🐛 Fix dual Neopixels (#22174)

commit 25e7e2fce05531b40a4753d138e7e00266f00efd
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 22 08:09:21 2021 +1200

    🐛 Fix heater display options/compile (#22185)

commit a0f7f0e9e21b23577695609519d7216dd2f37c43
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 20 22:49:57 2021 -0500

    🐛 Fix compact sensitive pins array (#22184)

commit f3e0bc7a4b35ec0af3734029b170527f65f5c824
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Mon Jun 21 06:48:06 2021 +0300

    🌐 Update Ukrainian language (#22183)

commit 49ff1e837ace76c852baf11dbf8ff4f38df43f32
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Mon Jun 21 05:45:26 2021 +0200

    🌐 Update Italian language (#22182)

commit 4f8191b4818b97bd20eb9db2042dc07c97cce6cc
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sat Jun 19 11:44:28 2021 -0700

    🐛 Redundant Temp Sensor followup (#22173)

commit 927a1a17384b649c2cd56fc2ded7aba8392b3781
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 20 01:19:09 2021 -0500

    🐛 Fix LCD define typos

commit f2f23e80974b271a30cbf9de3397f0e58d9de7fb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 19 14:09:09 2021 -0500

    🎨 Cosmetic changes for G28

commit cce585f6ca2235d0a534e8f3043d6d502b3bd93b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 18 13:12:55 2021 -0500

    🐛 Define 'HEAD' axes for Markforged

    Fixes #22167

commit 5bfb465ab4735aa3d5fa6c8d359331e0f2399902
Author: Ari-SSO <85907917+Ari-SSO@users.noreply.github.com>
Date:   Thu Jun 17 21:34:40 2021 -0300

    🚸 Include 'H' value in M412 report (#22138)

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

commit ce7bbafb8fafde75fee64e526700f9551e5564de
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Wed Jun 16 23:15:16 2021 -0700

    💡 Add G28 L description (#22144)

commit 5ffc4bfe3a14cf8e280d78a11b0c19d06c20ace4
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 17 17:39:48 2021 -0700

    🐛 TFT encoder pin for BTT GTR (#22162)

commit 3ecc99e95d8c25bec2342d2ec65d49a081ef4de8
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Thu Jun 17 22:46:59 2021 -0500

    🐛 Fix Air Assist (#22159)

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

commit f22c5d3cc6f42c955f212afa6c668469f7938193
Author: gjdodd <31553294+gjdodd@users.noreply.github.com>
Date:   Fri Jun 18 01:37:27 2021 +0100

    🩹 Extruders 0 patch for PWM Motor Current (#22163)

commit d8df8e0eed63c4b56f9b1221569d38654eff4948
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 17 02:58:48 2021 -0300

    🐛 Fix env validation for 1280/2560 boards (#22150)

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

commit e38958f256e698ab5afd3b775d1fe1e2d93fcb65
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 17 02:49:42 2021 -0300

    🐛 Fix MKS Robin E3 build (#22149)

commit d7c77403fd8373c7b4bfb6a4fa6d6f25c1ff9feb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 15 00:44:32 2021 -0500

    Marlin 2.0.9

commit c8898b5ca0db66c66a51f9d711591ab51a41fcc7
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 15 11:45:54 2021 +1200

    ✨ Redundant Part Cooling Fan (#21888)

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

commit 781257bc64d74b31d7730e473ef6ca09454462aa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 14 18:44:27 2021 -0500

    🐛 Prevent stepper sleep during long UBL idle (#22137)

commit dec083dcc122ce2e3df2a41a1297aabadcd11484
Author: qwewer0 <57561110+qwewer0@users.noreply.github.com>
Date:   Mon Jun 14 23:52:42 2021 +0200

    ⚡️ Home Z (and maybe XY) at the start of G35 (#22060)

commit cdd95074935074c4afa1f467ef16c9e9c0325bfa
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 15 09:43:50 2021 +1200

    🚑️ Prevent BFT unaligned compressed data corruption (#22134)

commit dba877311e28829dae24da30807b430bfba19faa
Author: Bo Herrmannsen <bo.herrmannsen@gmail.com>
Date:   Mon Jun 14 11:28:13 2021 +0200

    ✨ Extruder with Dual Stepper Drivers (#21403)

commit 31fd3be6eba02e96f1e093990d5f8ef09dad617b
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Mon Jun 14 04:24:49 2021 -0300

    🔥 Remove Chitu default Touch Calibration (#22133)

commit 2b4284df81db484649b42ddf291031fb6c8e5c58
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Mon Jun 14 02:39:16 2021 -0300

    ✨ MULTI_VOLUME for Color UI and MarlinUI (#22004)

commit d84e2d6e2908f34b08613b95c28726f5c330134a
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sun Jun 13 23:08:46 2021 -0400

    🎨 ExtUI "user click" and other tweaks (#22122)

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

commit 56355159c66af615ef1a778a3c786e70cd4289b5
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 13 22:47:38 2021 -0300

    🐛 Include common TFT driver macros (#22125)

commit a7135d429b1f0f7811610732b023064a85bd367e
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 13 18:43:43 2021 -0700

    🐛 Fix UBL 'R' parameter and adjust 'P' (#22129)

commit 3b0a40cd5d46c1a3f8c7a7bb2ae93a3f274cfd2f
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Mon Jun 14 09:31:38 2021 +0800

    🐛 Fix ExtUI/DGUS Celsius display (#22121)

commit 83c74802f89be2c3252a710960aee7bcf4469afe
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jun 13 20:19:43 2021 -0500

    🎨 General cleanup of extui/dgus

    In relation to #22121

commit adc17933cddcd21b359708f3db4b08ace23331ab
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 13 21:01:53 2021 -0300

    🔨 Fix Serial+MSC for _USB envs (#22116)

commit 68c52673d6a9cae0e1b9d8e36df1bf31a833a7e5
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 13 14:56:18 2021 -0700

    🐛 Use whole PROBE_TEMP_COMPENSATION values (#22130)

commit 2aa35577f279ef189fb8ff9cb921d1d79e426987
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 13 15:43:33 2021 -0500

    🏗️ Refactor build encrypt / rename (#22124)

commit 14ffc66c45d73f9e62a4180aa2dc4bf3079a84e4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 12 16:28:30 2021 -0500

    🩹 Use `#pragma once` in pins files

commit 2ea0832e0fb20b5c210bcaa9315b8182b5ca8359
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 12:31:24 2021 -0500

    📝 Number SKR EXP headers

commit ab050878e91c8e7002836d85e286817d8dec774a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 12:30:29 2021 -0500

    🎨 Clean up LPC1768 SPI init

commit 707a04022e658bd7d3224af71545f1a6cc712af7
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 11:40:35 2021 -0500

    🔨 Remove obsolete ON_BOARD_SPI_DEVICE

commit d12c35779355044fab117c739c70ea78dcedfe2f
Author: mrv96 <mrv96@users.noreply.github.com>
Date:   Sat Jun 12 18:19:37 2021 +0200

    🔨 Robin Nano V3 overridable POWER_LOSS_PIN (#22123)

commit ddf8668e16aeac2ed487e8784c218e1cbd2880d5
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 11 19:29:59 2021 -0500

    📝 Describe G12 XYZ

commit 3491e49c5f4d9bb5cce260ef51269b715761b4d5
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Fri Jun 11 18:13:22 2021 -0300

    🐛 Fix boot / SD for STM32 (F103Rx) boards (#22087)

commit d322e495b296be5ad6922d419a4cba2ef08b697c
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Fri Jun 11 13:51:29 2021 -0700

    ✨ More flexible redundant temp sensor (#22085)

commit 5d80f7006a32bbf4b56dcb2c88388782a8e26ffa
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 10 14:09:29 2021 -0700

    🔨 Envs for BTT SKR Mini with RET6 (512K) (#22050)

commit 3e7a9e5d2011eb7315e8765f2a8c3267fd2d3363
Author: Zs.Antal <45710979+AntoszHUN@users.noreply.github.com>
Date:   Thu Jun 10 23:05:07 2021 +0200

    🌐 Update Hungarian language (#22083)

commit 33e8769226f0d994a73dea33cec3e1488cc8f249
Author: grauerfuchs <42082416+grauerfuchs@users.noreply.github.com>
Date:   Thu Jun 10 17:04:18 2021 -0400

    🔨 MightyBoard envs for A.B.M. (#22100)

commit 59842edbcb46b6cc8f30807bdc9ef5fbe79bd7fa
Author: Radek <46979052+radek8@users.noreply.github.com>
Date:   Thu Jun 10 19:51:07 2021 +0200

    🔧 EEPROM options for BTT SKR 1.4 (#22092)

commit 507e1e436e7f45078c61e79026d64c55598fd707
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Thu Jun 10 02:17:39 2021 -0600

    🎨 Fix and improve FTDI Eve Touch UI (#22093)

commit b27447ef484b86d573e7ba60960df2f008df37d4
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 10 19:09:52 2021 +1200

    🔧 Enforce BLTouch settings (#22086)

commit c9a3ba99be5e45b880387aa28577c10a9875b459
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 10 02:05:04 2021 -0500

    🎨 Adjust some conditionals

commit 967942460ecfa952cd39b055cf9fd6cb968f51ea
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 8 19:55:27 2021 -0500

    ⚡️ Optimize Sensitive Pins array (except STM32) (#22080)

commit bfa257902ec4b0c96e642b4ee54f6e75de546255
Author: Kyle Repinski <MWisBest@users.noreply.github.com>
Date:   Tue Jun 8 18:56:16 2021 -0500

    🐛 Fix small/huge I2C EEPROM address (#22081)

commit 3f103c91f0e206bf3911bcc884d1dfaa8f2dd38b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 8 07:51:28 2021 -0500

    🎨 Laser Ammeter followup (#22079)

    Followup to #21835

commit 2fd9971f413bf4d34da5c3de9fc57c31ebcf6a4f
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Mon Jun 7 14:15:09 2021 -0500

    Add Laser Based I2C Ammeter Feature (#21835)

commit a3063a939243acefec606909ce8982fdabd848c4
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 8 07:09:12 2021 +1200

    expose hidden BLTOUCH setting changes (#22069)

commit d8a02bbbdba39e3fcc6519d7fa8ddbc36f4ea967
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sun Jun 6 22:26:42 2021 -0600

    🎨 Reorganize FTDI Touch UI variants (#22066)

commit 76d4a395d1a3d9d24f308ce6deb19c8767f04105
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 21:21:14 2021 +1200

    🩹 Fallback ID for MKS TS35 V2.0 (#22031)

commit c515bfb5fbb860d13daea84dfde6cb9d54662d20
Author: 7FM <41307817+7FM@users.noreply.github.com>
Date:   Sun Jun 6 09:56:24 2021 +0200

    👽️ Include <EEPROM.h> in STM32 (for now) (#22054)

commit 83430be580071acd35617e99f0fb23814993d04b
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 19:50:14 2021 +1200

    📦️ Malyan M200 with HAL/STM32 (#22052)

commit 9bd9f91722f9ae917a98bf8c148cadc84e885a6e
Author: George Fu <nailao_5918@163.com>
Date:   Sun Jun 6 14:37:52 2021 +0800

    📌 Update FYSETC E4 to espressif32@2.1.0 (#22049)

commit e6ef43e51a90e25ecbe24e766d32c046a9dbbdf3
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 6 02:59:19 2021 -0300

    ⚰️ Remove obsolete CUSTOM_SPI_PINS (#22058)

commit 16bca67f2deaf1d53bd7c1d3515ffbfb01a65ef8
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 12:16:40 2021 +1200

    🔧 Check G29_RETRY_AND_RECOVER requirements (#21921)

commit d65eea550caf12edaa678bde375864060cc68713
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 5 17:08:10 2021 -0500

    🔧 FOAMCUTTER_XYUV moved to custom config

commit 46080b367af8fbdef0628fc21243fd115007a2b5
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Fri Jun 11 22:53:23 2021 +0200

    ✏️ Six Linear Axes followup (Fix M503) (#22112)

commit 317afae37c5927ec6c4e6118a9e4d64dd8b757e3
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Thu Jun 10 02:08:42 2021 -0600

    ✏️ Six Linear Axes followup (typos) (#22094)

commit 930a6082362c3bef59aee27d72f0611b72ccbded
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 9 10:43:39 2021 +1200

    🎨 IJK auto-allocation (#22075)

commit 6e3c45580ce415bb27774bc0b707fec7da54943b
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Mon Jun 7 06:23:23 2021 +0200

    ✏️ Six Linear Axes followup (Hybrid Threshold init) (#22068)

commit e3df7d7bc8188994cc49879da9556222db935252
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Sun Jun 6 08:30:39 2021 +0200

    ✏️ Followup to Six Linear Axes (#22056)

commit c1fca911036af3ca868caea7556a630044ae4a77
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Sat Jun 5 09:18:47 2021 +0200

    🏗️ Support for up to 6 linear axes (#19112)

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

commit d3c56a76e73f8e126f1cf579f552e671efa9005b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 20:23:37 2021 -0500

    ♻️ Patches for Zero Extruders (with TMC)

commit 4194cdda5bb01171b2523038d568de670a8f0461
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 24 16:38:57 2021 -0500

    ♻️ Refactor Linear / Logical / Distinct Axes (#21953)

    * More patches supporting EXTRUDERS 0
    * Extend types in prep for more axes

commit f5f999d7bf56c03fd95455902e75cff873139500
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jun 4 23:35:05 2021 -0600

    📺 Fix and enhance FTDI EVE Touch UI (#22047)

commit b4b607681c19aff8c067f70c970f9ae755b1e059
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jun 4 21:56:18 2021 -0700

    ✨ BigTreeTech Octopus V1.1 (#22042)

commit 1e75eba27bd439d805d9de3e3c2194c2bfc3e42e
Author: ellensp <ellensp@hotmail.com>
Date:   Sat Jun 5 16:51:17 2021 +1200

    🐛 Fix STM3R / BEAST envs (#22028)

commit f3f3d202accf2c36e348c5e08fae82981d74c872
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sat Jun 5 01:49:00 2021 -0300

    📦️ STM32F103RE_btt(_USB) with HAL/STM32 (#22040)

commit c90fa530db2e6c98cfc8329ef36eda837b5ecc30
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 4 23:44:16 2021 -0500

    ✨ Update G34 for 4x Z steppers (#22039)

commit aeb8097cbc2b946cffe9813b5c8805c6943fd87d
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sat Jun 5 00:01:06 2021 -0400

    🐛 Fix M140 print job timer autostart (#22046)

commit 04bea727877c931777d69b718482630c40bd86fe
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Jun 5 03:02:37 2021 +0200

    🐛 Fix MMU compile with >5 EXTRUDERS (#22036)

commit ce95f56ac8755eff188001e12c88e01ae8e65f0e
Author: ldursw <37294448+ldursw@users.noreply.github.com>
Date:   Fri Jun 4 00:38:10 2021 -0300

    🔨 MKS Robin E3 for HAL/STM32 (#21927)

commit aff45fd455dd34f06f7211e0ff29d4f4dd93c7a8
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 3 03:23:10 2021 -0500

    ✏️ Remove whitespace

commit c8f28d9d0906261749f8beabc645503fadb0cbc9
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 3 20:10:04 2021 +1200

    🐛 Fix Creality v4 servo timer (#22021)

    Followup to #21999

commit f3697e5e02cd9debb170f69250a1ac37bc338852
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 3 17:51:22 2021 -0700

    🔨 Consolidate BTT linker scripts followup (#22038)

commit 557ba20ff4f57f0311f92e74b20a031c1ffb3520
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 3 02:55:30 2021 -0500

    🔨 Consolidate BTT linker scripts

    Originally from #22022

commit dd0e5c26d15a188dca9f7c772f8058bffdda108c
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 3 19:40:16 2021 +1200

    🐛 Fix env:STM32F103RE maple/unified split-up (#22019)

    Followup to #21999

commit c9a3f41152d1cc5145993920f2594aef8e745089
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 17:09:47 2021 -0500

    📝 Update G61 comment

commit d13ffa0aba6e31095d08bd3ccbc1c970e1fb2a59
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 2 18:42:15 2021 +1200

    🔨 Creality v4 with STM32 HAL (#21999)

    - New STM32 env for Creality V4 boards.
    - Separate Libmaple targets into their own `ini` file.
    - Temporarily remove unusable targets from `pins.h`.

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

commit fb0be2960408c08de09ecba4253c65f50e01b275
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 23:24:20 2021 -0500

    🔨 Move FLY_MINI env to stm32f1.ini

commit 7ca155077503cb2c62bf5ed739f9c6a2280a1cd9
Author: hannesweisbach <hannesweisbach@users.noreply.github.com>
Date:   Wed Jun 2 06:20:47 2021 +0200

    ✨ TMC Driver distinct baudrates (#22008)

commit 665a71b471476b7eaebe910d4412c5f39f26932c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 22:46:35 2021 -0500

    🔧 Treat TPARA like SCARA in mfconfig

commit 9268a4b28c485a2efeffccabab42defbd1c2cbaf
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Wed Jun 2 04:10:15 2021 +0200

    🌐 Update Slovak language (#22000)

commit 529bbfad10ca13a9d11af84302b7a92a14250d34
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Mon May 31 08:44:38 2021 +0200

    ⚗️ 32-bit float constants (STM32F1) (#21996)

commit e7945c227762a66840b0d9eb3c4aa9e40ff7641b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 11 18:33:07 2021 -0500

    🐛 Fix Z endstop enum

    Followup to 92dea8e6cc

commit 5ee91c73ed17cbb49899a7d91fce9377fd6e4599
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jun 6 03:49:23 2021 -0500

    👷 Add caching to CI workflow

commit 2116e4202b064c6cafef70d54ed50edf00b79e44
Author: hannesweisbach <hannesweisbach@users.noreply.github.com>
Date:   Sat Jun 5 06:38:43 2021 +0200

    🐛 Fix Probe Temp Calibration compile (#22032)

commit 19521d16cd9838345f404196e62bf6a2e2719b39
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sat Jun 5 00:01:06 2021 -0400

    🐛 Fix M140 print job timer autostart (#22046)

commit 057302b93636f276e8fe188f3fbd23d087e68a00
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 3 18:52:25 2021 -0300

    👽️ Fix usb-host-msc-cdc-msc issue (#22025)

commit d62619c9c8e4e92ea8e1d0fdfdca923df1d94140
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 19:38:34 2021 -0500

    📌 Use U8glib-HAL@~0.4.5

commit 9c80a89597ceb397f079a2bae47c15f32a195165
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 15:34:31 2021 -0500

    🎨 Reorganize BTT_E3_RRF_IDEX_BOARD

commit 00834ef03dc9a58e7b2c1b1333276e0c65399a5f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 15:34:03 2021 -0500

    🎨 Clean up stops, sdss pins

commit 5b7b065b96e6920171a50aace7e77ec8f735915d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat May 29 16:01:38 2021 -0500

    Marlin 2.0.8.2

commit a739af823f63bf5cfafb22a62d5f7b4d9ba4073e
Author: Timo <timo.birnschein@microforge.de>
Date:   Sat May 29 14:00:39 2021 -0700

    ✨ Malyan M180 (#21992)

commit 493eb446b74cdc7ab99315dfc129ecc86fbc343d
Author: Pascal de Bruijn <pmjdebruijn@pcode.nl>
Date:   Thu May 20 13:35:38 2021 +0200

    ✨ MEDIA_MENU_AT_TOP for MarlinUI (#21925)

commit 1b45b3802ac62c3b1e47213b847d9eb772ba1f4b
Author: charlespick <charles.pickering19@gmail.com>
Date:   Thu May 20 04:06:26 2021 -0700

    ✨ Independent baud rates (#21949)

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

commit 7898307d783f13e3d1947c61b3cc573f5973f69a
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Sat May 29 20:48:56 2021 +0200

    🌐 Update Polish language (#21993)

commit 8da8aa140fb7b57623144b222b5ff31816b2f84a
Author: ellensp <ellensp@hotmail.com>
Date:   Thu May 27 22:13:43 2021 +1200

    🥅 Add MESH_EDIT_MENU sanity check (#21922)

commit 4572af2bce25fc4959746f1088981c410cafee1b
Author: Andy Barratt <mail@andybarratt.co.uk>
Date:   Thu May 27 03:07:13 2021 +0100

    🚸 cap:HOST_ACTION_COMMANDS (#21987)

commit 6dc17f0e6ea3b88f109d683a4b223d6a733ad1e5
Author: Allen Bauer <kylix.rd@gmail.com>
Date:   Tue May 25 17:08:10 2021 -0700

    🐛 Fix BTT002 variant MMU2 serial pins 🧩 (#21980)

commit 3fcf3f69ca495722b0f47a69435e033f8895ae82
Author: ellensp <ellensp@hotmail.com>
Date:   Wed May 26 11:38:23 2021 +1200

    ♻️ LEDs refactor and extend (#21962)

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

commit a9fd2769f3f26e7e61a908a0ef2c079f1d06baab
Author: LawnMo <81721212+LawnMo@users.noreply.github.com>
Date:   Tue May 25 00:53:48 2021 +0200

    🩹 Fix multi_volume + SDIO onboard compile (#21975)

commit 9adaf92674751542e76e31738d2915992c57a40f
Author: LawnMo <81721212+LawnMo@users.noreply.github.com>
Date:   Mon May 24 09:21:21 2021 +0200

    🩹 Improved SKR2 12864 LCD Delays (#21956)

commit e75c3b6c54e9e8b4b48009a0ccc58ed7069f612a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 23 21:33:22 2021 -0500

    🎨 Macros for optional arguments (#21969)

commit 61f2bb122844aa0607f6d53aa37f843123931af6
Author: ellensp <ellensp@hotmail.com>
Date:   Mon May 24 13:29:19 2021 +1200

    ⚡️ PIO filters for M117, M300 and M414 (#21972)

commit d1502f74eaae94b6bff61b45c8481db39956ac2b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 17:56:31 2021 -0500

    🎨 Null heating message method

commit 83f9413196fbb842764eba33a975cec8d524e973
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 17:41:29 2021 -0500

    🐛 Fix Selena Compact probe pin

commit cdc3e18d994f120219ec8683246a81ac31cca75b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri May 28 19:47:06 2021 -0500

    Use another PR close action

commit 55a6315862cfafccfc939cf1b1f064f748c82d54
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date:   Mon May 24 14:57:45 2021 +0800

    🐛 Fix Octopus HS USB (#21961)

commit cf447a54428345903fe9f4c9497a4f32dfa72b08
Author: gjdodd <31553294+gjdodd@users.noreply.github.com>
Date:   Mon May 24 07:54:10 2021 +0100

    🐛 Fix flowmeter calculation (#21959)

commit 7597b4fb40a6e936267a57c74264fcf6c5bd1fc5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 21:12:53 2021 -0500

    🎨 Apply shorthand and cleanups

commit 7cd0f2a32aef86b361e9bef7ec3c30a944b7d153
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 21:08:57 2021 -0500

    🎨 pause => pause_heaters

commit 4dae5890e99c73686b7e1ee08857487a0acfeb28
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 23 01:09:46 2021 -0500

    ♻️ Refactor, comment endstop/probe enums

commit 738ae4be331b8d580cb22b7ec6e33ab095e3e81c
Author: Danol <czdanol@gmail.com>
Date:   Sun May 23 00:35:07 2021 +0200

    🐛 Fix wrong Z_ENDSTOP flag bit (#21963)

    Bug introduced in #18424

commit e5736110216893362937b70472e7da2c3859a28c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 17:02:21 2021 -0500

    🎨 Combine M104/M109 and M140/M190 code

commit f60965a1078fec01c6bc0f438c4e019547253d5e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 23:03:49 2021 -0500

    📝 Update ExtUI example

commit 3995e8373c88fce34d9a524686302ec132f0d2e3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 22:55:13 2021 -0500

    🎨 Shorten lcd relative paths

commit ddc82b84e25e981d12bab0d74af95b1e0476248b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 22:45:54 2021 -0500

    📝 Document diveToFile, printListing

commit 87a943756a36fe7f1e3422868dcfa35d5dd54518
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 08:23:09 2021 -0500

    🎨 Move HAS_EXTRUDERS

commit 8e28731f96d3f2a8dd5d1bb8262eafddc7e0aa05
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 08:24:38 2021 -0500

    🎨 Update a condition

commit cdbd438a041427580eaea0a9fbe570864aed70d0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 08:25:54 2021 -0500

    🎨 Rename all/no axis enums

commit 3220c49f1be88f8ee2845e5a01a6132eba966208
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 00:26:54 2021 -0500

    Add a test for SAVED_POSITIONS

commit 94e67a036a614f5f43bf2e79d26c9d62a2ffb505
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu May 20 21:47:05 2021 -0500

    🐛 Fix compile with PREVENT_COLD_EXTRUSION off

commit c977e820743a6589b0c82159473b36e60fae7254
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu May 20 17:12:18 2021 -0500

    🎨 MULTI_MANUAL => MULTI_E_MANUAL

commit 9878a5ab5883f2b3112c1f67ab392538afd7520f
Author: Moonglow <fxdteam@gmail.com>
Date:   Thu May 20 14:09:10 2021 +0300

    🐛 Fix Toshiba FlashAir (SDCARD_COMMANDS_SPLIT) (#21944)

commit 2de914c38ce373f37c925b20af270a2e4c647356
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed May 19 23:07:09 2021 -0500

    🎨 Move switch sensor strings

commit 49b05ba9891bc7add47d32a9ca947fe7eb9f4555
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed May 19 00:21:34 2021 -0500

    🎨 Flags for homing directions

commit 85fa8c55c9415ec044a96eedc800fedfa6b02439
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 23:30:49 2021 -0500

    🐛 Fix DELTA with SENSORLESS_PROBING

commit 57eef65d9cabb6b7cc4c7937c8a9a095fc39313b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:56:05 2021 -0500

    ♻️ Refactor axis homing/trusted state bits

commit 894c954e8f2e56e7a556a71200c8465ba3507deb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:53:52 2021 -0500

    ♻️ Minimize endstop bits

commit 046bac67693ec00ff2d2adf00aabe5cd396963c6
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:52:41 2021 -0500

    ✅ Fix tests for EXTRUDERS 0

commit 765720e98ba3cc970e42f8bf730da056c59ac2fe
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:52:10 2021 -0500

    ♻️ Simplify TMC utilities for more axes

commit 26a244325b48e5cf3e23518f9cd895491305050e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:51:19 2021 -0500

    ♻️ Refactor axis counts and loops

commit f7d28ce1d6d17621f86fd179770645723e5ae272
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:46:59 2021 -0500

    🎨 Misc cleanup and fixes

commit c85633b47f0b3c92055e725b9162acdeebd1ef79
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 17 21:17:22 2021 -0500

    🎨 Use defined strings

commit 6861b1ec827b30a4493099ebee1e49adbb48e8a5
Author: Alvaro Segura Del Barco <alvarosb@gmail.com>
Date:   Sat May 22 14:52:41 2021 -0600

    🐛 Fix Teensy PINS_DEBUGGING compile (#21958)

    Followup to 84a11cfedc

commit 003cb20b9fcf98bd80501d20634b41863ebf4dee
Author: Roger D. Winans <solvaholic@users.noreply.github.com>
Date:   Sat May 22 00:14:25 2021 -0400

    📝 Add Configurations section to README (#21955)

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

commit f1f622de01780418a3fe510f3f9be7237372831e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed May 19 22:02:28 2021 -0500

    Fix 'G29 K' value

commit dbb8f3db090e234ab17df986ccb29d2b4e7a4361
Author: ellensp <ellensp@hotmail.com>
Date:   Tue May 18 14:16:47 2021 +1200

    Fix EEPROM_CHITCHAT (#21934)

    Fix #21929

commit 5d7c72db5a57086e721ce0370c7a4ac75a47a978
Author: ellensp <ellensp@hotmail.com>
Date:   Tue May 18 11:22:33 2021 +1200

    Fix envs using mks_encrypt.py (#21933)

    Fix #21928

commit 755adb8973aa69ca6f0832e606060eaca065b88c
Author: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat May 15 18:33:10 2021 -0700

    Update Configurations URL (2.0.8.1)

commit 09774291384c8f301dffa274cf08ddd199b17c31
Author: ekef <62036680+ekef@users.noreply.github.com>
Date:   Sun May 16 02:22:30 2021 +0300

    Fix MKS Robin E3 BLTOUCH and Fan PWM timer conflicts (#21889)

commit 1dfa6cbc809d93a685c75f8b88ee3b9173aaeaa9
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat May 15 14:56:27 2021 -0500

    Marlin 2.0.8.1

commit e3998dc3dfae6bb52851374b3ba2e61cc3bc6661
Author: Luu Lac <45380455+shitcreek@users.noreply.github.com>
Date:   Sat May 15 15:02:20 2021 -0500

    M154 Position Auto-Report (#18427)

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

commit b6e1838fa6e905bcc4beab665d1e69b4eb35bce9
Author: Moonglow <fxdteam@gmail.com>
Date:   Sat May 15 06:30:16 2021 +0300

    Fix MKS UI missing font select condition (#21905)

commit 908caba7353cc321736cdf3fab61ea58163ee87e
Author: ondrada <82547068+ondrada@users.noreply.github.com>
Date:   Sat May 15 05:29:17 2021 +0200

    Fix G29_RETRY_AND_RECOVER dependency (#21907)

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

commit 121f3b1096bf0fcc0317df842a389a7f8afc2e3e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 14 00:17:04 2021 -0500

    🐛 Fix RR collision with MM (#21902)

commit 9e373617dc599130daf7b0204c5281237a6cc590
Author: Jamie <vector76@users.noreply.github.com>
Date:   Fri May 14 00:14:13 2021 -0500

    ✨ Instant Freeze/Resume Function (#17462)

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

commit 5298fa357c18c8bceb9552bcc4fd7543ee21b70f
Author: ellensp <ellensp@hotmail.com>
Date:   Fri May 14 08:19:12 2021 +1200

    Fix nextion compile error  (#21884)

commit 2c15bc5d3971571ad6e19e82436d2b8bd6f7f1d5
Author: Alexander D. Kanevskiy <kad@kad.name>
Date:   Thu May 13 23:10:48 2021 +0300

    Fix …
santi19z added a commit to santi19z/Marlin that referenced this pull request Sep 25, 2021
commit 718227a94c0cb163a73f0f288be6f7b864b7127a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Aug 18 14:54:56 2021 -0500

    📌 Disregard TMCStepper 0.7.2

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

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

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

    🐛 Fix Longer3D PWM/timer pins (#22583)

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

    ⚡️ Simplify PROBING_STEPPERS_OFF (#22581)

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

    ⏪️ Revert ABL G29 feedrate (#22574)

    Reverts 9130f58

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

    💚 Update STM32F103RET6_creality test path

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

    🐛 Fix LCD_COL_X_RJ

    Followup to #22471

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

    🚸 Fewer CRs in settings report (#22560)

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

    🐛 Fix some BTT SKR2 pins (#22558)

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

    🔨 Use zip link for MarlinSimUI

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

    🐛 Fix M575 port index output (#22553)

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

    🎨 Tweak M73 condition

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

    🚸 Better error for MOTHERBOARD not defined (#22551)

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

    🐛 Spellcheck comments (#22496)

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

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

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

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

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

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

    🚚 Relocate and adjust DWIN E3V2 (#22471)

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

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

    Fixes #22466. Regression from #22377.

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

    📝 Document DGUS display options (#22443)

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

    🎨 Update HAL/STM32 wrappers

    Followup to #22537

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

    🚸 Set M122 interval only with S0 or Pn

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

    🐛 Use delete [] for new []

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

    🐛 Fix CoreXY plus extra axes

    See #22490

commit 166324fc7b12119d5deded9ff51188bd6cba3173
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Wed Jul 14 21:13:08 2021 -0600

    🐛 Fix and improve FTDI Eve Touch UI (#22361, #22439, #22459, #22468, #22500, #22530)

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

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

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

    🚑️ Init FastIO before anything else (#22508)

commit 157c60c93bb79ff2e35dd5c6877da75615008884
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 02:12:48 2021 -0500

    🌐 Level Corners => Bed Tramming

commit d7f3228ec6170c64a4caf64b965a8a59c528258e
Author: George Fu <nailao_5918@163.com>
Date:   Sun Jul 25 16:40:43 2021 +0800

    🔨 Fix FYSETC S6 envs (#22421)

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

commit c56ac0c34a0cad9177e87951aae4071d73cdac68
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 02:19:30 2021 -0500

    🎨 Misc. Cleanup

commit e71fa2b64982fa949125e3056308b6bc010de3ee
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 03:58:16 2021 -0500

    🎨 Add DWIN_StatusChanged_P

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

    🐛 Fix fan index for Singlenozzle, chamber fan

    Fixes #22512
    Followup to #19152, #19519

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

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

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

    🐛 Fix some Simulator on Windows issues (#22516)

commit dc677050492fffc91e4c6d6ab08edc3c5ba04f97
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Thu Jul 22 01:01:23 2021 +0100

    ✨ Simulator HAL and build targets (#22418)

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

    📌 MKS pins for PSU_CONTROL (#22528)

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

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

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

    ✨ MKS Monster8 board (#22455)

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

    🐛 Fix up endstop flags (#22487, #22525)

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

    🐛 Followup to 6 linear axes (#22482)

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

    🐛 Fix G38 with probe on Z_MIN (#22452)

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

    ✨ M256 LCD brightness (#22478)

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

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

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

    🚸 Fix BLTouch spelling

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

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

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

    🐛 Prevent ABL G29 setting a funky feedrate

    See #22472

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

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

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

    🐛 Fix report_a_position ABC criteria

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

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

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

    💚 Fix tests for new sanity-checks

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

    🔧 Sanity-check DEFAULT_EJERK with LIN_ADVANCE

    See #20649

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

    🔧 Sanity-check Mixing plus Disable Inactive Extruder

    See #22166

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

    🐛 Allow SKR Pro CONTROLLER_FAN_PIN override

    Followup to #22411

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

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

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

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

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

    🎨 Adjust settings.cpp indent

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

    🔨 Update Longer and Chitu envs (#22467)

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

    🐛 Fix custom menus on MKS UI (#22470)

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

    🐛 Fix custom menus on TFT LVGL

    Fixes #21423. Regression from #18177.

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

    ✅ Custom logging for MBL

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

    🐛 Fix DGUS displays compile (#22464)

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

    🔨 Fix: BIGTREE_E3_RRF doesn't use user RX/TX sizes (#22475)

    Fixes #22466. Regression from #22377.

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

    🔧 HAS_CUSTOM_PROBE_PIN => USES_Z_MIN_PROBE_PIN

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

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

commit fbb5732dee4ba9f803ac873206421877f8ba7b9f
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 28 16:28:15 2021 +1200

    🐛 SAV_3DGLCD conditionals (#22447)

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

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

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

    🎨 abs => ABS

commit eb8649ba42f86159bd51b1ee366bd3291c05aafc
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jul 23 16:02:39 2021 -0600

    📺 Fix and optimize FTDI Eve Touch Interface (#22427)

commit 99f917c02225e4a610d02807a4335d36bad7ef03
Author: vyacheslav-shubin <shubin-vv@krista.ru>
Date:   Wed Jul 28 22:55:04 2021 +0300

    🐛 Reset workDirDepth in cdroot() (#22441)

commit 55cf3bd5eed67e72e9359dff152615035816afd7
Author: borland1 <barryorlando@hotmail.com>
Date:   Wed Jul 28 15:45:32 2021 -0700

    🐛 Fix LCD Menu MBL Z-Offset Adjustment (#22450)

commit 776ededca44d6a04c4c23afe82a42065b966aee8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jul 28 12:56:26 2021 -0700

    🐛 Fix SKR Pro bad directive (#22438)

commit b16a72a7e6a725e4e5d65f48580a900f2c8652b0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Wed Jul 28 06:30:41 2021 +0200

    🐛 Fix Longer3D SDSS / SD_SS (#22444)

commit f9809ca75aff3434fffaf26bba04106a973bb73e
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sat Jul 24 17:08:47 2021 -0400

    🐛 Fix delta calibrate manual move scale (#22430)

commit e402f43c028852c880e1acfb2632550daa949d0e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 24 15:55:45 2021 -0500

    🎨 NULL => nullptr

commit 2aad79fa15d5a51180270ed1afa44c7065576283
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 02:07:34 2021 -0500

    🐛 Fix some board names

commit 89e84fec61da126a7d59cad41f354d6219407034
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Fri Jul 23 23:47:38 2021 +0200

    📝 SKR E3 Turbo custom cable description (#22426)

commit 8d34a99d8f02881c5a1e670255c1a413cc668cfb
Author: Luke Harrison <looxonline@gmail.com>
Date:   Wed Jul 21 07:43:33 2021 +0200

    🔧 Octopus SPI display pins, fix USB build env (#22412)

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

    🎨 Spellcheck code (#22531)

commit c158d8023e38313eeccad4fb3e54f1b2cd3a65a3
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 28 09:05:44 2021 +1200

    💚 Specify compatible Teensy @4.12 (#22448)

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

    🚑️ Init FastIO before anything else (#22508)

commit 924e4f95c8676aea02b5c33cb230b8ea9d84546a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 4 16:48:06 2021 -0500

    🚸 Ask for bed leveling on bug form

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

    🐛 One-based G35 point index output

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

    🐛 Fix 5-axis no extruder compile

    Fixes #22446

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

    🐛 Fix 3-point leveling position

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

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

    🐛 Fix PAUSE_MESSAGE_PAUSING=>PARKING

    Fixes #22250. Regression from #17460.

commit 603b65e843b98a5d2d7f8c8f64be3980656c0522
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Mon Jul 19 05:39:01 2021 +0300

    ✨ Laser support for TFT GLCD (#22391)

commit 2e5e5c4a1d54cb33eb08f1591c69e8275acf6411
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 20 23:35:56 2021 -0500

    🎨 BTT SKR Pro pins auto-assign (#22411)

    Co-authored-by: MarkusThur <83773817+MarkusThur@users.noreply.github.com>

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

    🐛 Fix PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED

    Fixes #22295. Regression from #20241.

commit f8f68f9259cc486fd36147f4f9d1e474940510dd
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jul 22 09:31:11 2021 +1200

    🎨 MKS Hardware Test followup (#22414)

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

commit 7773504afa546884f533fabefa1497547431bcdf
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jul 20 12:20:28 2021 -0700

    ♻️ Refactor STM32 ini files (#22377)

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

commit 6b73b6c966b1a31a1fc2ce67f827265ff3777189
Author: VTXtruder <87478332+VTXtruder@users.noreply.github.com>
Date:   Tue Jul 20 23:27:19 2021 -0400

    ✨ Chitu3D V9 board (#22401)

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

commit 29dde9be2b9fb52641d4fa804b097852f69e68f4
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sun Jul 18 00:16:57 2021 +0200

    🐛 Fix Longer3D build environment (#22378)

commit b6cb56f396e58b95d7e3f7750f388373bfbd01dd
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jul 15 14:07:46 2021 +1200

    🔨 More HAL/STM32 targets (#22358, #22369)

commit 8283f1577a8ea24a4607c74c7ccf8d3292d3d3bc
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 21 07:44:15 2021 +1200

    🐛 Fix STATUS_COMBINE_HEATERS compile (#22405)

commit 0e9eb5f6cef2e01fac961dd49c39e5b136cde985
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Sun Jul 18 20:11:24 2021 -0500

    🐛 Fix Ammeter display on DOGM (#22384)

commit 61d0b082989d506b7e0716a792c104389cd6d8c1
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sat Jul 17 23:10:13 2021 -0700

    🎨 Prefer DELAY_NS over DELAY_CYCLES (#22382)

commit b57f73a4883fc732b0c413e45d8614791bad4298
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 17 03:10:54 2021 -0500

    🎨 Add MMU2 enabled() accessor

commit 40b99d8084b235625ffe8701ce859219d52838c5
Author: Yash <76577754+yash-fn@users.noreply.github.com>
Date:   Tue Jul 20 14:51:41 2021 -0500

    🐛 Fix G2/G3 angular motion calculation (#22407)

commit c944e4fc6009cfc6e11f97b63f6ea817b8470071
Author: vyacheslav-shubin <shubin-vv@krista.ru>
Date:   Tue Jul 20 23:12:08 2021 +0300

    🩹 Init var to suppress invalid warning (#22396)

commit eebab93358427b3b95b4d38dedbbb8aaaba977b8
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jul 18 18:24:27 2021 -0700

    🐛 Ensure Software SPI pins for Max Thermocouple (#22389)

commit 0074ea5e0bc5d9abd24fd872fc6117ae491b7be7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 18 19:56:28 2021 -0500

    🐛 Change font for selected language (#22381)

commit e190684fe6ae4bf1a885508dbf39a6477ad274a5
Author: Roxy-3D <Roxy-3D@users.noreply.github.com>
Date:   Mon Jul 19 18:59:06 2021 -0600

    🐛 Fix UBL G29 J - Vector3 regression

commit 69c1e79c302e936d15957a98795afc8d57495ab6
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jul 20 13:13:25 2021 -0700

    🐛 Fix BTC_SAMPLE_RES sanity check (#22394)

commit b3a3d81406ab94ff4fcbffa6179b9e52309f712e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jul 20 12:54:02 2021 -0700

    🎨 Fix unused lambda warning (#22399)

commit f1161a9a5f104ba2d06eb84c4241290e614a7d2b
Author: Malderin <52313714+Malderin@users.noreply.github.com>
Date:   Mon Jul 19 05:21:51 2021 +0300

    🐛 Fix MKS UI compile (#22388, #22395)

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

commit 95f0970d85c2b32b6ef0efe4860e8aa25cdcb04d
Author: squiddity <squiddity@users.noreply.github.com>
Date:   Sat Jul 17 22:50:39 2021 -0700

    🐛 Fix M913 typos (#22385)

commit 31a3cc6278cd10c67ba9a24a907e6dcc7fbd3498
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 18 00:45:17 2021 -0500

    🐛 No translated serial strings

commit 6e7c20e78e1036140d9e076f71759e35f91300e2
Author: mks-viva <1224833100@qq.com>
Date:   Thu Jul 15 20:57:34 2021 -0500

    ✨ MKS Mini12864 v3 for Robin E3/E3D (#22368)

commit 165ae139d51b617295c2302f39c09edb0f0b0dd6
Author: Cytown <cytown@gmail.com>
Date:   Sat Jun 26 03:50:09 2021 +0800

    🎨 Power-off tone followup (#22222)

commit 42eb2347d4c9cc64220322e10046ad275ec7a04e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jul 9 22:24:43 2021 -0500

    🎨 Strip trailing whitespace

commit 3ab67898070c4422e454627e2836ab3b821bcf55
Author: mks-viva <1224833100@qq.com>
Date:   Fri Jul 9 17:59:36 2021 -0500

    ✨ MKS MINI12864 V3 for MKS Robin Nano V2/3 (#22285)

commit 5054dc6ea2883095f081971cb267090b7756db97
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jul 6 17:36:41 2021 -0700

    🐛 Redundant Temp Sensor followup (#22196)

commit ee54cd4bd7e36284e4bc974e297834fb31ed466e
Author: lujios <83166168+lujios@users.noreply.github.com>
Date:   Tue Jul 13 02:19:29 2021 +0200

    ⚡️ Improve Sensorless homing/probing for G28, G33 (#21899)

commit 399a240f846842bb0b0e72db9b1a3b2d85ccb29b
Author: Cytown <cytown@gmail.com>
Date:   Wed Jun 30 01:58:11 2021 +0800

    🚸 Retain power during Pause (#22227)

commit fef76a76a3275cf59bdf085b29d7d02168e61903
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 14 19:44:51 2021 -0500

    🔨 Consolidate STM32 extra_scripts (#22365)

commit a5459a68a69d255456b477dd134cba88a8d4f06f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jul 14 00:03:24 2021 -0700

    💡 Update FLYmaker comments, URL (#22355)

commit b44d4746c8c039effc7513c6a5ca2917e9a18691
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jul 14 15:55:24 2021 -0700

    🩹 FLYmaker FLY Mini followup (#22364)

    Followup to #22355, #22356.

commit 6f9194eb295daf9d4ccd0671d8f36d37bee6b8e5
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 14 18:57:26 2021 +1200

    ✨ FLY Mini for stm32duino (#22356)

commit 6b2370fd7c323471acfdcdcbe0ecc622c0b16ebe
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Wed Jul 7 04:10:40 2021 +0200

    ✨ DWIN LCD for BTT SKR Mini E3 (#22288)

commit ee640816968b95ee14c3eaafbc0572df9f4dcee1
Author: Mihai <mihai-dumitresq@users.noreply.github.com>
Date:   Wed Jul 7 07:10:35 2021 +0300

    ✨ Enable 'M20 L' with LONG_FILENAME_HOST_SUPPORT (#22271)

commit a35c234ce1f75b042c23402fda0426a7257c388b
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Thu Jul 8 00:41:33 2021 -0400

    🐛 Fix redundant heater / sensor pin assignments (#22309)

commit 5026797310b19618150d6010fd9cc4b57aae9a49
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Mon Jul 12 00:22:08 2021 -0500

    🏗️ Allow headless Flow Meter (#22234)

commit 8334e92b6f0e0fe640bb85757409a45d7f4abcb7
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Wed Jul 14 02:34:18 2021 -0300

    ✨ MSC Support for STM32 + SDIO boards -> SKR 2 (#22354)

commit 8cf15e85463361289820b240d0de527d47852992
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Wed Jul 14 16:56:02 2021 -0700

    🎨 Call millis() once in manage_inactivity (#22363)

commit 7ae099f2be7e8a54e50b7e34ee5f3a5ad4343ea9
Author: Skruppy <skruppy@onmars.eu>
Date:   Fri Jul 9 04:55:34 2021 +0200

    🐛 Fix AVR DELAY_US int overflow (#22268)

commit 6d191d12c9dbf1bf0844445ff02797ff98028b32
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 29 16:25:37 2021 -0500

    🔨 Clean up build scripts (#22264)

    * Add 10K to marlin_blackSTM32F407VET6 (typo?)
    * Document custom build scripts.
    * Add a Robin common build script.
    * Extraneous .ldscript specifiers

commit e213246ab998239c21bbc55983b79f28b4f848ce
Author: bilsef <bilsef1@gmail.com>
Date:   Thu Jul 15 18:59:52 2021 -0700

    ✨ M115: Axis Count (#22219)

commit 650e1dd1d22c2dde6b2e09b38b64769d32be578e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jul 14 18:51:58 2021 -0500

    🎨 Minor cleanup of TFT/FSMC pins

commit 87cc3873212918c30cf6a0b94ad52e93248f56c7
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Thu Jul 15 17:32:40 2021 -0400

    🐛 Fix Filament Change menu (#22370)

    Followup to #22277

commit a7cfdeef212cba0a3a2523e3ccdcb6e786710b5a
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Wed Jul 7 21:45:15 2021 -0700

    🐛 Fix Einsy RAMBo FAN1_PIN (#22305)

commit 3750ab5c8b9fb4ffe106feaa03c42785e23b3dee
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 17 00:21:17 2021 -0500

    📝 Tom's 3D Forums discontinued

commit a0704cb14ff6805a1d3eef470cf2bba87de72afc
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 14 12:32:21 2021 +1200

    🐛 Define MT_DET_PIN_INVERTING for MKS_ROBIN_NANO_V3 (#22348)

commit cad2f69687c1720a1ddb5be14732c2325eab527b
Author: MKS-Sean <56996910+MKS-Sean@users.noreply.github.com>
Date:   Tue Jul 13 08:17:28 2021 +0800

    ✨ MKS Robin Nano v3 + TFT_LVGL_UI + WiFi module (#22109)

commit 31fbec9a00f49818b6a82c283349167c40260cc2
Author: mks-viva <1224833100@qq.com>
Date:   Tue Jul 13 19:14:34 2021 -0500

    🐛 Fix Robin Nano V3 X_DIAG_PIN (#22340)

commit b1c5afaf3c2a821aef2e43a3abb07fc70b2fb261
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jul 14 02:14:55 2021 -0500

    🐛 Fix SD pins for MKS Robin Lite

commit bc459a76f40a86e0c25e75d3e3b4054a3db98436
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Jul 12 22:52:17 2021 -0500

    🐛 TM3D fixes and improvements

    Co-Authored-By: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>

commit dd8ac689c300b418f39b0df3a4ca90a291f7aa30
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Mon Jul 12 18:35:00 2021 -0600

    ⚡️ Fixes to FTDI Eve Touch UI (#22347)

commit 24f0613b9f14cd5a88bde851597104a1c6997abd
Author: ellensp <ellensp@hotmail.com>
Date:   Mon Jul 12 17:15:48 2021 +1200

    🎨 Optional Custom Button description (#22336)

commit 00b27b1aa7d5ec1700d24101eb011c2ad076aac3
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Sun Jul 11 20:45:47 2021 -0500

    🔨 Update LPC176x platform to 0.2.8 (#22333)

commit f76b063e58624d477c17a082d471aea3ef7b3197
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 11 18:25:51 2021 -0500

    🚸 M666: Fix value filter, add report (#22337)

    In reference to #22325

commit c746b1a2ae3573895b24fbc8c37015736469f39c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 11 13:18:16 2021 -0500

    🚸 Limit LCD delta endstop adjustment like M666

    In reference to #22325

commit be13220e32c2a79761224e16925436b9ae87bf48
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Fri Jul 9 19:24:14 2021 -0400

    📺 ExtUI pause state response (#22164)

commit 78c2eb6876c6d54a4b3a65763e94d4bf5fade985
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jul 9 17:09:58 2021 -0500

    🎨 Check flags without ENABLED

commit fea4e06484cb7072ffcdc61d32c0f6efe033d0b7
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Jul 9 23:07:55 2021 +0200

    🌐 Update French language (#22323)

commit 91f11e0d419ebabaef1ea5260998c4e553dd7d1c
Author: Zs.Antal <45710979+AntoszHUN@users.noreply.github.com>
Date:   Thu Jul 8 06:44:07 2021 +0200

    🌐 Update Hungarian language (#22307)

commit 573b8a62d9c189576b79773b9c54606c387d634a
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date:   Sat Jul 10 04:06:10 2021 +0800

    🐛 Fixes for BTT Octopus (#22314)

commit eafb94e72d99c9c906bfd806c87684243e193aeb
Author: Skruppy <skruppy@onmars.eu>
Date:   Sat Jul 10 01:25:47 2021 +0200

    🐛 Fix HAS_KILL && SOFT_RESET_ON_KILL soft reset button logic (#22269)

commit 69b44c2309d859865d4724cb8e323a13ba535d3c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 9 16:02:27 2021 -0500

    📌 Require U8glib-HAL@~0.5.0 (#22324)

commit e9a1c10b34b5a23815285ee068112395dca17fbe
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Thu Jul 8 21:48:11 2021 -0700

    🐛 Fix manage_heaters recursion on servo move (#22313)

    Followup to e297748b22

commit 304a926b0a2c5f9edb8adac93557758115d6b004
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 6 20:42:38 2021 -0500

    👷 Bump date on /Version.h

commit 1bb61f27e98029f19abab5deaeedcbf062887bc9
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Tue Jul 6 19:32:08 2021 -0600

    📺 Assorted small FTDI Eve Touch UI fixes (#22273)

commit 091bdb79e685a6401d371e4c1ca362d3350fa0e1
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Wed Jul 7 03:55:31 2021 +0300

    🌐 Update Russian and Ukrainian (#22290)

commit 968c3b7e4ec5bb606a6e77595a56c131c88b99cc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 6 19:54:02 2021 -0500

    ♻️ Fix up and use YESNO_ITEM macros

commit ed14d14819625a98753aa715821339e4f5a0ec73
Author: ldursw <37294448+ldursw@users.noreply.github.com>
Date:   Tue Jul 6 21:50:01 2021 -0300

    🐛 Fix Maple / STM32 serial buffer (#22292)

commit cae391bb484f5e141de07335f7bf97a91aa5e297
Author: George Fu <nailao_5918@163.com>
Date:   Wed Jul 7 08:40:11 2021 +0800

    🔨 FYSETC S6 small bootloader target (#22207)

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

commit 2753b4eeaadbc4cd1596cb4c5e0fecd17c132f5a
Author: Cytown <cytown@gmail.com>
Date:   Fri Jul 2 08:37:44 2021 +0800

    🚸 Filament Change add confirm step (#22277)

commit 6d05da0e5e7413fc906dfc5852ba819a6556f1de
Author: ellensp <ellensp@hotmail.com>
Date:   Fri Jul 2 09:27:27 2021 +1200

    🐛 Fix Arduino IDE build (TOUCH_UI_FTDI_EVE includes) (#22276)

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

commit 4235e23c7b0b62c6962624e1375605a6b5e575be
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 30 21:58:25 2021 -0500

    📝 Update Z_SAFE_HOMING description

commit cd01421ac32041c7f775ec37dd8d00b29a5d335b
Author: Glought <Glought@users.noreply.github.com>
Date:   Tue Jun 29 10:35:22 2021 -0700

    🚸 Sanity-check Slim LCD menus with Probe Offset Wizard (#22259)

commit aa13c7845812a3bd025437f03a5cf376eb975ee4
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jun 29 10:30:55 2021 -0700

    🐛 Fix ExtUI 'lcd_clicked' definition (#22257)

commit b1c5dd985e6cfc46c0cb0aa70c7dd681a2e9d3d5
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Mon Jun 28 18:43:05 2021 -0700

    🐛 Fix PTC/BTC whole number tests (#22255)

commit 3109a297d6e48d31ac2a23aedf0b919b63e2df4d
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Mon Jun 28 19:08:37 2021 +0200

    ✨ Ender-3 V2 Display for SKR E3 Turbo (#22229)

commit b878127ea04cc72334eb35ce0dca39ccf7d73a68
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 11:54:33 2021 -0500

    Marlin 2.0.9.1

commit 6ea6556d0989f6ef08ef169f513760c062de35bb
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 27 22:30:11 2021 -0700

    🐛 Use setTargetHotend in menus (#22247)

commit 2b37a71eba99101aa79c59148d73f85ac0bc4e0f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 00:33:44 2021 -0500

    ♻️ Refactor status screen timeout

commit e3ae76d76d10427d95e0926781ca1153043936c1
Author: Cytown <cytown@gmail.com>
Date:   Sun Jun 27 00:21:34 2021 +0800

    🚸 Expand box in draw_boxed_string (#22209)

commit b24508907e0e270eec764543997ac568da28a7ba
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 27 21:02:11 2021 -0700

    🐛 No HOTEND_LOOP with EXTRUDERS 0 (#22245)

commit ec3daadf4372df419f906145aed8a37056619169
Author: Sébastien Gariépy <46988275+BeePerNet@users.noreply.github.com>
Date:   Sun Jun 27 17:44:49 2021 -0400

    🌐 MSG_MOVE_100MM (#22242)

commit ae76011e751c01711a877c60a678b82115179ac7
Author: Cytown <cytown@gmail.com>
Date:   Mon Jun 28 01:39:09 2021 +0800

    🐛 Fix wide glyph characters display (#22237)

commit 34066c1717cf03039d3a80ca99dc487550a22645
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 11:54:28 2021 -0500

    📝 Update probe heating value

commit 19fe3d5e79863f817daadbefe74dbcfc01ab301c
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 23 06:42:24 2021 +1200

    🚸 MarlinUI Move Z >= 1000 (#22192)

commit ec518e6e7bc57ec3b41441acb751aa363792bfd6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 26 14:28:50 2021 -0500

    🎨 Small tweak, ms => now

commit 003ce25acfd64a83696609eed95699c7c7dff061
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 26 14:01:47 2021 -0500

    🎨 Format onboard_sd.cpp

commit 3e5d867276e4e8bf80657ecd2f8a73ccf38eb73f
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 27 06:28:56 2021 +1200

    🐛 Fix Z_MULTI_ENDSTOPS + NUM_Z_STEPPER_DRIVERS 4 compile (#22203)

commit b1bcb387fa191250c916b14f19ebc1753d0ae30c
Author: cr20-123 <66994235+cr20-123@users.noreply.github.com>
Date:   Sat Jun 26 14:17:18 2021 -0400

    ✨ Update/extend Quiet Probing (#22205)

commit 0fbd8c52bbec83e4bd0b6f772d42a495c36076a1
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 27 04:32:51 2021 +1200

    🔧 Fix E.S.T. sanity-check errors (#22224)

commit 08895e6cb046614c2e13c2df024c0fb460b7ba9f
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jun 25 22:38:27 2021 -0600

    🎨 Fix and improve FTDI Eve Touch UI (#22223)

commit 38e775496aff8c9c3af3f60b33b0ede2820c490b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jun 25 14:12:21 2021 -0700

    📝 Update TMC SPI endstops comment (#22221)

commit 47631167f9ee6a67f655e32fadd7a88c5ad18ddc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 25 14:44:51 2021 -0500

    🐛 Trigger existing endstops on G38 hit

commit 185e0dc7b7db2d6030810cb27d50cbaade658d2f
Author: bwspath <bwspath@gmail.com>
Date:   Thu Jun 24 22:27:54 2021 +0200

    🐛 Fix Octopus build on case-sensitive FS (#22206)

commit bcf6ca59dff2f858f410ed995c9c91e20b465852
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Tue Jun 22 21:48:56 2021 +0300

    🌐 Update Russian language (#22193)

commit 1ba694cebb8cb392b89adfedec0898b236755a37
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Mon Jun 21 15:38:28 2021 -0600

    🎨 Fix and enhance FTDI Eve Touch UI (#22189)

commit 906fa05bd69ee5de18e4c083bda408699e296676
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 21 16:31:41 2021 -0500

    🐛🌐 Fix extra axis translations

commit 651f15f833d84a40d983fa7825b782fef731d8e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 21 16:24:50 2021 -0500

    🎨 Cosmetic cleanup

commit ef41c1f452c03eff94a2dc693e25db4af2c07d94
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Mon Jun 21 13:36:06 2021 -0700

    🐛 Fix IJK axis references, E stepper indices (#22176)

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

commit 8050813d32402336eabf43152dd0e0ef76a54247
Author: Grumpy <dfouche8@gmail.com>
Date:   Tue Jun 22 08:12:39 2021 +1200

    🐛 Fix dual Neopixels (#22174)

commit 25e7e2fce05531b40a4753d138e7e00266f00efd
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 22 08:09:21 2021 +1200

    🐛 Fix heater display options/compile (#22185)

commit a0f7f0e9e21b23577695609519d7216dd2f37c43
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 20 22:49:57 2021 -0500

    🐛 Fix compact sensitive pins array (#22184)

commit f3e0bc7a4b35ec0af3734029b170527f65f5c824
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Mon Jun 21 06:48:06 2021 +0300

    🌐 Update Ukrainian language (#22183)

commit 49ff1e837ace76c852baf11dbf8ff4f38df43f32
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Mon Jun 21 05:45:26 2021 +0200

    🌐 Update Italian language (#22182)

commit 4f8191b4818b97bd20eb9db2042dc07c97cce6cc
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sat Jun 19 11:44:28 2021 -0700

    🐛 Redundant Temp Sensor followup (#22173)

commit 927a1a17384b649c2cd56fc2ded7aba8392b3781
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 20 01:19:09 2021 -0500

    🐛 Fix LCD define typos

commit f2f23e80974b271a30cbf9de3397f0e58d9de7fb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 19 14:09:09 2021 -0500

    🎨 Cosmetic changes for G28

commit cce585f6ca2235d0a534e8f3043d6d502b3bd93b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 18 13:12:55 2021 -0500

    🐛 Define 'HEAD' axes for Markforged

    Fixes #22167

commit 5bfb465ab4735aa3d5fa6c8d359331e0f2399902
Author: Ari-SSO <85907917+Ari-SSO@users.noreply.github.com>
Date:   Thu Jun 17 21:34:40 2021 -0300

    🚸 Include 'H' value in M412 report (#22138)

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

commit ce7bbafb8fafde75fee64e526700f9551e5564de
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Wed Jun 16 23:15:16 2021 -0700

    💡 Add G28 L description (#22144)

commit 5ffc4bfe3a14cf8e280d78a11b0c19d06c20ace4
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 17 17:39:48 2021 -0700

    🐛 TFT encoder pin for BTT GTR (#22162)

commit 3ecc99e95d8c25bec2342d2ec65d49a081ef4de8
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Thu Jun 17 22:46:59 2021 -0500

    🐛 Fix Air Assist (#22159)

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

commit f22c5d3cc6f42c955f212afa6c668469f7938193
Author: gjdodd <31553294+gjdodd@users.noreply.github.com>
Date:   Fri Jun 18 01:37:27 2021 +0100

    🩹 Extruders 0 patch for PWM Motor Current (#22163)

commit d8df8e0eed63c4b56f9b1221569d38654eff4948
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 17 02:58:48 2021 -0300

    🐛 Fix env validation for 1280/2560 boards (#22150)

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

commit e38958f256e698ab5afd3b775d1fe1e2d93fcb65
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 17 02:49:42 2021 -0300

    🐛 Fix MKS Robin E3 build (#22149)

commit d7c77403fd8373c7b4bfb6a4fa6d6f25c1ff9feb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 15 00:44:32 2021 -0500

    Marlin 2.0.9

commit c8898b5ca0db66c66a51f9d711591ab51a41fcc7
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 15 11:45:54 2021 +1200

    ✨ Redundant Part Cooling Fan (#21888)

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

commit 781257bc64d74b31d7730e473ef6ca09454462aa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 14 18:44:27 2021 -0500

    🐛 Prevent stepper sleep during long UBL idle (#22137)

commit dec083dcc122ce2e3df2a41a1297aabadcd11484
Author: qwewer0 <57561110+qwewer0@users.noreply.github.com>
Date:   Mon Jun 14 23:52:42 2021 +0200

    ⚡️ Home Z (and maybe XY) at the start of G35 (#22060)

commit cdd95074935074c4afa1f467ef16c9e9c0325bfa
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 15 09:43:50 2021 +1200

    🚑️ Prevent BFT unaligned compressed data corruption (#22134)

commit dba877311e28829dae24da30807b430bfba19faa
Author: Bo Herrmannsen <bo.herrmannsen@gmail.com>
Date:   Mon Jun 14 11:28:13 2021 +0200

    ✨ Extruder with Dual Stepper Drivers (#21403)

commit 31fd3be6eba02e96f1e093990d5f8ef09dad617b
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Mon Jun 14 04:24:49 2021 -0300

    🔥 Remove Chitu default Touch Calibration (#22133)

commit 2b4284df81db484649b42ddf291031fb6c8e5c58
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Mon Jun 14 02:39:16 2021 -0300

    ✨ MULTI_VOLUME for Color UI and MarlinUI (#22004)

commit d84e2d6e2908f34b08613b95c28726f5c330134a
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sun Jun 13 23:08:46 2021 -0400

    🎨 ExtUI "user click" and other tweaks (#22122)

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

commit 56355159c66af615ef1a778a3c786e70cd4289b5
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 13 22:47:38 2021 -0300

    🐛 Include common TFT driver macros (#22125)

commit a7135d429b1f0f7811610732b023064a85bd367e
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 13 18:43:43 2021 -0700

    🐛 Fix UBL 'R' parameter and adjust 'P' (#22129)

commit 3b0a40cd5d46c1a3f8c7a7bb2ae93a3f274cfd2f
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Mon Jun 14 09:31:38 2021 +0800

    🐛 Fix ExtUI/DGUS Celsius display (#22121)

commit 83c74802f89be2c3252a710960aee7bcf4469afe
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jun 13 20:19:43 2021 -0500

    🎨 General cleanup of extui/dgus

    In relation to #22121

commit adc17933cddcd21b359708f3db4b08ace23331ab
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 13 21:01:53 2021 -0300

    🔨 Fix Serial+MSC for _USB envs (#22116)

commit 68c52673d6a9cae0e1b9d8e36df1bf31a833a7e5
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 13 14:56:18 2021 -0700

    🐛 Use whole PROBE_TEMP_COMPENSATION values (#22130)

commit 2aa35577f279ef189fb8ff9cb921d1d79e426987
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 13 15:43:33 2021 -0500

    🏗️ Refactor build encrypt / rename (#22124)

commit 14ffc66c45d73f9e62a4180aa2dc4bf3079a84e4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 12 16:28:30 2021 -0500

    🩹 Use `#pragma once` in pins files

commit 2ea0832e0fb20b5c210bcaa9315b8182b5ca8359
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 12:31:24 2021 -0500

    📝 Number SKR EXP headers

commit ab050878e91c8e7002836d85e286817d8dec774a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 12:30:29 2021 -0500

    🎨 Clean up LPC1768 SPI init

commit 707a04022e658bd7d3224af71545f1a6cc712af7
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 11:40:35 2021 -0500

    🔨 Remove obsolete ON_BOARD_SPI_DEVICE

commit d12c35779355044fab117c739c70ea78dcedfe2f
Author: mrv96 <mrv96@users.noreply.github.com>
Date:   Sat Jun 12 18:19:37 2021 +0200

    🔨 Robin Nano V3 overridable POWER_LOSS_PIN (#22123)

commit ddf8668e16aeac2ed487e8784c218e1cbd2880d5
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 11 19:29:59 2021 -0500

    📝 Describe G12 XYZ

commit 3491e49c5f4d9bb5cce260ef51269b715761b4d5
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Fri Jun 11 18:13:22 2021 -0300

    🐛 Fix boot / SD for STM32 (F103Rx) boards (#22087)

commit d322e495b296be5ad6922d419a4cba2ef08b697c
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Fri Jun 11 13:51:29 2021 -0700

    ✨ More flexible redundant temp sensor (#22085)

commit 5d80f7006a32bbf4b56dcb2c88388782a8e26ffa
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 10 14:09:29 2021 -0700

    🔨 Envs for BTT SKR Mini with RET6 (512K) (#22050)

commit 3e7a9e5d2011eb7315e8765f2a8c3267fd2d3363
Author: Zs.Antal <45710979+AntoszHUN@users.noreply.github.com>
Date:   Thu Jun 10 23:05:07 2021 +0200

    🌐 Update Hungarian language (#22083)

commit 33e8769226f0d994a73dea33cec3e1488cc8f249
Author: grauerfuchs <42082416+grauerfuchs@users.noreply.github.com>
Date:   Thu Jun 10 17:04:18 2021 -0400

    🔨 MightyBoard envs for A.B.M. (#22100)

commit 59842edbcb46b6cc8f30807bdc9ef5fbe79bd7fa
Author: Radek <46979052+radek8@users.noreply.github.com>
Date:   Thu Jun 10 19:51:07 2021 +0200

    🔧 EEPROM options for BTT SKR 1.4 (#22092)

commit 507e1e436e7f45078c61e79026d64c55598fd707
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Thu Jun 10 02:17:39 2021 -0600

    🎨 Fix and improve FTDI Eve Touch UI (#22093)

commit b27447ef484b86d573e7ba60960df2f008df37d4
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 10 19:09:52 2021 +1200

    🔧 Enforce BLTouch settings (#22086)

commit c9a3ba99be5e45b880387aa28577c10a9875b459
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 10 02:05:04 2021 -0500

    🎨 Adjust some conditionals

commit 967942460ecfa952cd39b055cf9fd6cb968f51ea
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 8 19:55:27 2021 -0500

    ⚡️ Optimize Sensitive Pins array (except STM32) (#22080)

commit bfa257902ec4b0c96e642b4ee54f6e75de546255
Author: Kyle Repinski <MWisBest@users.noreply.github.com>
Date:   Tue Jun 8 18:56:16 2021 -0500

    🐛 Fix small/huge I2C EEPROM address (#22081)

commit 3f103c91f0e206bf3911bcc884d1dfaa8f2dd38b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 8 07:51:28 2021 -0500

    🎨 Laser Ammeter followup (#22079)

    Followup to #21835

commit 2fd9971f413bf4d34da5c3de9fc57c31ebcf6a4f
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Mon Jun 7 14:15:09 2021 -0500

    Add Laser Based I2C Ammeter Feature (#21835)

commit a3063a939243acefec606909ce8982fdabd848c4
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 8 07:09:12 2021 +1200

    expose hidden BLTOUCH setting changes (#22069)

commit d8a02bbbdba39e3fcc6519d7fa8ddbc36f4ea967
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sun Jun 6 22:26:42 2021 -0600

    🎨 Reorganize FTDI Touch UI variants (#22066)

commit 76d4a395d1a3d9d24f308ce6deb19c8767f04105
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 21:21:14 2021 +1200

    🩹 Fallback ID for MKS TS35 V2.0 (#22031)

commit c515bfb5fbb860d13daea84dfde6cb9d54662d20
Author: 7FM <41307817+7FM@users.noreply.github.com>
Date:   Sun Jun 6 09:56:24 2021 +0200

    👽️ Include <EEPROM.h> in STM32 (for now) (#22054)

commit 83430be580071acd35617e99f0fb23814993d04b
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 19:50:14 2021 +1200

    📦️ Malyan M200 with HAL/STM32 (#22052)

commit 9bd9f91722f9ae917a98bf8c148cadc84e885a6e
Author: George Fu <nailao_5918@163.com>
Date:   Sun Jun 6 14:37:52 2021 +0800

    📌 Update FYSETC E4 to espressif32@2.1.0 (#22049)

commit e6ef43e51a90e25ecbe24e766d32c046a9dbbdf3
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 6 02:59:19 2021 -0300

    ⚰️ Remove obsolete CUSTOM_SPI_PINS (#22058)

commit 16bca67f2deaf1d53bd7c1d3515ffbfb01a65ef8
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 12:16:40 2021 +1200

    🔧 Check G29_RETRY_AND_RECOVER requirements (#21921)

commit d65eea550caf12edaa678bde375864060cc68713
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 5 17:08:10 2021 -0500

    🔧 FOAMCUTTER_XYUV moved to custom config

commit 46080b367af8fbdef0628fc21243fd115007a2b5
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Fri Jun 11 22:53:23 2021 +0200

    ✏️ Six Linear Axes followup (Fix M503) (#22112)

commit 317afae37c5927ec6c4e6118a9e4d64dd8b757e3
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Thu Jun 10 02:08:42 2021 -0600

    ✏️ Six Linear Axes followup (typos) (#22094)

commit 930a6082362c3bef59aee27d72f0611b72ccbded
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 9 10:43:39 2021 +1200

    🎨 IJK auto-allocation (#22075)

commit 6e3c45580ce415bb27774bc0b707fec7da54943b
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Mon Jun 7 06:23:23 2021 +0200

    ✏️ Six Linear Axes followup (Hybrid Threshold init) (#22068)

commit e3df7d7bc8188994cc49879da9556222db935252
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Sun Jun 6 08:30:39 2021 +0200

    ✏️ Followup to Six Linear Axes (#22056)

commit c1fca911036af3ca868caea7556a630044ae4a77
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Sat Jun 5 09:18:47 2021 +0200

    🏗️ Support for up to 6 linear axes (#19112)

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

commit d3c56a76e73f8e126f1cf579f552e671efa9005b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 20:23:37 2021 -0500

    ♻️ Patches for Zero Extruders (with TMC)

commit 4194cdda5bb01171b2523038d568de670a8f0461
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 24 16:38:57 2021 -0500

    ♻️ Refactor Linear / Logical / Distinct Axes (#21953)

    * More patches supporting EXTRUDERS 0
    * Extend types in prep for more axes

commit f5f999d7bf56c03fd95455902e75cff873139500
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jun 4 23:35:05 2021 -0600

    📺 Fix and enhance FTDI EVE Touch UI (#22047)

commit b4b607681c19aff8c067f70c970f9ae755b1e059
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jun 4 21:56:18 2021 -0700

    ✨ BigTreeTech Octopus V1.1 (#22042)

commit 1e75eba27bd439d805d9de3e3c2194c2bfc3e42e
Author: ellensp <ellensp@hotmail.com>
Date:   Sat Jun 5 16:51:17 2021 +1200

    🐛 Fix STM3R / BEAST envs (#22028)

commit f3f3d202accf2c36e348c5e08fae82981d74c872
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sat Jun 5 01:49:00 2021 -0300

    📦️ STM32F103RE_btt(_USB) with HAL/STM32 (#22040)

commit c90fa530db2e6c98cfc8329ef36eda837b5ecc30
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 4 23:44:16 2021 -0500

    ✨ Update G34 for 4x Z steppers (#22039)

commit aeb8097cbc2b946cffe9813b5c8805c6943fd87d
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sat Jun 5 00:01:06 2021 -0400

    🐛 Fix M140 print job timer autostart (#22046)

commit 04bea727877c931777d69b718482630c40bd86fe
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Jun 5 03:02:37 2021 +0200

    🐛 Fix MMU compile with >5 EXTRUDERS (#22036)

commit ce95f56ac8755eff188001e12c88e01ae8e65f0e
Author: ldursw <37294448+ldursw@users.noreply.github.com>
Date:   Fri Jun 4 00:38:10 2021 -0300

    🔨 MKS Robin E3 for HAL/STM32 (#21927)

commit aff45fd455dd34f06f7211e0ff29d4f4dd93c7a8
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 3 03:23:10 2021 -0500

    ✏️ Remove whitespace

commit c8f28d9d0906261749f8beabc645503fadb0cbc9
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 3 20:10:04 2021 +1200

    🐛 Fix Creality v4 servo timer (#22021)

    Followup to #21999

commit f3697e5e02cd9debb170f69250a1ac37bc338852
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 3 17:51:22 2021 -0700

    🔨 Consolidate BTT linker scripts followup (#22038)

commit 557ba20ff4f57f0311f92e74b20a031c1ffb3520
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 3 02:55:30 2021 -0500

    🔨 Consolidate BTT linker scripts

    Originally from #22022

commit dd0e5c26d15a188dca9f7c772f8058bffdda108c
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 3 19:40:16 2021 +1200

    🐛 Fix env:STM32F103RE maple/unified split-up (#22019)

    Followup to #21999

commit c9a3f41152d1cc5145993920f2594aef8e745089
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 17:09:47 2021 -0500

    📝 Update G61 comment

commit d13ffa0aba6e31095d08bd3ccbc1c970e1fb2a59
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 2 18:42:15 2021 +1200

    🔨 Creality v4 with STM32 HAL (#21999)

    - New STM32 env for Creality V4 boards.
    - Separate Libmaple targets into their own `ini` file.
    - Temporarily remove unusable targets from `pins.h`.

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

commit fb0be2960408c08de09ecba4253c65f50e01b275
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 23:24:20 2021 -0500

    🔨 Move FLY_MINI env to stm32f1.ini

commit 7ca155077503cb2c62bf5ed739f9c6a2280a1cd9
Author: hannesweisbach <hannesweisbach@users.noreply.github.com>
Date:   Wed Jun 2 06:20:47 2021 +0200

    ✨ TMC Driver distinct baudrates (#22008)

commit 665a71b471476b7eaebe910d4412c5f39f26932c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 22:46:35 2021 -0500

    🔧 Treat TPARA like SCARA in mfconfig

commit 9268a4b28c485a2efeffccabab42defbd1c2cbaf
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Wed Jun 2 04:10:15 2021 +0200

    🌐 Update Slovak language (#22000)

commit 529bbfad10ca13a9d11af84302b7a92a14250d34
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Mon May 31 08:44:38 2021 +0200

    ⚗️ 32-bit float constants (STM32F1) (#21996)

commit e7945c227762a66840b0d9eb3c4aa9e40ff7641b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 11 18:33:07 2021 -0500

    🐛 Fix Z endstop enum

    Followup to 92dea8e6cc

commit 5ee91c73ed17cbb49899a7d91fce9377fd6e4599
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jun 6 03:49:23 2021 -0500

    👷 Add caching to CI workflow

commit 2116e4202b064c6cafef70d54ed50edf00b79e44
Author: hannesweisbach <hannesweisbach@users.noreply.github.com>
Date:   Sat Jun 5 06:38:43 2021 +0200

    🐛 Fix Probe Temp Calibration compile (#22032)

commit 19521d16cd9838345f404196e62bf6a2e2719b39
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sat Jun 5 00:01:06 2021 -0400

    🐛 Fix M140 print job timer autostart (#22046)

commit 057302b93636f276e8fe188f3fbd23d087e68a00
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 3 18:52:25 2021 -0300

    👽️ Fix usb-host-msc-cdc-msc issue (#22025)

commit d62619c9c8e4e92ea8e1d0fdfdca923df1d94140
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 19:38:34 2021 -0500

    📌 Use U8glib-HAL@~0.4.5

commit 9c80a89597ceb397f079a2bae47c15f32a195165
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 15:34:31 2021 -0500

    🎨 Reorganize BTT_E3_RRF_IDEX_BOARD

commit 00834ef03dc9a58e7b2c1b1333276e0c65399a5f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 15:34:03 2021 -0500

    🎨 Clean up stops, sdss pins

commit 5b7b065b96e6920171a50aace7e77ec8f735915d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat May 29 16:01:38 2021 -0500

    Marlin 2.0.8.2

commit a739af823f63bf5cfafb22a62d5f7b4d9ba4073e
Author: Timo <timo.birnschein@microforge.de>
Date:   Sat May 29 14:00:39 2021 -0700

    ✨ Malyan M180 (#21992)

commit 493eb446b74cdc7ab99315dfc129ecc86fbc343d
Author: Pascal de Bruijn <pmjdebruijn@pcode.nl>
Date:   Thu May 20 13:35:38 2021 +0200

    ✨ MEDIA_MENU_AT_TOP for MarlinUI (#21925)

commit 1b45b3802ac62c3b1e47213b847d9eb772ba1f4b
Author: charlespick <charles.pickering19@gmail.com>
Date:   Thu May 20 04:06:26 2021 -0700

    ✨ Independent baud rates (#21949)

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

commit 7898307d783f13e3d1947c61b3cc573f5973f69a
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Sat May 29 20:48:56 2021 +0200

    🌐 Update Polish language (#21993)

commit 8da8aa140fb7b57623144b222b5ff31816b2f84a
Author: ellensp <ellensp@hotmail.com>
Date:   Thu May 27 22:13:43 2021 +1200

    🥅 Add MESH_EDIT_MENU sanity check (#21922)

commit 4572af2bce25fc4959746f1088981c410cafee1b
Author: Andy Barratt <mail@andybarratt.co.uk>
Date:   Thu May 27 03:07:13 2021 +0100

    🚸 cap:HOST_ACTION_COMMANDS (#21987)

commit 6dc17f0e6ea3b88f109d683a4b223d6a733ad1e5
Author: Allen Bauer <kylix.rd@gmail.com>
Date:   Tue May 25 17:08:10 2021 -0700

    🐛 Fix BTT002 variant MMU2 serial pins 🧩 (#21980)

commit 3fcf3f69ca495722b0f47a69435e033f8895ae82
Author: ellensp <ellensp@hotmail.com>
Date:   Wed May 26 11:38:23 2021 +1200

    ♻️ LEDs refactor and extend (#21962)

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

commit a9fd2769f3f26e7e61a908a0ef2c079f1d06baab
Author: LawnMo <81721212+LawnMo@users.noreply.github.com>
Date:   Tue May 25 00:53:48 2021 +0200

    🩹 Fix multi_volume + SDIO onboard compile (#21975)

commit 9adaf92674751542e76e31738d2915992c57a40f
Author: LawnMo <81721212+LawnMo@users.noreply.github.com>
Date:   Mon May 24 09:21:21 2021 +0200

    🩹 Improved SKR2 12864 LCD Delays (#21956)

commit e75c3b6c54e9e8b4b48009a0ccc58ed7069f612a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 23 21:33:22 2021 -0500

    🎨 Macros for optional arguments (#21969)

commit 61f2bb122844aa0607f6d53aa37f843123931af6
Author: ellensp <ellensp@hotmail.com>
Date:   Mon May 24 13:29:19 2021 +1200

    ⚡️ PIO filters for M117, M300 and M414 (#21972)

commit d1502f74eaae94b6bff61b45c8481db39956ac2b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 17:56:31 2021 -0500

    🎨 Null heating message method

commit 83f9413196fbb842764eba33a975cec8d524e973
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 17:41:29 2021 -0500

    🐛 Fix Selena Compact probe pin

commit cdc3e18d994f120219ec8683246a81ac31cca75b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri May 28 19:47:06 2021 -0500

    Use another PR close action

commit 55a6315862cfafccfc939cf1b1f064f748c82d54
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date:   Mon May 24 14:57:45 2021 +0800

    🐛 Fix Octopus HS USB (#21961)

commit cf447a54428345903fe9f4c9497a4f32dfa72b08
Author: gjdodd <31553294+gjdodd@users.noreply.github.com>
Date:   Mon May 24 07:54:10 2021 +0100

    🐛 Fix flowmeter calculation (#21959)

commit 7597b4fb40a6e936267a57c74264fcf6c5bd1fc5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 21:12:53 2021 -0500

    🎨 Apply shorthand and cleanups

commit 7cd0f2a32aef86b361e9bef7ec3c30a944b7d153
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 21:08:57 2021 -0500

    🎨 pause => pause_heaters

commit 4dae5890e99c73686b7e1ee08857487a0acfeb28
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 23 01:09:46 2021 -0500

    ♻️ Refactor, comment endstop/probe enums

commit 738ae4be331b8d580cb22b7ec6e33ab095e3e81c
Author: Danol <czdanol@gmail.com>
Date:   Sun May 23 00:35:07 2021 +0200

    🐛 Fix wrong Z_ENDSTOP flag bit (#21963)

    Bug introduced in #18424

commit e5736110216893362937b70472e7da2c3859a28c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 17:02:21 2021 -0500

    🎨 Combine M104/M109 and M140/M190 code

commit f60965a1078fec01c6bc0f438c4e019547253d5e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 23:03:49 2021 -0500

    📝 Update ExtUI example

commit 3995e8373c88fce34d9a524686302ec132f0d2e3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 22:55:13 2021 -0500

    🎨 Shorten lcd relative paths

commit ddc82b84e25e981d12bab0d74af95b1e0476248b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 22:45:54 2021 -0500

    📝 Document diveToFile, printListing

commit 87a943756a36fe7f1e3422868dcfa35d5dd54518
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 08:23:09 2021 -0500

    🎨 Move HAS_EXTRUDERS

commit 8e28731f96d3f2a8dd5d1bb8262eafddc7e0aa05
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 08:24:38 2021 -0500

    🎨 Update a condition

commit cdbd438a041427580eaea0a9fbe570864aed70d0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 08:25:54 2021 -0500

    🎨 Rename all/no axis enums

commit 3220c49f1be88f8ee2845e5a01a6132eba966208
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 00:26:54 2021 -0500

    Add a test for SAVED_POSITIONS

commit 94e67a036a614f5f43bf2e79d26c9d62a2ffb505
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu May 20 21:47:05 2021 -0500

    🐛 Fix compile with PREVENT_COLD_EXTRUSION off

commit c977e820743a6589b0c82159473b36e60fae7254
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu May 20 17:12:18 2021 -0500

    🎨 MULTI_MANUAL => MULTI_E_MANUAL

commit 9878a5ab5883f2b3112c1f67ab392538afd7520f
Author: Moonglow <fxdteam@gmail.com>
Date:   Thu May 20 14:09:10 2021 +0300

    🐛 Fix Toshiba FlashAir (SDCARD_COMMANDS_SPLIT) (#21944)

commit 2de914c38ce373f37c925b20af270a2e4c647356
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed May 19 23:07:09 2021 -0500

    🎨 Move switch sensor strings

commit 49b05ba9891bc7add47d32a9ca947fe7eb9f4555
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed May 19 00:21:34 2021 -0500

    🎨 Flags for homing directions

commit 85fa8c55c9415ec044a96eedc800fedfa6b02439
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 23:30:49 2021 -0500

    🐛 Fix DELTA with SENSORLESS_PROBING

commit 57eef65d9cabb6b7cc4c7937c8a9a095fc39313b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:56:05 2021 -0500

    ♻️ Refactor axis homing/trusted state bits

commit 894c954e8f2e56e7a556a71200c8465ba3507deb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:53:52 2021 -0500

    ♻️ Minimize endstop bits

commit 046bac67693ec00ff2d2adf00aabe5cd396963c6
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:52:41 2021 -0500

    ✅ Fix tests for EXTRUDERS 0

commit 765720e98ba3cc970e42f8bf730da056c59ac2fe
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:52:10 2021 -0500

    ♻️ Simplify TMC utilities for more axes

commit 26a244325b48e5cf3e23518f9cd895491305050e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:51:19 2021 -0500

    ♻️ Refactor axis counts and loops

commit f7d28ce1d6d17621f86fd179770645723e5ae272
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:46:59 2021 -0500

    🎨 Misc cleanup and fixes

commit c85633b47f0b3c92055e725b9162acdeebd1ef79
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 17 21:17:22 2021 -0500

    🎨 Use defined strings

commit 6861b1ec827b30a4493099ebee1e49adbb48e8a5
Author: Alvaro Segura Del Barco <alvarosb@gmail.com>
Date:   Sat May 22 14:52:41 2021 -0600

    🐛 Fix Teensy PINS_DEBUGGING compile (#21958)

    Followup to 84a11cfedc

commit 003cb20b9fcf98bd80501d20634b41863ebf4dee
Author: Roger D. Winans <solvaholic@users.noreply.github.com>
Date:   Sat May 22 00:14:25 2021 -0400

    📝 Add Configurations section to README (#21955)

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

commit f1f622de01780418a3fe510f3f9be7237372831e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed May 19 22:02:28 2021 -0500

    Fix 'G29 K' value

commit dbb8f3db090e234ab17df986ccb29d2b4e7a4361
Author: ellensp <ellensp@hotmail.com>
Date:   Tue May 18 14:16:47 2021 +1200

    Fix EEPROM_CHITCHAT (#21934)

    Fix #21929

commit 5d7c72db5a57086e721ce0370c7a4ac75a47a978
Author: ellensp <ellensp@hotmail.com>
Date:   Tue May 18 11:22:33 2021 +1200

    Fix envs using mks_encrypt.py (#21933)

    Fix #21928

commit 755adb8973aa69ca6f0832e606060eaca065b88c
Author: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat May 15 18:33:10 2021 -0700

    Update Configurations URL (2.0.8.1)

commit 09774291384c8f301dffa274cf08ddd199b17c31
Author: ekef <62036680+ekef@users.noreply.github.com>
Date:   Sun May 16 02:22:30 2021 +0300

    Fix MKS Robin E3 BLTOUCH and Fan PWM timer conflicts (#21889)

commit 1dfa6cbc809d93a685c75f8b88ee3b9173aaeaa9
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat May 15 14:56:27 2021 -0500

    Marlin 2.0.8.1

commit e3998dc3dfae6bb52851374b3ba2e61cc3bc6661
Author: Luu Lac <45380455+shitcreek@users.noreply.github.com>
Date:   Sat May 15 15:02:20 2021 -0500

    M154 Position Auto-Report (#18427)

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

commit b6e1838fa6e905bcc4beab665d1e69b4eb35bce9
Author: Moonglow <fxdteam@gmail.com>
Date:   Sat May 15 06:30:16 2021 +0300

    Fix MKS UI missing font select condition (#21905)

commit 908caba7353cc321736cdf3fab61ea58163ee87e
Author: ondrada <82547068+ondrada@users.noreply.github.com>
Date:   Sat May 15 05:29:17 2021 +0200

    Fix G29_RETRY_AND_RECOVER dependency (#21907)

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

commit 121f3b1096bf0fcc0317df842a389a7f8afc2e3e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 14 00:17:04 2021 -0500

    🐛 Fix RR collision with MM (#21902)

commit 9e373617dc599130daf7b0204c5281237a6cc590
Author: Jamie <vector76@users.noreply.github.com>
Date:   Fri May 14 00:14:13 2021 -0500

    ✨ Instant Freeze/Resume Function (#17462)

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

commit 5298fa357c18c8bceb9552bcc4fd7543ee21b70f
Author: ellensp <ellensp@hotmail.com>
Date:   Fri May 14 08:19:12 2021 +1200

    Fix nextion compile error  (#21884)

commit 2c15bc5d3971571ad6e19e82436d2b8bd6f7f1d5
Author: Alexander D. Kanevskiy <kad@kad.name>
Date:   Thu May 13 23:10:48 2021 +0300

    Fix …
vogler added a commit to vogler/Marlin that referenced this pull request Oct 21, 2021
commit 718227a94c0cb163a73f0f288be6f7b864b7127a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Aug 18 14:54:56 2021 -0500

    📌 Disregard TMCStepper 0.7.2

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

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

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

    🐛 Fix Longer3D PWM/timer pins (#22583)

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

    ⚡️ Simplify PROBING_STEPPERS_OFF (#22581)

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

    ⏪️ Revert ABL G29 feedrate (#22574)

    Reverts 9130f58

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

    💚 Update STM32F103RET6_creality test path

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

    🐛 Fix LCD_COL_X_RJ

    Followup to #22471

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

    🚸 Fewer CRs in settings report (#22560)

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

    🐛 Fix some BTT SKR2 pins (#22558)

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

    🔨 Use zip link for MarlinSimUI

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

    🐛 Fix M575 port index output (#22553)

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

    🎨 Tweak M73 condition

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

    🚸 Better error for MOTHERBOARD not defined (#22551)

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

    🐛 Spellcheck comments (#22496)

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

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

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

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

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

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

    🚚 Relocate and adjust DWIN E3V2 (#22471)

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

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

    Fixes #22466. Regression from #22377.

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

    📝 Document DGUS display options (#22443)

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

    🎨 Update HAL/STM32 wrappers

    Followup to #22537

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

    🚸 Set M122 interval only with S0 or Pn

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

    🐛 Use delete [] for new []

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

    🐛 Fix CoreXY plus extra axes

    See #22490

commit 166324fc7b12119d5deded9ff51188bd6cba3173
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Wed Jul 14 21:13:08 2021 -0600

    🐛 Fix and improve FTDI Eve Touch UI (#22361, #22439, #22459, #22468, #22500, #22530)

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

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

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

    🚑️ Init FastIO before anything else (#22508)

commit 157c60c93bb79ff2e35dd5c6877da75615008884
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 02:12:48 2021 -0500

    🌐 Level Corners => Bed Tramming

commit d7f3228ec6170c64a4caf64b965a8a59c528258e
Author: George Fu <nailao_5918@163.com>
Date:   Sun Jul 25 16:40:43 2021 +0800

    🔨 Fix FYSETC S6 envs (#22421)

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

commit c56ac0c34a0cad9177e87951aae4071d73cdac68
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 02:19:30 2021 -0500

    🎨 Misc. Cleanup

commit e71fa2b64982fa949125e3056308b6bc010de3ee
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 03:58:16 2021 -0500

    🎨 Add DWIN_StatusChanged_P

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

    🐛 Fix fan index for Singlenozzle, chamber fan

    Fixes #22512
    Followup to #19152, #19519

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

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

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

    🐛 Fix some Simulator on Windows issues (#22516)

commit dc677050492fffc91e4c6d6ab08edc3c5ba04f97
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Thu Jul 22 01:01:23 2021 +0100

    ✨ Simulator HAL and build targets (#22418)

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

    📌 MKS pins for PSU_CONTROL (#22528)

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

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

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

    ✨ MKS Monster8 board (#22455)

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

    🐛 Fix up endstop flags (#22487, #22525)

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

    🐛 Followup to 6 linear axes (#22482)

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

    🐛 Fix G38 with probe on Z_MIN (#22452)

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

    ✨ M256 LCD brightness (#22478)

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

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

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

    🚸 Fix BLTouch spelling

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

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

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

    🐛 Prevent ABL G29 setting a funky feedrate

    See #22472

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

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

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

    🐛 Fix report_a_position ABC criteria

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

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

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

    💚 Fix tests for new sanity-checks

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

    🔧 Sanity-check DEFAULT_EJERK with LIN_ADVANCE

    See #20649

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

    🔧 Sanity-check Mixing plus Disable Inactive Extruder

    See #22166

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

    🐛 Allow SKR Pro CONTROLLER_FAN_PIN override

    Followup to #22411

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

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

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

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

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

    🎨 Adjust settings.cpp indent

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

    🔨 Update Longer and Chitu envs (#22467)

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

    🐛 Fix custom menus on MKS UI (#22470)

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

    🐛 Fix custom menus on TFT LVGL

    Fixes #21423. Regression from #18177.

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

    ✅ Custom logging for MBL

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

    🐛 Fix DGUS displays compile (#22464)

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

    🔨 Fix: BIGTREE_E3_RRF doesn't use user RX/TX sizes (#22475)

    Fixes #22466. Regression from #22377.

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

    🔧 HAS_CUSTOM_PROBE_PIN => USES_Z_MIN_PROBE_PIN

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

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

commit fbb5732dee4ba9f803ac873206421877f8ba7b9f
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 28 16:28:15 2021 +1200

    🐛 SAV_3DGLCD conditionals (#22447)

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

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

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

    🎨 abs => ABS

commit eb8649ba42f86159bd51b1ee366bd3291c05aafc
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jul 23 16:02:39 2021 -0600

    📺 Fix and optimize FTDI Eve Touch Interface (#22427)

commit 99f917c02225e4a610d02807a4335d36bad7ef03
Author: vyacheslav-shubin <shubin-vv@krista.ru>
Date:   Wed Jul 28 22:55:04 2021 +0300

    🐛 Reset workDirDepth in cdroot() (#22441)

commit 55cf3bd5eed67e72e9359dff152615035816afd7
Author: borland1 <barryorlando@hotmail.com>
Date:   Wed Jul 28 15:45:32 2021 -0700

    🐛 Fix LCD Menu MBL Z-Offset Adjustment (#22450)

commit 776ededca44d6a04c4c23afe82a42065b966aee8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jul 28 12:56:26 2021 -0700

    🐛 Fix SKR Pro bad directive (#22438)

commit b16a72a7e6a725e4e5d65f48580a900f2c8652b0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Wed Jul 28 06:30:41 2021 +0200

    🐛 Fix Longer3D SDSS / SD_SS (#22444)

commit f9809ca75aff3434fffaf26bba04106a973bb73e
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sat Jul 24 17:08:47 2021 -0400

    🐛 Fix delta calibrate manual move scale (#22430)

commit e402f43c028852c880e1acfb2632550daa949d0e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 24 15:55:45 2021 -0500

    🎨 NULL => nullptr

commit 2aad79fa15d5a51180270ed1afa44c7065576283
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 25 02:07:34 2021 -0500

    🐛 Fix some board names

commit 89e84fec61da126a7d59cad41f354d6219407034
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Fri Jul 23 23:47:38 2021 +0200

    📝 SKR E3 Turbo custom cable description (#22426)

commit 8d34a99d8f02881c5a1e670255c1a413cc668cfb
Author: Luke Harrison <looxonline@gmail.com>
Date:   Wed Jul 21 07:43:33 2021 +0200

    🔧 Octopus SPI display pins, fix USB build env (#22412)

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

    🎨 Spellcheck code (#22531)

commit c158d8023e38313eeccad4fb3e54f1b2cd3a65a3
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 28 09:05:44 2021 +1200

    💚 Specify compatible Teensy @4.12 (#22448)

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

    🚑️ Init FastIO before anything else (#22508)

commit 924e4f95c8676aea02b5c33cb230b8ea9d84546a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 4 16:48:06 2021 -0500

    🚸 Ask for bed leveling on bug form

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

    🐛 One-based G35 point index output

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

    🐛 Fix 5-axis no extruder compile

    Fixes #22446

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

    🐛 Fix 3-point leveling position

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

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

    🐛 Fix PAUSE_MESSAGE_PAUSING=>PARKING

    Fixes #22250. Regression from #17460.

commit 603b65e843b98a5d2d7f8c8f64be3980656c0522
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Mon Jul 19 05:39:01 2021 +0300

    ✨ Laser support for TFT GLCD (#22391)

commit 2e5e5c4a1d54cb33eb08f1591c69e8275acf6411
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 20 23:35:56 2021 -0500

    🎨 BTT SKR Pro pins auto-assign (#22411)

    Co-authored-by: MarkusThur <83773817+MarkusThur@users.noreply.github.com>

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

    🐛 Fix PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED

    Fixes #22295. Regression from #20241.

commit f8f68f9259cc486fd36147f4f9d1e474940510dd
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jul 22 09:31:11 2021 +1200

    🎨 MKS Hardware Test followup (#22414)

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

commit 7773504afa546884f533fabefa1497547431bcdf
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jul 20 12:20:28 2021 -0700

    ♻️ Refactor STM32 ini files (#22377)

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

commit 6b73b6c966b1a31a1fc2ce67f827265ff3777189
Author: VTXtruder <87478332+VTXtruder@users.noreply.github.com>
Date:   Tue Jul 20 23:27:19 2021 -0400

    ✨ Chitu3D V9 board (#22401)

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

commit 29dde9be2b9fb52641d4fa804b097852f69e68f4
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sun Jul 18 00:16:57 2021 +0200

    🐛 Fix Longer3D build environment (#22378)

commit b6cb56f396e58b95d7e3f7750f388373bfbd01dd
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jul 15 14:07:46 2021 +1200

    🔨 More HAL/STM32 targets (#22358, #22369)

commit 8283f1577a8ea24a4607c74c7ccf8d3292d3d3bc
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 21 07:44:15 2021 +1200

    🐛 Fix STATUS_COMBINE_HEATERS compile (#22405)

commit 0e9eb5f6cef2e01fac961dd49c39e5b136cde985
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Sun Jul 18 20:11:24 2021 -0500

    🐛 Fix Ammeter display on DOGM (#22384)

commit 61d0b082989d506b7e0716a792c104389cd6d8c1
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sat Jul 17 23:10:13 2021 -0700

    🎨 Prefer DELAY_NS over DELAY_CYCLES (#22382)

commit b57f73a4883fc732b0c413e45d8614791bad4298
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 17 03:10:54 2021 -0500

    🎨 Add MMU2 enabled() accessor

commit 40b99d8084b235625ffe8701ce859219d52838c5
Author: Yash <76577754+yash-fn@users.noreply.github.com>
Date:   Tue Jul 20 14:51:41 2021 -0500

    🐛 Fix G2/G3 angular motion calculation (#22407)

commit c944e4fc6009cfc6e11f97b63f6ea817b8470071
Author: vyacheslav-shubin <shubin-vv@krista.ru>
Date:   Tue Jul 20 23:12:08 2021 +0300

    🩹 Init var to suppress invalid warning (#22396)

commit eebab93358427b3b95b4d38dedbbb8aaaba977b8
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jul 18 18:24:27 2021 -0700

    🐛 Ensure Software SPI pins for Max Thermocouple (#22389)

commit 0074ea5e0bc5d9abd24fd872fc6117ae491b7be7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 18 19:56:28 2021 -0500

    🐛 Change font for selected language (#22381)

commit e190684fe6ae4bf1a885508dbf39a6477ad274a5
Author: Roxy-3D <Roxy-3D@users.noreply.github.com>
Date:   Mon Jul 19 18:59:06 2021 -0600

    🐛 Fix UBL G29 J - Vector3 regression

commit 69c1e79c302e936d15957a98795afc8d57495ab6
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jul 20 13:13:25 2021 -0700

    🐛 Fix BTC_SAMPLE_RES sanity check (#22394)

commit b3a3d81406ab94ff4fcbffa6179b9e52309f712e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jul 20 12:54:02 2021 -0700

    🎨 Fix unused lambda warning (#22399)

commit f1161a9a5f104ba2d06eb84c4241290e614a7d2b
Author: Malderin <52313714+Malderin@users.noreply.github.com>
Date:   Mon Jul 19 05:21:51 2021 +0300

    🐛 Fix MKS UI compile (#22388, #22395)

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

commit 95f0970d85c2b32b6ef0efe4860e8aa25cdcb04d
Author: squiddity <squiddity@users.noreply.github.com>
Date:   Sat Jul 17 22:50:39 2021 -0700

    🐛 Fix M913 typos (#22385)

commit 31a3cc6278cd10c67ba9a24a907e6dcc7fbd3498
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 18 00:45:17 2021 -0500

    🐛 No translated serial strings

commit 6e7c20e78e1036140d9e076f71759e35f91300e2
Author: mks-viva <1224833100@qq.com>
Date:   Thu Jul 15 20:57:34 2021 -0500

    ✨ MKS Mini12864 v3 for Robin E3/E3D (#22368)

commit 165ae139d51b617295c2302f39c09edb0f0b0dd6
Author: Cytown <cytown@gmail.com>
Date:   Sat Jun 26 03:50:09 2021 +0800

    🎨 Power-off tone followup (#22222)

commit 42eb2347d4c9cc64220322e10046ad275ec7a04e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jul 9 22:24:43 2021 -0500

    🎨 Strip trailing whitespace

commit 3ab67898070c4422e454627e2836ab3b821bcf55
Author: mks-viva <1224833100@qq.com>
Date:   Fri Jul 9 17:59:36 2021 -0500

    ✨ MKS MINI12864 V3 for MKS Robin Nano V2/3 (#22285)

commit 5054dc6ea2883095f081971cb267090b7756db97
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jul 6 17:36:41 2021 -0700

    🐛 Redundant Temp Sensor followup (#22196)

commit ee54cd4bd7e36284e4bc974e297834fb31ed466e
Author: lujios <83166168+lujios@users.noreply.github.com>
Date:   Tue Jul 13 02:19:29 2021 +0200

    ⚡️ Improve Sensorless homing/probing for G28, G33 (#21899)

commit 399a240f846842bb0b0e72db9b1a3b2d85ccb29b
Author: Cytown <cytown@gmail.com>
Date:   Wed Jun 30 01:58:11 2021 +0800

    🚸 Retain power during Pause (#22227)

commit fef76a76a3275cf59bdf085b29d7d02168e61903
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 14 19:44:51 2021 -0500

    🔨 Consolidate STM32 extra_scripts (#22365)

commit a5459a68a69d255456b477dd134cba88a8d4f06f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jul 14 00:03:24 2021 -0700

    💡 Update FLYmaker comments, URL (#22355)

commit b44d4746c8c039effc7513c6a5ca2917e9a18691
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jul 14 15:55:24 2021 -0700

    🩹 FLYmaker FLY Mini followup (#22364)

    Followup to #22355, #22356.

commit 6f9194eb295daf9d4ccd0671d8f36d37bee6b8e5
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 14 18:57:26 2021 +1200

    ✨ FLY Mini for stm32duino (#22356)

commit 6b2370fd7c323471acfdcdcbe0ecc622c0b16ebe
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Wed Jul 7 04:10:40 2021 +0200

    ✨ DWIN LCD for BTT SKR Mini E3 (#22288)

commit ee640816968b95ee14c3eaafbc0572df9f4dcee1
Author: Mihai <mihai-dumitresq@users.noreply.github.com>
Date:   Wed Jul 7 07:10:35 2021 +0300

    ✨ Enable 'M20 L' with LONG_FILENAME_HOST_SUPPORT (#22271)

commit a35c234ce1f75b042c23402fda0426a7257c388b
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Thu Jul 8 00:41:33 2021 -0400

    🐛 Fix redundant heater / sensor pin assignments (#22309)

commit 5026797310b19618150d6010fd9cc4b57aae9a49
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Mon Jul 12 00:22:08 2021 -0500

    🏗️ Allow headless Flow Meter (#22234)

commit 8334e92b6f0e0fe640bb85757409a45d7f4abcb7
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Wed Jul 14 02:34:18 2021 -0300

    ✨ MSC Support for STM32 + SDIO boards -> SKR 2 (#22354)

commit 8cf15e85463361289820b240d0de527d47852992
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Wed Jul 14 16:56:02 2021 -0700

    🎨 Call millis() once in manage_inactivity (#22363)

commit 7ae099f2be7e8a54e50b7e34ee5f3a5ad4343ea9
Author: Skruppy <skruppy@onmars.eu>
Date:   Fri Jul 9 04:55:34 2021 +0200

    🐛 Fix AVR DELAY_US int overflow (#22268)

commit 6d191d12c9dbf1bf0844445ff02797ff98028b32
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 29 16:25:37 2021 -0500

    🔨 Clean up build scripts (#22264)

    * Add 10K to marlin_blackSTM32F407VET6 (typo?)
    * Document custom build scripts.
    * Add a Robin common build script.
    * Extraneous .ldscript specifiers

commit e213246ab998239c21bbc55983b79f28b4f848ce
Author: bilsef <bilsef1@gmail.com>
Date:   Thu Jul 15 18:59:52 2021 -0700

    ✨ M115: Axis Count (#22219)

commit 650e1dd1d22c2dde6b2e09b38b64769d32be578e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jul 14 18:51:58 2021 -0500

    🎨 Minor cleanup of TFT/FSMC pins

commit 87cc3873212918c30cf6a0b94ad52e93248f56c7
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Thu Jul 15 17:32:40 2021 -0400

    🐛 Fix Filament Change menu (#22370)

    Followup to #22277

commit a7cfdeef212cba0a3a2523e3ccdcb6e786710b5a
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Wed Jul 7 21:45:15 2021 -0700

    🐛 Fix Einsy RAMBo FAN1_PIN (#22305)

commit 3750ab5c8b9fb4ffe106feaa03c42785e23b3dee
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 17 00:21:17 2021 -0500

    📝 Tom's 3D Forums discontinued

commit a0704cb14ff6805a1d3eef470cf2bba87de72afc
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jul 14 12:32:21 2021 +1200

    🐛 Define MT_DET_PIN_INVERTING for MKS_ROBIN_NANO_V3 (#22348)

commit cad2f69687c1720a1ddb5be14732c2325eab527b
Author: MKS-Sean <56996910+MKS-Sean@users.noreply.github.com>
Date:   Tue Jul 13 08:17:28 2021 +0800

    ✨ MKS Robin Nano v3 + TFT_LVGL_UI + WiFi module (#22109)

commit 31fbec9a00f49818b6a82c283349167c40260cc2
Author: mks-viva <1224833100@qq.com>
Date:   Tue Jul 13 19:14:34 2021 -0500

    🐛 Fix Robin Nano V3 X_DIAG_PIN (#22340)

commit b1c5afaf3c2a821aef2e43a3abb07fc70b2fb261
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jul 14 02:14:55 2021 -0500

    🐛 Fix SD pins for MKS Robin Lite

commit bc459a76f40a86e0c25e75d3e3b4054a3db98436
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Jul 12 22:52:17 2021 -0500

    🐛 TM3D fixes and improvements

    Co-Authored-By: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>

commit dd8ac689c300b418f39b0df3a4ca90a291f7aa30
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Mon Jul 12 18:35:00 2021 -0600

    ⚡️ Fixes to FTDI Eve Touch UI (#22347)

commit 24f0613b9f14cd5a88bde851597104a1c6997abd
Author: ellensp <ellensp@hotmail.com>
Date:   Mon Jul 12 17:15:48 2021 +1200

    🎨 Optional Custom Button description (#22336)

commit 00b27b1aa7d5ec1700d24101eb011c2ad076aac3
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Sun Jul 11 20:45:47 2021 -0500

    🔨 Update LPC176x platform to 0.2.8 (#22333)

commit f76b063e58624d477c17a082d471aea3ef7b3197
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 11 18:25:51 2021 -0500

    🚸 M666: Fix value filter, add report (#22337)

    In reference to #22325

commit c746b1a2ae3573895b24fbc8c37015736469f39c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jul 11 13:18:16 2021 -0500

    🚸 Limit LCD delta endstop adjustment like M666

    In reference to #22325

commit be13220e32c2a79761224e16925436b9ae87bf48
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Fri Jul 9 19:24:14 2021 -0400

    📺 ExtUI pause state response (#22164)

commit 78c2eb6876c6d54a4b3a65763e94d4bf5fade985
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jul 9 17:09:58 2021 -0500

    🎨 Check flags without ENABLED

commit fea4e06484cb7072ffcdc61d32c0f6efe033d0b7
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Jul 9 23:07:55 2021 +0200

    🌐 Update French language (#22323)

commit 91f11e0d419ebabaef1ea5260998c4e553dd7d1c
Author: Zs.Antal <45710979+AntoszHUN@users.noreply.github.com>
Date:   Thu Jul 8 06:44:07 2021 +0200

    🌐 Update Hungarian language (#22307)

commit 573b8a62d9c189576b79773b9c54606c387d634a
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date:   Sat Jul 10 04:06:10 2021 +0800

    🐛 Fixes for BTT Octopus (#22314)

commit eafb94e72d99c9c906bfd806c87684243e193aeb
Author: Skruppy <skruppy@onmars.eu>
Date:   Sat Jul 10 01:25:47 2021 +0200

    🐛 Fix HAS_KILL && SOFT_RESET_ON_KILL soft reset button logic (#22269)

commit 69b44c2309d859865d4724cb8e323a13ba535d3c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 9 16:02:27 2021 -0500

    📌 Require U8glib-HAL@~0.5.0 (#22324)

commit e9a1c10b34b5a23815285ee068112395dca17fbe
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Thu Jul 8 21:48:11 2021 -0700

    🐛 Fix manage_heaters recursion on servo move (#22313)

    Followup to e297748b22

commit 304a926b0a2c5f9edb8adac93557758115d6b004
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 6 20:42:38 2021 -0500

    👷 Bump date on /Version.h

commit 1bb61f27e98029f19abab5deaeedcbf062887bc9
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Tue Jul 6 19:32:08 2021 -0600

    📺 Assorted small FTDI Eve Touch UI fixes (#22273)

commit 091bdb79e685a6401d371e4c1ca362d3350fa0e1
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Wed Jul 7 03:55:31 2021 +0300

    🌐 Update Russian and Ukrainian (#22290)

commit 968c3b7e4ec5bb606a6e77595a56c131c88b99cc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 6 19:54:02 2021 -0500

    ♻️ Fix up and use YESNO_ITEM macros

commit ed14d14819625a98753aa715821339e4f5a0ec73
Author: ldursw <37294448+ldursw@users.noreply.github.com>
Date:   Tue Jul 6 21:50:01 2021 -0300

    🐛 Fix Maple / STM32 serial buffer (#22292)

commit cae391bb484f5e141de07335f7bf97a91aa5e297
Author: George Fu <nailao_5918@163.com>
Date:   Wed Jul 7 08:40:11 2021 +0800

    🔨 FYSETC S6 small bootloader target (#22207)

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

commit 2753b4eeaadbc4cd1596cb4c5e0fecd17c132f5a
Author: Cytown <cytown@gmail.com>
Date:   Fri Jul 2 08:37:44 2021 +0800

    🚸 Filament Change add confirm step (#22277)

commit 6d05da0e5e7413fc906dfc5852ba819a6556f1de
Author: ellensp <ellensp@hotmail.com>
Date:   Fri Jul 2 09:27:27 2021 +1200

    🐛 Fix Arduino IDE build (TOUCH_UI_FTDI_EVE includes) (#22276)

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

commit 4235e23c7b0b62c6962624e1375605a6b5e575be
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 30 21:58:25 2021 -0500

    📝 Update Z_SAFE_HOMING description

commit cd01421ac32041c7f775ec37dd8d00b29a5d335b
Author: Glought <Glought@users.noreply.github.com>
Date:   Tue Jun 29 10:35:22 2021 -0700

    🚸 Sanity-check Slim LCD menus with Probe Offset Wizard (#22259)

commit aa13c7845812a3bd025437f03a5cf376eb975ee4
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Tue Jun 29 10:30:55 2021 -0700

    🐛 Fix ExtUI 'lcd_clicked' definition (#22257)

commit b1c5dd985e6cfc46c0cb0aa70c7dd681a2e9d3d5
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Mon Jun 28 18:43:05 2021 -0700

    🐛 Fix PTC/BTC whole number tests (#22255)

commit 3109a297d6e48d31ac2a23aedf0b919b63e2df4d
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Mon Jun 28 19:08:37 2021 +0200

    ✨ Ender-3 V2 Display for SKR E3 Turbo (#22229)

commit b878127ea04cc72334eb35ce0dca39ccf7d73a68
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 11:54:33 2021 -0500

    Marlin 2.0.9.1

commit 6ea6556d0989f6ef08ef169f513760c062de35bb
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 27 22:30:11 2021 -0700

    🐛 Use setTargetHotend in menus (#22247)

commit 2b37a71eba99101aa79c59148d73f85ac0bc4e0f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 00:33:44 2021 -0500

    ♻️ Refactor status screen timeout

commit e3ae76d76d10427d95e0926781ca1153043936c1
Author: Cytown <cytown@gmail.com>
Date:   Sun Jun 27 00:21:34 2021 +0800

    🚸 Expand box in draw_boxed_string (#22209)

commit b24508907e0e270eec764543997ac568da28a7ba
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 27 21:02:11 2021 -0700

    🐛 No HOTEND_LOOP with EXTRUDERS 0 (#22245)

commit ec3daadf4372df419f906145aed8a37056619169
Author: Sébastien Gariépy <46988275+BeePerNet@users.noreply.github.com>
Date:   Sun Jun 27 17:44:49 2021 -0400

    🌐 MSG_MOVE_100MM (#22242)

commit ae76011e751c01711a877c60a678b82115179ac7
Author: Cytown <cytown@gmail.com>
Date:   Mon Jun 28 01:39:09 2021 +0800

    🐛 Fix wide glyph characters display (#22237)

commit 34066c1717cf03039d3a80ca99dc487550a22645
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 27 11:54:28 2021 -0500

    📝 Update probe heating value

commit 19fe3d5e79863f817daadbefe74dbcfc01ab301c
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 23 06:42:24 2021 +1200

    🚸 MarlinUI Move Z >= 1000 (#22192)

commit ec518e6e7bc57ec3b41441acb751aa363792bfd6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 26 14:28:50 2021 -0500

    🎨 Small tweak, ms => now

commit 003ce25acfd64a83696609eed95699c7c7dff061
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 26 14:01:47 2021 -0500

    🎨 Format onboard_sd.cpp

commit 3e5d867276e4e8bf80657ecd2f8a73ccf38eb73f
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 27 06:28:56 2021 +1200

    🐛 Fix Z_MULTI_ENDSTOPS + NUM_Z_STEPPER_DRIVERS 4 compile (#22203)

commit b1bcb387fa191250c916b14f19ebc1753d0ae30c
Author: cr20-123 <66994235+cr20-123@users.noreply.github.com>
Date:   Sat Jun 26 14:17:18 2021 -0400

    ✨ Update/extend Quiet Probing (#22205)

commit 0fbd8c52bbec83e4bd0b6f772d42a495c36076a1
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 27 04:32:51 2021 +1200

    🔧 Fix E.S.T. sanity-check errors (#22224)

commit 08895e6cb046614c2e13c2df024c0fb460b7ba9f
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jun 25 22:38:27 2021 -0600

    🎨 Fix and improve FTDI Eve Touch UI (#22223)

commit 38e775496aff8c9c3af3f60b33b0ede2820c490b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jun 25 14:12:21 2021 -0700

    📝 Update TMC SPI endstops comment (#22221)

commit 47631167f9ee6a67f655e32fadd7a88c5ad18ddc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 25 14:44:51 2021 -0500

    🐛 Trigger existing endstops on G38 hit

commit 185e0dc7b7db2d6030810cb27d50cbaade658d2f
Author: bwspath <bwspath@gmail.com>
Date:   Thu Jun 24 22:27:54 2021 +0200

    🐛 Fix Octopus build on case-sensitive FS (#22206)

commit bcf6ca59dff2f858f410ed995c9c91e20b465852
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Tue Jun 22 21:48:56 2021 +0300

    🌐 Update Russian language (#22193)

commit 1ba694cebb8cb392b89adfedec0898b236755a37
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Mon Jun 21 15:38:28 2021 -0600

    🎨 Fix and enhance FTDI Eve Touch UI (#22189)

commit 906fa05bd69ee5de18e4c083bda408699e296676
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 21 16:31:41 2021 -0500

    🐛🌐 Fix extra axis translations

commit 651f15f833d84a40d983fa7825b782fef731d8e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 21 16:24:50 2021 -0500

    🎨 Cosmetic cleanup

commit ef41c1f452c03eff94a2dc693e25db4af2c07d94
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Mon Jun 21 13:36:06 2021 -0700

    🐛 Fix IJK axis references, E stepper indices (#22176)

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

commit 8050813d32402336eabf43152dd0e0ef76a54247
Author: Grumpy <dfouche8@gmail.com>
Date:   Tue Jun 22 08:12:39 2021 +1200

    🐛 Fix dual Neopixels (#22174)

commit 25e7e2fce05531b40a4753d138e7e00266f00efd
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 22 08:09:21 2021 +1200

    🐛 Fix heater display options/compile (#22185)

commit a0f7f0e9e21b23577695609519d7216dd2f37c43
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 20 22:49:57 2021 -0500

    🐛 Fix compact sensitive pins array (#22184)

commit f3e0bc7a4b35ec0af3734029b170527f65f5c824
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Mon Jun 21 06:48:06 2021 +0300

    🌐 Update Ukrainian language (#22183)

commit 49ff1e837ace76c852baf11dbf8ff4f38df43f32
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Mon Jun 21 05:45:26 2021 +0200

    🌐 Update Italian language (#22182)

commit 4f8191b4818b97bd20eb9db2042dc07c97cce6cc
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sat Jun 19 11:44:28 2021 -0700

    🐛 Redundant Temp Sensor followup (#22173)

commit 927a1a17384b649c2cd56fc2ded7aba8392b3781
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 20 01:19:09 2021 -0500

    🐛 Fix LCD define typos

commit f2f23e80974b271a30cbf9de3397f0e58d9de7fb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 19 14:09:09 2021 -0500

    🎨 Cosmetic changes for G28

commit cce585f6ca2235d0a534e8f3043d6d502b3bd93b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 18 13:12:55 2021 -0500

    🐛 Define 'HEAD' axes for Markforged

    Fixes #22167

commit 5bfb465ab4735aa3d5fa6c8d359331e0f2399902
Author: Ari-SSO <85907917+Ari-SSO@users.noreply.github.com>
Date:   Thu Jun 17 21:34:40 2021 -0300

    🚸 Include 'H' value in M412 report (#22138)

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

commit ce7bbafb8fafde75fee64e526700f9551e5564de
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Wed Jun 16 23:15:16 2021 -0700

    💡 Add G28 L description (#22144)

commit 5ffc4bfe3a14cf8e280d78a11b0c19d06c20ace4
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 17 17:39:48 2021 -0700

    🐛 TFT encoder pin for BTT GTR (#22162)

commit 3ecc99e95d8c25bec2342d2ec65d49a081ef4de8
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Thu Jun 17 22:46:59 2021 -0500

    🐛 Fix Air Assist (#22159)

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

commit f22c5d3cc6f42c955f212afa6c668469f7938193
Author: gjdodd <31553294+gjdodd@users.noreply.github.com>
Date:   Fri Jun 18 01:37:27 2021 +0100

    🩹 Extruders 0 patch for PWM Motor Current (#22163)

commit d8df8e0eed63c4b56f9b1221569d38654eff4948
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 17 02:58:48 2021 -0300

    🐛 Fix env validation for 1280/2560 boards (#22150)

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

commit e38958f256e698ab5afd3b775d1fe1e2d93fcb65
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 17 02:49:42 2021 -0300

    🐛 Fix MKS Robin E3 build (#22149)

commit d7c77403fd8373c7b4bfb6a4fa6d6f25c1ff9feb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 15 00:44:32 2021 -0500

    Marlin 2.0.9

commit c8898b5ca0db66c66a51f9d711591ab51a41fcc7
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 15 11:45:54 2021 +1200

    ✨ Redundant Part Cooling Fan (#21888)

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

commit 781257bc64d74b31d7730e473ef6ca09454462aa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 14 18:44:27 2021 -0500

    🐛 Prevent stepper sleep during long UBL idle (#22137)

commit dec083dcc122ce2e3df2a41a1297aabadcd11484
Author: qwewer0 <57561110+qwewer0@users.noreply.github.com>
Date:   Mon Jun 14 23:52:42 2021 +0200

    ⚡️ Home Z (and maybe XY) at the start of G35 (#22060)

commit cdd95074935074c4afa1f467ef16c9e9c0325bfa
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 15 09:43:50 2021 +1200

    🚑️ Prevent BFT unaligned compressed data corruption (#22134)

commit dba877311e28829dae24da30807b430bfba19faa
Author: Bo Herrmannsen <bo.herrmannsen@gmail.com>
Date:   Mon Jun 14 11:28:13 2021 +0200

    ✨ Extruder with Dual Stepper Drivers (#21403)

commit 31fd3be6eba02e96f1e093990d5f8ef09dad617b
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Mon Jun 14 04:24:49 2021 -0300

    🔥 Remove Chitu default Touch Calibration (#22133)

commit 2b4284df81db484649b42ddf291031fb6c8e5c58
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Mon Jun 14 02:39:16 2021 -0300

    ✨ MULTI_VOLUME for Color UI and MarlinUI (#22004)

commit d84e2d6e2908f34b08613b95c28726f5c330134a
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sun Jun 13 23:08:46 2021 -0400

    🎨 ExtUI "user click" and other tweaks (#22122)

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

commit 56355159c66af615ef1a778a3c786e70cd4289b5
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 13 22:47:38 2021 -0300

    🐛 Include common TFT driver macros (#22125)

commit a7135d429b1f0f7811610732b023064a85bd367e
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 13 18:43:43 2021 -0700

    🐛 Fix UBL 'R' parameter and adjust 'P' (#22129)

commit 3b0a40cd5d46c1a3f8c7a7bb2ae93a3f274cfd2f
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Mon Jun 14 09:31:38 2021 +0800

    🐛 Fix ExtUI/DGUS Celsius display (#22121)

commit 83c74802f89be2c3252a710960aee7bcf4469afe
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jun 13 20:19:43 2021 -0500

    🎨 General cleanup of extui/dgus

    In relation to #22121

commit adc17933cddcd21b359708f3db4b08ace23331ab
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 13 21:01:53 2021 -0300

    🔨 Fix Serial+MSC for _USB envs (#22116)

commit 68c52673d6a9cae0e1b9d8e36df1bf31a833a7e5
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 13 14:56:18 2021 -0700

    🐛 Use whole PROBE_TEMP_COMPENSATION values (#22130)

commit 2aa35577f279ef189fb8ff9cb921d1d79e426987
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 13 15:43:33 2021 -0500

    🏗️ Refactor build encrypt / rename (#22124)

commit 14ffc66c45d73f9e62a4180aa2dc4bf3079a84e4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 12 16:28:30 2021 -0500

    🩹 Use `#pragma once` in pins files

commit 2ea0832e0fb20b5c210bcaa9315b8182b5ca8359
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 12:31:24 2021 -0500

    📝 Number SKR EXP headers

commit ab050878e91c8e7002836d85e286817d8dec774a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 12:30:29 2021 -0500

    🎨 Clean up LPC1768 SPI init

commit 707a04022e658bd7d3224af71545f1a6cc712af7
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 12 11:40:35 2021 -0500

    🔨 Remove obsolete ON_BOARD_SPI_DEVICE

commit d12c35779355044fab117c739c70ea78dcedfe2f
Author: mrv96 <mrv96@users.noreply.github.com>
Date:   Sat Jun 12 18:19:37 2021 +0200

    🔨 Robin Nano V3 overridable POWER_LOSS_PIN (#22123)

commit ddf8668e16aeac2ed487e8784c218e1cbd2880d5
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 11 19:29:59 2021 -0500

    📝 Describe G12 XYZ

commit 3491e49c5f4d9bb5cce260ef51269b715761b4d5
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Fri Jun 11 18:13:22 2021 -0300

    🐛 Fix boot / SD for STM32 (F103Rx) boards (#22087)

commit d322e495b296be5ad6922d419a4cba2ef08b697c
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Fri Jun 11 13:51:29 2021 -0700

    ✨ More flexible redundant temp sensor (#22085)

commit 5d80f7006a32bbf4b56dcb2c88388782a8e26ffa
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 10 14:09:29 2021 -0700

    🔨 Envs for BTT SKR Mini with RET6 (512K) (#22050)

commit 3e7a9e5d2011eb7315e8765f2a8c3267fd2d3363
Author: Zs.Antal <45710979+AntoszHUN@users.noreply.github.com>
Date:   Thu Jun 10 23:05:07 2021 +0200

    🌐 Update Hungarian language (#22083)

commit 33e8769226f0d994a73dea33cec3e1488cc8f249
Author: grauerfuchs <42082416+grauerfuchs@users.noreply.github.com>
Date:   Thu Jun 10 17:04:18 2021 -0400

    🔨 MightyBoard envs for A.B.M. (#22100)

commit 59842edbcb46b6cc8f30807bdc9ef5fbe79bd7fa
Author: Radek <46979052+radek8@users.noreply.github.com>
Date:   Thu Jun 10 19:51:07 2021 +0200

    🔧 EEPROM options for BTT SKR 1.4 (#22092)

commit 507e1e436e7f45078c61e79026d64c55598fd707
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Thu Jun 10 02:17:39 2021 -0600

    🎨 Fix and improve FTDI Eve Touch UI (#22093)

commit b27447ef484b86d573e7ba60960df2f008df37d4
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 10 19:09:52 2021 +1200

    🔧 Enforce BLTouch settings (#22086)

commit c9a3ba99be5e45b880387aa28577c10a9875b459
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 10 02:05:04 2021 -0500

    🎨 Adjust some conditionals

commit 967942460ecfa952cd39b055cf9fd6cb968f51ea
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 8 19:55:27 2021 -0500

    ⚡️ Optimize Sensitive Pins array (except STM32) (#22080)

commit bfa257902ec4b0c96e642b4ee54f6e75de546255
Author: Kyle Repinski <MWisBest@users.noreply.github.com>
Date:   Tue Jun 8 18:56:16 2021 -0500

    🐛 Fix small/huge I2C EEPROM address (#22081)

commit 3f103c91f0e206bf3911bcc884d1dfaa8f2dd38b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 8 07:51:28 2021 -0500

    🎨 Laser Ammeter followup (#22079)

    Followup to #21835

commit 2fd9971f413bf4d34da5c3de9fc57c31ebcf6a4f
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Mon Jun 7 14:15:09 2021 -0500

    Add Laser Based I2C Ammeter Feature (#21835)

commit a3063a939243acefec606909ce8982fdabd848c4
Author: ellensp <ellensp@hotmail.com>
Date:   Tue Jun 8 07:09:12 2021 +1200

    expose hidden BLTOUCH setting changes (#22069)

commit d8a02bbbdba39e3fcc6519d7fa8ddbc36f4ea967
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sun Jun 6 22:26:42 2021 -0600

    🎨 Reorganize FTDI Touch UI variants (#22066)

commit 76d4a395d1a3d9d24f308ce6deb19c8767f04105
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 21:21:14 2021 +1200

    🩹 Fallback ID for MKS TS35 V2.0 (#22031)

commit c515bfb5fbb860d13daea84dfde6cb9d54662d20
Author: 7FM <41307817+7FM@users.noreply.github.com>
Date:   Sun Jun 6 09:56:24 2021 +0200

    👽️ Include <EEPROM.h> in STM32 (for now) (#22054)

commit 83430be580071acd35617e99f0fb23814993d04b
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 19:50:14 2021 +1200

    📦️ Malyan M200 with HAL/STM32 (#22052)

commit 9bd9f91722f9ae917a98bf8c148cadc84e885a6e
Author: George Fu <nailao_5918@163.com>
Date:   Sun Jun 6 14:37:52 2021 +0800

    📌 Update FYSETC E4 to espressif32@2.1.0 (#22049)

commit e6ef43e51a90e25ecbe24e766d32c046a9dbbdf3
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sun Jun 6 02:59:19 2021 -0300

    ⚰️ Remove obsolete CUSTOM_SPI_PINS (#22058)

commit 16bca67f2deaf1d53bd7c1d3515ffbfb01a65ef8
Author: ellensp <ellensp@hotmail.com>
Date:   Sun Jun 6 12:16:40 2021 +1200

    🔧 Check G29_RETRY_AND_RECOVER requirements (#21921)

commit d65eea550caf12edaa678bde375864060cc68713
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jun 5 17:08:10 2021 -0500

    🔧 FOAMCUTTER_XYUV moved to custom config

commit 46080b367af8fbdef0628fc21243fd115007a2b5
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Fri Jun 11 22:53:23 2021 +0200

    ✏️ Six Linear Axes followup (Fix M503) (#22112)

commit 317afae37c5927ec6c4e6118a9e4d64dd8b757e3
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Thu Jun 10 02:08:42 2021 -0600

    ✏️ Six Linear Axes followup (typos) (#22094)

commit 930a6082362c3bef59aee27d72f0611b72ccbded
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 9 10:43:39 2021 +1200

    🎨 IJK auto-allocation (#22075)

commit 6e3c45580ce415bb27774bc0b707fec7da54943b
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Mon Jun 7 06:23:23 2021 +0200

    ✏️ Six Linear Axes followup (Hybrid Threshold init) (#22068)

commit e3df7d7bc8188994cc49879da9556222db935252
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Sun Jun 6 08:30:39 2021 +0200

    ✏️ Followup to Six Linear Axes (#22056)

commit c1fca911036af3ca868caea7556a630044ae4a77
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Sat Jun 5 09:18:47 2021 +0200

    🏗️ Support for up to 6 linear axes (#19112)

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

commit d3c56a76e73f8e126f1cf579f552e671efa9005b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 20:23:37 2021 -0500

    ♻️ Patches for Zero Extruders (with TMC)

commit 4194cdda5bb01171b2523038d568de670a8f0461
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 24 16:38:57 2021 -0500

    ♻️ Refactor Linear / Logical / Distinct Axes (#21953)

    * More patches supporting EXTRUDERS 0
    * Extend types in prep for more axes

commit f5f999d7bf56c03fd95455902e75cff873139500
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Jun 4 23:35:05 2021 -0600

    📺 Fix and enhance FTDI EVE Touch UI (#22047)

commit b4b607681c19aff8c067f70c970f9ae755b1e059
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jun 4 21:56:18 2021 -0700

    ✨ BigTreeTech Octopus V1.1 (#22042)

commit 1e75eba27bd439d805d9de3e3c2194c2bfc3e42e
Author: ellensp <ellensp@hotmail.com>
Date:   Sat Jun 5 16:51:17 2021 +1200

    🐛 Fix STM3R / BEAST envs (#22028)

commit f3f3d202accf2c36e348c5e08fae82981d74c872
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sat Jun 5 01:49:00 2021 -0300

    📦️ STM32F103RE_btt(_USB) with HAL/STM32 (#22040)

commit c90fa530db2e6c98cfc8329ef36eda837b5ecc30
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 4 23:44:16 2021 -0500

    ✨ Update G34 for 4x Z steppers (#22039)

commit aeb8097cbc2b946cffe9813b5c8805c6943fd87d
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sat Jun 5 00:01:06 2021 -0400

    🐛 Fix M140 print job timer autostart (#22046)

commit 04bea727877c931777d69b718482630c40bd86fe
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Jun 5 03:02:37 2021 +0200

    🐛 Fix MMU compile with >5 EXTRUDERS (#22036)

commit ce95f56ac8755eff188001e12c88e01ae8e65f0e
Author: ldursw <37294448+ldursw@users.noreply.github.com>
Date:   Fri Jun 4 00:38:10 2021 -0300

    🔨 MKS Robin E3 for HAL/STM32 (#21927)

commit aff45fd455dd34f06f7211e0ff29d4f4dd93c7a8
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 3 03:23:10 2021 -0500

    ✏️ Remove whitespace

commit c8f28d9d0906261749f8beabc645503fadb0cbc9
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 3 20:10:04 2021 +1200

    🐛 Fix Creality v4 servo timer (#22021)

    Followup to #21999

commit f3697e5e02cd9debb170f69250a1ac37bc338852
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 3 17:51:22 2021 -0700

    🔨 Consolidate BTT linker scripts followup (#22038)

commit 557ba20ff4f57f0311f92e74b20a031c1ffb3520
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Jun 3 02:55:30 2021 -0500

    🔨 Consolidate BTT linker scripts

    Originally from #22022

commit dd0e5c26d15a188dca9f7c772f8058bffdda108c
Author: ellensp <ellensp@hotmail.com>
Date:   Thu Jun 3 19:40:16 2021 +1200

    🐛 Fix env:STM32F103RE maple/unified split-up (#22019)

    Followup to #21999

commit c9a3f41152d1cc5145993920f2594aef8e745089
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 17:09:47 2021 -0500

    📝 Update G61 comment

commit d13ffa0aba6e31095d08bd3ccbc1c970e1fb2a59
Author: ellensp <ellensp@hotmail.com>
Date:   Wed Jun 2 18:42:15 2021 +1200

    🔨 Creality v4 with STM32 HAL (#21999)

    - New STM32 env for Creality V4 boards.
    - Separate Libmaple targets into their own `ini` file.
    - Temporarily remove unusable targets from `pins.h`.

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

commit fb0be2960408c08de09ecba4253c65f50e01b275
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 23:24:20 2021 -0500

    🔨 Move FLY_MINI env to stm32f1.ini

commit 7ca155077503cb2c62bf5ed739f9c6a2280a1cd9
Author: hannesweisbach <hannesweisbach@users.noreply.github.com>
Date:   Wed Jun 2 06:20:47 2021 +0200

    ✨ TMC Driver distinct baudrates (#22008)

commit 665a71b471476b7eaebe910d4412c5f39f26932c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Jun 1 22:46:35 2021 -0500

    🔧 Treat TPARA like SCARA in mfconfig

commit 9268a4b28c485a2efeffccabab42defbd1c2cbaf
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Wed Jun 2 04:10:15 2021 +0200

    🌐 Update Slovak language (#22000)

commit 529bbfad10ca13a9d11af84302b7a92a14250d34
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Mon May 31 08:44:38 2021 +0200

    ⚗️ 32-bit float constants (STM32F1) (#21996)

commit e7945c227762a66840b0d9eb3c4aa9e40ff7641b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Jun 11 18:33:07 2021 -0500

    🐛 Fix Z endstop enum

    Followup to 92dea8e6cc

commit 5ee91c73ed17cbb49899a7d91fce9377fd6e4599
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jun 6 03:49:23 2021 -0500

    👷 Add caching to CI workflow

commit 2116e4202b064c6cafef70d54ed50edf00b79e44
Author: hannesweisbach <hannesweisbach@users.noreply.github.com>
Date:   Sat Jun 5 06:38:43 2021 +0200

    🐛 Fix Probe Temp Calibration compile (#22032)

commit 19521d16cd9838345f404196e62bf6a2e2719b39
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sat Jun 5 00:01:06 2021 -0400

    🐛 Fix M140 print job timer autostart (#22046)

commit 057302b93636f276e8fe188f3fbd23d087e68a00
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jun 3 18:52:25 2021 -0300

    👽️ Fix usb-host-msc-cdc-msc issue (#22025)

commit d62619c9c8e4e92ea8e1d0fdfdca923df1d94140
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 19:38:34 2021 -0500

    📌 Use U8glib-HAL@~0.4.5

commit 9c80a89597ceb397f079a2bae47c15f32a195165
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 15:34:31 2021 -0500

    🎨 Reorganize BTT_E3_RRF_IDEX_BOARD

commit 00834ef03dc9a58e7b2c1b1333276e0c65399a5f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Jun 2 15:34:03 2021 -0500

    🎨 Clean up stops, sdss pins

commit 5b7b065b96e6920171a50aace7e77ec8f735915d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat May 29 16:01:38 2021 -0500

    Marlin 2.0.8.2

commit a739af823f63bf5cfafb22a62d5f7b4d9ba4073e
Author: Timo <timo.birnschein@microforge.de>
Date:   Sat May 29 14:00:39 2021 -0700

    ✨ Malyan M180 (#21992)

commit 493eb446b74cdc7ab99315dfc129ecc86fbc343d
Author: Pascal de Bruijn <pmjdebruijn@pcode.nl>
Date:   Thu May 20 13:35:38 2021 +0200

    ✨ MEDIA_MENU_AT_TOP for MarlinUI (#21925)

commit 1b45b3802ac62c3b1e47213b847d9eb772ba1f4b
Author: charlespick <charles.pickering19@gmail.com>
Date:   Thu May 20 04:06:26 2021 -0700

    ✨ Independent baud rates (#21949)

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

commit 7898307d783f13e3d1947c61b3cc573f5973f69a
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Sat May 29 20:48:56 2021 +0200

    🌐 Update Polish language (#21993)

commit 8da8aa140fb7b57623144b222b5ff31816b2f84a
Author: ellensp <ellensp@hotmail.com>
Date:   Thu May 27 22:13:43 2021 +1200

    🥅 Add MESH_EDIT_MENU sanity check (#21922)

commit 4572af2bce25fc4959746f1088981c410cafee1b
Author: Andy Barratt <mail@andybarratt.co.uk>
Date:   Thu May 27 03:07:13 2021 +0100

    🚸 cap:HOST_ACTION_COMMANDS (#21987)

commit 6dc17f0e6ea3b88f109d683a4b223d6a733ad1e5
Author: Allen Bauer <kylix.rd@gmail.com>
Date:   Tue May 25 17:08:10 2021 -0700

    🐛 Fix BTT002 variant MMU2 serial pins 🧩 (#21980)

commit 3fcf3f69ca495722b0f47a69435e033f8895ae82
Author: ellensp <ellensp@hotmail.com>
Date:   Wed May 26 11:38:23 2021 +1200

    ♻️ LEDs refactor and extend (#21962)

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

commit a9fd2769f3f26e7e61a908a0ef2c079f1d06baab
Author: LawnMo <81721212+LawnMo@users.noreply.github.com>
Date:   Tue May 25 00:53:48 2021 +0200

    🩹 Fix multi_volume + SDIO onboard compile (#21975)

commit 9adaf92674751542e76e31738d2915992c57a40f
Author: LawnMo <81721212+LawnMo@users.noreply.github.com>
Date:   Mon May 24 09:21:21 2021 +0200

    🩹 Improved SKR2 12864 LCD Delays (#21956)

commit e75c3b6c54e9e8b4b48009a0ccc58ed7069f612a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 23 21:33:22 2021 -0500

    🎨 Macros for optional arguments (#21969)

commit 61f2bb122844aa0607f6d53aa37f843123931af6
Author: ellensp <ellensp@hotmail.com>
Date:   Mon May 24 13:29:19 2021 +1200

    ⚡️ PIO filters for M117, M300 and M414 (#21972)

commit d1502f74eaae94b6bff61b45c8481db39956ac2b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 17:56:31 2021 -0500

    🎨 Null heating message method

commit 83f9413196fbb842764eba33a975cec8d524e973
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 17:41:29 2021 -0500

    🐛 Fix Selena Compact probe pin

commit cdc3e18d994f120219ec8683246a81ac31cca75b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri May 28 19:47:06 2021 -0500

    Use another PR close action

commit 55a6315862cfafccfc939cf1b1f064f748c82d54
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date:   Mon May 24 14:57:45 2021 +0800

    🐛 Fix Octopus HS USB (#21961)

commit cf447a54428345903fe9f4c9497a4f32dfa72b08
Author: gjdodd <31553294+gjdodd@users.noreply.github.com>
Date:   Mon May 24 07:54:10 2021 +0100

    🐛 Fix flowmeter calculation (#21959)

commit 7597b4fb40a6e936267a57c74264fcf6c5bd1fc5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 21:12:53 2021 -0500

    🎨 Apply shorthand and cleanups

commit 7cd0f2a32aef86b361e9bef7ec3c30a944b7d153
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 21:08:57 2021 -0500

    🎨 pause => pause_heaters

commit 4dae5890e99c73686b7e1ee08857487a0acfeb28
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun May 23 01:09:46 2021 -0500

    ♻️ Refactor, comment endstop/probe enums

commit 738ae4be331b8d580cb22b7ec6e33ab095e3e81c
Author: Danol <czdanol@gmail.com>
Date:   Sun May 23 00:35:07 2021 +0200

    🐛 Fix wrong Z_ENDSTOP flag bit (#21963)

    Bug introduced in #18424

commit e5736110216893362937b70472e7da2c3859a28c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat May 22 17:02:21 2021 -0500

    🎨 Combine M104/M109 and M140/M190 code

commit f60965a1078fec01c6bc0f438c4e019547253d5e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 23:03:49 2021 -0500

    📝 Update ExtUI example

commit 3995e8373c88fce34d9a524686302ec132f0d2e3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 22:55:13 2021 -0500

    🎨 Shorten lcd relative paths

commit ddc82b84e25e981d12bab0d74af95b1e0476248b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 22:45:54 2021 -0500

    📝 Document diveToFile, printListing

commit 87a943756a36fe7f1e3422868dcfa35d5dd54518
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 08:23:09 2021 -0500

    🎨 Move HAS_EXTRUDERS

commit 8e28731f96d3f2a8dd5d1bb8262eafddc7e0aa05
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 08:24:38 2021 -0500

    🎨 Update a condition

commit cdbd438a041427580eaea0a9fbe570864aed70d0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 08:25:54 2021 -0500

    🎨 Rename all/no axis enums

commit 3220c49f1be88f8ee2845e5a01a6132eba966208
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 21 00:26:54 2021 -0500

    Add a test for SAVED_POSITIONS

commit 94e67a036a614f5f43bf2e79d26c9d62a2ffb505
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu May 20 21:47:05 2021 -0500

    🐛 Fix compile with PREVENT_COLD_EXTRUSION off

commit c977e820743a6589b0c82159473b36e60fae7254
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu May 20 17:12:18 2021 -0500

    🎨 MULTI_MANUAL => MULTI_E_MANUAL

commit 9878a5ab5883f2b3112c1f67ab392538afd7520f
Author: Moonglow <fxdteam@gmail.com>
Date:   Thu May 20 14:09:10 2021 +0300

    🐛 Fix Toshiba FlashAir (SDCARD_COMMANDS_SPLIT) (#21944)

commit 2de914c38ce373f37c925b20af270a2e4c647356
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed May 19 23:07:09 2021 -0500

    🎨 Move switch sensor strings

commit 49b05ba9891bc7add47d32a9ca947fe7eb9f4555
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed May 19 00:21:34 2021 -0500

    🎨 Flags for homing directions

commit 85fa8c55c9415ec044a96eedc800fedfa6b02439
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 23:30:49 2021 -0500

    🐛 Fix DELTA with SENSORLESS_PROBING

commit 57eef65d9cabb6b7cc4c7937c8a9a095fc39313b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:56:05 2021 -0500

    ♻️ Refactor axis homing/trusted state bits

commit 894c954e8f2e56e7a556a71200c8465ba3507deb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:53:52 2021 -0500

    ♻️ Minimize endstop bits

commit 046bac67693ec00ff2d2adf00aabe5cd396963c6
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:52:41 2021 -0500

    ✅ Fix tests for EXTRUDERS 0

commit 765720e98ba3cc970e42f8bf730da056c59ac2fe
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:52:10 2021 -0500

    ♻️ Simplify TMC utilities for more axes

commit 26a244325b48e5cf3e23518f9cd895491305050e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:51:19 2021 -0500

    ♻️ Refactor axis counts and loops

commit f7d28ce1d6d17621f86fd179770645723e5ae272
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue May 18 22:46:59 2021 -0500

    🎨 Misc cleanup and fixes

commit c85633b47f0b3c92055e725b9162acdeebd1ef79
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 17 21:17:22 2021 -0500

    🎨 Use defined strings

commit 6861b1ec827b30a4493099ebee1e49adbb48e8a5
Author: Alvaro Segura Del Barco <alvarosb@gmail.com>
Date:   Sat May 22 14:52:41 2021 -0600

    🐛 Fix Teensy PINS_DEBUGGING compile (#21958)

    Followup to 84a11cfedc

commit 003cb20b9fcf98bd80501d20634b41863ebf4dee
Author: Roger D. Winans <solvaholic@users.noreply.github.com>
Date:   Sat May 22 00:14:25 2021 -0400

    📝 Add Configurations section to README (#21955)

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

commit f1f622de01780418a3fe510f3f9be7237372831e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed May 19 22:02:28 2021 -0500

    Fix 'G29 K' value

commit dbb8f3db090e234ab17df986ccb29d2b4e7a4361
Author: ellensp <ellensp@hotmail.com>
Date:   Tue May 18 14:16:47 2021 +1200

    Fix EEPROM_CHITCHAT (#21934)

    Fix #21929

commit 5d7c72db5a57086e721ce0370c7a4ac75a47a978
Author: ellensp <ellensp@hotmail.com>
Date:   Tue May 18 11:22:33 2021 +1200

    Fix envs using mks_encrypt.py (#21933)

    Fix #21928

commit 755adb8973aa69ca6f0832e606060eaca065b88c
Author: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat May 15 18:33:10 2021 -0700

    Update Configurations URL (2.0.8.1)

commit 09774291384c8f301dffa274cf08ddd199b17c31
Author: ekef <62036680+ekef@users.noreply.github.com>
Date:   Sun May 16 02:22:30 2021 +0300

    Fix MKS Robin E3 BLTOUCH and Fan PWM timer conflicts (#21889)

commit 1dfa6cbc809d93a685c75f8b88ee3b9173aaeaa9
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat May 15 14:56:27 2021 -0500

    Marlin 2.0.8.1

commit e3998dc3dfae6bb52851374b3ba2e61cc3bc6661
Author: Luu Lac <45380455+shitcreek@users.noreply.github.com>
Date:   Sat May 15 15:02:20 2021 -0500

    M154 Position Auto-Report (#18427)

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

commit b6e1838fa6e905bcc4beab665d1e69b4eb35bce9
Author: Moonglow <fxdteam@gmail.com>
Date:   Sat May 15 06:30:16 2021 +0300

    Fix MKS UI missing font select condition (#21905)

commit 908caba7353cc321736cdf3fab61ea58163ee87e
Author: ondrada <82547068+ondrada@users.noreply.github.com>
Date:   Sat May 15 05:29:17 2021 +0200

    Fix G29_RETRY_AND_RECOVER dependency (#21907)

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

commit 121f3b1096bf0fcc0317df842a389a7f8afc2e3e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 14 00:17:04 2021 -0500

    🐛 Fix RR collision with MM (#21902)

commit 9e373617dc599130daf7b0204c5281237a6cc590
Author: Jamie <vector76@users.noreply.github.com>
Date:   Fri May 14 00:14:13 2021 -0500

    ✨ Instant Freeze/Resume Function (#17462)

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

commit 5298fa357c18c8bceb9552bcc4fd7543ee21b70f
Author: ellensp <ellensp@hotmail.com>
Date:   Fri May 14 08:19:12 2021 +1200

    Fix nextion compile error  (#21884)

commit 2c15bc5d3971571ad6e19e82436d2b8bd6f7f1d5
Author: Alexander D. Kanevskiy <kad@kad.name>
Date:   Thu May 13 23:10:48 2021 +0300

    Fix …
thinkyhead added a commit that referenced this pull request Feb 10, 2022
Fix regression in #21953

Co-authored-by: Scott Lahteine <github@thinkyhead.com>
thinkyhead added a commit that referenced this pull request Feb 10, 2022
Fix regression in #21953

Co-authored-by: Scott Lahteine <github@thinkyhead.com>
thinkyhead added a commit that referenced this pull request Feb 10, 2022
Fix regression in #21953

Co-authored-by: Scott Lahteine <github@thinkyhead.com>
thinkyhead added a commit that referenced this pull request Feb 10, 2022
Fix regression in #21953

Co-authored-by: Scott Lahteine <github@thinkyhead.com>
DalBartos added a commit to DalBartos/Marlin that referenced this pull request Mar 5, 2022
commit b9cef2e2e3ec4131d785c084e658e669f59b28ce
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Mar 4 15:18:27 2022 -0600

    🚸 12345.6 num-to-string

commit 186d2ba6b4420b41ae977cad4028a37b57030ceb
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Feb 18 13:37:22 2022 +1300

    🐛 Fix HAS_TMC26X feature path (#23757)

commit 4dfd398d7ddc32e61457989d4156418c57c6e5d7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 17 14:41:56 2022 -0600

    🐛 Patch Creality RAMPS FET / FAN pins

    Improvement for multi-hotend setup by TH3D.

commit bfdb7c71358bb787a6b8d2a9e4948ad19fac93db
Author: Giuseppe499 <giuseppe499@live.it>
Date:   Tue Feb 15 20:21:05 2022 +0100

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

commit bf067738f2faea96717b3810efb001348dba9bfa
Author: Mads Ynddal <5528170+Baekalfen@users.noreply.github.com>
Date:   Thu Feb 10 18:58:36 2022 +0100

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

    Fix regression in #21953

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

commit e028a3c44194518aa9fab1148a102f12407bf0f9
Author: Maeyanie <me@maeyanie.com>
Date:   Tue Feb 1 18:27:14 2022 -0500

    🐛 Fix M852 report (#23660)

commit 9847470b387c43b16713f5854b2dfd7b334bd31e
Author: Timothy Hoogland <timothy@hoogland.email>
Date:   Mon Jan 31 14:02:07 2022 -0600

    🐛 Fix EZBoard V2 Environment for OpenBLT (#23659)

commit 51209667a5dae1206ed38b8966c1783f7a41e466
Author: Timothy Hoogland <timothy@hoogland.email>
Date:   Sun Jan 30 05:26:37 2022 -0600

    🐛 Fix EZBoard V2 timer conflict (#23648)

commit db4172b5fa05e818f42427001398db5f13d13024
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jan 16 00:54:53 2022 -0600

    🔨 Prevent two [cron] in a row

commit 242192d03de4af3dcd208dbcc4c1d609a25bce64
Author: Jim Watson <j-watson@ntlworld.com>
Date:   Wed Jan 12 16:13:21 2022 +0000

    🐛 Fix SHOW_REMAINING_TIME compile (#23503)

commit 7135c3b1854b6988dfb4c27a10438b2e283f17b5
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Jan 13 04:57:36 2022 +1300

    🚑️ Fix M105 regression (#23505)

    Fixes #23504

commit c91d033b5d398d704036125bfddb6c3c59c18b57
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Jan 13 04:53:36 2022 +1300

    🐛 Fix Arduino build issues (#23510)

commit 0470fbe0a1751da06a3a407f9816fe5f589b48df
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 12 09:41:51 2022 -0600

    🧑‍💻 Move PB0 init for MKS_ROBIN_NANO

commit eb8d8193253bf3349ed415eb45122ba9f3f52850
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Jan 10 02:51:34 2022 -0600

    🧑‍💻 Fewer string macros

commit 41f80a449822934df5d874b9cd66df1fd521a121
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Mon Jan 10 09:44:16 2022 +0100

    🚸 Include extra axes in position report (#23490)

commit e0f75d4f069b80ec78ee911377861aa5e77f2a14
Author: David Ross Smith <5095074+DragRedSim@users.noreply.github.com>
Date:   Fri Jan 7 22:44:44 2022 +1100

    🚑️ Fix preheat target bug

    Fixes Jyers/Marlin#1651

commit 42449b86838ac727eb9c261601f206f1b1f2afcb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jan 9 04:39:15 2022 -0600

    🌐 Update auto home axis strings

commit e23c696566a2148e41ff6e019b3b5a182df7de20
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Sun Jan 9 10:51:16 2022 +0100

    🌐 Update Slovak language (#23475)

commit 035f9b8e134b340403a75723119eb791d65fea92
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jan 9 03:48:17 2022 -0600

    🔨 Rename (not copy) with board_build.rename

commit 49f8171f7a541a8b321e1fb3aa3510cfa8eb31d7
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Sun Jan 9 03:37:09 2022 -0500

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

commit 75d0e94d5b3d29abc2d450a5369031b9b396c14c
Author: ClockeNessMnstr <locke.dftc@gmail.com>
Date:   Sat Jan 8 15:09:25 2022 -0500

    🚸 Do G34 "Z Backoff" at full current

commit 915f610782df36ef241b8c207ea799d8b206aa15
Author: jdegenstein <jdegenstein@users.noreply.github.com>
Date:   Thu Jan 6 19:03:02 2022 -0600

    📌 LCD_FOR_MELZI for BTT E3 RRF (#23453)

commit 2231e00b2c1acd53449ece7a22f131e40216da8f
Author: Lefteris Garyfalakis <46350667+lefterisgar@users.noreply.github.com>
Date:   Thu Jan 6 13:30:41 2022 +0200

    🌐 Localize E3V2 Enhanced UI (#23424)

commit 63f2b153967218a15355eb0a179dca579a3d1269
Author: Anson Liu <ansonl@users.noreply.github.com>
Date:   Thu Jan 6 06:26:12 2022 -0500

    📺 Tune ULTI_CONTROLLER encoder, enable PCA9632 (#23461)

commit f503722c4556631745f35b9ae86d6d3c0c112a77
Author: Kyle Hu <kyle.hu.gz@gmail.com>
Date:   Thu Jan 6 15:54:04 2022 +0800

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

commit 4fd1de7fb7185728d357a155c86fafe438398e78
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Wed Jan 5 06:14:40 2022 -0600

    🐛 Define required endstop enums (#23425)

commit 93126c0d0259dcabb09ab26cb237dacb4699cb7e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 5 01:48:18 2022 -0600

    🔨 Strip CR in mftest > awk

commit 80f77ea807f28086f143457d0c4bb7e8065906c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 5 01:52:02 2022 -0600

    🐛 Fix strlen_P parameter error

    Fixes #23447

commit 9ff8220b8a455e6d1273fb7ecd5bd868904ebe70
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 3 09:18:10 2022 -0600

    🩹 Fix RADDS+RRD encoder button

commit 775486028921d675bda4ea57e4fff4e7a6717c26
Author: hwmland <12407423+hwmland@users.noreply.github.com>
Date:   Mon Jan 3 06:54:12 2022 +0100

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

commit 4efe4788afb6846aa4a17851a838e295f8375940
Author: Jason Smith <jason.inet@gmail.com>
Date:   Sun Jan 2 21:27:22 2022 -0800

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

commit 2faf4e2a99d513bed690c910d3c448d14d3c9df3
Author: Jason Smith <jason.inet@gmail.com>
Date:   Sun Jan 2 19:17:19 2022 -0800

    💚 Fix Teensy CI test (#23433)

commit 9956e6267474c915c649ea3ad5d58791ac6e6fdc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 2 09:22:36 2022 -0600

    🧑‍💻 Apply axis conditionals

commit a732427329e81be0cf9a7d10b38d52722a27af8e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 2 09:22:06 2022 -0600

    🚨 Fix M906 warning

commit 974883d2f6e4484dfb19e17e2d216740f166dd45
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Sun Jan 2 02:23:55 2022 -0600

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

commit 1170ed995e1e92737ff4df2147f0e714d5c568cb
Author: Jason Smith <jason.inet@gmail.com>
Date:   Sun Jan 2 00:19:10 2022 -0800

    🔧 Update deprecated auto_build.py (#23427)

commit 24f9c3a777a95dbc1854bd2b25a85770895f20fb
Author: Johannes Hörmann <johannes.hoermann@t-online.de>
Date:   Sun Jan 2 06:46:55 2022 +0100

    🔨 Upload to Optiboot at 115200 (#23403)

commit 5ec384f40caf16c2e92e992e83d70e243abaa786
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 1 22:54:27 2022 -0600

    ✨ M919 : Chopper Timing (#23400)

commit 6d7ffa6add0b2a845bfe548f8597ad9b5b39b974
Author: Jason Smith <jason.inet@gmail.com>
Date:   Fri Dec 31 12:32:28 2021 -0800

    🔧 Only warn about enabled CONFIGURATION_EMBEDDING (#23408)

commit dadd7516b5b7e56a379f838e76fd4a1c9fa547c6
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Dec 31 07:42:07 2021 -0600

    🚑️ Fix thermal conditionals, structure

commit f99732ba752e792bffd25ece8c72bc547a23b24e
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Fri Dec 31 15:22:49 2021 +0700

    🔧 DWIN_MARLINUI sanity checks (#23399)

commit 5a9635aa586a41966f95966f412297fff4757ff7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 29 04:17:41 2021 -0600

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

commit 1552c6d2a5713075d01b98036a6fe7fb6ad9c827
Author: Lefteris Garyfalakis <46350667+lefterisgar@users.noreply.github.com>
Date:   Wed Dec 29 05:22:01 2021 +0200

    🎨 E3V2 corner leveling => tramming (#23375)

commit 06c2ed3c996965b79520d733b668d08437ab5468
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Tue Dec 28 00:23:50 2021 -0500

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

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

commit 430c5da54c46c03c67afe53cf325880e27e93b89
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 28 18:29:05 2021 -0600

    🚚 Rename L6470 G-code file

commit 5b9f3bd4b1079244cc88a68587398bfcc600eeef
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 28 02:57:24 2021 -0600

    🧑‍💻 Remove extraneous 'inline' hints

commit ccc66a8528a8ae318692c0c9a8032a9d3bfc7e37
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 21 22:15:48 2021 -0600

    🎨 Misc. cleanup

commit 8abe314b180b472c53968a7347018fd0803a09cb
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Jan 9 01:06:19 2022 -0600

    🔨 Get FIRMWARE_BIN from env

commit dc470eb10f3141187abc89c29e665e32756af03b
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Sun Jan 9 02:29:36 2022 -0500

    🐛 Fix EEPROM_INIT_NOW build hash test (#23479)

commit 4c5e57ae89dcc4cf04d0893e435c2b45e6c3237a
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Sun Jan 9 02:24:56 2022 -0500

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

commit 5d7328df469053240eeae32426d0669977f94119
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 28 05:02:40 2021 -0600

    🧑‍💻 Add AXIS_COLLISION to catch broken parameters

    \

commit 99c237e05e5090d56ef22961b0af4b7858a4af47
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 28 05:43:10 2021 -0600

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

commit 56adbc3ebf3ccb5ac1df1fd40620002a2c405e51
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 27 20:52:43 2021 -0600

    📝 Consistent pin header orientation

commit 4cfe812c1816345c468769a1cf19ada39fb99fd2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 27 17:40:53 2021 -0600

    📌 Define MKS Monster8 pins for MKS_MINI_12864

    Fixes #23324

commit 27d2471ea3f2bfb9b3b00028cc165d44a5b4e429
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 27 14:28:59 2021 -0600

    🐛 Fix mffp usage

commit 61b9248c35113943ff299bfb647ff1bf0f48fff8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 26 03:20:29 2021 -0600

    🎨 Pins and SDIO cleanup

commit c9561a88261afd14d9c013d2096e14e319c363a5
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Sun Dec 26 09:46:13 2021 +0300

    🔧 Check Chiron LCD requirements (#23353)

    Co-Authored-By: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>

commit 58c84f17baa2f8291b475854d19e9f117a60bcb1
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Dec 29 03:41:28 2021 -0600

    🎨 Simplify some debug echos

commit 73b8320e9caac23873169c8e10344f2f8060b389
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jan 1 20:01:24 2022 -0600

    🔨 Add .vscode/extensions.json

commit 1c3f2498b1c47dcaf1f15f2058c90d7107c87311
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Dec 30 20:35:22 2021 +1300

    🐛 Fix RRW Keypad & Zonestar buttons (#23388)

commit 4202baa409f7b8a5ef22ef3541216919462205b0
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Thu Dec 30 05:37:07 2021 +0100

    🩹 Fix Enhanced UI max E speed (#23387)

commit f471eab1a2834c4e65477d978ea9f0349542b302
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 25 22:13:20 2021 -0600

    🔖 Marlin 2.0.9.3

commit 9b13ae239953df3b00ad18a241e001723c3f4756
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Dec 25 19:41:01 2021 -0800

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

commit 06f36dc7467f0053767f307a18933df556074d99
Author: kaidegit <60053077+kaidegit@users.noreply.github.com>
Date:   Sun Dec 26 10:12:20 2021 +0800

    🐛 Fix open for bin rename (#23351)

commit 98eca9cb23084f0c21ae85b382e6f473eb40ebbf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 25 03:27:45 2021 -0600

    🔧 Move MOTHERBOARD closer to top

commit 626879500388c4a203022c5fc03c32d5a8281348
Author: fflosi <34758322+fflosi@users.noreply.github.com>
Date:   Sat Dec 25 05:57:07 2021 -0300

    ✨ Per-axis TMC hold multiplier (#23345)

commit b4f0922a7caea03b3c3315d48d86109bcc84c4be
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Fri Dec 24 14:03:32 2021 +0800

    ✨ MKS TinyBee board support (#23340)

    Co-Authored-By: Sola <42537573+solawc@users.noreply.github.com>

commit aef613acd394d72d17cda8b431bcfcc2165c9608
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Thu Dec 23 15:19:39 2021 +0700

    🔧 Group FAST_PWM_FAN.options (#23331)

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

commit 9ecfa1d2528a57eaa71a25acaac3e87fb45e0eb1
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Tue Dec 21 23:09:55 2021 -0500

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

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

commit e0bed1e344946154cc94cb58fbca281b360ee4a9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Dec 22 15:44:04 2021 +1300

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

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

commit d21fa25ab8c369ff800e0451c75fe9f9e6134878
Author: Spencer Owen <owenspencer@gmail.com>
Date:   Sat Dec 18 18:58:46 2021 -0700

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

commit 0dc1a58b241217899c88945ea8f6f8dc8f39470e
Author: X-Ryl669 <boite.pour.spam@gmail.com>
Date:   Tue Dec 14 07:22:06 2021 +0100

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

commit f2ca70e2328c3158d54c302dca310bf2ed5d465d
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date:   Wed Dec 8 20:55:09 2021 +0200

    🐛 Fix and improve MAX31865 (#23215)

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

commit a6bed228391afe290e8fe4181f624f21dd461b73
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date:   Sat Dec 11 03:38:03 2021 +0800

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

commit efd67cf80d1eebd1470bd7c8b822e9103d70e778
Author: Giuseppe499 <giuseppe499@live.it>
Date:   Tue Dec 7 02:53:51 2021 +0100

    ✨ X Twist Compensation & Calibration (#23238)

commit 15204470a8da2b579dab029cf8bdf6038914e462
Author: ladismrkolj <ladismrkolj@gmail.com>
Date:   Sun Dec 5 22:41:39 2021 +0100

    🔧 Chamber Fan index option (#23262)

commit 48358d6a5c4eccb4dd1b4d141c38cf45304b4df7
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Fri Dec 3 12:48:48 2021 -0600

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

commit d7abb891cd91ef991234784a0b707346ac34e53a
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Dec 3 19:31:48 2021 +0100

    🏗️ Rework STM32 timer frequency protection (#23187)

commit 52a44eb200b8e14d7738565f50888d34cc5200f0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 30 15:04:05 2021 -0600

    🐛 Fix STM32 FastPWM

commit 9b1c0a75e18faf754a55ec324ac327ba2a25819f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Nov 27 18:33:32 2021 -0600

    🎨 Rename HAL timer elements

commit d75e7784e50dad2b9f598ef559958e9015e64550
Author: schmttc <89831403+schmttc@users.noreply.github.com>
Date:   Wed Nov 24 08:52:18 2021 +1100

    ✨ EasyThreeD ET4000+ board and UI (#23080)

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

commit 0e60c8b7e04a6cd2758108bcc80f2ab57deec23c
Author: John Robertson <john@cirtech.co.uk>
Date:   Tue Nov 23 21:24:24 2021 +0000

    ✨ MarkForged YX kinematics (#23163)

commit 018c7b1cf4d3b2b54287f61b478e813041c1c661
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Nov 21 11:25:06 2021 -0800

    ✨ BigTreeTech Mini 12864 V1.0 (#23130)

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

commit af1d603374a34cfc2d8b34fce269a0a6683d7c68
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Nov 23 21:01:53 2021 +0100

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

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

commit 884308f964ddb92c1371bc9ec96e587ef04336e0
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Nov 16 08:54:30 2021 -0600

    🔧 SOUND_MENU_ITEM for E3V2

commit 7269990413a630b134f3e990fe188c522659dca9
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Wed Nov 10 11:31:35 2021 -0500

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

commit 2a90d93b17c1014f6a29b0ecc015c7fbc469fbdc
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Nov 17 09:33:42 2021 -0800

    📌 Overridable probe-related pins (#23107)

commit 6e284f882388d314517544b6c2e46f7cff7c99e8
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date:   Wed Nov 10 23:56:10 2021 +0800

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

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

commit a2349fc411321ae4ff2bb286af04bb7543963c72
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 24 23:47:52 2021 -0600

    🔨 Configurable firmware bin filename

    Configuration.h > FIRMWARE_BIN

commit a3964b2b40f97507edb7b25ea4c47b37db2a1aaa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 24 20:59:28 2021 -0600

    🔨 Ignore more generated files

commit 226ee7c1f3e1b8f88759a1dc49f329ab9afb3270
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 24 01:46:51 2021 -0600

    🔧 Sanity check MMU2_MENUS

commit 2c12171f46488a31cb5d4d78868892ad2918e298
Author: Attila BODY <attila.body@gmail.com>
Date:   Fri Dec 24 06:57:20 2021 +0100

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

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

commit d034a9c295c787ee06c76d65ce61f34cb9f0a795
Author: MrAlvin <umo-testing@3iii.dk>
Date:   Thu Dec 23 10:47:52 2021 +0100

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

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

commit d2c7104bb37ca7e10622dfe1e1f0a6e5c3d23240
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Wed Dec 15 07:51:19 2021 +0700

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

commit 570c7e86380adb2071a94a433dc6babf6c8f9e32
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Dec 22 13:48:38 2021 +1300

    🐛 Fix Chitu Z_STOP_PIN (#23330)

commit cc4578a3d33b67268d26255139eceff1c805ec52
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Dec 23 07:49:15 2021 +0100

    🩹 Fix settings G21 report (#23338)

commit 1db84be66aee65ca120b6f9d3203ac0e19699c30
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Tue Dec 21 01:26:31 2021 -0600

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

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

commit 77c9668fe2b897ee142539a0124f359fcb8de070
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 14 19:25:28 2021 +1300

    🐛 Fix LCD_BED_LEVELING compile (#23298)

commit 22cf9b444e9185ef173ebf145f3bb9207d266ec4
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Mon Dec 20 09:44:43 2021 +0100

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

commit 97798d1e47d2211827cccadc31f61b59e0e9e667
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 8 01:33:49 2021 -0500

    🎨 Update SKR V2 pins

commit f4b808456ac5b2ce55329a2ad8db00b6cc9510cb
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Dec 14 01:47:57 2021 +0100

    🚸 Use M600 for disabled MMU (#21865)

commit 62647369681c3449c7f3ee31d4f4d2da6f3ada9c
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Tue Dec 14 01:41:21 2021 +0100

    🐛 Fix TFT_COLOR_UI Release Media issue (#23123)

commit 7a5f103bcf6c3387ab832d64244e252a16e230a6
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date:   Sat Dec 18 01:31:10 2021 +0200

    🔧 Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)

commit 1a8307b196ce5ed791b8f9bf8acfb50a797e45a9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 18 17:38:29 2021 -0600

    📝 Fix a config comment

commit 13a1c86ae832274026e8b3a4031bc28a6fca2db9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 14 13:18:24 2021 +1300

    ✨ M115 flag EXTENDED_M20 (#22941)

commit 15656201d281842b9f9101133529a76738b76cdd
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 14 13:13:34 2021 +1300

    ✏️ Clean up duplicate defs (#23182)

commit f3e372cb4c849bbd77cec949f5fbd632bf84efed
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Tue Dec 14 07:11:52 2021 +0700

    🩹 Init fan speed at boot (#23181)

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

commit c781ecc437e27f5efd438a9f2d92bf8b7be3a299
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 13 16:15:46 2021 -0600

    🔧 Fix unknown board test

commit daa8fff6c630da27bed2df7bd30c38e7e359c0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 12 16:16:40 2021 -0600

    🩹 SD abort requires open file

    See #22566

commit d481bba3275bc9c7fb4a88fac3eb66727d73f504
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 12 11:06:45 2021 +1300

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

commit 32b08ae04cdeef3362a92ee9c1d56787b0792b4c
Author: Scott Alfter <scott@alfter.us>
Date:   Wed Dec 8 23:18:04 2021 -0800

    Fix Endstops::report_states (#23280)

    Fix regression 4d45fdf0eb

commit f00a0356c7fd9708ebabd4e5a25df0a3d6dd35f6
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Dec 8 18:36:08 2021 -0600

    🎨 Misc. probe / endstop cleanup

commit 9871800874edf7e33233ba853735708f823e13a7
Author: Sola <42537573+solawc@users.noreply.github.com>
Date:   Thu Dec 9 03:37:45 2021 +0800

    🐛 Fix MKS LVGL UI retraction (#23267)

commit 39c2c038be51cd1bfc9cd963baf68307c28f542c
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Thu Dec 9 02:15:31 2021 +0700

    🩹 Coerce pin_t in set_pwm_duty macros (#23273)

commit 285d6488a369bd189073fae1cdfea5818a5f2275
Author: Jason Smith <jason.inet@gmail.com>
Date:   Wed Dec 8 11:10:37 2021 -0800

    🐛 Fix ACTION_ITEM with nullptr (#23195)

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

commit eecbd09a460d255594f418078ce5f96e9e688008
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Thu Dec 9 01:57:50 2021 +0700

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

commit 8d4e4ac11530ba2576244f69802e35485ed05863
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 8 12:40:23 2021 -0600

    🎨 Rename MAX31865 elements

commit b77a5d4c8d9b90bdd870ed9590e3f2538f34b8c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 6 20:18:50 2021 -0600

    ✏️ MAX31856 => MAX31865

commit c3b8b3e7e6b3571d3d01f2bb1e4298c25d71d051
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Mon Dec 6 15:52:18 2021 -0600

    🩹 Fix non-PWM cutter compile (#23169)

commit 7123b15801779efb2dfb9bbc932b7d665a708868
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date:   Mon Dec 6 21:40:18 2021 +0000

    🐛 Fix TWIBus Wire.begin call (#23183)

commit 8a2f13d657cb881b7e0365dd0a28b233125d433c
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Sun Dec 5 22:18:02 2021 +0000

    🐛 HAL_reboot for native HAL (#23246)

commit 251d9fc1d741132f3baa1a7c9c9ead25a65af3c7
Author: tommywienert <53783769+tommywienert@users.noreply.github.com>
Date:   Sun Dec 5 23:16:23 2021 +0100

    🐛 Fix env:chitu_f103 (#23225)

commit 5eeb9650b5bbaeb2a07436d0e9cc5036dc518723
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Dec 6 10:42:56 2021 +1300

    📌 More Longer3D LKx Pro serial tests  (#23260)

commit c0addd1d33017e97117ffab1e3145a55750fd2c4
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date:   Sat Dec 4 23:44:10 2021 +0000

    ✨ M3426 to read i2c MCP3426 ADC (#23184)

commit 05b57278d43fb1bcf7165dae88643dbac2ff7e8d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Dec 4 17:17:10 2021 -0600

    🔧 Cutter pins for SKR 2.0

commit aa3ec2fbfda25381eb4effb65471f206511a823d
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Sun Dec 5 05:14:19 2021 +0700

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

commit 4468516aa29b1319e8d296880ebf395a2e7e1d09
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 5 11:10:29 2021 +1300

    ✨ BigTree SKR 2 with F429 (#23177)

commit 95d006b4061f15b8a7edfd62ad4760994b28610f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Dec 4 09:48:54 2021 +1300

    🐛 Fix TIMER_TONE for ZM3E4 (#23212)

commit 5b057b4bcfeec871830bab9c6a15bf1e52e53c62
Author: Jiri Jirus <jiri.jirus@cloudaper.com>
Date:   Tue Nov 30 21:46:48 2021 +0100

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

commit 77af48e5479eb0840977fc6ad16f1b8ad651efd4
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Nov 30 13:03:31 2021 -0600

    🐛 Fix STM32 FastPWM

commit 0f7f709aad290285f10d6bed733f783dee6c324c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Nov 27 14:59:32 2021 -0800

    ✏️ Fix Unicode (#23186)

commit a8c0e11cb143cb40637349cccdcc89282382f3d7
Author: Jason Smith <jason.inet@gmail.com>
Date:   Sat Nov 27 13:54:39 2021 -0800

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

commit 0556da85b0d1aa9dee1fa229296270468cb13180
Author: Anson Liu <ansonl@users.noreply.github.com>
Date:   Sat Nov 27 17:58:05 2021 -0500

    🩹 UM2 extruder cooling fan on PJ6 (#23194)

commit 93652e5c6fc4d4f141bdc524e01144ef7c6221dd
Author: George Fu <nailao_5918@163.com>
Date:   Sun Nov 28 03:26:53 2021 +0800

    ✨  FYSETC Spider v2.2 (#23208)

commit f3fc1d15a3f7a77e36ce9e072c72bfae127f57d9
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Nov 23 22:33:33 2021 +0100

    🩹 Fix include path (#23150)

commit 3148060550eee847ec9d20eedf6bc890c9f4e12a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Nov 23 13:54:31 2021 -0800

    📌 Biqu BX temporary framework workaround (#23131)

commit 5f08864d1fa8146bc909f3b79daa0bf026e94c6b
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Tue Nov 23 14:05:50 2021 -0600

    🐛 Fix STM32 set_pwm_duty (#23125)

commit 184fc36a088204a1a6d98afbf3e05f24670e2e77
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sun Nov 21 20:13:01 2021 +0100

    🐛 Fix TFT backlight sleep/wake (#23153)

commit 281ed99868e2ad67be39858aac5ba6a6b46c6fd0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sat Nov 20 02:44:53 2021 +0100

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

commit 2cc4a1b3260e1a559ce91c707e1a7cdc5444ca94
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 17 13:01:44 2021 -0600

    🎨 Misc formatting

commit c5bd08755cef48d8dc920053b68da1bbe01a56b0
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date:   Thu Nov 18 01:35:28 2021 +0800

    🐛 Init PROBE_ENABLE_PIN (#23133)

commit 99f58f63f264a9968d5b98ad2e1c6e7f2411d57e
Author: luzpaz <luzpaz@users.noreply.github.com>
Date:   Wed Nov 17 12:09:01 2021 -0500

    🎨 Fix misspelling (#23137)

commit c2a674d2c114eee94debf9f649e66cbdb06afdbb
Author: espr14 <espr14@gmail.com>
Date:   Wed Nov 17 18:07:11 2021 +0100

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

commit feffc1986744cdf10f9e8ca474f4a1aa4ca10dfe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 16 14:06:36 2021 -0600

    🐛 Fix fast PWM WGM code

    Followup to #23102

commit f637e1c5017540b32ccf43bf32269905abdd51ee
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 16 12:49:25 2021 -0600

    🔨 Bring Makefile up to date

commit 78240a279b5eaa6900d381616e5e252513e82b67
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Tue Nov 16 19:32:43 2021 +0300

    🔨 Ignore sim flashdrive file (#23129)

commit 656034d2d9d94208611ee6b684bdfb1441291249
Author: Luc Van Daele <lvd@sound-silence.com>
Date:   Tue Nov 16 16:24:53 2021 +0100

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

commit 39a81d167ee6e41aa055ceb7c7eceb919573aa61
Author: Mikhail Basov <github@basov.net>
Date:   Mon Nov 15 07:46:34 2021 +0300

    🚸 LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)

commit cb1570d162680dd0de9e23a1f4ed9fb40b56b72b
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Nov 14 17:19:57 2021 -0600

    🐛 Fix SENSORLESS_HOMING for 6-axis

commit 8cb646cc20576ed6cf4462e9ac9125f396a38bd9
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Mon Nov 15 00:15:07 2021 +0300

    🚸 Simplify touchscreen calibration for SimUI (#23124)

commit 3cccb21dc9673d641a5b490b3d6a60466f5fd12f
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Wed Nov 10 11:55:20 2021 -0500

    🚸 Fix up E3V2 Enhanced (#23100)

commit 7f4a49cc446addad07c5b1c06066e821f1e4b16c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Oct 22 13:21:26 2021 -0500

    🎨 Misc. issue review patches

commit e0c439fe911320d08229ebc24eee2a32cd1ee986
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Sun Nov 14 05:55:31 2021 -0600

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

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

commit 49e233e06f8be0d408a3576d77fa1bf5c27ff995
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Nov 12 21:26:19 2021 +0100

    🎨 MPX ARM Mini pins cleanup (#23113)

commit b662dd1f9221bc1a489dfb84737a49564f72858f
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Fri Nov 12 12:14:28 2021 -0600

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

commit 700cae43abd0108aae612513509dafccba493b61
Author: Skruppy <skruppy@onmars.eu>
Date:   Fri Nov 12 15:57:24 2021 +0100

    🩹 Fix RGB case light compile (#23108)

commit 1c74c6e7ac943078835dca58e295b2b2fe57f787
Author: George Fu <nailao_5918@163.com>
Date:   Wed Nov 10 23:58:20 2021 +0800

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

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

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

commit 59d43408f6e2fc33db4efb17dac54b6ebbed4547
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 25 00:57:30 2021 -0600

    fix breaks in F() resolution

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

    🔨 Port libsdl2_net required for macOS simulator

commit 17f853d99ceccd06103cb404507b7ed171c306cf
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Nov 9 08:30:02 2021 -0800

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

commit 6f9f25dbb29edbe5383f2f22a36d204484b19aa8
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Nov 7 01:11:51 2021 -0600

    🎨 Misc. code cleanup

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

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

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

    🚸 Indicate Preheating for probe / leveling (#23088)

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

    🩹 Fix M503 report (#23084)

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

    🍻 Preliminary fix for Max31865 SPI (#22682)

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

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

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

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

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

    🐛 Fix DGUS Reloaded status message (#23090)

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

    🍻 Get/clear reset source earlier

    Followup to #23075

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

    🐛 Prevent AVR watchdogpile (#23075)

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

    🐛 Fix TFT backlight [STM32] (#23062)

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

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

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

    🔨 Fix IntelliSense / PIO conflicts (#23058)

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

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

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

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

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

    🔨 Script 'mfprep' finds pending commits

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

    🔨 Update git helper scripts

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

    🔨 Support ABM in mf scripts

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

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

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

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

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

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

    🔧 Endstop / DIAG homing conflict warning (#23050)

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

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

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

    ✨ Artillery Ruby (STM32F401RCT6) (#23029)

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

    🚸 More flexible Probe Temperature Compensation (#23033)

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

    📝 Tweak EXP comments

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

    🔨 Help for GDB remote debugging

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

    🩹 Fix linker error (transfer_port_index)

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

    💚 Update Ender-3 V2 config path

    MarlinFirmware/Configurations#600

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

    🎨 Adjust Ender-3 V2 DWIN options

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

    ✨ Shutdown Host Action (#22908)

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

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

    ✨ "Rutilea" ESP32 board (#22880)

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

    🔧 Configuration version 02000903

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

    🎨 Standard 'cooldown' method

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

    🎨 Standard material presets behavior

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

    🎨 Define HAS_PREHEAT conditional

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

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

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

    🐛 Fix EZBoard V2 board name

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

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

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

    🎨 Apply HAS_MULTI_HOTEND conditional

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

    🚸 Scroll long filename on MKS TFT (#23031)

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

    🩹 Retain LCD pins with motor expansion (#23024)

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

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

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

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

    Followup to #23005, #22778

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

    🚸 Tweaks to UBL G29 Q

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

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

    Regression from 9823a37

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

    🐛 Add USE_TEMP_EXT_COMPENSATION options (#23007)

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

    🔧 Fewer alerts about Z_SAFE_HOMING

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

    🐛 Fix SHOW_REMAINING_TIME option for JyersUI (#22999)

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

    ✨ BigTreeTech TFT35 SPI V1.0 (#22986)

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

    🩹 Fix pragma ignored for older GCC (#22978)

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

    🎨 Refactor MOSFET pins layout (#22983)

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

    🎨 Pragma GCC cleanup

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

    🐛 Fix max chamber fan speed (#22977)

commit 5d79d8fad64a169351a36c5243911218e4ee6b7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Oct 18 00:57:54 2021 -0700

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

commit e7a746966d67d50fdeab67ce745a1524d34ccb59
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Oct 18 20:54:20 2021 +1300

    🐛 Fix MMU1 compile (#22965)

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

    🎨 Suppress type warning (#22976)

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

    🎨 Add MKS UI goto_previous_ui

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

    🚸 Tweak MKS UI G-code console

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

    🎨 Fix up MKS UI defines

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

    🎨 Refactor Host Actions as singleton

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

    🔧 Add, update TFT sanity checks (#22928)

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

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

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

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

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

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

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

    🐛 Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)

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

    ✨ M261 S I2C output format (#22890)

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

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

    🐛 Queue string followup (#22900)

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

    🐛 LCD string followup (#22892)

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

    🐛 Followup to F() in config_line

    Followup to 1dafd1887e

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

    🐛 ExtUI F() followups

    Followup to 12b5d997a2

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

    🎨 Apply F() to kill / sendinfoscreen

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

    🎨 Apply F() to MKS UI errors, assets

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

    🎨 Apply F() to various reports

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

    🎨 Apply F() to G-code report header

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

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

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

    🎨 Apply F() to some ExtUI functions

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

    🎨 Apply F() to Host Actions strings

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

    🎨 Apply F() to status message

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

    🎨 Apply F() to serial macros

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

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

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

    🎨 Apply F() to G-code subcommands

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

    🎨 Update F string declarations

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

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

commit 854ce63358f409340863024edd38fb7d1499fd91
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Sun Dec 19 05:33:21 2021 +0700

    🐛 Fix loud_kill heater disable (#23314)

commit 170f77fada009bcd77b02edf7b5d55d5173b00e9
Author: lukrow80 <64228214+lukrow80@users.noreply.github.com>
Date:   Tue Nov 23 22:30:13 2021 +0100

    🐛 Fix homing current for extra axes (#23152)

    Followup to #19112

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

    🐛 Fix IDEX Duplication Mode Positioning (#22914)

    Fixing #22538

commit 1a8583f4fce492240db5d890825b8edd8217025f
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Wed Nov 24 04:19:32 2021 +0700

    🐛 Fix serial_data_available (#23160)

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

    🔨 Move Creality 4.2.2 warning

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

    🐛 Fix NEOPIXEL2_SEPARATE default color (#23057)

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

    🩹 Fill gaps in pinsDebug_list (#23051)

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

    🐛 Fix Y_SERIAL_RX_PIN for FYSETC S6 (#23055)

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

    🎨 Fix redefine warnings (#23061)

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

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

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

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

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

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

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

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

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

    🐛 Fix børken E_DUAL_STEPPER_DRIVERS (#23017)

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

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

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

    🚸 E3V2 Enhanced cosmetic fixes (#23009)

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

    🎨 Apply F() to E3V2 titles, popups

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

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

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

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

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

    🐛 More explicit allocation of solenoids

    In reference to #22887

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

    🐛 Fix probe temp compensation maths (#23004)

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

    🐛 Fix E3V2 width/height defines (#22994)

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

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

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

    🔨 Fix older GCC CXXFLAGS warning

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

    🎨 Fix pinsDebug_list warnings

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

    💡 Sub-include pins labels

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

    🔨 Delete after encrypt. Lerdge encrypt only once

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

    🔨 Update 'pio vscode init' detection

commit fed72e4607b864d8048ae87b08063f0ac6f1eaed
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Oct 19 11:17:36 2021 -0500

    🔨 Use pull_request_target for check-pr

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

    ✅ Warn about dummy thermistors

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

    Fix JyersUI ZOffset Multiplication (#22975)

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

    Fix Tool Change Park (#22968)

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

    🔨 Improve 'mftest' error message

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

    🔧 Safety feature warnings

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

    💡 Update old gnu.org links

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

    ✨ Add option EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN (#22960)

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

    🐛 Fix G33 homing current (#22909)

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

    ✨ MKS Eagle (STM32F407VET6) board (#22897)

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

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

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

    🎨 Define Octopus allocated endstop pins (#22882)

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

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

    🎨 Tweak FORCE_INLINE

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

    ✨ ESP32 Panda_ZHU and Panda_M4 (#22644)

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

    🎨 Rename MarlinUI::zoffset_overlay

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

    🔨 Port libsdl2_net required for macOS simulator

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

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

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

    🔧 Remove obsolete G34 sanity check (#22929)

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

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

commit adf7072fa846312d473a993ffc62ec3082b37c46
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Oct 12 18:26:42 2021 -0700

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

    Followup to #20609

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

    🔨 Add 'opt_find' to find matching options

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

    🩹 Fix EXTRUDER 0 compile warning (#22868)

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

    🐛 Fix ExtUI Pause messages (#22874)

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

    🐛 Fix Arduino IDE compile error (#22877)

commit a185ce22cf6e4fb15250815c5c39318606a7e65a
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Oct 2 22:08:11 2021 -0500

    Marlin 2.0.9.2

commit 2a4ee1a482278abb830c0f5180bfa7571c00c9f7
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Oct 2 21:54:07 2021 -0500

    MKS Robin pins updates

commit 3a82b8a25195f448018e7a2267d9916814434c65
Author: Cytown <cytown@gmail.com>
Date:   Sat Jun 26 03:50:09 2021 +0800

    🎨 Power-off tone followup (#22222)

commit 765b2b43f6ea80920a3eb85be64f77ed8fe9dcbd
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Oct 2 21:51:52 2021 -0500

    🎨 FTDI Eve Touch UI spinner enqueue string

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

    🚑️ Fix DWIN_CompletedLeveling (#22851)

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

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

    🐛 E3V2 Mesh Viewer followup (#22850)

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

    🎨 Condense reverse-protection code

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

    ⚡️ Handle shared enable pins (#22824)

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

    ✨ E3V2 (Enhanced) Mesh Viewer (#22844)

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

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

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

    🎨 steps_to_mm => mm_per_step (#22847)

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

    🚸 TFT backlight PWM / brightness (#22841)

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

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

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

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

    🩹 Fix M412_report formatting (#22834)

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

    🎨 Updated string macros

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

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

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

    🐛 Fix M420 / M851 reports (#22829)

    Followup to 79c72ed821

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

    🐛 Fix reset_hotend_offsets

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

    🎨 Various multi-axis patches (#22823)

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

    ⚡️ Improve LVGL touch driver (#22817)

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

    🐛 Fix anycubic_i3mega_lcd debug macros (#22820)

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

    🩹 Add MarlinSPI to more HALs

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

    🎨 Less use of undef for RAMPS pins

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

    🎨 Fix L64xx enable, clean up conditionals

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

    🩹 Remove extra #include, misc. style

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

    ✨ Polargraph / Makelangelo kinematics (#22790)

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

    🌐 Update Greek language (#22799)

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

    🌐 Skip non-essential translations

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

    🔨 Improve pins_set script

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

    🔨 Case-insensitive tests list

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

    🌐 Reduce language file sizes

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

    🐛 STM32 ADC followup (#22798)

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

    🚸 Wake up TFT for some events (#22788)

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

    🎨 Replace some infrequently-used macros

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

    📝 Update some pins comments

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

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

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

    🚸 Move fade item up

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

    🚸 Better bed position

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

    💬 Add non-translated STR_DONE

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

    🚸 Fix and improve MKS LVGL UI (#22783)

    Co-authored-by: m…
just-trey added a commit to just-trey/Marlin that referenced this pull request Mar 22, 2022
* 🐛 Fix Artillery Ruby (startup code, build flags) (MarlinFirmware#23446)

* 🎨 Misc. cleanup, comments

* 📺 Tune ULTI_CONTROLLER encoder, enable PCA9632 (MarlinFirmware#23461)

* 🌐 Localize E3V2 Enhanced UI (MarlinFirmware#23424)

* 📌 LCD_FOR_MELZI for BTT E3 RRF (MarlinFirmware#23453)

* [cron] Bump distribution date (2022-01-07)

* [cron] Bump distribution date (2022-01-08)

* 🚸 Do G34 "Z Backoff" at full current

* [cron] Bump distribution date (2022-01-09)

* 🔨 Get FIRMWARE_BIN from env

* ✨ Firmware Upload via Binary Transfer (MarlinFirmware#23462)

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

* 🐛 Fix EEPROM_INIT_NOW build hash test (MarlinFirmware#23479)

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

* 🔨 Rename (not copy) with board_build.rename

* 📌 Improve Longer3D fan PWM (MarlinFirmware#23477)

* 🌐 Update Slovak language (MarlinFirmware#23475)

* 🚑️ Fix preheat target bug

Fixes Jyers#1651

* 🌐 Update auto home axis strings

* [cron] Bump distribution date (2022-01-10)

* 🚸 Include extra axes in position report (MarlinFirmware#23490)

* 🧑‍💻 Fewer string macros

* 🎨 Followup to MarlinFirmware#23462

* 🩹 Fix some logical axis usage

* 🚸 Wait for cooldown in MarlinUI power-off (MarlinFirmware#23476)

* [cron] Bump distribution date (2022-01-11)

* 📝 kHz => KHz

* 🧑‍💻 Adjust FastIO AVR timer enums, macros

* 🎨 Misc. spindle/laser adjustments

* [cron] Bump distribution date (2022-01-12)

* 💡 Misc. cleanup, comments

* 🧑‍💻 Move PB0 init for MKS_ROBIN_NANO

* 🐛 Fix Arduino build issues (MarlinFirmware#23510)

* 🚑️ Fix M105 regression (MarlinFirmware#23505)

Fixes MarlinFirmware#23504

* 🐛 Fix SHOW_REMAINING_TIME compile (MarlinFirmware#23503)

* 🚸 Fix E3V2 Enhanced UI time labels (MarlinFirmware#23502)

* 📝 KHz => kHz (MarlinFirmware#23512)

* 🐛 Fix, improve PWM on AVR (MarlinFirmware#23463)

* [cron] Bump distribution date (2022-01-13)

* [cron] Bump distribution date (2022-01-14)

* 🧑‍💻 Misc. updates for extra axes (MarlinFirmware#23521)

* 🩹 Followup to extra axes

* 🔨 Set upload_command for CHEETAH v20 (MarlinFirmware#23515)

* 🔧 Skip unused axis names

* [cron] Bump distribution date (2022-01-15)

* [cron] Bump distribution date (2022-01-16)

* 🐛 Fix, improve PWM on AVR (MarlinFirmware#23520)

* ⚡️ SPI+DMA+interrupt method (STM32 / MKS UI) (MarlinFirmware#23464)

* ✨ Z Offset Wizard for TFT_LVGL_UI (English) (MarlinFirmware#23489)

* 🩹 Fan speed followup

* 💄 MarlinUI+DOGM leveled bed bitmaps (MarlinFirmware#23539)

* 🐛 Fix PLR for E3V2 Enhanced UI (MarlinFirmware#23543)

* 🐛 Fix Ultimain 2 E-autofan pin mapping (MarlinFirmware#23466)

* 🐛 Finish and organize temp sensors (MarlinFirmware#23519)

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

* [cron] Bump distribution date (2022-01-17)

* 🚸 Suppressible pin warnings (MarlinFirmware#23530)

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

* 💄 Improve Ender3 v2 DWIN MarlinUI (MarlinFirmware#23369)

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

* [cron] Bump distribution date (2022-01-18)

* ✨ Long filename open/create/write (MarlinFirmware#23526)

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

* 🔨 Suppressible CONFIGURATION_EMBEDDING warning (MarlinFirmware#23545)

* 💥 Generalize extra debugging

* 🐛 Fix Octopus v1.x probe pin (MarlinFirmware#23548)

* 🐛 Fix RAMPS 1.4 Plus EXP headers (MarlinFirmware#23523)

* 📌 RAMPS AUX 1-2 headers (MarlinFirmware#23544)

* [cron] Bump distribution date (2022-01-19)

* 🐛 Fix conditional M81 suicide (MarlinFirmware#23549)

* 🎨 Misc. style and cleanup

* 🎨 LCD_SCREEN_ROT_* => LCD_SCREEN_ROTATE

* 📝 Tweak G26 Q description

* 🩹 Fix Robin Nano BOARD_INIT

* 🧑‍💻 Add chmod to mfprep

* [cron] Bump distribution date (2022-01-20)

* 🩹 BOARD_INIT followup

* 🩹 Fix power.h compile (MarlinFirmware#23573)

* [cron] Bump distribution date (2022-01-21)

* ♻️ Adjust LCD init, contrast default, settings load

* 🐛 Fix LCD contrast/brightness init (MarlinFirmware#23567)

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

* 🧑‍💻 Fix up some AUX / EXP pins (MarlinFirmware#23577)

* [cron] Bump distribution date (2022-01-22)

* 🔨 Creality RCT6 (256K) variants (MarlinFirmware#23599)

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

* 🩹 Fix DWIN float debugging (MarlinFirmware#23601)

* 🐛 Fix Creality DWIN LCD with SKR Mini E3 V3 (MarlinFirmware#23593)

* 🐛 Fix DGUS_Reloaded G-code execution (MarlinFirmware#23592)

* ⚡️ Tuned Thermistor 66 (T-D500) (MarlinFirmware#23585)

* [cron] Bump distribution date (2022-01-25)

* 🧑‍💻 HAS_MARLINUI_MENU, HAS_MANUAL_MOVE_MENU

* ✏️ Fix MKS enum

* ✅ FYSETC TFT81050 CI Test (MarlinFirmware#23604)

* ✨ BOARD_CREALITY_V24S1_301 (MarlinFirmware#23620)

Co-Authored-By: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>

* [cron] Bump distribution date (2022-01-26)

* 🚸 Better "Bed Tramming Done" dialog (MarlinFirmware#23616)

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

* 📝 Update Creality 4.2.2 driver warning

* 🐛 Fix SPI DMA and default mode (MarlinFirmware#23627)

Followup to MarlinFirmware#23464

* [cron] Bump distribution date (2022-01-27)

* 🧑‍💻 Simplify Fast PWM timer macros

* [cron] Bump distribution date (2022-01-28)

* 🐛 Fix EZBoard V2 timer conflict (MarlinFirmware#23648)

* 🐛 Fix AVR 644/1284 Timer / PWM conflicts (MarlinFirmware#23629)

* 🐛 Fix FYSETC S6, S6 V2 Serial RX pins (MarlinFirmware#23642)

* [cron] Bump distribution date (2022-01-30)

* 🐛 Fix EZBoard V2 Environment for OpenBLT (MarlinFirmware#23659)

* [cron] Bump distribution date (2022-02-01)

* 🐛 Fix M852 report (MarlinFirmware#23660)

* 🔧 Board temp sensor check

* 🚸 Case Light, LED menus for E3V2 DWIN Enhanced UI (MarlinFirmware#23590)

* [cron] Bump distribution date (2022-02-02)

* 🐛 Creality v4 cleanup, pin correction (MarlinFirmware#23666)

* 🔧 Sanity-check AVR D9 Fan PWM / SPEAKER Timer2 (MarlinFirmware#23672)

* [cron] Bump distribution date (2022-02-04)

* 💡 Comment variant timers

* 🍻 STM32 set_pwm_duty "on/off" for digital pins (MarlinFirmware#23665)

* 🐛 Fix RUMBA + MKS Mini12864 Neopixel pin (MarlinFirmware#23646)

* 🧑‍💻 Relocate a variant

* ✨ Add ZRIB v53, patch G35 Z drop, related issues (MarlinFirmware#23636)

* 📌 Distinct BOARD_CREALITY_V422 (MarlinFirmware#23674)

* [cron] Bump distribution date (2022-02-05)

* ✨ SAMD51 Bricolemon / Bricolemon Lite boards (MarlinFirmware#23658)

* 🐛 Fix Index Mobo Rev03 upload (MarlinFirmware#23676)

* 🩹 Init brightness/contrast later (MarlinFirmware#23645)

* 🚨 Deprecate Maple build (MarlinFirmware#23661)

* 🩹 Prevent Z error with UBL + Park unscaled E move (MarlinFirmware#23568)

* 🐛 Fix dual MAX31865 initialization issues (MarlinFirmware#23496)

* 🔨 Clean up upload.py (MarlinFirmware#23679)

* 🚸 Enhanced UI => Professional UI - with updates (MarlinFirmware#23624)

* 🐛 Fix missing u8g_esp32_spi (MarlinFirmware#23562)

* [cron] Bump distribution date (2022-02-06)

* 🐛 Fix init of delta safe height (for G29, G33, etc.) (MarlinFirmware#23622)

* [cron] Bump distribution date (2022-02-07)

* 🧑‍💻 Generic Maple STM32F103RC envs for devs (MarlinFirmware#23686)

* 🚨 Cleaner errors for renamed envs (MarlinFirmware#23690)

* 🩹 Fix Maple HAL compile errors (MarlinFirmware#23685)

* PLR accessors for Ext UI (MarlinFirmware#23687)

* [cron] Bump distribution date (2022-02-08)

* 🔧 Update MIXING_EXTRUDER sanity checks

Fixing MarlinFirmware#23693

* ✨ Optional HOST_STATUS_NOTIFICATIONS (MarlinFirmware#22833)

* 🧑‍💻 Drop hostui.flag

* [cron] Bump distribution date (2022-02-09)

* 🚸 Restore active tool after ABL G29 (MarlinFirmware#23692)

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

* 🚸 Fix, Improve Power-Loss Recovery (MarlinFirmware#22828)

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

* [cron] Bump distribution date (2022-02-10)

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

Fix regression in MarlinFirmware#21953

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

* 🩹 Simplify quick homing feedrate (MarlinFirmware#23714)

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

* 🧑‍💻 Wrap MMU1 pins

* ✨ Pxmalion Core i3 (MarlinFirmware#23711)

* 🎨 Misc. DGUS cleanup

* [cron] Bump distribution date (2022-02-11)

* 💥 Change 'M42 M' to 'M42 T'

* 🚸 Align MKS UI heated bed status with HAS_MULTI_HOTEND (MarlinFirmware#23718)

* ✏️ Fix E3V2 display with BTT SKR Mini E3 v3 (MarlinFirmware#23719)

* ✨ More Nozzle Park move options (MarlinFirmware#23158)

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

* [cron] Bump distribution date (2022-02-12)

* 🔧 HAS_LCDPRINT conditional

* 📝 Update conditionals descriptions

* ♻️ No ui.reinit_lcd on any ExtUI (MarlinFirmware#23722)

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

* [cron] Bump distribution date (2022-02-14)

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

* ♻️ Rename XATC z_values => z_offset

* [cron] Bump distribution date (2022-02-16)

* 🧑‍💻 Update MightyBoard FET pins (MarlinFirmware#23728)

* [cron] Bump distribution date (2022-02-17)

* 🐛 Patch Creality RAMPS FET / FAN pins

Improvement for multi-hotend setup by TH3D.

* [cron] Bump distribution date (2022-02-18)

* 🐛 Fix HAS_TMC26X feature path (MarlinFirmware#23757)

* 🚨 Fix TEMP_SENSOR_BOARD warnings (MarlinFirmware#23754)

* ✏️ Fix getLFNName parameter (MarlinFirmware#23752)

* ♻️ Refactor HAL as singleton (MarlinFirmware#23357)

* [cron] Bump distribution date (2022-02-19)

* 📌 Creality RAMPS optional SD_DETECT_PIN (MarlinFirmware#23740)

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

* ⚡️ Apply PTC on all probing (MarlinFirmware#23764)

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

* 📝 Update Toolchange FS comments

* ✨ Dyze Design PT100 Amplifier Board (MarlinFirmware#23760)

* 🔧 Warning for MK3_FAN_PINS (MarlinFirmware#23727)

* 🔨 Workspace file with recommendation

* 🐛 Fix TMC26X CS pins init (MarlinFirmware#23778)

* 🐛 Ibid.

* [cron] Bump distribution date (2022-02-22)

* 🔨 More renamed.ini envs (MarlinFirmware#23786)

* [cron] Bump distribution date (2022-02-23)

* 🎨  Move PROPORTIONAL_FONT_RATIO

* [cron] Bump distribution date (2022-02-25)

* 🐛 Fix steps-to-mm with backlash (MarlinFirmware#23814)

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

* 🐛 ESP32 _delay_ms, fix u8g_esp32_spi.cpp (MarlinFirmware#23810)

* ✨ MKS Robin Nano 3.1 (MarlinFirmware#23795)

* 📺 BTT SKR Mini E3 with Fysetc V2.1 / MKS V3 / BTT V1 Mini 12864 (MarlinFirmware#23793)

* 🔧 SHOW_CUSTOM_BOOTSCREEN sanity-check (MarlinFirmware#23807)

* ✨ LCD Backlight Timer (MarlinFirmware#23768)

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

* [cron] Bump distribution date (2022-02-27)

* ✨ M21 P / S / U - Select Volume (MarlinFirmware#23780)

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

* [cron] Bump distribution date (2022-02-28)

* 🌐 Update German language (MarlinFirmware#23832)

* 🔨 Fix 'renamed' env (platform = ststm32) (MarlinFirmware#23831)

* 🐛 Fix backlash applied steps when config changes (MarlinFirmware#23826)

Followup to MarlinFirmware#23814

* 🚨 Fix BLTouch 5V pin tolerance checks (MarlinFirmware#23823)

* ⚡️ E3V2 blank bg for S1 compatibility (MarlinFirmware#23822)

* ✨ Weedo 62A Tina2 / Monoprice Cadet (MarlinFirmware#23817)

* [cron] Bump distribution date (2022-03-02)

* 🐛 Fix M_State_grbl when G29 calls G28

* 🚸 Universal X_AXIS_TWIST_COMPENSATION (MarlinFirmware#23828)

* 🚸 Use Z_STEPPER_ALIGN_STEPPER_XY to enable

* ⚡️ Use seen_test in `M422`

* [cron] Bump distribution date (2022-03-03)

* 🚸 12345.6 num-to-string

* 🩹 Improve and apply XATC reset() (MarlinFirmware#23840)

* 🐛 Emergency Parser with STM32 Mass Storage (MarlinFirmware#23827)

* 🔧 Mark Thermal Variance Monitor EXPERIMENTAL

* ✏️ num-to-string followup

* [cron] Bump distribution date (2022-03-05)

* 🚸 TH3D EZBoard V2 TMC slave addresses (MarlinFirmware#23857)

* 🚸 Improve M422 error messages

* 🩹 Fix 'hdsl' warning

* [cron] Bump distribution date (2022-03-11)

* 🔧 DWIN_CREALITY_LCD_ENHANCED => DWIN_LCD_PROUI

Followup to MarlinFirmware#23624

* 📝 Update laser/spindle docs link (MarlinFirmware#23886)

* 🐛 Fix UI include

Followup to ~2

* fix g29 (MarlinFirmware#23887)

* 🚸 Update Ender3 V2/S1 Pro UI (MarlinFirmware#23878)

* 🐛 Restore STM32 / STM32F1 12-bit ADC (MarlinFirmware#23871)

* 🚸 Fix, extend X Axis Twist Compensation (MarlinFirmware#23745)

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

* 📌 Fix, extend Index Rev03 Mobo (MarlinFirmware#23851)

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

* 🚸 M401 H - Report BLTouch HS State (MarlinFirmware#23724)

* 🧑‍💻 STM32G0Bx : Use PLLQ for USB clock (MarlinFirmware#23870)

* [cron] Bump distribution date (2022-03-12)

* 🧑‍💻 Add ExtUI::onLevelingDone, match DWIN to ExtUI

* 🐛 Fix UBL 'G29 Q1' bug

* 🌐 Fix, add some menu labels (MarlinFirmware#23895)

* 🧑‍💻  Add standard BUZZ types

* 🩹 Fix FSTR / PSTR usage

* 🐛 Fix Chiron new TFT SD print after reset (MarlinFirmware#23855)

* 🔨 Drop extraneous build flag (MarlinFirmware#23862)

* [cron] Bump distribution date (2022-03-13)

* ⚡️ G12 - Only require used axes to be homed (MarlinFirmware#23422)

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

* 🚸 Test LIN_ADVANCE in a pins file

* 📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

* 📝 Fix X2_MAX_POS comment (MarlinFirmware#23873)

* 🩹 Fix ExtUI build with Host Keepalive disabled (MarlinFirmware#23898)

* 🐛 Fix STM32F1 HAL build (MarlinFirmware#23897)

Followup to MarlinFirmware#23357

* 🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (MarlinFirmware#23885)

* 🩹 Fix DWIN E3V2 display issues by allowing re-init (MarlinFirmware#23879)

* [cron] Bump distribution date (2022-03-14)

* 🐛 MKS TinyBee - 2.5V ADC Vref (MarlinFirmware#23903)

* [cron] Bump distribution date (2022-03-18)

* 🩹 Fix redundant var declaration (MarlinFirmware#23913)

* ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (MarlinFirmware#23867)

* 🩹 Fix xatc EEPROM debug (MarlinFirmware#23911)

* ✨ ESP32 - Hardware PWM for fan, cutter, servos (MarlinFirmware#23802)

* 📌 PandaPi V2.9 – Standalone mode (MarlinFirmware#23908)

* [cron] Bump distribution date (2022-03-19)

* ✏️ Misc. cleanup

* ✨ Encoder button noise filter (MarlinFirmware#23925)

* [cron] Bump distribution date (2022-03-21)

Co-authored-by: Kyle Hu <kyle.hu.gz@gmail.com>
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
Co-authored-by: Anson Liu <ansonl@users.noreply.github.com>
Co-authored-by: Lefteris Garyfalakis <46350667+lefterisgar@users.noreply.github.com>
Co-authored-by: jdegenstein <jdegenstein@users.noreply.github.com>
Co-authored-by: ClockeNessMnstr <locke.dftc@gmail.com>
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
Co-authored-by: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Co-authored-by: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Co-authored-by: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Co-authored-by: Roman Moravčík <roman.moravcik@gmail.com>
Co-authored-by: David Ross Smith <5095074+DragRedSim@users.noreply.github.com>
Co-authored-by: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Co-authored-by: mistic100 <contact@git.strangeplanet.fr>
Co-authored-by: ellensp <530024+ellensp@users.noreply.github.com>
Co-authored-by: Jim Watson <j-watson@ntlworld.com>
Co-authored-by: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Co-authored-by: Mike La Spina <mike.laspina@shaw.ca>
Co-authored-by: George Fu <nailao_5918@163.com>
Co-authored-by: Sola <42537573+solawc@users.noreply.github.com>
Co-authored-by: A. Herlas <45262264+protektwar@users.noreply.github.com>
Co-authored-by: Taylor Talkington <taylor.talkington@gmail.com>
Co-authored-by: zerkix <97692157+zerkix@users.noreply.github.com>
Co-authored-by: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Co-authored-by: Salvatore Bramante <salvatore.bramante@yahoo.it>
Co-authored-by: Fahad Alduraibi <fadnix@gmail.com>
Co-authored-by: DejitaruJin <dejitarujin@gmail.com>
Co-authored-by: Lars <lars.moesman@gmail.com>
Co-authored-by: Timofey Titovets <nefelim4ag@gmail.com>
Co-authored-by: Timothy Hoogland <timothy@hoogland.email>
Co-authored-by: Maeyanie <me@maeyanie.com>
Co-authored-by: Bob Kuhn <bob.kuhn@att.net>
Co-authored-by: Bones <97494397+SidSkiba@users.noreply.github.com>
Co-authored-by: Bruno Henrique de Paula <bruno.henriquy@gmail.com>
Co-authored-by: Kelroy <karlicio@gmail.com>
Co-authored-by: Stephen Hawes <sphawes@gmail.com>
Co-authored-by: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Co-authored-by: MOHAMMAD RASIM <mohammad.rasim96@gmail.com>
Co-authored-by: Mads Ynddal <5528170+Baekalfen@users.noreply.github.com>
Co-authored-by: espr14 <espr14@gmail.com>
Co-authored-by: Thomas White <TomW1605@users.noreply.github.com>
Co-authored-by: John Robertson <john@cirtech.co.uk>
Co-authored-by: Giuseppe499 <giuseppe499@live.it>
Co-authored-by: Simon Pilepich <simon.pilepich@gmail.com>
Co-authored-by: jefflessard <jefflessard3@gmail.com>
Co-authored-by: tombrazier <68918209+tombrazier@users.noreply.github.com>
Co-authored-by: sam <8531653+minteyay@users.noreply.github.com>
Co-authored-by: M. FURIC Franck <francknos@gmail.com>
Co-authored-by: kisslorand <50251547+kisslorand@users.noreply.github.com>
Co-authored-by: Ludy <Ludy87@users.noreply.github.com>
Co-authored-by: Julien Staub <atsju2@yahoo.fr>
Co-authored-by: Jack Wilsdon <jack.wilsdon@gmail.com>
Co-authored-by: GatCode <gatcode@wdw.one>
Co-authored-by: BIGTREETECH <38851044+bigtreetech@users.noreply.github.com>
Co-authored-by: Nick <nick@n-wells.co.uk>
Co-authored-by: Mathew Winters <mathew@winters.org.nz>
Co-authored-by: Mrnt <github@maurent.com>
Co-authored-by: Jelmer van der Stel <steljwagh@users.noreply.github.com>
Co-authored-by: Mark <niujl123@sina.com>
Co-authored-by: Fredrik Andersson <fredrikandersson@mac.com>
rwoelk added a commit to rwoelk/Marlin that referenced this pull request Apr 11, 2022
commit 80d0904
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Mon Apr 11 02:23:53 2022 +0200

    🌐 Update Italian language (MarlinFirmware#24019)

commit 11c4160
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Apr 11 00:01:51 2022 +0000

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

commit 416fb66
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 10 08:43:11 2022 -0500

    🧑‍💻 Strip #errors in Configurations deployment

commit 2af7657
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 10 07:39:50 2022 -0500

    🩹 Use LCD_CONTRAST_INIT in pins files

commit f31d3c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 10 06:31:39 2022 -0500

    🩹 Fix ADVANCED_PAUSE_RESUME_PRIME check

    Fixes MarlinFirmware#23824

commit c53af0d
Author: LPRtypeCN <1297207734@qq.com>
Date:   Sun Apr 10 19:19:12 2022 +0800

    🌐 Update Chinese language (MarlinFirmware#23865)

commit cec7836
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 10 03:58:58 2022 -0500

    ✨ Autoreport Redundant Sensor option (MarlinFirmware#24014)

commit e4a8c69
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 10 03:45:28 2022 -0500

    🎨  Misc. USB flash code cleanup

commit 7ff5e02
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 10 03:44:45 2022 -0500

    🔨 Fix LPC176x debug build

    See MarlinFirmware#23635

commit f7cb1ce
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 10 03:17:53 2022 -0500

    🩹 Fix PID helper functions

commit 577831b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 10 01:49:59 2022 -0500

    🩹 Apply 100% leveling correction below the bed

    See MarlinFirmware#24002

commit 6cb1a4a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 10 06:25:51 2022 +0000

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

commit 3da29b4
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sun Apr 10 07:20:05 2022 +0100

    🚸 Improve MPC tuning, add menu items (MarlinFirmware#23984)

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

commit 6ee3433
Author: Robert Brenckman <Robbery525@gmail.com>
Date:   Sun Apr 10 01:24:07 2022 -0400

    🐛 Fix Tool Change priming (MarlinFirmware#21142)

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

commit e2353be
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Apr 9 22:52:36 2022 -0500

    🎨 Misc. cleanup, string optimization

commit 46e282b
Author: stream2me <32234535+stream2me@users.noreply.github.com>
Date:   Sun Apr 10 02:46:29 2022 +0200

    🐛 Prefer os.replace, fix TFT_LVGL_UI build (MarlinFirmware#24001)

commit 6fa930f
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Sun Apr 10 07:44:31 2022 +0700

    ⚰️ Clean up dead option (MarlinFirmware#24006)

commit b19f745
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Sun Apr 10 07:39:04 2022 +0700

    ♻️ Bilinear refactor followup (MarlinFirmware#24009)

    Followup to MarlinFirmware#23868

commit febf7e5
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Apr 10 12:37:24 2022 +1200

    🔨 Preflight check old abl files (MarlinFirmware#24010)

commit 88f36ac
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Apr 9 17:21:42 2022 -0700

    ✏️ Fix FYSETC Mini Panel neopixel type (MarlinFirmware#24011)

commit 02f5e2d
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sat Apr 9 20:19:14 2022 -0400

    🩹 Fix and clean up E3V2 draw (MarlinFirmware#24013)

commit 6567e0e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Apr 9 19:17:04 2022 -0500

    🎨 Misc. 9-axis cleanup

commit fc50018
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 5 00:01:35 2022 +0000

    [cron] Bump distribution date (2022-04-05)

commit 32e6767
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Apr 4 15:57:03 2022 -0500

    ✨ DOGM Display Sleep (MarlinFirmware#23992)

    Co-authored-by: borland1 <barryorlando@hotmail.com>

commit f22307a
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Mon Apr 4 04:43:42 2022 +0200

    🚸 Better M350, M114 with more axes (MarlinFirmware#23986)

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

commit 877e102
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 3 20:13:11 2022 -0500

    🏗️ Axis name arrays

    Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com>

commit 8b8defe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 3 20:52:27 2022 -0500

    🏗️ Extend AXIS_CHAR to include E

    Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com>

commit f5daefb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 3 20:34:48 2022 -0500

    🏗️ More 9-axis updates

commit 1fdad42
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Apr 4 00:17:29 2022 +0000

    [cron] Bump distribution date (2022-04-04)

commit 591fa8b
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Mon Apr 4 01:49:51 2022 +0200

    🔧 Sanity-check SWITCHING_TOOLHEAD_X_POS (MarlinFirmware#23985)

commit f7fff4d
Author: John Robertson <john@cirtech.co.uk>
Date:   Mon Apr 4 00:47:55 2022 +0100

    🧑‍💻 Define isr_float_t to assert a non-FPU float (MarlinFirmware#23969)

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

commit 283aca5
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Apr 4 11:46:05 2022 +1200

    🌐 Update Russian language (MarlinFirmware#23978)

commit 1bc9a53
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Mon Apr 4 01:44:45 2022 +0200

    🐛 Fix Bed/Chamber PID Autotune with MPCTEMP (MarlinFirmware#23983)

commit 01797f7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 3 18:30:49 2022 -0500

    ✏️  Fix HAS_GCODE_M876

commit ff07c2b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 3 18:07:40 2022 -0500

    ✏️ No such pin

commit 90289b0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 3 16:53:39 2022 -0500

    🌐  Rename "LCD Timeout" string

commit 19838d9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 3 16:50:39 2022 -0500

    🎨  Misc. adjustments, spacing

commit c4873a6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 3 16:14:02 2022 -0500

    🧑‍💻 General and Axis-based bitfield flags (MarlinFirmware#23989)

commit 7ce4a7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Apr 3 14:13:29 2022 -0700

    ✏️ Fix NOZZLE_PARK_Y_ONLY sanity-check (MarlinFirmware#23990)

commit 4f1967a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 3 00:46:28 2022 +0000

    [cron] Bump distribution date (2022-04-03)

commit e4c7c55
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Apr 3 01:27:05 2022 +0200

    🐛 Fix PID edit menu for Bed, Chamber (MarlinFirmware#23987)

commit d98c61c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Apr 2 00:01:39 2022 +0000

    [cron] Bump distribution date (2022-04-02)

commit 931e243
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 1 04:57:41 2022 -0500

    Draw flags followup

commit 0c366d3
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Apr 1 21:01:34 2022 +1300

    ✏️ Fix E3V2 MarlinUI draw flags (MarlinFirmware#23979)

commit 72b2e2b
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Apr 1 08:14:14 2022 +0100

    ⚗️ Temperature Model Predictive Control (MarlinFirmware#23751)

commit 8fb6521
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 1 06:01:01 2022 +0000

    [cron] Bump distribution date (2022-04-01)

commit e5b651f
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Fri Apr 1 07:10:38 2022 +0200

    ✨ Support for up to 9 axes (linear, rotary) (MarlinFirmware#23112)

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

commit 2786592
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Fri Apr 1 04:22:26 2022 +0200

    📝 Obsolete freeze comment (MarlinFirmware#23964)

    Followup to MarlinFirmware#23944

commit 04ab653
Author: aegelsky <alexander.egelsky@gmail.com>
Date:   Fri Apr 1 05:21:10 2022 +0300

    🐛 Fix MKS Gen. L - EEB (MarlinFirmware#23965)

commit f15b1c1
Author: Jon <jon@mscreations.net>
Date:   Thu Mar 31 22:18:32 2022 -0400

    🩹 SKR2 Pins DIAG flag (MarlinFirmware#23968)

    Followup to MarlinFirmware#23050

commit c7f03b8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Mar 31 19:16:11 2022 -0700

    📌 SKR Mini V1.1 TMC UART Pins (MarlinFirmware#23970)

commit 108cc4b
Author: grauerfuchs <42082416+grauerfuchs@users.noreply.github.com>
Date:   Thu Mar 31 22:15:06 2022 -0400

    🐛 Fix MightyBoard Rev. E EX2, extra MOSFETs (MarlinFirmware#23976)

commit ae53033
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Apr 1 03:13:16 2022 +0100

    ♻️ Refactor and fix ABL Bilinear (MarlinFirmware#23868)

commit 72a9a02
Author: Manianac <2092573+manianac@users.noreply.github.com>
Date:   Thu Mar 31 17:23:52 2022 -0700

    🐛 Use ADC_VREF for Filament Width ADC Vref (MarlinFirmware#23977)

commit 2dbb28f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 30 00:26:34 2022 +0000

    [cron] Bump distribution date (2022-03-30)

commit 4953946
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Tue Mar 29 05:41:33 2022 -0400

    🐛 Fix MarlinUI on Ender 3 S1 (MarlinFirmware#23949)

commit 6015ee2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 29 04:22:04 2022 -0500

    🎨  Combine common LPC1768 I2C code

commit 0752082
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 29 03:48:37 2022 -0500

    🎨  INI cleanup

commit d6fcae4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 29 03:38:25 2022 -0500

    💥 Rename ExtUI settings methods

commit 4edfb69
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 29 03:24:15 2022 -0500

    💚 Lock CI testing to PlatformIO 5.2.5

commit 51d4c5a
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date:   Tue Mar 29 11:13:45 2022 +0300

    ✏️ Fix parking extruder compile (MarlinFirmware#23961)

    Followup to d3e3e6a

commit 0b66906
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 29 00:31:43 2022 +0000

    [cron] Bump distribution date (2022-03-29)

commit 59f2f4f
Author: Ludy <Ludy87@users.noreply.github.com>
Date:   Mon Mar 28 03:20:54 2022 +0200

    🐛 Fix MMU2 buzz (MarlinFirmware#23950)

    Followup to MarlinFirmware#23943

commit bdc2b2b
Author: David Forrest <drf@vims.edu>
Date:   Sun Mar 27 21:19:02 2022 -0400

    🔨 Fix Makefile GCC warning (MarlinFirmware#23957)

commit d806a66
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Mar 28 00:01:49 2022 +0000

    [cron] Bump distribution date (2022-03-28)

commit d95dca9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 26 21:58:19 2022 -0500

    🔨 Update TMC26XStepper link

commit 4a54f84
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 27 00:01:26 2022 +0000

    [cron] Bump distribution date (2022-03-27)

commit 692f42e
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Mar 27 00:22:41 2022 +0100

    ✨ Configurable FREEZE pin state (MarlinFirmware#23948)

commit 20b5615
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Mar 26 16:44:22 2022 +1300

    ✨ Configurable FREEZE pin state (MarlinFirmware#23944)

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

commit b1958a4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 25 21:16:00 2022 -0500

    🐛 Fix pulldown sanity check

commit 959c559
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 25 20:54:01 2022 -0500

    🔨 Try out v3 actions

commit f1471c1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Mar 26 14:03:43 2022 +1300

    🐛 Fix MMU2 buzz (MarlinFirmware#23943)

    Followup to 89a9c3a

commit 80c4abc
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 26 00:06:22 2022 +0000

    [cron] Bump distribution date (2022-03-26)

commit b7ffcd6
Author: Robby Candra <robbycandra.mail@gmail.com>
Date:   Sat Mar 26 06:34:20 2022 +0700

    ✨ STATUS_MESSAGE_TIMEOUT_SEC (MarlinFirmware#23135)

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

commit fd74261
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 25 17:35:00 2022 -0500

    🚸 Clear "heating/cooling" message on temp reached

commit 8dfdf51
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 25 17:09:55 2022 -0500

    🎨 Format, use status macros

commit 4ff0634
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 25 17:09:26 2022 -0500

    🐛 Fix status_printf alert level

commit 6b55eec
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 25 17:04:06 2022 -0500

    🩹 Print English to serial out

commit 4a50d89
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Mar 24 20:29:50 2022 -0500

    ✏️ Encoder noise followup

    Followup to MarlinFirmware#23925

commit 867e274
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 25 00:01:44 2022 +0000

    [cron] Bump distribution date (2022-03-25)

commit d189cda
Author: Oleg Belov <obelov@audiology.ru>
Date:   Fri Mar 25 02:12:35 2022 +0300

    📌 Custom cable for Mini 12864 V1 + SKR Mini E3 V3.0 (MarlinFirmware#23936)

commit e119d9b
Author: Serhiy-K <52166448+Serhiy-K@users.noreply.github.com>
Date:   Fri Mar 25 01:07:58 2022 +0200

    🌐 Update Ukrainian language (MarlinFirmware#23935)

commit 0d3f79e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Mar 25 12:06:28 2022 +1300

    🩹 Wrap endstop_diag.cpp (MarlinFirmware#23931)

commit b44357d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Mar 24 00:01:46 2022 +0000

    [cron] Bump distribution date (2022-03-24)

commit 0b32c39
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 20:39:53 2022 -0500

    🧑‍💻 Improve STATUS_BED_X

commit 6b47db3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 20:34:00 2022 -0500

    🎨 General cleanup, comments

commit a80a303
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 22:22:08 2022 -0500

    🧑‍💻 EXTRUDER_LOOP macro

commit 8ba6e8a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 20:31:36 2022 -0500

    🎨 Clean up tool change with tool sensor

commit e458aa4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 20:11:58 2022 -0500

    🔨 Fix 'mftest -s'

commit a63205a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 20:11:10 2022 -0500

    🩹 Fix ADC math overflow

commit 92d3a03
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 19:56:07 2022 -0500

    🧑‍💻 PIO --silent in build_example

commit 258a2ed
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 19:17:12 2022 -0500

    🎨 Apply _TERN where possible

commit 98dcb9e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 19:20:19 2022 -0500

    🔨 Suppress MMU2 resume_position warning

commit de8e436
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 19:08:00 2022 -0500

    🧑‍💻 Add neo.set_background_color(rgbw)

commit 58fcaeb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 18:53:42 2022 -0500

    🔧 Sanity-checks for PULLDOWN, SINGLENOZZLE

commit c47c52c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 18:31:54 2022 -0500

    🔧 No Switching Nozzle with MMU2

commit d3e3e6a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 18:14:17 2022 -0500

    🩹 No PE_MAGNET_ON_STATE without PARKING_EXTRUDER

commit ef07c2c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 18:11:01 2022 -0500

    🔨 Allow I2CPE_ENC_n_INVERT set to false

commit e183e38
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 23 00:01:36 2022 +0000

    [cron] Bump distribution date (2022-03-23)

commit 2baf49a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 22 15:30:29 2022 -0500

    🚸 Allow one servo with cutter on RAMPS

commit 10ce88f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Mar 21 06:00:58 2022 +0000

    [cron] Bump distribution date (2022-03-21)

commit a8cf290
Author: Fredrik Andersson <fredrikandersson@mac.com>
Date:   Mon Mar 21 02:14:45 2022 +0100

    ✨ Encoder button noise filter (MarlinFirmware#23925)

commit 032e5c9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 20 19:12:19 2022 -0500

    ✏️ Misc. cleanup

commit 3c09cf2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 19 00:01:41 2022 +0000

    [cron] Bump distribution date (2022-03-19)

commit a02a1de
Author: Mark <niujl123@sina.com>
Date:   Fri Mar 18 12:49:47 2022 +0800

    📌 PandaPi V2.9 – Standalone mode (MarlinFirmware#23908)

commit 1f1571f
Author: John Robertson <john@cirtech.co.uk>
Date:   Fri Mar 18 03:21:53 2022 +0000

    ✨ ESP32 - Hardware PWM for fan, cutter, servos (MarlinFirmware#23802)

commit 9b2c060
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Mar 18 16:17:41 2022 +1300

    🩹 Fix xatc EEPROM debug (MarlinFirmware#23911)

commit 631e35b
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Mar 18 03:15:26 2022 +0000

    ⚡️ Fix noisy ADC - 16x oversampling with 12-bit ADC (MarlinFirmware#23867)

commit bf7176f
Author: Ludy <Ludy87@users.noreply.github.com>
Date:   Fri Mar 18 02:55:33 2022 +0100

    🩹 Fix redundant var declaration (MarlinFirmware#23913)

commit 99413ae
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 18 00:01:51 2022 +0000

    [cron] Bump distribution date (2022-03-18)

commit 653c847
Author: John Robertson <john@cirtech.co.uk>
Date:   Thu Mar 17 19:35:33 2022 +0000

    🐛 MKS TinyBee - 2.5V ADC Vref (MarlinFirmware#23903)

commit acade28
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Mar 14 00:28:47 2022 +0000

    [cron] Bump distribution date (2022-03-14)

commit f4b41fc
Author: Jelmer van der Stel <steljwagh@users.noreply.github.com>
Date:   Sun Mar 13 23:20:30 2022 +0100

    🩹 Fix DWIN E3V2 display issues by allowing re-init (MarlinFirmware#23879)

commit 9bc1d05
Author: Mrnt <github@maurent.com>
Date:   Sun Mar 13 15:17:35 2022 -0700

    🧑‍💻 Allow DIGIPOT Rsx / Vrefmax override (MarlinFirmware#23885)

commit 40ed3c5
Author: Julien Staub <atsju2@yahoo.fr>
Date:   Sun Mar 13 23:11:31 2022 +0100

    🐛 Fix STM32F1 HAL build (MarlinFirmware#23897)

    Followup to MarlinFirmware#23357

commit de87f53
Author: Julien Staub <atsju2@yahoo.fr>
Date:   Sun Mar 13 23:09:32 2022 +0100

    🩹 Fix ExtUI build with Host Keepalive disabled (MarlinFirmware#23898)

commit a9c30cb
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sun Mar 13 18:00:35 2022 -0400

    📝 Fix X2_MAX_POS comment (MarlinFirmware#23873)

commit 4d40764
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 13 16:59:43 2022 -0500

    📝 Fix DEFAULT_DUAL_X_CARRIAGE_MODE comment

commit 0c0ef9e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 13 16:46:08 2022 -0500

    🚸 Test LIN_ADVANCE in a pins file

commit a58d35d
Author: Mathew Winters <mathew@winters.org.nz>
Date:   Sun Mar 13 14:13:41 2022 +1300

    ⚡️ G12 - Only require used axes to be homed (MarlinFirmware#23422)

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

commit ea3d6ec
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 13 01:07:44 2022 +0000

    [cron] Bump distribution date (2022-03-13)

commit 2f6a6f3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Mar 12 16:23:29 2022 -0800

    🔨 Drop extraneous build flag (MarlinFirmware#23862)

commit 9c9300f
Author: Nick <nick@n-wells.co.uk>
Date:   Sat Mar 12 23:47:47 2022 +0000

    🐛 Fix Chiron new TFT SD print after reset (MarlinFirmware#23855)

commit e354cd1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 12 17:12:21 2022 -0600

    🩹 Fix FSTR / PSTR usage

commit 89a9c3a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 12 16:34:58 2022 -0600

    🧑‍💻  Add standard BUZZ types

commit 0bf319c
Author: Ludy <Ludy87@users.noreply.github.com>
Date:   Sun Mar 13 00:36:23 2022 +0100

    🌐 Fix, add some menu labels (MarlinFirmware#23895)

commit bff55ea
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 12 15:59:01 2022 -0600

    🐛 Fix UBL 'G29 Q1' bug

commit 623c6b7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 12 15:58:28 2022 -0600

    🧑‍💻 Add ExtUI::onLevelingDone, match DWIN to ExtUI

commit 5bbb345
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 12 00:43:48 2022 +0000

    [cron] Bump distribution date (2022-03-12)

commit 8e87e4c
Author: BIGTREETECH <38851044+bigtreetech@users.noreply.github.com>
Date:   Sat Mar 12 08:23:18 2022 +0800

    🧑‍💻 STM32G0Bx : Use PLLQ for USB clock (MarlinFirmware#23870)

commit 0563626
Author: kisslorand <50251547+kisslorand@users.noreply.github.com>
Date:   Sat Mar 12 02:21:08 2022 +0200

    🚸 M401 H - Report BLTouch HS State (MarlinFirmware#23724)

commit 2d8ec4f
Author: GatCode <gatcode@wdw.one>
Date:   Sat Mar 12 00:56:31 2022 +0100

    📌 Fix, extend Index Rev03 Mobo (MarlinFirmware#23851)

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

commit df4e022
Author: Giuseppe499 <giuseppe499@live.it>
Date:   Sat Mar 12 00:12:03 2022 +0100

    🚸 Fix, extend X Axis Twist Compensation (MarlinFirmware#23745)

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

commit b123fa7
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Mar 11 23:09:04 2022 +0000

    🐛 Restore STM32 / STM32F1 12-bit ADC (MarlinFirmware#23871)

commit 79b38e0
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Fri Mar 11 15:06:49 2022 -0500

    🚸 Update Ender3 V2/S1 Pro UI (MarlinFirmware#23878)

commit bd3ecc3
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Mar 12 03:51:25 2022 +1300

    fix g29 (MarlinFirmware#23887)

commit f516c9e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 11 02:56:24 2022 -0600

    🐛 Fix UI include

    Followup to ~2

commit b9ef0f4
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Mar 11 21:52:35 2022 +1300

    📝 Update laser/spindle docs link (MarlinFirmware#23886)

commit 48b5362
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Mar 10 22:07:47 2022 -0600

    🔧 DWIN_CREALITY_LCD_ENHANCED => DWIN_LCD_PROUI

    Followup to MarlinFirmware#23624

commit 4e467e9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 11 00:28:58 2022 +0000

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

commit 813b6af
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Mar 10 17:35:03 2022 -0600

    🩹 Fix 'hdsl' warning

commit 4b84b28
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Mar 10 17:25:09 2022 -0600

    🚸 Improve M422 error messages

commit c6a6d35
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Mar 10 15:20:13 2022 -0800

    🚸 TH3D EZBoard V2 TMC slave addresses (MarlinFirmware#23857)

commit 323ac94
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 5 00:25:32 2022 +0000

    [cron] Bump distribution date (2022-03-05)

commit d2c503e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Mar 4 16:55:01 2022 -0600

    ✏️ num-to-string followup

commit 87e19fe
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Mar 4 16:07:38 2022 -0600

    🔧 Mark Thermal Variance Monitor EXPERIMENTAL

commit 0e1ecf1
Author: Jack Wilsdon <jack.wilsdon@gmail.com>
Date:   Fri Mar 4 21:59:38 2022 +0000

    🐛 Emergency Parser with STM32 Mass Storage (MarlinFirmware#23827)

commit 687dc9a
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Mar 4 21:57:51 2022 +0000

    🩹 Improve and apply XATC reset() (MarlinFirmware#23840)

commit 755c196
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Mar 4 15:18:27 2022 -0600

    🚸 12345.6 num-to-string

commit 445c3c6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Mar 3 00:27:06 2022 +0000

    [cron] Bump distribution date (2022-03-03)

commit 6aee2c7
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Mar 2 17:58:23 2022 -0600

    ⚡️ Use seen_test in `M422`

commit bb2f100
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Mar 2 17:50:55 2022 -0600

    🚸 Use Z_STEPPER_ALIGN_STEPPER_XY to enable

commit 2e39bc3
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Wed Mar 2 22:13:46 2022 +0000

    🚸 Universal X_AXIS_TWIST_COMPENSATION (MarlinFirmware#23828)

commit b07a34e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Mar 2 16:04:17 2022 -0600

    🐛 Fix M_State_grbl when G29 calls G28

commit fd1a5fe
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 2 00:26:24 2022 +0000

    [cron] Bump distribution date (2022-03-02)

commit c9fe822
Author: Julien Staub <atsju2@yahoo.fr>
Date:   Tue Mar 1 23:42:20 2022 +0100

    ✨ Weedo 62A Tina2 / Monoprice Cadet (MarlinFirmware#23817)

commit 9ef01d4
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Tue Mar 1 17:25:30 2022 -0500

    ⚡️ E3V2 blank bg for S1 compatibility (MarlinFirmware#23822)

commit 7d7439c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Mar 2 11:22:36 2022 +1300

    🚨 Fix BLTouch 5V pin tolerance checks (MarlinFirmware#23823)

commit 6b7868d
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Tue Mar 1 22:14:52 2022 +0000

    🐛 Fix backlash applied steps when config changes (MarlinFirmware#23826)

    Followup to MarlinFirmware#23814

commit 15de14d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Mar 2 11:11:26 2022 +1300

    🔨 Fix 'renamed' env (platform = ststm32) (MarlinFirmware#23831)

commit d09a2ee
Author: Ludy <Ludy87@users.noreply.github.com>
Date:   Tue Mar 1 23:09:11 2022 +0100

    🌐 Update German language (MarlinFirmware#23832)

commit 1aa988c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Feb 28 06:07:09 2022 +0000

    [cron] Bump distribution date (2022-02-28)

commit 9ea6a58
Author: kisslorand <50251547+kisslorand@users.noreply.github.com>
Date:   Mon Feb 28 04:38:11 2022 +0200

    ✨ M21 P / S / U - Select Volume (MarlinFirmware#23780)

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

commit 4b0e84d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 27 00:25:43 2022 +0000

    [cron] Bump distribution date (2022-02-27)

commit 0e7be8e
Author: M. FURIC Franck <francknos@gmail.com>
Date:   Sat Feb 26 23:54:04 2022 +0100

    ✨ LCD Backlight Timer (MarlinFirmware#23768)

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

commit 12b038d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Feb 27 11:50:17 2022 +1300

    🔧 SHOW_CUSTOM_BOOTSCREEN sanity-check (MarlinFirmware#23807)

commit c2c257a
Author: sam <8531653+minteyay@users.noreply.github.com>
Date:   Sun Feb 27 00:48:59 2022 +0200

    📺 BTT SKR Mini E3 with Fysetc V2.1 / MKS V3 / BTT V1 Mini 12864 (MarlinFirmware#23793)

commit f7f29c6
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Feb 27 11:45:33 2022 +1300

    ✨ MKS Robin Nano 3.1 (MarlinFirmware#23795)

commit 358ffdd
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Feb 27 09:34:44 2022 +1300

    🐛 ESP32 _delay_ms, fix u8g_esp32_spi.cpp (MarlinFirmware#23810)

commit 87c4cd2
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sat Feb 26 20:30:33 2022 +0000

    🐛 Fix steps-to-mm with backlash (MarlinFirmware#23814)

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

commit 103b5f1
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 25 06:07:00 2022 +0000

    [cron] Bump distribution date (2022-02-25)

commit 1420427
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 24 18:47:57 2022 -0600

    🎨  Move PROPORTIONAL_FONT_RATIO

commit 22b99a2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 23 18:03:44 2022 +0000

    [cron] Bump distribution date (2022-02-23)

commit 28f6530
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Feb 24 05:36:39 2022 +1300

    🔨 More renamed.ini envs (MarlinFirmware#23786)

commit 432927d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 22 06:06:52 2022 +0000

    [cron] Bump distribution date (2022-02-22)

commit 60c8970
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Feb 21 23:07:09 2022 -0600

    🐛 Ibid.

commit f03c367
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 22 16:16:57 2022 +1300

    🐛 Fix TMC26X CS pins init (MarlinFirmware#23778)

commit 92f85e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Feb 21 20:50:09 2022 -0600

    🔨 Workspace file with recommendation

commit 6b96636
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Feb 21 18:47:53 2022 -0800

    🔧 Warning for MK3_FAN_PINS (MarlinFirmware#23727)

commit 963049d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Feb 21 19:55:19 2022 -0600

    ✨ Dyze Design PT100 Amplifier Board (MarlinFirmware#23760)

commit 9530df4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Feb 21 19:54:03 2022 -0600

    📝 Update Toolchange FS comments

commit 8f8427e
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Tue Feb 22 01:15:52 2022 +0000

    ⚡️ Apply PTC on all probing (MarlinFirmware#23764)

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

commit a9682f2
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 22 13:31:44 2022 +1300

    📌 Creality RAMPS optional SD_DETECT_PIN (MarlinFirmware#23740)

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

commit 28ceb1e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 19 00:25:05 2022 +0000

    [cron] Bump distribution date (2022-02-19)

commit 44eff9a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 17 18:50:31 2022 -0600

    ♻️ Refactor HAL as singleton (MarlinFirmware#23357)

commit fee85b3
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Fri Feb 18 01:45:42 2022 +0100

    ✏️ Fix getLFNName parameter (MarlinFirmware#23752)

commit cba8d4f
Author: jefflessard <jefflessard3@gmail.com>
Date:   Thu Feb 17 19:44:41 2022 -0500

    🚨 Fix TEMP_SENSOR_BOARD warnings (MarlinFirmware#23754)

commit 3ec5bbf
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Feb 18 13:37:22 2022 +1300

    🐛 Fix HAS_TMC26X feature path (MarlinFirmware#23757)

commit 2ba1153
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 18 00:23:00 2022 +0000

    [cron] Bump distribution date (2022-02-18)

commit 7b25b9e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 17 14:41:56 2022 -0600

    🐛 Patch Creality RAMPS FET / FAN pins

    Improvement for multi-hotend setup by TH3D.

commit 10c0b94
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 17 00:19:04 2022 +0000

    [cron] Bump distribution date (2022-02-17)

commit 5439da6
Author: Simon Pilepich <simon.pilepich@gmail.com>
Date:   Wed Feb 16 13:46:09 2022 +1100

    🧑‍💻 Update MightyBoard FET pins (MarlinFirmware#23728)

commit e507aa0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 16 00:19:06 2022 +0000

    [cron] Bump distribution date (2022-02-16)

commit 98a17cd
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Tue Feb 15 15:09:09 2022 -0600

    ♻️ Rename XATC z_values => z_offset

commit aae08e9
Author: Giuseppe499 <giuseppe499@live.it>
Date:   Tue Feb 15 20:21:05 2022 +0100

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

commit cd4c1be
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Feb 14 00:20:02 2022 +0000

    [cron] Bump distribution date (2022-02-14)

commit 03516f0
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sun Feb 13 14:44:24 2022 -0500

    ♻️ No ui.reinit_lcd on any ExtUI (MarlinFirmware#23722)

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

commit e8cc050
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 13 13:12:38 2022 -0600

    📝 Update conditionals descriptions

commit cf013a7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 13 12:55:00 2022 -0600

    🔧 HAS_LCDPRINT conditional

commit cda4682
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 12 00:21:36 2022 +0000

    [cron] Bump distribution date (2022-02-12)

commit b4d3e1d
Author: John Robertson <john@cirtech.co.uk>
Date:   Fri Feb 11 21:04:47 2022 +0000

    ✨ More Nozzle Park move options (MarlinFirmware#23158)

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

commit 26e4f70
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Feb 12 08:50:07 2022 +1300

    ✏️ Fix E3V2 display with BTT SKR Mini E3 v3 (MarlinFirmware#23719)

commit fb86b6b
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Feb 12 08:39:34 2022 +1300

    🚸 Align MKS UI heated bed status with HAS_MULTI_HOTEND (MarlinFirmware#23718)

commit df98bd2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 11 09:36:52 2022 -0600

    💥 Change 'M42 M' to 'M42 T'

commit be8f4f4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 11 00:19:49 2022 +0000

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

commit 3d2b2ca
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Feb 10 16:03:48 2022 -0600

    🎨 Misc. DGUS cleanup

commit f2d1770
Author: Thomas White <TomW1605@users.noreply.github.com>
Date:   Fri Feb 11 04:02:45 2022 +0800

    ✨ Pxmalion Core i3 (MarlinFirmware#23711)

commit 267a44c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Feb 10 13:58:50 2022 -0600

    🧑‍💻 Wrap MMU1 pins

commit 5520aa3
Author: espr14 <espr14@gmail.com>
Date:   Thu Feb 10 20:28:38 2022 +0100

    🩹 Simplify quick homing feedrate (MarlinFirmware#23714)

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

commit 191d25f
Author: Mads Ynddal <5528170+Baekalfen@users.noreply.github.com>
Date:   Thu Feb 10 18:58:36 2022 +0100

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

    Fix regression in MarlinFirmware#21953

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

commit ae96892
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 10 00:20:36 2022 +0000

    [cron] Bump distribution date (2022-02-10)
mh-dm pushed a commit to mh-dm/Marlin that referenced this pull request May 15, 2022
Fix regression in MarlinFirmware#21953

Co-authored-by: Scott Lahteine <github@thinkyhead.com>
LCh-77 pushed a commit to LCh-77/Marlin that referenced this pull request Jun 21, 2022
Fix regression in MarlinFirmware#21953

Co-authored-by: Scott Lahteine <github@thinkyhead.com>
LCh-77 pushed a commit to LCh-77/Marlin that referenced this pull request Jun 21, 2022
Fix regression in MarlinFirmware#21953

Co-authored-by: Scott Lahteine <github@thinkyhead.com>
@johnhakins johnhakins mentioned this pull request Mar 20, 2023
ogdhekne pushed a commit to ogdhekne/Marlin that referenced this pull request Mar 25, 2024
Fix regression in MarlinFirmware#21953

Co-authored-by: Scott Lahteine <github@thinkyhead.com>
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.

1 participant